diff --git a/.github/workflows/storybook-chromatic.yml b/.github/workflows/storybook-chromatic.yml
new file mode 100644
index 000000000..7a52e5d15
--- /dev/null
+++ b/.github/workflows/storybook-chromatic.yml
@@ -0,0 +1,35 @@
+name: QA
+
+on: [pull_request]
+
+jobs:
+ chromatic-storybook:
+ runs-on: ubuntu-latest
+ steps:
+ - uses: actions/checkout@v3
+ with:
+ fetch-depth: 0
+ - name: Setup Node
+ uses: actions/setup-node@v3
+ with:
+ node-version-file: ".nvmrc"
+ - name: Cache node modules
+ uses: actions/cache@v3
+ env:
+ cache-name: cache-node-modules
+ with:
+ # npm cache files are stored in `~/.npm` on Linux/macOS
+ path: ~/.npm
+ key: ${{ runner.os }}-qa-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }}
+ restore-keys: |
+ ${{ runner.os }}-qa-${{ env.cache-name }}-
+ ${{ runner.os }}-qa-
+ ${{ runner.os }}-
+
+ - name: Install deps
+ run: npm ci
+
+ - name: Publish to Chromatic
+ uses: chromaui/action@a89b674adf766dbde41ad9ea2b2b60b91188a0f0 # v6.17.4
+ with:
+ projectToken: ${{ secrets.CHROMATIC_PROJECT_TOKEN }}
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml
index 523f6c963..4f0b4e72f 100644
--- a/.github/workflows/test.yml
+++ b/.github/workflows/test.yml
@@ -49,7 +49,7 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-node@v3
with:
- node-version-file: '.nvmrc'
+ node-version-file: ".nvmrc"
- name: Cache node modules
uses: actions/cache@v2
env:
diff --git a/.gitignore b/.gitignore
index 9ce1e0167..a106e3d13 100644
--- a/.gitignore
+++ b/.gitignore
@@ -21,6 +21,7 @@
!.travis*
!.tx
!.husky
+!.storybook
*.log
*.pyc
*.mo
@@ -50,4 +51,4 @@ cypress/reports
django-queries-results.html
!.env.template
-!.dependency-cruiser.js
\ No newline at end of file
+!.dependency-cruiser.js
diff --git a/src/storybook/CardDecorator.tsx b/.storybook/decorators/CardDecorator.tsx
similarity index 59%
rename from src/storybook/CardDecorator.tsx
rename to .storybook/decorators/CardDecorator.tsx
index 24cabc133..a39ea46d8 100644
--- a/src/storybook/CardDecorator.tsx
+++ b/.storybook/decorators/CardDecorator.tsx
@@ -1,7 +1,8 @@
import { Card, CardContent } from "@material-ui/core";
+import { Decorator } from "@storybook/react";
import React from "react";
-const CardDecorator = storyFn => (
+export const CardDecorator: Decorator = Story => (
(
width: 400,
}}
>
- {storyFn()}
+
+
+
);
-export default CardDecorator;
diff --git a/src/storybook/Decorator.tsx b/.storybook/decorators/MockedProvidersDecorator.tsx
similarity index 57%
rename from src/storybook/Decorator.tsx
rename to .storybook/decorators/MockedProvidersDecorator.tsx
index bc7e5d58f..e695b737b 100644
--- a/src/storybook/Decorator.tsx
+++ b/.storybook/decorators/MockedProvidersDecorator.tsx
@@ -1,22 +1,23 @@
import "@saleor/macaw-ui/next/style";
-import { ExternalAppProvider } from "@dashboard/apps/components/ExternalAppContext";
-import { Locale, RawLocaleProvider } from "@dashboard/components/Locale";
-import { FlagsServiceProvider } from "@dashboard/hooks/useFlags/flagsService";
-import { paletteOverrides, themeOverrides } from "@dashboard/themeOverrides";
import { ThemeProvider as LegacyThemeProvider } from "@saleor/macaw-ui";
import { ThemeProvider } from "@saleor/macaw-ui/next";
import React from "react";
import { IntlProvider } from "react-intl";
import { BrowserRouter } from "react-router-dom";
+import { ExternalAppProvider } from "../../src/apps/components/ExternalAppContext";
+import { DevModeProvider } from "../../src/components/DevModePanel/DevModeProvider";
+import { Locale, RawLocaleProvider } from "../../src/components/Locale";
+import { FlagsServiceProvider } from "../../src/hooks/useFlags/flagsService";
+import { paletteOverrides, themeOverrides } from "../../src/themeOverrides";
+import { Provider as DateProvider } from "../../src/components/Date/DateContext";
+import { TimezoneProvider } from "../../src/components/Timezone";
+import MessageManagerProvider from "../../src/components/messages";
+import { getAppMountUri } from "../../src/config";
import { ApolloMockedProvider } from "../../testUtils/ApolloMockedProvider";
-import { Provider as DateProvider } from "../components/Date/DateContext";
-import MessageManagerProvider from "../components/messages";
-import { TimezoneProvider } from "../components/Timezone";
-import { getAppMountUri } from "../config";
-export const Decorator = storyFn => (
+export const MockedProvidersDecorator: React.FC = ({ children }) => (
(
-
- {storyFn()}
-
+
+
+ {children}
+
+
@@ -55,4 +58,3 @@ export const Decorator = storyFn => (
);
-export default Decorator;
diff --git a/.storybook/decorators/PaginatorContextDecorator.tsx b/.storybook/decorators/PaginatorContextDecorator.tsx
new file mode 100644
index 000000000..7a5de8f38
--- /dev/null
+++ b/.storybook/decorators/PaginatorContextDecorator.tsx
@@ -0,0 +1,10 @@
+import { Decorator } from "@storybook/react";
+import React from "react";
+import { paginatorContextValues } from "../../src/fixtures";
+import { PaginatorContext } from "../../src/hooks/usePaginator";
+
+export const PaginatorContextDecorator: Decorator = Story => (
+
+
+
+);
diff --git a/.storybook/decorators/index.ts b/.storybook/decorators/index.ts
new file mode 100644
index 000000000..0460da15b
--- /dev/null
+++ b/.storybook/decorators/index.ts
@@ -0,0 +1,3 @@
+export * from "./CardDecorator";
+export * from "./MockedProvidersDecorator";
+export * from "./PaginatorContextDecorator";
diff --git a/src/storybook/MockedUserProvider.tsx b/.storybook/helpers/MockedUserProvider.tsx
similarity index 82%
rename from src/storybook/MockedUserProvider.tsx
rename to .storybook/helpers/MockedUserProvider.tsx
index 9d8ddf8aa..870899ea5 100644
--- a/src/storybook/MockedUserProvider.tsx
+++ b/.storybook/helpers/MockedUserProvider.tsx
@@ -1,7 +1,7 @@
-import { UserContext } from "@dashboard/auth";
-import { adminUserPermissions } from "@dashboard/fixtures";
-import { UserFragment } from "@dashboard/graphql";
import * as React from "react";
+import { UserContext } from "../../src/auth";
+import { adminUserPermissions } from "../../src/fixtures";
+import { UserFragment } from "../../src/graphql";
export const MockedUserProvider: React.FC<{
customPermissions?: UserFragment["userPermissions"];
diff --git a/src/storybook/formError.ts b/.storybook/helpers/formError.ts
similarity index 100%
rename from src/storybook/formError.ts
rename to .storybook/helpers/formError.ts
diff --git a/.storybook/helpers/index.ts b/.storybook/helpers/index.ts
new file mode 100644
index 000000000..2ae401870
--- /dev/null
+++ b/.storybook/helpers/index.ts
@@ -0,0 +1,2 @@
+export * from "./MockedUserProvider";
+export * from "./formError";
diff --git a/.storybook/main.ts b/.storybook/main.ts
new file mode 100644
index 000000000..9d000ae78
--- /dev/null
+++ b/.storybook/main.ts
@@ -0,0 +1,42 @@
+import { withoutVitePlugins } from "@storybook/builder-vite";
+import type { StorybookConfig } from "@storybook/react-vite";
+import { resolve } from "path";
+import { mergeConfig } from "vite";
+
+const config: StorybookConfig = {
+ stories: ["../src/**/*.stories.@(js|jsx|ts|tsx)"],
+ addons: [
+ "@storybook/addon-links",
+ "@storybook/addon-essentials",
+ "@storybook/addon-interactions",
+ ],
+ framework: {
+ name: "@storybook/react-vite",
+ options: {},
+ },
+ docs: {
+ autodocs: "tag",
+ },
+ features: {
+ storyStoreV7: true,
+ },
+
+ async viteFinal(config) {
+ config.plugins = await withoutVitePlugins(config.plugins, ["vite:html"]);
+
+ return mergeConfig(config, {
+ build: {
+ commonjsOptions: {
+ transformMixedEsModules: true,
+ },
+ },
+ resolve: {
+ alias: {
+ "@material-ui/lab": resolve("./node_modules/@material-ui/lab"),
+ },
+ },
+ });
+ },
+};
+
+export default config;
diff --git a/src/storybook/preview-body.html b/.storybook/preview-body.html
similarity index 62%
rename from src/storybook/preview-body.html
rename to .storybook/preview-body.html
index 8163d5714..4010dccf4 100644
--- a/src/storybook/preview-body.html
+++ b/.storybook/preview-body.html
@@ -1,2 +1,3 @@
+
diff --git a/src/storybook/preview-head.html b/.storybook/preview-head.html
similarity index 58%
rename from src/storybook/preview-head.html
rename to .storybook/preview-head.html
index fd15dd373..4d9e5e6a0 100644
--- a/src/storybook/preview-head.html
+++ b/.storybook/preview-head.html
@@ -2,6 +2,7 @@
window.__SALEOR_CONFIG__ = {
API_URL: "",
APP_MOUNT_URI: "/",
- IS_CLOUD_INSTANCE: "",
+ IS_CLOUD_INSTANCE: false,
};
+ window.process = { cwd: () => "" };
diff --git a/.storybook/preview.tsx b/.storybook/preview.tsx
new file mode 100644
index 000000000..79b53e7a7
--- /dev/null
+++ b/.storybook/preview.tsx
@@ -0,0 +1,25 @@
+import "@saleor/macaw-ui/next/style";
+
+import type { Decorator, Preview } from "@storybook/react";
+import React from "react";
+import { MockedProvidersDecorator } from "./decorators";
+
+export const preview: Preview = {
+ parameters: {
+ actions: { argTypesRegex: "^on[A-Z].*" },
+ controls: {
+ matchers: {
+ color: /(background|color)$/i,
+ date: /Date$/,
+ },
+ },
+ },
+};
+
+export const decorators: Decorator[] = [
+ Story => (
+
+
+
+ ),
+];
diff --git a/assets/images/avatars/avatar1.png b/assets/images/avatars/avatar.png
similarity index 100%
rename from assets/images/avatars/avatar1.png
rename to assets/images/avatars/avatar.png
diff --git a/assets/images/avatars/avatar10.png b/assets/images/avatars/avatar10.png
deleted file mode 100644
index 8f4b8466c..000000000
Binary files a/assets/images/avatars/avatar10.png and /dev/null differ
diff --git a/assets/images/avatars/avatar11.png b/assets/images/avatars/avatar11.png
deleted file mode 100644
index d512fcf7d..000000000
Binary files a/assets/images/avatars/avatar11.png and /dev/null differ
diff --git a/assets/images/avatars/avatar12.png b/assets/images/avatars/avatar12.png
deleted file mode 100644
index c3b169997..000000000
Binary files a/assets/images/avatars/avatar12.png and /dev/null differ
diff --git a/assets/images/avatars/avatar2.png b/assets/images/avatars/avatar2.png
deleted file mode 100644
index 8a09b3b7b..000000000
Binary files a/assets/images/avatars/avatar2.png and /dev/null differ
diff --git a/assets/images/avatars/avatar3.png b/assets/images/avatars/avatar3.png
deleted file mode 100644
index 5c87d41fb..000000000
Binary files a/assets/images/avatars/avatar3.png and /dev/null differ
diff --git a/assets/images/avatars/avatar4.png b/assets/images/avatars/avatar4.png
deleted file mode 100644
index 54754d934..000000000
Binary files a/assets/images/avatars/avatar4.png and /dev/null differ
diff --git a/assets/images/avatars/avatar5.png b/assets/images/avatars/avatar5.png
deleted file mode 100644
index a5a36542d..000000000
Binary files a/assets/images/avatars/avatar5.png and /dev/null differ
diff --git a/assets/images/avatars/avatar6.png b/assets/images/avatars/avatar6.png
deleted file mode 100644
index b56f56bf2..000000000
Binary files a/assets/images/avatars/avatar6.png and /dev/null differ
diff --git a/assets/images/avatars/avatar7.png b/assets/images/avatars/avatar7.png
deleted file mode 100644
index 17ecedc77..000000000
Binary files a/assets/images/avatars/avatar7.png and /dev/null differ
diff --git a/assets/images/avatars/avatar8.png b/assets/images/avatars/avatar8.png
deleted file mode 100644
index e6cc141bf..000000000
Binary files a/assets/images/avatars/avatar8.png and /dev/null differ
diff --git a/assets/images/avatars/avatar9.png b/assets/images/avatars/avatar9.png
deleted file mode 100644
index e4cde6c4e..000000000
Binary files a/assets/images/avatars/avatar9.png and /dev/null differ
diff --git a/package-lock.json b/package-lock.json
index b52b24c91..fd428687b 100644
--- a/package-lock.json
+++ b/package-lock.json
@@ -143,6 +143,7 @@
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^27.5.1",
"babel-loader": "^8.0.6",
+ "babel-plugin-macros": "^3.1.0",
"ci-info": "^3.7.0",
"codecov": "^3.7.1",
"core-js": "^3.7.0",
@@ -152,7 +153,6 @@
"dotenv": "^10.0.0",
"env-var": "^7.3.0",
"esbuild-loader": "^2.18.0",
- "fork-ts-checker-webpack-plugin": "^3.1.1",
"graphql-request": "^3.7.0",
"identity-obj-proxy": "^3.0.0",
"is-ci": "^3.0.1",
@@ -164,7 +164,6 @@
"rimraf": "^3.0.0",
"rollup-plugin-polyfill-node": "^0.11.0",
"start-server-and-test": "^1.11.0",
- "tsconfig-paths-webpack-plugin": "^3.2.0",
"typescript": "^5.0.2",
"vite": "^3.2.4",
"vite-plugin-html": "^3.2.0",
@@ -181,7 +180,11 @@
"npm": ">=7"
},
"optionalDependencies": {
- "@storybook/react": "^5.1.9",
+ "@storybook/addon-essentials": "^7.0.8",
+ "@storybook/addon-interactions": "^7.0.8",
+ "@storybook/addon-links": "^7.0.8",
+ "@storybook/react": "^7.0.8",
+ "@storybook/react-vite": "^7.0.8",
"@swc/core-darwin-arm64": "1.3.40",
"@swc/core-darwin-x64": "1.3.40",
"@swc/core-linux-arm-gnueabihf": "1.3.40",
@@ -198,7 +201,7 @@
"@testing-library/user-event": "^14.4.3",
"@types/jest": "^26.0.14",
"@types/setup-polly-jest": "^0.5.0",
- "@types/storybook__react": "^4.0.2",
+ "chromatic": "^6.17.4",
"cypress": "^12.4.0",
"cypress-file-upload": "^5.0.8",
"cypress-mailhog": "^1.3.0",
@@ -231,6 +234,7 @@
"mochawesome-report-generator": "^6.0.1",
"prettier": "^2.8.4",
"setup-polly-jest": "^0.9.1",
+ "storybook": "^7.0.8",
"ts-jest": "^27.1.5"
}
},
@@ -239,6 +243,19 @@
"license": "MIT",
"optional": true
},
+ "node_modules/@ampproject/remapping": {
+ "version": "2.2.1",
+ "resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.2.1.tgz",
+ "integrity": "sha512-lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg==",
+ "devOptional": true,
+ "dependencies": {
+ "@jridgewell/gen-mapping": "^0.3.0",
+ "@jridgewell/trace-mapping": "^0.3.9"
+ },
+ "engines": {
+ "node": ">=6.0.0"
+ }
+ },
"node_modules/@apideck/better-ajv-errors": {
"version": "0.3.6",
"dev": true,
@@ -294,11 +311,32 @@
"node": ">=0.10"
}
},
+ "node_modules/@arcanis/slice-ansi": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/@arcanis/slice-ansi/-/slice-ansi-1.1.1.tgz",
+ "integrity": "sha512-xguP2WR2Dv0gQ7Ykbdb7BNCnPnIPB94uTi0Z2NvkRBEnhbwjOQ7QyQKJXrVQg4qDpiD9hA5l5cCwy/z2OXgc3w==",
+ "optional": true,
+ "dependencies": {
+ "grapheme-splitter": "^1.0.4"
+ }
+ },
"node_modules/@ardatan/fetch-event-source": {
"version": "2.0.2",
"dev": true,
"license": "MIT"
},
+ "node_modules/@aw-web-design/x-default-browser": {
+ "version": "1.4.88",
+ "resolved": "https://registry.npmjs.org/@aw-web-design/x-default-browser/-/x-default-browser-1.4.88.tgz",
+ "integrity": "sha512-AkEmF0wcwYC2QkhK703Y83fxWARttIWXDmQN8+cof8FmFZ5BRhnNXGymeb1S73bOCLfWjYELxtujL56idCN/XA==",
+ "optional": true,
+ "dependencies": {
+ "default-browser-id": "3.0.0"
+ },
+ "bin": {
+ "x-default-browser": "bin/x-default-browser.js"
+ }
+ },
"node_modules/@babel/cli": {
"version": "7.17.6",
"dev": true,
@@ -337,37 +375,46 @@
}
},
"node_modules/@babel/code-frame": {
- "version": "7.12.13",
- "license": "MIT",
+ "version": "7.21.4",
+ "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.21.4.tgz",
+ "integrity": "sha512-LYvhNKfwWSPpocw8GI7gpK2nq3HSDuEPC/uSYaALSJu9xjsalaaYFOq0Pwt5KmVqwEbZlDu81aLXwBOmD/Fv9g==",
"dependencies": {
- "@babel/highlight": "^7.12.13"
+ "@babel/highlight": "^7.18.6"
+ },
+ "engines": {
+ "node": ">=6.9.0"
}
},
"node_modules/@babel/compat-data": {
- "version": "7.13.12",
+ "version": "7.21.7",
+ "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.21.7.tgz",
+ "integrity": "sha512-KYMqFYTaenzMK4yUtf4EW9wc4N9ef80FsbMtkwool5zpwl4YrT1SdWYSTRcT94KO4hannogdS+LxY7L+arP3gA==",
"devOptional": true,
- "license": "MIT"
+ "engines": {
+ "node": ">=6.9.0"
+ }
},
"node_modules/@babel/core": {
- "version": "7.13.14",
+ "version": "7.21.8",
+ "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.21.8.tgz",
+ "integrity": "sha512-YeM22Sondbo523Sz0+CirSPnbj9bG3P0CdHcBZdqUuaeOaYEFbOLoGU7lebvGP6P5J/WE9wOn7u7C4J9HvS1xQ==",
"devOptional": true,
- "license": "MIT",
"dependencies": {
- "@babel/code-frame": "^7.12.13",
- "@babel/generator": "^7.13.9",
- "@babel/helper-compilation-targets": "^7.13.13",
- "@babel/helper-module-transforms": "^7.13.14",
- "@babel/helpers": "^7.13.10",
- "@babel/parser": "^7.13.13",
- "@babel/template": "^7.12.13",
- "@babel/traverse": "^7.13.13",
- "@babel/types": "^7.13.14",
+ "@ampproject/remapping": "^2.2.0",
+ "@babel/code-frame": "^7.21.4",
+ "@babel/generator": "^7.21.5",
+ "@babel/helper-compilation-targets": "^7.21.5",
+ "@babel/helper-module-transforms": "^7.21.5",
+ "@babel/helpers": "^7.21.5",
+ "@babel/parser": "^7.21.8",
+ "@babel/template": "^7.20.7",
+ "@babel/traverse": "^7.21.5",
+ "@babel/types": "^7.21.5",
"convert-source-map": "^1.7.0",
"debug": "^4.1.0",
"gensync": "^1.0.0-beta.2",
- "json5": "^2.1.2",
- "semver": "^6.3.0",
- "source-map": "^0.5.0"
+ "json5": "^2.2.2",
+ "semver": "^6.3.0"
},
"engines": {
"node": ">=6.9.0"
@@ -377,16 +424,6 @@
"url": "https://opencollective.com/babel"
}
},
- "node_modules/@babel/core/node_modules/@babel/generator": {
- "version": "7.13.9",
- "devOptional": true,
- "license": "MIT",
- "dependencies": {
- "@babel/types": "^7.13.0",
- "jsesc": "^2.5.1",
- "source-map": "^0.5.0"
- }
- },
"node_modules/@babel/core/node_modules/semver": {
"version": "6.3.0",
"devOptional": true,
@@ -396,46 +433,72 @@
}
},
"node_modules/@babel/generator": {
- "version": "7.12.11",
+ "version": "7.21.5",
+ "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.21.5.tgz",
+ "integrity": "sha512-SrKK/sRv8GesIW1bDagf9cCG38IOMYZusoe1dfg0D8aiUe3Amvoj1QtjTPAWcfrZFvIwlleLb0gxzQidL9w14w==",
"devOptional": true,
- "license": "MIT",
"dependencies": {
- "@babel/types": "^7.12.11",
- "jsesc": "^2.5.1",
- "source-map": "^0.5.0"
+ "@babel/types": "^7.21.5",
+ "@jridgewell/gen-mapping": "^0.3.2",
+ "@jridgewell/trace-mapping": "^0.3.17",
+ "jsesc": "^2.5.1"
+ },
+ "engines": {
+ "node": ">=6.9.0"
}
},
"node_modules/@babel/helper-annotate-as-pure": {
- "version": "7.12.13",
+ "version": "7.18.6",
+ "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.18.6.tgz",
+ "integrity": "sha512-duORpUiYrEpzKIop6iNbjnwKLAKnJ47csTyRACyEmWj0QdUrm5aqNJGHSSEQSUAvNW0ojX0dOmK9dZduvkfeXA==",
"devOptional": true,
- "license": "MIT",
"dependencies": {
- "@babel/types": "^7.12.13"
+ "@babel/types": "^7.18.6"
+ },
+ "engines": {
+ "node": ">=6.9.0"
}
},
"node_modules/@babel/helper-builder-binary-assignment-operator-visitor": {
- "version": "7.12.13",
+ "version": "7.21.5",
+ "resolved": "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.21.5.tgz",
+ "integrity": "sha512-uNrjKztPLkUk7bpCNC0jEKDJzzkvel/W+HguzbN8krA+LPfC1CEobJEvAvGka2A/M+ViOqXdcRL0GqPUJSjx9g==",
"devOptional": true,
- "license": "MIT",
"dependencies": {
- "@babel/helper-explode-assignable-expression": "^7.12.13",
- "@babel/types": "^7.12.13"
+ "@babel/types": "^7.21.5"
+ },
+ "engines": {
+ "node": ">=6.9.0"
}
},
"node_modules/@babel/helper-compilation-targets": {
- "version": "7.13.13",
+ "version": "7.21.5",
+ "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.21.5.tgz",
+ "integrity": "sha512-1RkbFGUKex4lvsB9yhIfWltJM5cZKUftB2eNajaDv3dCMEp49iBG0K14uH8NnX9IPux2+mK7JGEOB0jn48/J6w==",
"devOptional": true,
- "license": "MIT",
"dependencies": {
- "@babel/compat-data": "^7.13.12",
- "@babel/helper-validator-option": "^7.12.17",
- "browserslist": "^4.14.5",
+ "@babel/compat-data": "^7.21.5",
+ "@babel/helper-validator-option": "^7.21.0",
+ "browserslist": "^4.21.3",
+ "lru-cache": "^5.1.1",
"semver": "^6.3.0"
},
+ "engines": {
+ "node": ">=6.9.0"
+ },
"peerDependencies": {
"@babel/core": "^7.0.0"
}
},
+ "node_modules/@babel/helper-compilation-targets/node_modules/lru-cache": {
+ "version": "5.1.1",
+ "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz",
+ "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==",
+ "devOptional": true,
+ "dependencies": {
+ "yallist": "^3.0.2"
+ }
+ },
"node_modules/@babel/helper-compilation-targets/node_modules/semver": {
"version": "6.3.0",
"devOptional": true,
@@ -444,42 +507,78 @@
"semver": "bin/semver.js"
}
},
+ "node_modules/@babel/helper-compilation-targets/node_modules/yallist": {
+ "version": "3.1.1",
+ "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz",
+ "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==",
+ "devOptional": true
+ },
"node_modules/@babel/helper-create-class-features-plugin": {
- "version": "7.13.11",
+ "version": "7.21.8",
+ "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.21.8.tgz",
+ "integrity": "sha512-+THiN8MqiH2AczyuZrnrKL6cAxFRRQDKW9h1YkBvbgKmAm6mwiacig1qT73DHIWMGo40GRnsEfN3LA+E6NtmSw==",
"devOptional": true,
- "license": "MIT",
"dependencies": {
- "@babel/helper-function-name": "^7.12.13",
- "@babel/helper-member-expression-to-functions": "^7.13.0",
- "@babel/helper-optimise-call-expression": "^7.12.13",
- "@babel/helper-replace-supers": "^7.13.0",
- "@babel/helper-split-export-declaration": "^7.12.13"
+ "@babel/helper-annotate-as-pure": "^7.18.6",
+ "@babel/helper-environment-visitor": "^7.21.5",
+ "@babel/helper-function-name": "^7.21.0",
+ "@babel/helper-member-expression-to-functions": "^7.21.5",
+ "@babel/helper-optimise-call-expression": "^7.18.6",
+ "@babel/helper-replace-supers": "^7.21.5",
+ "@babel/helper-skip-transparent-expression-wrappers": "^7.20.0",
+ "@babel/helper-split-export-declaration": "^7.18.6",
+ "semver": "^6.3.0"
+ },
+ "engines": {
+ "node": ">=6.9.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0"
}
},
+ "node_modules/@babel/helper-create-class-features-plugin/node_modules/semver": {
+ "version": "6.3.0",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz",
+ "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==",
+ "devOptional": true,
+ "bin": {
+ "semver": "bin/semver.js"
+ }
+ },
"node_modules/@babel/helper-create-regexp-features-plugin": {
- "version": "7.12.17",
+ "version": "7.21.8",
+ "resolved": "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.21.8.tgz",
+ "integrity": "sha512-zGuSdedkFtsFHGbexAvNuipg1hbtitDLo2XE8/uf6Y9sOQV1xsYX/2pNbtedp/X0eU1pIt+kGvaqHCowkRbS5g==",
"devOptional": true,
- "license": "MIT",
"dependencies": {
- "@babel/helper-annotate-as-pure": "^7.12.13",
- "regexpu-core": "^4.7.1"
+ "@babel/helper-annotate-as-pure": "^7.18.6",
+ "regexpu-core": "^5.3.1",
+ "semver": "^6.3.0"
+ },
+ "engines": {
+ "node": ">=6.9.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0"
}
},
- "node_modules/@babel/helper-define-polyfill-provider": {
- "version": "0.1.5",
+ "node_modules/@babel/helper-create-regexp-features-plugin/node_modules/semver": {
+ "version": "6.3.0",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz",
+ "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==",
+ "devOptional": true,
+ "bin": {
+ "semver": "bin/semver.js"
+ }
+ },
+ "node_modules/@babel/helper-define-polyfill-provider": {
+ "version": "0.3.3",
+ "resolved": "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.3.3.tgz",
+ "integrity": "sha512-z5aQKU4IzbqCC1XH0nAqfsFLMVSo22SBKUc0BxGrLkolTdPTructy0ToNnlO2zA4j9Q/7pjMZf0DSY+DSTYzww==",
"devOptional": true,
- "license": "MIT",
"dependencies": {
- "@babel/helper-compilation-targets": "^7.13.0",
- "@babel/helper-module-imports": "^7.12.13",
- "@babel/helper-plugin-utils": "^7.13.0",
- "@babel/traverse": "^7.13.0",
+ "@babel/helper-compilation-targets": "^7.17.7",
+ "@babel/helper-plugin-utils": "^7.16.7",
"debug": "^4.1.1",
"lodash.debounce": "^4.0.8",
"resolve": "^1.14.2",
@@ -491,70 +590,40 @@
},
"node_modules/@babel/helper-define-polyfill-provider/node_modules/semver": {
"version": "6.3.0",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz",
+ "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==",
"devOptional": true,
- "license": "ISC",
"bin": {
"semver": "bin/semver.js"
}
},
"node_modules/@babel/helper-environment-visitor": {
- "version": "7.16.7",
- "dev": true,
- "license": "MIT",
+ "version": "7.21.5",
+ "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.21.5.tgz",
+ "integrity": "sha512-IYl4gZ3ETsWocUWgsFZLM5i1BYx9SoemminVEXadgLBa9TdeorzgLKm8wWLA6J1N/kT3Kch8XIk1laNzYoHKvQ==",
+ "devOptional": true,
+ "engines": {
+ "node": ">=6.9.0"
+ }
+ },
+ "node_modules/@babel/helper-function-name": {
+ "version": "7.21.0",
+ "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.21.0.tgz",
+ "integrity": "sha512-HfK1aMRanKHpxemaY2gqBmL04iAPOPRj7DxtNbiDOrJK+gdwkiNRVpCpUJYbUT+aZyemKN8brqTOxzCaG6ExRg==",
+ "devOptional": true,
"dependencies": {
- "@babel/types": "^7.16.7"
+ "@babel/template": "^7.20.7",
+ "@babel/types": "^7.21.0"
},
"engines": {
"node": ">=6.9.0"
}
},
- "node_modules/@babel/helper-explode-assignable-expression": {
- "version": "7.13.0",
- "devOptional": true,
- "license": "MIT",
- "dependencies": {
- "@babel/types": "^7.13.0"
- }
- },
- "node_modules/@babel/helper-function-name": {
- "version": "7.12.13",
- "devOptional": true,
- "license": "MIT",
- "dependencies": {
- "@babel/helper-get-function-arity": "^7.12.13",
- "@babel/template": "^7.12.13",
- "@babel/types": "^7.12.13"
- }
- },
- "node_modules/@babel/helper-get-function-arity": {
- "version": "7.12.13",
- "devOptional": true,
- "license": "MIT",
- "dependencies": {
- "@babel/types": "^7.12.13"
- }
- },
"node_modules/@babel/helper-hoist-variables": {
- "version": "7.13.0",
- "devOptional": true,
- "license": "MIT",
- "dependencies": {
- "@babel/traverse": "^7.13.0",
- "@babel/types": "^7.13.0"
- }
- },
- "node_modules/@babel/helper-member-expression-to-functions": {
- "version": "7.13.12",
- "devOptional": true,
- "license": "MIT",
- "dependencies": {
- "@babel/types": "^7.13.12"
- }
- },
- "node_modules/@babel/helper-module-imports": {
"version": "7.18.6",
- "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.18.6.tgz",
- "integrity": "sha512-0NFvs3VkuSYbFi1x2Vd6tKrywq+z/cLeYC/RJNFrIX/30Bf5aiGYbtvGXolEktzJH8o5E5KJ3tT+nkxuuZFVlA==",
+ "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.18.6.tgz",
+ "integrity": "sha512-UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q==",
+ "devOptional": true,
"dependencies": {
"@babel/types": "^7.18.6"
},
@@ -562,83 +631,144 @@
"node": ">=6.9.0"
}
},
- "node_modules/@babel/helper-module-transforms": {
- "version": "7.13.14",
+ "node_modules/@babel/helper-member-expression-to-functions": {
+ "version": "7.21.5",
+ "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.21.5.tgz",
+ "integrity": "sha512-nIcGfgwpH2u4n9GG1HpStW5Ogx7x7ekiFHbjjFRKXbn5zUvqO9ZgotCO4x1aNbKn/x/xOUaXEhyNHCwtFCpxWg==",
"devOptional": true,
- "license": "MIT",
"dependencies": {
- "@babel/helper-module-imports": "^7.13.12",
- "@babel/helper-replace-supers": "^7.13.12",
- "@babel/helper-simple-access": "^7.13.12",
- "@babel/helper-split-export-declaration": "^7.12.13",
- "@babel/helper-validator-identifier": "^7.12.11",
- "@babel/template": "^7.12.13",
- "@babel/traverse": "^7.13.13",
- "@babel/types": "^7.13.14"
+ "@babel/types": "^7.21.5"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ }
+ },
+ "node_modules/@babel/helper-module-imports": {
+ "version": "7.21.4",
+ "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.21.4.tgz",
+ "integrity": "sha512-orajc5T2PsRYUN3ZryCEFeMDYwyw09c/pZeaQEZPH0MpKzSvn3e0uXsDBu3k03VI+9DBiRo+l22BfKTpKwa/Wg==",
+ "dependencies": {
+ "@babel/types": "^7.21.4"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ }
+ },
+ "node_modules/@babel/helper-module-transforms": {
+ "version": "7.21.5",
+ "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.21.5.tgz",
+ "integrity": "sha512-bI2Z9zBGY2q5yMHoBvJ2a9iX3ZOAzJPm7Q8Yz6YeoUjU/Cvhmi2G4QyTNyPBqqXSgTjUxRg3L0xV45HvkNWWBw==",
+ "devOptional": true,
+ "dependencies": {
+ "@babel/helper-environment-visitor": "^7.21.5",
+ "@babel/helper-module-imports": "^7.21.4",
+ "@babel/helper-simple-access": "^7.21.5",
+ "@babel/helper-split-export-declaration": "^7.18.6",
+ "@babel/helper-validator-identifier": "^7.19.1",
+ "@babel/template": "^7.20.7",
+ "@babel/traverse": "^7.21.5",
+ "@babel/types": "^7.21.5"
+ },
+ "engines": {
+ "node": ">=6.9.0"
}
},
"node_modules/@babel/helper-optimise-call-expression": {
- "version": "7.12.13",
+ "version": "7.18.6",
+ "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.18.6.tgz",
+ "integrity": "sha512-HP59oD9/fEHQkdcbgFCnbmgH5vIQTJbxh2yf+CdM89/glUNnuzr87Q8GIjGEnOktTROemO0Pe0iPAYbqZuOUiA==",
"devOptional": true,
- "license": "MIT",
"dependencies": {
- "@babel/types": "^7.12.13"
+ "@babel/types": "^7.18.6"
+ },
+ "engines": {
+ "node": ">=6.9.0"
}
},
"node_modules/@babel/helper-plugin-utils": {
- "version": "7.13.0",
+ "version": "7.21.5",
+ "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.21.5.tgz",
+ "integrity": "sha512-0WDaIlXKOX/3KfBK/dwP1oQGiPh6rjMkT7HIRv7i5RR2VUMwrx5ZL0dwBkKx7+SW1zwNdgjHd34IMk5ZjTeHVg==",
"devOptional": true,
- "license": "MIT"
+ "engines": {
+ "node": ">=6.9.0"
+ }
},
"node_modules/@babel/helper-remap-async-to-generator": {
- "version": "7.13.0",
+ "version": "7.18.9",
+ "resolved": "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.18.9.tgz",
+ "integrity": "sha512-dI7q50YKd8BAv3VEfgg7PS7yD3Rtbi2J1XMXaalXO0W0164hYLnh8zpjRS0mte9MfVp/tltvr/cfdXPvJr1opA==",
"devOptional": true,
- "license": "MIT",
"dependencies": {
- "@babel/helper-annotate-as-pure": "^7.12.13",
- "@babel/helper-wrap-function": "^7.13.0",
- "@babel/types": "^7.13.0"
+ "@babel/helper-annotate-as-pure": "^7.18.6",
+ "@babel/helper-environment-visitor": "^7.18.9",
+ "@babel/helper-wrap-function": "^7.18.9",
+ "@babel/types": "^7.18.9"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0"
}
},
"node_modules/@babel/helper-replace-supers": {
- "version": "7.13.12",
+ "version": "7.21.5",
+ "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.21.5.tgz",
+ "integrity": "sha512-/y7vBgsr9Idu4M6MprbOVUfH3vs7tsIfnVWv/Ml2xgwvyH6LTngdfbf5AdsKwkJy4zgy1X/kuNrEKvhhK28Yrg==",
"devOptional": true,
- "license": "MIT",
"dependencies": {
- "@babel/helper-member-expression-to-functions": "^7.13.12",
- "@babel/helper-optimise-call-expression": "^7.12.13",
- "@babel/traverse": "^7.13.0",
- "@babel/types": "^7.13.12"
+ "@babel/helper-environment-visitor": "^7.21.5",
+ "@babel/helper-member-expression-to-functions": "^7.21.5",
+ "@babel/helper-optimise-call-expression": "^7.18.6",
+ "@babel/template": "^7.20.7",
+ "@babel/traverse": "^7.21.5",
+ "@babel/types": "^7.21.5"
+ },
+ "engines": {
+ "node": ">=6.9.0"
}
},
"node_modules/@babel/helper-simple-access": {
- "version": "7.13.12",
+ "version": "7.21.5",
+ "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.21.5.tgz",
+ "integrity": "sha512-ENPDAMC1wAjR0uaCUwliBdiSl1KBJAVnMTzXqi64c2MG8MPR6ii4qf7bSXDqSFbr4W6W028/rf5ivoHop5/mkg==",
"devOptional": true,
- "license": "MIT",
"dependencies": {
- "@babel/types": "^7.13.12"
+ "@babel/types": "^7.21.5"
+ },
+ "engines": {
+ "node": ">=6.9.0"
}
},
"node_modules/@babel/helper-skip-transparent-expression-wrappers": {
- "version": "7.12.1",
+ "version": "7.20.0",
+ "resolved": "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.20.0.tgz",
+ "integrity": "sha512-5y1JYeNKfvnT8sZcK9DVRtpTbGiomYIHviSP3OQWmDPU3DeH4a1ZlT/N2lyQ5P8egjcRaT/Y9aNqUxK0WsnIIg==",
"devOptional": true,
- "license": "MIT",
"dependencies": {
- "@babel/types": "^7.12.1"
+ "@babel/types": "^7.20.0"
+ },
+ "engines": {
+ "node": ">=6.9.0"
}
},
"node_modules/@babel/helper-split-export-declaration": {
- "version": "7.12.13",
+ "version": "7.18.6",
+ "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.18.6.tgz",
+ "integrity": "sha512-bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA==",
"devOptional": true,
- "license": "MIT",
"dependencies": {
- "@babel/types": "^7.12.13"
+ "@babel/types": "^7.18.6"
+ },
+ "engines": {
+ "node": ">=6.9.0"
}
},
"node_modules/@babel/helper-string-parser": {
- "version": "7.19.4",
- "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.19.4.tgz",
- "integrity": "sha512-nHtDoQcuqFmwYNYPz3Rah5ph2p8PFeFCsZk9A/48dPc/rGocJ5J3hAAZ7pb76VWX3fZKu+uEr/FhH5jLx7umrw==",
+ "version": "7.21.5",
+ "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.21.5.tgz",
+ "integrity": "sha512-5pTUx3hAJaZIdW99sJ6ZUUgWq/Y+Hja7TowEnLNMm1VivRgZQL3vpBY3qUACVsvw+yQU6+YgfBVmcbLaZtrA1w==",
"engines": {
"node": ">=6.9.0"
}
@@ -652,43 +782,60 @@
}
},
"node_modules/@babel/helper-validator-option": {
- "version": "7.12.17",
+ "version": "7.21.0",
+ "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.21.0.tgz",
+ "integrity": "sha512-rmL/B8/f0mKS2baE9ZpyTcTavvEuWhTTW8amjzXNvYG4AwBsqTLikfXsEofsJEfKHf+HQVQbFOHy6o+4cnC/fQ==",
"devOptional": true,
- "license": "MIT"
+ "engines": {
+ "node": ">=6.9.0"
+ }
},
"node_modules/@babel/helper-wrap-function": {
- "version": "7.13.0",
+ "version": "7.20.5",
+ "resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.20.5.tgz",
+ "integrity": "sha512-bYMxIWK5mh+TgXGVqAtnu5Yn1un+v8DDZtqyzKRLUzrh70Eal2O3aZ7aPYiMADO4uKlkzOiRiZ6GX5q3qxvW9Q==",
"devOptional": true,
- "license": "MIT",
"dependencies": {
- "@babel/helper-function-name": "^7.12.13",
- "@babel/template": "^7.12.13",
- "@babel/traverse": "^7.13.0",
- "@babel/types": "^7.13.0"
+ "@babel/helper-function-name": "^7.19.0",
+ "@babel/template": "^7.18.10",
+ "@babel/traverse": "^7.20.5",
+ "@babel/types": "^7.20.5"
+ },
+ "engines": {
+ "node": ">=6.9.0"
}
},
"node_modules/@babel/helpers": {
- "version": "7.13.10",
+ "version": "7.21.5",
+ "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.21.5.tgz",
+ "integrity": "sha512-BSY+JSlHxOmGsPTydUkPf1MdMQ3M81x5xGCOVgWM3G8XH77sJ292Y2oqcp0CbbgxhqBuI46iUz1tT7hqP7EfgA==",
"devOptional": true,
- "license": "MIT",
"dependencies": {
- "@babel/template": "^7.12.13",
- "@babel/traverse": "^7.13.0",
- "@babel/types": "^7.13.0"
+ "@babel/template": "^7.20.7",
+ "@babel/traverse": "^7.21.5",
+ "@babel/types": "^7.21.5"
+ },
+ "engines": {
+ "node": ">=6.9.0"
}
},
"node_modules/@babel/highlight": {
- "version": "7.13.10",
- "license": "MIT",
+ "version": "7.18.6",
+ "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.18.6.tgz",
+ "integrity": "sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g==",
"dependencies": {
- "@babel/helper-validator-identifier": "^7.12.11",
+ "@babel/helper-validator-identifier": "^7.18.6",
"chalk": "^2.0.0",
"js-tokens": "^4.0.0"
+ },
+ "engines": {
+ "node": ">=6.9.0"
}
},
"node_modules/@babel/parser": {
- "version": "7.20.5",
- "license": "MIT",
+ "version": "7.21.8",
+ "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.21.8.tgz",
+ "integrity": "sha512-6zavDGdzG3gUqAdWvlLFfk+36RilI+Pwyuuh7HItyeScCWP3k6i8vKclAQ0bM/0y/Kz/xiwvxhMv9MgTJP5gmA==",
"bin": {
"parser": "bin/babel-parser.js"
},
@@ -696,44 +843,89 @@
"node": ">=6.0.0"
}
},
- "node_modules/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": {
- "version": "7.13.12",
+ "node_modules/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": {
+ "version": "7.18.6",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.18.6.tgz",
+ "integrity": "sha512-Dgxsyg54Fx1d4Nge8UnvTrED63vrwOdPmyvPzlNN/boaliRP54pm3pGzZD1SJUwrBA+Cs/xdG8kXX6Mn/RfISQ==",
"devOptional": true,
- "license": "MIT",
"dependencies": {
- "@babel/helper-plugin-utils": "^7.13.0",
- "@babel/helper-skip-transparent-expression-wrappers": "^7.12.1",
- "@babel/plugin-proposal-optional-chaining": "^7.13.12"
+ "@babel/helper-plugin-utils": "^7.18.6"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0"
+ }
+ },
+ "node_modules/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": {
+ "version": "7.20.7",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.20.7.tgz",
+ "integrity": "sha512-sbr9+wNE5aXMBBFBICk01tt7sBf2Oc9ikRFEcem/ZORup9IMUdNhW7/wVLEbbtlWOsEubJet46mHAL2C8+2jKQ==",
+ "devOptional": true,
+ "dependencies": {
+ "@babel/helper-plugin-utils": "^7.20.2",
+ "@babel/helper-skip-transparent-expression-wrappers": "^7.20.0",
+ "@babel/plugin-proposal-optional-chaining": "^7.20.7"
+ },
+ "engines": {
+ "node": ">=6.9.0"
},
"peerDependencies": {
"@babel/core": "^7.13.0"
}
},
"node_modules/@babel/plugin-proposal-async-generator-functions": {
- "version": "7.13.8",
+ "version": "7.20.7",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.20.7.tgz",
+ "integrity": "sha512-xMbiLsn/8RK7Wq7VeVytytS2L6qE69bXPB10YCmMdDZbKF4okCqY74pI/jJQ/8U0b/F6NrT2+14b8/P9/3AMGA==",
"devOptional": true,
- "license": "MIT",
"dependencies": {
- "@babel/helper-plugin-utils": "^7.13.0",
- "@babel/helper-remap-async-to-generator": "^7.13.0",
+ "@babel/helper-environment-visitor": "^7.18.9",
+ "@babel/helper-plugin-utils": "^7.20.2",
+ "@babel/helper-remap-async-to-generator": "^7.18.9",
"@babel/plugin-syntax-async-generators": "^7.8.4"
},
+ "engines": {
+ "node": ">=6.9.0"
+ },
"peerDependencies": {
"@babel/core": "^7.0.0-0"
}
},
"node_modules/@babel/plugin-proposal-class-properties": {
- "version": "7.13.0",
+ "version": "7.18.6",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.18.6.tgz",
+ "integrity": "sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==",
"devOptional": true,
- "license": "MIT",
"dependencies": {
- "@babel/helper-create-class-features-plugin": "^7.13.0",
- "@babel/helper-plugin-utils": "^7.13.0"
+ "@babel/helper-create-class-features-plugin": "^7.18.6",
+ "@babel/helper-plugin-utils": "^7.18.6"
+ },
+ "engines": {
+ "node": ">=6.9.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
}
},
+ "node_modules/@babel/plugin-proposal-class-static-block": {
+ "version": "7.21.0",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-class-static-block/-/plugin-proposal-class-static-block-7.21.0.tgz",
+ "integrity": "sha512-XP5G9MWNUskFuP30IfFSEFB0Z6HzLIUcjYM4bYOPHXl7eiJ9HFv8tWj6TXTN5QODiEhDZAeI4hLok2iHFFV4hw==",
+ "devOptional": true,
+ "dependencies": {
+ "@babel/helper-create-class-features-plugin": "^7.21.0",
+ "@babel/helper-plugin-utils": "^7.20.2",
+ "@babel/plugin-syntax-class-static-block": "^7.14.5"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.12.0"
+ }
+ },
"node_modules/@babel/plugin-proposal-decorators": {
"version": "7.17.9",
"dev": true,
@@ -753,317 +945,196 @@
"@babel/core": "^7.0.0-0"
}
},
- "node_modules/@babel/plugin-proposal-decorators/node_modules/@babel/code-frame": {
- "version": "7.16.7",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/highlight": "^7.16.7"
- },
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/@babel/plugin-proposal-decorators/node_modules/@babel/generator": {
- "version": "7.17.9",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/types": "^7.17.0",
- "jsesc": "^2.5.1",
- "source-map": "^0.5.0"
- },
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/@babel/plugin-proposal-decorators/node_modules/@babel/helper-annotate-as-pure": {
- "version": "7.16.7",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/types": "^7.16.7"
- },
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/@babel/plugin-proposal-decorators/node_modules/@babel/helper-create-class-features-plugin": {
- "version": "7.17.9",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/helper-annotate-as-pure": "^7.16.7",
- "@babel/helper-environment-visitor": "^7.16.7",
- "@babel/helper-function-name": "^7.17.9",
- "@babel/helper-member-expression-to-functions": "^7.17.7",
- "@babel/helper-optimise-call-expression": "^7.16.7",
- "@babel/helper-replace-supers": "^7.16.7",
- "@babel/helper-split-export-declaration": "^7.16.7"
- },
- "engines": {
- "node": ">=6.9.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0"
- }
- },
- "node_modules/@babel/plugin-proposal-decorators/node_modules/@babel/helper-function-name": {
- "version": "7.17.9",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/template": "^7.16.7",
- "@babel/types": "^7.17.0"
- },
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/@babel/plugin-proposal-decorators/node_modules/@babel/helper-hoist-variables": {
- "version": "7.16.7",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/types": "^7.16.7"
- },
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/@babel/plugin-proposal-decorators/node_modules/@babel/helper-member-expression-to-functions": {
- "version": "7.17.7",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/types": "^7.17.0"
- },
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/@babel/plugin-proposal-decorators/node_modules/@babel/helper-optimise-call-expression": {
- "version": "7.16.7",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/types": "^7.16.7"
- },
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/@babel/plugin-proposal-decorators/node_modules/@babel/helper-plugin-utils": {
- "version": "7.16.7",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/@babel/plugin-proposal-decorators/node_modules/@babel/helper-replace-supers": {
- "version": "7.16.7",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/helper-environment-visitor": "^7.16.7",
- "@babel/helper-member-expression-to-functions": "^7.16.7",
- "@babel/helper-optimise-call-expression": "^7.16.7",
- "@babel/traverse": "^7.16.7",
- "@babel/types": "^7.16.7"
- },
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/@babel/plugin-proposal-decorators/node_modules/@babel/helper-split-export-declaration": {
- "version": "7.16.7",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/types": "^7.16.7"
- },
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/@babel/plugin-proposal-decorators/node_modules/@babel/highlight": {
- "version": "7.17.9",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/helper-validator-identifier": "^7.16.7",
- "chalk": "^2.0.0",
- "js-tokens": "^4.0.0"
- },
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/@babel/plugin-proposal-decorators/node_modules/@babel/template": {
- "version": "7.16.7",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/code-frame": "^7.16.7",
- "@babel/parser": "^7.16.7",
- "@babel/types": "^7.16.7"
- },
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/@babel/plugin-proposal-decorators/node_modules/@babel/traverse": {
- "version": "7.17.9",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/code-frame": "^7.16.7",
- "@babel/generator": "^7.17.9",
- "@babel/helper-environment-visitor": "^7.16.7",
- "@babel/helper-function-name": "^7.17.9",
- "@babel/helper-hoist-variables": "^7.16.7",
- "@babel/helper-split-export-declaration": "^7.16.7",
- "@babel/parser": "^7.17.9",
- "@babel/types": "^7.17.0",
- "debug": "^4.1.0",
- "globals": "^11.1.0"
- },
- "engines": {
- "node": ">=6.9.0"
- }
- },
"node_modules/@babel/plugin-proposal-dynamic-import": {
- "version": "7.13.8",
+ "version": "7.18.6",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.18.6.tgz",
+ "integrity": "sha512-1auuwmK+Rz13SJj36R+jqFPMJWyKEDd7lLSdOj4oJK0UTgGueSAtkrCvz9ewmgyU/P941Rv2fQwZJN8s6QruXw==",
"devOptional": true,
- "license": "MIT",
"dependencies": {
- "@babel/helper-plugin-utils": "^7.13.0",
+ "@babel/helper-plugin-utils": "^7.18.6",
"@babel/plugin-syntax-dynamic-import": "^7.8.3"
},
+ "engines": {
+ "node": ">=6.9.0"
+ },
"peerDependencies": {
"@babel/core": "^7.0.0-0"
}
},
"node_modules/@babel/plugin-proposal-export-namespace-from": {
- "version": "7.12.13",
+ "version": "7.18.9",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.18.9.tgz",
+ "integrity": "sha512-k1NtHyOMvlDDFeb9G5PhUXuGj8m/wiwojgQVEhJ/fsVsMCpLyOP4h0uGEjYJKrRI+EVPlb5Jk+Gt9P97lOGwtA==",
"devOptional": true,
- "license": "MIT",
"dependencies": {
- "@babel/helper-plugin-utils": "^7.12.13",
+ "@babel/helper-plugin-utils": "^7.18.9",
"@babel/plugin-syntax-export-namespace-from": "^7.8.3"
},
+ "engines": {
+ "node": ">=6.9.0"
+ },
"peerDependencies": {
"@babel/core": "^7.0.0-0"
}
},
"node_modules/@babel/plugin-proposal-json-strings": {
- "version": "7.13.8",
+ "version": "7.18.6",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.18.6.tgz",
+ "integrity": "sha512-lr1peyn9kOdbYc0xr0OdHTZ5FMqS6Di+H0Fz2I/JwMzGmzJETNeOFq2pBySw6X/KFL5EWDjlJuMsUGRFb8fQgQ==",
"devOptional": true,
- "license": "MIT",
"dependencies": {
- "@babel/helper-plugin-utils": "^7.13.0",
+ "@babel/helper-plugin-utils": "^7.18.6",
"@babel/plugin-syntax-json-strings": "^7.8.3"
},
+ "engines": {
+ "node": ">=6.9.0"
+ },
"peerDependencies": {
"@babel/core": "^7.0.0-0"
}
},
"node_modules/@babel/plugin-proposal-logical-assignment-operators": {
- "version": "7.13.8",
+ "version": "7.20.7",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.20.7.tgz",
+ "integrity": "sha512-y7C7cZgpMIjWlKE5T7eJwp+tnRYM89HmRvWM5EQuB5BoHEONjmQ8lSNmBUwOyy/GFRsohJED51YBF79hE1djug==",
"devOptional": true,
- "license": "MIT",
"dependencies": {
- "@babel/helper-plugin-utils": "^7.13.0",
+ "@babel/helper-plugin-utils": "^7.20.2",
"@babel/plugin-syntax-logical-assignment-operators": "^7.10.4"
},
+ "engines": {
+ "node": ">=6.9.0"
+ },
"peerDependencies": {
"@babel/core": "^7.0.0-0"
}
},
"node_modules/@babel/plugin-proposal-nullish-coalescing-operator": {
- "version": "7.13.8",
+ "version": "7.18.6",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.18.6.tgz",
+ "integrity": "sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==",
"devOptional": true,
- "license": "MIT",
"dependencies": {
- "@babel/helper-plugin-utils": "^7.13.0",
+ "@babel/helper-plugin-utils": "^7.18.6",
"@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3"
},
+ "engines": {
+ "node": ">=6.9.0"
+ },
"peerDependencies": {
"@babel/core": "^7.0.0-0"
}
},
"node_modules/@babel/plugin-proposal-numeric-separator": {
- "version": "7.12.13",
+ "version": "7.18.6",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.18.6.tgz",
+ "integrity": "sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q==",
"devOptional": true,
- "license": "MIT",
"dependencies": {
- "@babel/helper-plugin-utils": "^7.12.13",
+ "@babel/helper-plugin-utils": "^7.18.6",
"@babel/plugin-syntax-numeric-separator": "^7.10.4"
},
+ "engines": {
+ "node": ">=6.9.0"
+ },
"peerDependencies": {
"@babel/core": "^7.0.0-0"
}
},
"node_modules/@babel/plugin-proposal-object-rest-spread": {
- "version": "7.13.8",
+ "version": "7.20.7",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.20.7.tgz",
+ "integrity": "sha512-d2S98yCiLxDVmBmE8UjGcfPvNEUbA1U5q5WxaWFUGRzJSVAZqm5W6MbPct0jxnegUZ0niLeNX+IOzEs7wYg9Dg==",
"devOptional": true,
- "license": "MIT",
"dependencies": {
- "@babel/compat-data": "^7.13.8",
- "@babel/helper-compilation-targets": "^7.13.8",
- "@babel/helper-plugin-utils": "^7.13.0",
+ "@babel/compat-data": "^7.20.5",
+ "@babel/helper-compilation-targets": "^7.20.7",
+ "@babel/helper-plugin-utils": "^7.20.2",
"@babel/plugin-syntax-object-rest-spread": "^7.8.3",
- "@babel/plugin-transform-parameters": "^7.13.0"
+ "@babel/plugin-transform-parameters": "^7.20.7"
+ },
+ "engines": {
+ "node": ">=6.9.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
}
},
"node_modules/@babel/plugin-proposal-optional-catch-binding": {
- "version": "7.13.8",
+ "version": "7.18.6",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.18.6.tgz",
+ "integrity": "sha512-Q40HEhs9DJQyaZfUjjn6vE8Cv4GmMHCYuMGIWUnlxH6400VGxOuwWsPt4FxXxJkC/5eOzgn0z21M9gMT4MOhbw==",
"devOptional": true,
- "license": "MIT",
"dependencies": {
- "@babel/helper-plugin-utils": "^7.13.0",
+ "@babel/helper-plugin-utils": "^7.18.6",
"@babel/plugin-syntax-optional-catch-binding": "^7.8.3"
},
+ "engines": {
+ "node": ">=6.9.0"
+ },
"peerDependencies": {
"@babel/core": "^7.0.0-0"
}
},
"node_modules/@babel/plugin-proposal-optional-chaining": {
- "version": "7.13.12",
+ "version": "7.21.0",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.21.0.tgz",
+ "integrity": "sha512-p4zeefM72gpmEe2fkUr/OnOXpWEf8nAgk7ZYVqqfFiyIG7oFfVZcCrU64hWn5xp4tQ9LkV4bTIa5rD0KANpKNA==",
"devOptional": true,
- "license": "MIT",
"dependencies": {
- "@babel/helper-plugin-utils": "^7.13.0",
- "@babel/helper-skip-transparent-expression-wrappers": "^7.12.1",
+ "@babel/helper-plugin-utils": "^7.20.2",
+ "@babel/helper-skip-transparent-expression-wrappers": "^7.20.0",
"@babel/plugin-syntax-optional-chaining": "^7.8.3"
},
+ "engines": {
+ "node": ">=6.9.0"
+ },
"peerDependencies": {
"@babel/core": "^7.0.0-0"
}
},
"node_modules/@babel/plugin-proposal-private-methods": {
- "version": "7.13.0",
+ "version": "7.18.6",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.18.6.tgz",
+ "integrity": "sha512-nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA==",
"devOptional": true,
- "license": "MIT",
"dependencies": {
- "@babel/helper-create-class-features-plugin": "^7.13.0",
- "@babel/helper-plugin-utils": "^7.13.0"
+ "@babel/helper-create-class-features-plugin": "^7.18.6",
+ "@babel/helper-plugin-utils": "^7.18.6"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
+ }
+ },
+ "node_modules/@babel/plugin-proposal-private-property-in-object": {
+ "version": "7.21.0",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.21.0.tgz",
+ "integrity": "sha512-ha4zfehbJjc5MmXBlHec1igel5TJXXLDDRbuJ4+XT2TJcyD9/V1919BA8gMvsdHcNMBy4WBUBiRb3nw/EQUtBw==",
+ "devOptional": true,
+ "dependencies": {
+ "@babel/helper-annotate-as-pure": "^7.18.6",
+ "@babel/helper-create-class-features-plugin": "^7.21.0",
+ "@babel/helper-plugin-utils": "^7.20.2",
+ "@babel/plugin-syntax-private-property-in-object": "^7.14.5"
+ },
+ "engines": {
+ "node": ">=6.9.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
}
},
"node_modules/@babel/plugin-proposal-unicode-property-regex": {
- "version": "7.12.13",
+ "version": "7.18.6",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.18.6.tgz",
+ "integrity": "sha512-2BShG/d5yoZyXZfVePH91urL5wTG6ASZU9M4o03lKK8u8UW1y08OMttBSOADTcJrnPMpvDXRG3G8fyLh4ovs8w==",
"devOptional": true,
- "license": "MIT",
"dependencies": {
- "@babel/helper-create-regexp-features-plugin": "^7.12.13",
- "@babel/helper-plugin-utils": "^7.12.13"
+ "@babel/helper-create-regexp-features-plugin": "^7.18.6",
+ "@babel/helper-plugin-utils": "^7.18.6"
},
"engines": {
"node": ">=4"
@@ -1105,6 +1176,21 @@
"@babel/core": "^7.0.0-0"
}
},
+ "node_modules/@babel/plugin-syntax-class-static-block": {
+ "version": "7.14.5",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-static-block/-/plugin-syntax-class-static-block-7.14.5.tgz",
+ "integrity": "sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==",
+ "devOptional": true,
+ "dependencies": {
+ "@babel/helper-plugin-utils": "^7.14.5"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
+ }
+ },
"node_modules/@babel/plugin-syntax-decorators": {
"version": "7.17.0",
"dev": true,
@@ -1119,18 +1205,11 @@
"@babel/core": "^7.0.0-0"
}
},
- "node_modules/@babel/plugin-syntax-decorators/node_modules/@babel/helper-plugin-utils": {
- "version": "7.16.7",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=6.9.0"
- }
- },
"node_modules/@babel/plugin-syntax-dynamic-import": {
"version": "7.8.3",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz",
+ "integrity": "sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==",
"devOptional": true,
- "license": "MIT",
"dependencies": {
"@babel/helper-plugin-utils": "^7.8.0"
},
@@ -1140,8 +1219,9 @@
},
"node_modules/@babel/plugin-syntax-export-namespace-from": {
"version": "7.8.3",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-export-namespace-from/-/plugin-syntax-export-namespace-from-7.8.3.tgz",
+ "integrity": "sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==",
"devOptional": true,
- "license": "MIT",
"dependencies": {
"@babel/helper-plugin-utils": "^7.8.3"
},
@@ -1160,6 +1240,21 @@
"@babel/core": "^7.0.0-0"
}
},
+ "node_modules/@babel/plugin-syntax-import-assertions": {
+ "version": "7.20.0",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.20.0.tgz",
+ "integrity": "sha512-IUh1vakzNoWalR8ch/areW7qFopR2AEw03JlG7BbrDqmQ4X3q9uuipQwSGrUn7oGiemKjtSLDhNtQHzMHr1JdQ==",
+ "devOptional": true,
+ "dependencies": {
+ "@babel/helper-plugin-utils": "^7.19.0"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
+ }
+ },
"node_modules/@babel/plugin-syntax-import-meta": {
"version": "7.10.4",
"devOptional": true,
@@ -1183,11 +1278,15 @@
}
},
"node_modules/@babel/plugin-syntax-jsx": {
- "version": "7.12.13",
+ "version": "7.21.4",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.21.4.tgz",
+ "integrity": "sha512-5hewiLct5OKyh6PLKEYaFclcqtIgCb6bmELouxjF6up5q3Sov7rOayW4RwhbaBL0dit8rA80GNfY+UuDp2mBbQ==",
"devOptional": true,
- "license": "MIT",
"dependencies": {
- "@babel/helper-plugin-utils": "^7.12.13"
+ "@babel/helper-plugin-utils": "^7.20.2"
+ },
+ "engines": {
+ "node": ">=6.9.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
@@ -1259,12 +1358,31 @@
"@babel/core": "^7.0.0-0"
}
},
- "node_modules/@babel/plugin-syntax-top-level-await": {
- "version": "7.12.13",
+ "node_modules/@babel/plugin-syntax-private-property-in-object": {
+ "version": "7.14.5",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-private-property-in-object/-/plugin-syntax-private-property-in-object-7.14.5.tgz",
+ "integrity": "sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==",
"devOptional": true,
- "license": "MIT",
"dependencies": {
- "@babel/helper-plugin-utils": "^7.12.13"
+ "@babel/helper-plugin-utils": "^7.14.5"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
+ }
+ },
+ "node_modules/@babel/plugin-syntax-top-level-await": {
+ "version": "7.14.5",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz",
+ "integrity": "sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==",
+ "devOptional": true,
+ "dependencies": {
+ "@babel/helper-plugin-utils": "^7.14.5"
+ },
+ "engines": {
+ "node": ">=6.9.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
@@ -1282,120 +1400,163 @@
}
},
"node_modules/@babel/plugin-transform-arrow-functions": {
- "version": "7.13.0",
+ "version": "7.21.5",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.21.5.tgz",
+ "integrity": "sha512-wb1mhwGOCaXHDTcsRYMKF9e5bbMgqwxtqa2Y1ifH96dXJPwbuLX9qHy3clhrxVqgMz7nyNXs8VkxdH8UBcjKqA==",
"devOptional": true,
- "license": "MIT",
"dependencies": {
- "@babel/helper-plugin-utils": "^7.13.0"
+ "@babel/helper-plugin-utils": "^7.21.5"
+ },
+ "engines": {
+ "node": ">=6.9.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
}
},
"node_modules/@babel/plugin-transform-async-to-generator": {
- "version": "7.13.0",
+ "version": "7.20.7",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.20.7.tgz",
+ "integrity": "sha512-Uo5gwHPT9vgnSXQxqGtpdufUiWp96gk7yiP4Mp5bm1QMkEmLXBO7PAGYbKoJ6DhAwiNkcHFBol/x5zZZkL/t0Q==",
"devOptional": true,
- "license": "MIT",
"dependencies": {
- "@babel/helper-module-imports": "^7.12.13",
- "@babel/helper-plugin-utils": "^7.13.0",
- "@babel/helper-remap-async-to-generator": "^7.13.0"
+ "@babel/helper-module-imports": "^7.18.6",
+ "@babel/helper-plugin-utils": "^7.20.2",
+ "@babel/helper-remap-async-to-generator": "^7.18.9"
+ },
+ "engines": {
+ "node": ">=6.9.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
}
},
"node_modules/@babel/plugin-transform-block-scoped-functions": {
- "version": "7.12.13",
+ "version": "7.18.6",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.18.6.tgz",
+ "integrity": "sha512-ExUcOqpPWnliRcPqves5HJcJOvHvIIWfuS4sroBUenPuMdmW+SMHDakmtS7qOo13sVppmUijqeTv7qqGsvURpQ==",
"devOptional": true,
- "license": "MIT",
"dependencies": {
- "@babel/helper-plugin-utils": "^7.12.13"
+ "@babel/helper-plugin-utils": "^7.18.6"
+ },
+ "engines": {
+ "node": ">=6.9.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
}
},
"node_modules/@babel/plugin-transform-block-scoping": {
- "version": "7.12.13",
+ "version": "7.21.0",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.21.0.tgz",
+ "integrity": "sha512-Mdrbunoh9SxwFZapeHVrwFmri16+oYotcZysSzhNIVDwIAb1UV+kvnxULSYq9J3/q5MDG+4X6w8QVgD1zhBXNQ==",
"devOptional": true,
- "license": "MIT",
"dependencies": {
- "@babel/helper-plugin-utils": "^7.12.13"
+ "@babel/helper-plugin-utils": "^7.20.2"
+ },
+ "engines": {
+ "node": ">=6.9.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
}
},
"node_modules/@babel/plugin-transform-classes": {
- "version": "7.13.0",
+ "version": "7.21.0",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.21.0.tgz",
+ "integrity": "sha512-RZhbYTCEUAe6ntPehC4hlslPWosNHDox+vAs4On/mCLRLfoDVHf6hVEd7kuxr1RnHwJmxFfUM3cZiZRmPxJPXQ==",
"devOptional": true,
- "license": "MIT",
"dependencies": {
- "@babel/helper-annotate-as-pure": "^7.12.13",
- "@babel/helper-function-name": "^7.12.13",
- "@babel/helper-optimise-call-expression": "^7.12.13",
- "@babel/helper-plugin-utils": "^7.13.0",
- "@babel/helper-replace-supers": "^7.13.0",
- "@babel/helper-split-export-declaration": "^7.12.13",
+ "@babel/helper-annotate-as-pure": "^7.18.6",
+ "@babel/helper-compilation-targets": "^7.20.7",
+ "@babel/helper-environment-visitor": "^7.18.9",
+ "@babel/helper-function-name": "^7.21.0",
+ "@babel/helper-optimise-call-expression": "^7.18.6",
+ "@babel/helper-plugin-utils": "^7.20.2",
+ "@babel/helper-replace-supers": "^7.20.7",
+ "@babel/helper-split-export-declaration": "^7.18.6",
"globals": "^11.1.0"
},
+ "engines": {
+ "node": ">=6.9.0"
+ },
"peerDependencies": {
"@babel/core": "^7.0.0-0"
}
},
"node_modules/@babel/plugin-transform-computed-properties": {
- "version": "7.13.0",
+ "version": "7.21.5",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.21.5.tgz",
+ "integrity": "sha512-TR653Ki3pAwxBxUe8srfF3e4Pe3FTA46uaNHYyQwIoM4oWKSoOZiDNyHJ0oIoDIUPSRQbQG7jzgVBX3FPVne1Q==",
"devOptional": true,
- "license": "MIT",
"dependencies": {
- "@babel/helper-plugin-utils": "^7.13.0"
+ "@babel/helper-plugin-utils": "^7.21.5",
+ "@babel/template": "^7.20.7"
+ },
+ "engines": {
+ "node": ">=6.9.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
}
},
"node_modules/@babel/plugin-transform-destructuring": {
- "version": "7.13.0",
+ "version": "7.21.3",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.21.3.tgz",
+ "integrity": "sha512-bp6hwMFzuiE4HqYEyoGJ/V2LeIWn+hLVKc4pnj++E5XQptwhtcGmSayM029d/j2X1bPKGTlsyPwAubuU22KhMA==",
"devOptional": true,
- "license": "MIT",
"dependencies": {
- "@babel/helper-plugin-utils": "^7.13.0"
+ "@babel/helper-plugin-utils": "^7.20.2"
+ },
+ "engines": {
+ "node": ">=6.9.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
}
},
"node_modules/@babel/plugin-transform-dotall-regex": {
- "version": "7.12.13",
+ "version": "7.18.6",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.18.6.tgz",
+ "integrity": "sha512-6S3jpun1eEbAxq7TdjLotAsl4WpQI9DxfkycRcKrjhQYzU87qpXdknpBg/e+TdcMehqGnLFi7tnFUBR02Vq6wg==",
"devOptional": true,
- "license": "MIT",
"dependencies": {
- "@babel/helper-create-regexp-features-plugin": "^7.12.13",
- "@babel/helper-plugin-utils": "^7.12.13"
+ "@babel/helper-create-regexp-features-plugin": "^7.18.6",
+ "@babel/helper-plugin-utils": "^7.18.6"
+ },
+ "engines": {
+ "node": ">=6.9.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
}
},
"node_modules/@babel/plugin-transform-duplicate-keys": {
- "version": "7.12.13",
+ "version": "7.18.9",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.18.9.tgz",
+ "integrity": "sha512-d2bmXCtZXYc59/0SanQKbiWINadaJXqtvIQIzd4+hNwkWBgyCd5F/2t1kXoUdvPMrxzPvhK6EMQRROxsue+mfw==",
"devOptional": true,
- "license": "MIT",
"dependencies": {
- "@babel/helper-plugin-utils": "^7.12.13"
+ "@babel/helper-plugin-utils": "^7.18.9"
+ },
+ "engines": {
+ "node": ">=6.9.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
}
},
"node_modules/@babel/plugin-transform-exponentiation-operator": {
- "version": "7.12.13",
+ "version": "7.18.6",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.18.6.tgz",
+ "integrity": "sha512-wzEtc0+2c88FVR34aQmiz56dxEkxr2g8DQb/KfaFa1JYXOFVsbhvAonFN6PwVWj++fKmku8NP80plJ5Et4wqHw==",
"devOptional": true,
- "license": "MIT",
"dependencies": {
- "@babel/helper-builder-binary-assignment-operator-visitor": "^7.12.13",
- "@babel/helper-plugin-utils": "^7.12.13"
+ "@babel/helper-builder-binary-assignment-operator-visitor": "^7.18.6",
+ "@babel/helper-plugin-utils": "^7.18.6"
+ },
+ "engines": {
+ "node": ">=6.9.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
@@ -1414,166 +1575,206 @@
}
},
"node_modules/@babel/plugin-transform-for-of": {
- "version": "7.13.0",
+ "version": "7.21.5",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.21.5.tgz",
+ "integrity": "sha512-nYWpjKW/7j/I/mZkGVgHJXh4bA1sfdFnJoOXwJuj4m3Q2EraO/8ZyrkCau9P5tbHQk01RMSt6KYLCsW7730SXQ==",
"devOptional": true,
- "license": "MIT",
"dependencies": {
- "@babel/helper-plugin-utils": "^7.13.0"
+ "@babel/helper-plugin-utils": "^7.21.5"
+ },
+ "engines": {
+ "node": ">=6.9.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
}
},
"node_modules/@babel/plugin-transform-function-name": {
- "version": "7.12.13",
+ "version": "7.18.9",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.18.9.tgz",
+ "integrity": "sha512-WvIBoRPaJQ5yVHzcnJFor7oS5Ls0PYixlTYE63lCj2RtdQEl15M68FXQlxnG6wdraJIXRdR7KI+hQ7q/9QjrCQ==",
"devOptional": true,
- "license": "MIT",
"dependencies": {
- "@babel/helper-function-name": "^7.12.13",
- "@babel/helper-plugin-utils": "^7.12.13"
+ "@babel/helper-compilation-targets": "^7.18.9",
+ "@babel/helper-function-name": "^7.18.9",
+ "@babel/helper-plugin-utils": "^7.18.9"
+ },
+ "engines": {
+ "node": ">=6.9.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
}
},
"node_modules/@babel/plugin-transform-literals": {
- "version": "7.12.13",
+ "version": "7.18.9",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.18.9.tgz",
+ "integrity": "sha512-IFQDSRoTPnrAIrI5zoZv73IFeZu2dhu6irxQjY9rNjTT53VmKg9fenjvoiOWOkJ6mm4jKVPtdMzBY98Fp4Z4cg==",
"devOptional": true,
- "license": "MIT",
"dependencies": {
- "@babel/helper-plugin-utils": "^7.12.13"
+ "@babel/helper-plugin-utils": "^7.18.9"
+ },
+ "engines": {
+ "node": ">=6.9.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
}
},
"node_modules/@babel/plugin-transform-member-expression-literals": {
- "version": "7.12.13",
+ "version": "7.18.6",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.18.6.tgz",
+ "integrity": "sha512-qSF1ihLGO3q+/g48k85tUjD033C29TNTVB2paCwZPVmOsjn9pClvYYrM2VeJpBY2bcNkuny0YUyTNRyRxJ54KA==",
"devOptional": true,
- "license": "MIT",
"dependencies": {
- "@babel/helper-plugin-utils": "^7.12.13"
+ "@babel/helper-plugin-utils": "^7.18.6"
+ },
+ "engines": {
+ "node": ">=6.9.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
}
},
"node_modules/@babel/plugin-transform-modules-amd": {
- "version": "7.13.0",
+ "version": "7.20.11",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.20.11.tgz",
+ "integrity": "sha512-NuzCt5IIYOW0O30UvqktzHYR2ud5bOWbY0yaxWZ6G+aFzOMJvrs5YHNikrbdaT15+KNO31nPOy5Fim3ku6Zb5g==",
"devOptional": true,
- "license": "MIT",
"dependencies": {
- "@babel/helper-module-transforms": "^7.13.0",
- "@babel/helper-plugin-utils": "^7.13.0",
- "babel-plugin-dynamic-import-node": "^2.3.3"
+ "@babel/helper-module-transforms": "^7.20.11",
+ "@babel/helper-plugin-utils": "^7.20.2"
+ },
+ "engines": {
+ "node": ">=6.9.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
}
},
"node_modules/@babel/plugin-transform-modules-commonjs": {
- "version": "7.13.8",
+ "version": "7.21.5",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.21.5.tgz",
+ "integrity": "sha512-OVryBEgKUbtqMoB7eG2rs6UFexJi6Zj6FDXx+esBLPTCxCNxAY9o+8Di7IsUGJ+AVhp5ncK0fxWUBd0/1gPhrQ==",
"devOptional": true,
- "license": "MIT",
"dependencies": {
- "@babel/helper-module-transforms": "^7.13.0",
- "@babel/helper-plugin-utils": "^7.13.0",
- "@babel/helper-simple-access": "^7.12.13",
- "babel-plugin-dynamic-import-node": "^2.3.3"
+ "@babel/helper-module-transforms": "^7.21.5",
+ "@babel/helper-plugin-utils": "^7.21.5",
+ "@babel/helper-simple-access": "^7.21.5"
+ },
+ "engines": {
+ "node": ">=6.9.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
}
},
"node_modules/@babel/plugin-transform-modules-systemjs": {
- "version": "7.13.8",
+ "version": "7.20.11",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.20.11.tgz",
+ "integrity": "sha512-vVu5g9BPQKSFEmvt2TA4Da5N+QVS66EX21d8uoOihC+OCpUoGvzVsXeqFdtAEfVa5BILAeFt+U7yVmLbQnAJmw==",
"devOptional": true,
- "license": "MIT",
"dependencies": {
- "@babel/helper-hoist-variables": "^7.13.0",
- "@babel/helper-module-transforms": "^7.13.0",
- "@babel/helper-plugin-utils": "^7.13.0",
- "@babel/helper-validator-identifier": "^7.12.11",
- "babel-plugin-dynamic-import-node": "^2.3.3"
+ "@babel/helper-hoist-variables": "^7.18.6",
+ "@babel/helper-module-transforms": "^7.20.11",
+ "@babel/helper-plugin-utils": "^7.20.2",
+ "@babel/helper-validator-identifier": "^7.19.1"
+ },
+ "engines": {
+ "node": ">=6.9.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
}
},
"node_modules/@babel/plugin-transform-modules-umd": {
- "version": "7.13.0",
+ "version": "7.18.6",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.18.6.tgz",
+ "integrity": "sha512-dcegErExVeXcRqNtkRU/z8WlBLnvD4MRnHgNs3MytRO1Mn1sHRyhbcpYbVMGclAqOjdW+9cfkdZno9dFdfKLfQ==",
"devOptional": true,
- "license": "MIT",
"dependencies": {
- "@babel/helper-module-transforms": "^7.13.0",
- "@babel/helper-plugin-utils": "^7.13.0"
+ "@babel/helper-module-transforms": "^7.18.6",
+ "@babel/helper-plugin-utils": "^7.18.6"
+ },
+ "engines": {
+ "node": ">=6.9.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
}
},
"node_modules/@babel/plugin-transform-named-capturing-groups-regex": {
- "version": "7.12.13",
+ "version": "7.20.5",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.20.5.tgz",
+ "integrity": "sha512-mOW4tTzi5iTLnw+78iEq3gr8Aoq4WNRGpmSlrogqaiCBoR1HFhpU4JkpQFOHfeYx3ReVIFWOQJS4aZBRvuZ6mA==",
"devOptional": true,
- "license": "MIT",
"dependencies": {
- "@babel/helper-create-regexp-features-plugin": "^7.12.13"
+ "@babel/helper-create-regexp-features-plugin": "^7.20.5",
+ "@babel/helper-plugin-utils": "^7.20.2"
+ },
+ "engines": {
+ "node": ">=6.9.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0"
}
},
"node_modules/@babel/plugin-transform-new-target": {
- "version": "7.12.13",
+ "version": "7.18.6",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.18.6.tgz",
+ "integrity": "sha512-DjwFA/9Iu3Z+vrAn+8pBUGcjhxKguSMlsFqeCKbhb9BAV756v0krzVK04CRDi/4aqmk8BsHb4a/gFcaA5joXRw==",
"devOptional": true,
- "license": "MIT",
"dependencies": {
- "@babel/helper-plugin-utils": "^7.12.13"
+ "@babel/helper-plugin-utils": "^7.18.6"
+ },
+ "engines": {
+ "node": ">=6.9.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
}
},
"node_modules/@babel/plugin-transform-object-super": {
- "version": "7.12.13",
+ "version": "7.18.6",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.18.6.tgz",
+ "integrity": "sha512-uvGz6zk+pZoS1aTZrOvrbj6Pp/kK2mp45t2B+bTDre2UgsZZ8EZLSJtUg7m/no0zOJUWgFONpB7Zv9W2tSaFlA==",
"devOptional": true,
- "license": "MIT",
"dependencies": {
- "@babel/helper-plugin-utils": "^7.12.13",
- "@babel/helper-replace-supers": "^7.12.13"
+ "@babel/helper-plugin-utils": "^7.18.6",
+ "@babel/helper-replace-supers": "^7.18.6"
+ },
+ "engines": {
+ "node": ">=6.9.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
}
},
"node_modules/@babel/plugin-transform-parameters": {
- "version": "7.13.0",
+ "version": "7.21.3",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.21.3.tgz",
+ "integrity": "sha512-Wxc+TvppQG9xWFYatvCGPvZ6+SIUxQ2ZdiBP+PHYMIjnPXD+uThCshaz4NZOnODAtBjjcVQQ/3OKs9LW28purQ==",
"devOptional": true,
- "license": "MIT",
"dependencies": {
- "@babel/helper-plugin-utils": "^7.13.0"
+ "@babel/helper-plugin-utils": "^7.20.2"
+ },
+ "engines": {
+ "node": ">=6.9.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
}
},
"node_modules/@babel/plugin-transform-property-literals": {
- "version": "7.12.13",
+ "version": "7.18.6",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.18.6.tgz",
+ "integrity": "sha512-cYcs6qlgafTud3PAzrrRNbQtfpQ8+y/+M5tKmksS9+M1ckbH6kzY8MrexEM9mcA6JDsukE19iIRvAyYl463sMg==",
"devOptional": true,
- "license": "MIT",
"dependencies": {
- "@babel/helper-plugin-utils": "^7.12.13"
+ "@babel/helper-plugin-utils": "^7.18.6"
},
- "peerDependencies": {
- "@babel/core": "^7.0.0-0"
- }
- },
- "node_modules/@babel/plugin-transform-react-constant-elements": {
- "version": "7.13.13",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "@babel/helper-plugin-utils": "^7.13.0"
+ "engines": {
+ "node": ">=6.9.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
@@ -1581,7 +1782,7 @@
},
"node_modules/@babel/plugin-transform-react-display-name": {
"version": "7.12.13",
- "devOptional": true,
+ "dev": true,
"license": "MIT",
"dependencies": {
"@babel/helper-plugin-utils": "^7.12.13"
@@ -1591,15 +1792,19 @@
}
},
"node_modules/@babel/plugin-transform-react-jsx": {
- "version": "7.13.12",
+ "version": "7.21.5",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.21.5.tgz",
+ "integrity": "sha512-ELdlq61FpoEkHO6gFRpfj0kUgSwQTGoaEU8eMRoS8Dv3v6e7BjEAj5WMtIBRdHUeAioMhKP5HyxNzNnP+heKbA==",
"devOptional": true,
- "license": "MIT",
"dependencies": {
- "@babel/helper-annotate-as-pure": "^7.12.13",
- "@babel/helper-module-imports": "^7.13.12",
- "@babel/helper-plugin-utils": "^7.13.0",
- "@babel/plugin-syntax-jsx": "^7.12.13",
- "@babel/types": "^7.13.12"
+ "@babel/helper-annotate-as-pure": "^7.18.6",
+ "@babel/helper-module-imports": "^7.21.4",
+ "@babel/helper-plugin-utils": "^7.21.5",
+ "@babel/plugin-syntax-jsx": "^7.21.4",
+ "@babel/types": "^7.21.5"
+ },
+ "engines": {
+ "node": ">=6.9.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
@@ -1607,7 +1812,7 @@
},
"node_modules/@babel/plugin-transform-react-jsx-development": {
"version": "7.12.17",
- "devOptional": true,
+ "dev": true,
"license": "MIT",
"dependencies": {
"@babel/plugin-transform-react-jsx": "^7.12.17"
@@ -1616,9 +1821,39 @@
"@babel/core": "^7.0.0-0"
}
},
+ "node_modules/@babel/plugin-transform-react-jsx-self": {
+ "version": "7.21.0",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-self/-/plugin-transform-react-jsx-self-7.21.0.tgz",
+ "integrity": "sha512-f/Eq+79JEu+KUANFks9UZCcvydOOGMgF7jBrcwjHa5jTZD8JivnhCJYvmlhR/WTXBWonDExPoW0eO/CR4QJirA==",
+ "optional": true,
+ "dependencies": {
+ "@babel/helper-plugin-utils": "^7.20.2"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
+ }
+ },
+ "node_modules/@babel/plugin-transform-react-jsx-source": {
+ "version": "7.19.6",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-source/-/plugin-transform-react-jsx-source-7.19.6.tgz",
+ "integrity": "sha512-RpAi004QyMNisst/pvSanoRdJ4q+jMCWyk9zdw/CyLB9j8RXEahodR6l2GyttDRyEVWZtbN+TpLiHJ3t34LbsQ==",
+ "optional": true,
+ "dependencies": {
+ "@babel/helper-plugin-utils": "^7.19.0"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0-0"
+ }
+ },
"node_modules/@babel/plugin-transform-react-pure-annotations": {
"version": "7.12.1",
- "devOptional": true,
+ "dev": true,
"license": "MIT",
"dependencies": {
"@babel/helper-annotate-as-pure": "^7.10.4",
@@ -1629,78 +1864,107 @@
}
},
"node_modules/@babel/plugin-transform-regenerator": {
- "version": "7.12.13",
+ "version": "7.21.5",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.21.5.tgz",
+ "integrity": "sha512-ZoYBKDb6LyMi5yCsByQ5jmXsHAQDDYeexT1Szvlmui+lADvfSecr5Dxd/PkrTC3pAD182Fcju1VQkB4oCp9M+w==",
"devOptional": true,
- "license": "MIT",
"dependencies": {
- "regenerator-transform": "^0.14.2"
+ "@babel/helper-plugin-utils": "^7.21.5",
+ "regenerator-transform": "^0.15.1"
+ },
+ "engines": {
+ "node": ">=6.9.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
}
},
"node_modules/@babel/plugin-transform-reserved-words": {
- "version": "7.12.13",
+ "version": "7.18.6",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.18.6.tgz",
+ "integrity": "sha512-oX/4MyMoypzHjFrT1CdivfKZ+XvIPMFXwwxHp/r0Ddy2Vuomt4HDFGmft1TAY2yiTKiNSsh3kjBAzcM8kSdsjA==",
"devOptional": true,
- "license": "MIT",
"dependencies": {
- "@babel/helper-plugin-utils": "^7.12.13"
+ "@babel/helper-plugin-utils": "^7.18.6"
+ },
+ "engines": {
+ "node": ">=6.9.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
}
},
"node_modules/@babel/plugin-transform-shorthand-properties": {
- "version": "7.12.13",
+ "version": "7.18.6",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.18.6.tgz",
+ "integrity": "sha512-eCLXXJqv8okzg86ywZJbRn19YJHU4XUa55oz2wbHhaQVn/MM+XhukiT7SYqp/7o00dg52Rj51Ny+Ecw4oyoygw==",
"devOptional": true,
- "license": "MIT",
"dependencies": {
- "@babel/helper-plugin-utils": "^7.12.13"
+ "@babel/helper-plugin-utils": "^7.18.6"
+ },
+ "engines": {
+ "node": ">=6.9.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
}
},
"node_modules/@babel/plugin-transform-spread": {
- "version": "7.13.0",
+ "version": "7.20.7",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.20.7.tgz",
+ "integrity": "sha512-ewBbHQ+1U/VnH1fxltbJqDeWBU1oNLG8Dj11uIv3xVf7nrQu0bPGe5Rf716r7K5Qz+SqtAOVswoVunoiBtGhxw==",
"devOptional": true,
- "license": "MIT",
"dependencies": {
- "@babel/helper-plugin-utils": "^7.13.0",
- "@babel/helper-skip-transparent-expression-wrappers": "^7.12.1"
+ "@babel/helper-plugin-utils": "^7.20.2",
+ "@babel/helper-skip-transparent-expression-wrappers": "^7.20.0"
+ },
+ "engines": {
+ "node": ">=6.9.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
}
},
"node_modules/@babel/plugin-transform-sticky-regex": {
- "version": "7.12.13",
+ "version": "7.18.6",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.18.6.tgz",
+ "integrity": "sha512-kfiDrDQ+PBsQDO85yj1icueWMfGfJFKN1KCkndygtu/C9+XUfydLC8Iv5UYJqRwy4zk8EcplRxEOeLyjq1gm6Q==",
"devOptional": true,
- "license": "MIT",
"dependencies": {
- "@babel/helper-plugin-utils": "^7.12.13"
+ "@babel/helper-plugin-utils": "^7.18.6"
+ },
+ "engines": {
+ "node": ">=6.9.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
}
},
"node_modules/@babel/plugin-transform-template-literals": {
- "version": "7.13.0",
+ "version": "7.18.9",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.18.9.tgz",
+ "integrity": "sha512-S8cOWfT82gTezpYOiVaGHrCbhlHgKhQt8XH5ES46P2XWmX92yisoZywf5km75wv5sYcXDUCLMmMxOLCtthDgMA==",
"devOptional": true,
- "license": "MIT",
"dependencies": {
- "@babel/helper-plugin-utils": "^7.13.0"
+ "@babel/helper-plugin-utils": "^7.18.9"
+ },
+ "engines": {
+ "node": ">=6.9.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
}
},
"node_modules/@babel/plugin-transform-typeof-symbol": {
- "version": "7.12.13",
+ "version": "7.18.9",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.18.9.tgz",
+ "integrity": "sha512-SRfwTtF11G2aemAZWivL7PD+C9z52v9EvMqH9BuYbabyPuKUvSWks3oCg6041pT925L4zVFqaVBeECwsmlguEw==",
"devOptional": true,
- "license": "MIT",
"dependencies": {
- "@babel/helper-plugin-utils": "^7.12.13"
+ "@babel/helper-plugin-utils": "^7.18.9"
+ },
+ "engines": {
+ "node": ">=6.9.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
@@ -1708,7 +1972,7 @@
},
"node_modules/@babel/plugin-transform-typescript": {
"version": "7.13.0",
- "dev": true,
+ "devOptional": true,
"license": "MIT",
"dependencies": {
"@babel/helper-create-class-features-plugin": "^7.13.0",
@@ -1720,55 +1984,70 @@
}
},
"node_modules/@babel/plugin-transform-unicode-escapes": {
- "version": "7.12.13",
+ "version": "7.21.5",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.21.5.tgz",
+ "integrity": "sha512-LYm/gTOwZqsYohlvFUe/8Tujz75LqqVC2w+2qPHLR+WyWHGCZPN1KBpJCJn+4Bk4gOkQy/IXKIge6az5MqwlOg==",
"devOptional": true,
- "license": "MIT",
"dependencies": {
- "@babel/helper-plugin-utils": "^7.12.13"
+ "@babel/helper-plugin-utils": "^7.21.5"
+ },
+ "engines": {
+ "node": ">=6.9.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
}
},
"node_modules/@babel/plugin-transform-unicode-regex": {
- "version": "7.12.13",
+ "version": "7.18.6",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.18.6.tgz",
+ "integrity": "sha512-gE7A6Lt7YLnNOL3Pb9BNeZvi+d8l7tcRrG4+pwJjK9hD2xX4mEvjlQW60G9EEmfXVYRPv9VRQcyegIVHCql/AA==",
"devOptional": true,
- "license": "MIT",
"dependencies": {
- "@babel/helper-create-regexp-features-plugin": "^7.12.13",
- "@babel/helper-plugin-utils": "^7.12.13"
+ "@babel/helper-create-regexp-features-plugin": "^7.18.6",
+ "@babel/helper-plugin-utils": "^7.18.6"
+ },
+ "engines": {
+ "node": ">=6.9.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
}
},
"node_modules/@babel/preset-env": {
- "version": "7.13.12",
+ "version": "7.21.5",
+ "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.21.5.tgz",
+ "integrity": "sha512-wH00QnTTldTbf/IefEVyChtRdw5RJvODT/Vb4Vcxq1AZvtXj6T0YeX0cAcXhI6/BdGuiP3GcNIL4OQbI2DVNxg==",
"devOptional": true,
- "license": "MIT",
"dependencies": {
- "@babel/compat-data": "^7.13.12",
- "@babel/helper-compilation-targets": "^7.13.10",
- "@babel/helper-plugin-utils": "^7.13.0",
- "@babel/helper-validator-option": "^7.12.17",
- "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "^7.13.12",
- "@babel/plugin-proposal-async-generator-functions": "^7.13.8",
- "@babel/plugin-proposal-class-properties": "^7.13.0",
- "@babel/plugin-proposal-dynamic-import": "^7.13.8",
- "@babel/plugin-proposal-export-namespace-from": "^7.12.13",
- "@babel/plugin-proposal-json-strings": "^7.13.8",
- "@babel/plugin-proposal-logical-assignment-operators": "^7.13.8",
- "@babel/plugin-proposal-nullish-coalescing-operator": "^7.13.8",
- "@babel/plugin-proposal-numeric-separator": "^7.12.13",
- "@babel/plugin-proposal-object-rest-spread": "^7.13.8",
- "@babel/plugin-proposal-optional-catch-binding": "^7.13.8",
- "@babel/plugin-proposal-optional-chaining": "^7.13.12",
- "@babel/plugin-proposal-private-methods": "^7.13.0",
- "@babel/plugin-proposal-unicode-property-regex": "^7.12.13",
+ "@babel/compat-data": "^7.21.5",
+ "@babel/helper-compilation-targets": "^7.21.5",
+ "@babel/helper-plugin-utils": "^7.21.5",
+ "@babel/helper-validator-option": "^7.21.0",
+ "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": "^7.18.6",
+ "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "^7.20.7",
+ "@babel/plugin-proposal-async-generator-functions": "^7.20.7",
+ "@babel/plugin-proposal-class-properties": "^7.18.6",
+ "@babel/plugin-proposal-class-static-block": "^7.21.0",
+ "@babel/plugin-proposal-dynamic-import": "^7.18.6",
+ "@babel/plugin-proposal-export-namespace-from": "^7.18.9",
+ "@babel/plugin-proposal-json-strings": "^7.18.6",
+ "@babel/plugin-proposal-logical-assignment-operators": "^7.20.7",
+ "@babel/plugin-proposal-nullish-coalescing-operator": "^7.18.6",
+ "@babel/plugin-proposal-numeric-separator": "^7.18.6",
+ "@babel/plugin-proposal-object-rest-spread": "^7.20.7",
+ "@babel/plugin-proposal-optional-catch-binding": "^7.18.6",
+ "@babel/plugin-proposal-optional-chaining": "^7.21.0",
+ "@babel/plugin-proposal-private-methods": "^7.18.6",
+ "@babel/plugin-proposal-private-property-in-object": "^7.21.0",
+ "@babel/plugin-proposal-unicode-property-regex": "^7.18.6",
"@babel/plugin-syntax-async-generators": "^7.8.4",
"@babel/plugin-syntax-class-properties": "^7.12.13",
+ "@babel/plugin-syntax-class-static-block": "^7.14.5",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-syntax-export-namespace-from": "^7.8.3",
+ "@babel/plugin-syntax-import-assertions": "^7.20.0",
+ "@babel/plugin-syntax-import-meta": "^7.10.4",
"@babel/plugin-syntax-json-strings": "^7.8.3",
"@babel/plugin-syntax-logical-assignment-operators": "^7.10.4",
"@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3",
@@ -1776,47 +2055,51 @@
"@babel/plugin-syntax-object-rest-spread": "^7.8.3",
"@babel/plugin-syntax-optional-catch-binding": "^7.8.3",
"@babel/plugin-syntax-optional-chaining": "^7.8.3",
- "@babel/plugin-syntax-top-level-await": "^7.12.13",
- "@babel/plugin-transform-arrow-functions": "^7.13.0",
- "@babel/plugin-transform-async-to-generator": "^7.13.0",
- "@babel/plugin-transform-block-scoped-functions": "^7.12.13",
- "@babel/plugin-transform-block-scoping": "^7.12.13",
- "@babel/plugin-transform-classes": "^7.13.0",
- "@babel/plugin-transform-computed-properties": "^7.13.0",
- "@babel/plugin-transform-destructuring": "^7.13.0",
- "@babel/plugin-transform-dotall-regex": "^7.12.13",
- "@babel/plugin-transform-duplicate-keys": "^7.12.13",
- "@babel/plugin-transform-exponentiation-operator": "^7.12.13",
- "@babel/plugin-transform-for-of": "^7.13.0",
- "@babel/plugin-transform-function-name": "^7.12.13",
- "@babel/plugin-transform-literals": "^7.12.13",
- "@babel/plugin-transform-member-expression-literals": "^7.12.13",
- "@babel/plugin-transform-modules-amd": "^7.13.0",
- "@babel/plugin-transform-modules-commonjs": "^7.13.8",
- "@babel/plugin-transform-modules-systemjs": "^7.13.8",
- "@babel/plugin-transform-modules-umd": "^7.13.0",
- "@babel/plugin-transform-named-capturing-groups-regex": "^7.12.13",
- "@babel/plugin-transform-new-target": "^7.12.13",
- "@babel/plugin-transform-object-super": "^7.12.13",
- "@babel/plugin-transform-parameters": "^7.13.0",
- "@babel/plugin-transform-property-literals": "^7.12.13",
- "@babel/plugin-transform-regenerator": "^7.12.13",
- "@babel/plugin-transform-reserved-words": "^7.12.13",
- "@babel/plugin-transform-shorthand-properties": "^7.12.13",
- "@babel/plugin-transform-spread": "^7.13.0",
- "@babel/plugin-transform-sticky-regex": "^7.12.13",
- "@babel/plugin-transform-template-literals": "^7.13.0",
- "@babel/plugin-transform-typeof-symbol": "^7.12.13",
- "@babel/plugin-transform-unicode-escapes": "^7.12.13",
- "@babel/plugin-transform-unicode-regex": "^7.12.13",
- "@babel/preset-modules": "^0.1.4",
- "@babel/types": "^7.13.12",
- "babel-plugin-polyfill-corejs2": "^0.1.4",
- "babel-plugin-polyfill-corejs3": "^0.1.3",
- "babel-plugin-polyfill-regenerator": "^0.1.2",
- "core-js-compat": "^3.9.0",
+ "@babel/plugin-syntax-private-property-in-object": "^7.14.5",
+ "@babel/plugin-syntax-top-level-await": "^7.14.5",
+ "@babel/plugin-transform-arrow-functions": "^7.21.5",
+ "@babel/plugin-transform-async-to-generator": "^7.20.7",
+ "@babel/plugin-transform-block-scoped-functions": "^7.18.6",
+ "@babel/plugin-transform-block-scoping": "^7.21.0",
+ "@babel/plugin-transform-classes": "^7.21.0",
+ "@babel/plugin-transform-computed-properties": "^7.21.5",
+ "@babel/plugin-transform-destructuring": "^7.21.3",
+ "@babel/plugin-transform-dotall-regex": "^7.18.6",
+ "@babel/plugin-transform-duplicate-keys": "^7.18.9",
+ "@babel/plugin-transform-exponentiation-operator": "^7.18.6",
+ "@babel/plugin-transform-for-of": "^7.21.5",
+ "@babel/plugin-transform-function-name": "^7.18.9",
+ "@babel/plugin-transform-literals": "^7.18.9",
+ "@babel/plugin-transform-member-expression-literals": "^7.18.6",
+ "@babel/plugin-transform-modules-amd": "^7.20.11",
+ "@babel/plugin-transform-modules-commonjs": "^7.21.5",
+ "@babel/plugin-transform-modules-systemjs": "^7.20.11",
+ "@babel/plugin-transform-modules-umd": "^7.18.6",
+ "@babel/plugin-transform-named-capturing-groups-regex": "^7.20.5",
+ "@babel/plugin-transform-new-target": "^7.18.6",
+ "@babel/plugin-transform-object-super": "^7.18.6",
+ "@babel/plugin-transform-parameters": "^7.21.3",
+ "@babel/plugin-transform-property-literals": "^7.18.6",
+ "@babel/plugin-transform-regenerator": "^7.21.5",
+ "@babel/plugin-transform-reserved-words": "^7.18.6",
+ "@babel/plugin-transform-shorthand-properties": "^7.18.6",
+ "@babel/plugin-transform-spread": "^7.20.7",
+ "@babel/plugin-transform-sticky-regex": "^7.18.6",
+ "@babel/plugin-transform-template-literals": "^7.18.9",
+ "@babel/plugin-transform-typeof-symbol": "^7.18.9",
+ "@babel/plugin-transform-unicode-escapes": "^7.21.5",
+ "@babel/plugin-transform-unicode-regex": "^7.18.6",
+ "@babel/preset-modules": "^0.1.5",
+ "@babel/types": "^7.21.5",
+ "babel-plugin-polyfill-corejs2": "^0.3.3",
+ "babel-plugin-polyfill-corejs3": "^0.6.0",
+ "babel-plugin-polyfill-regenerator": "^0.4.1",
+ "core-js-compat": "^3.25.1",
"semver": "^6.3.0"
},
+ "engines": {
+ "node": ">=6.9.0"
+ },
"peerDependencies": {
"@babel/core": "^7.0.0-0"
}
@@ -1843,9 +2126,10 @@
}
},
"node_modules/@babel/preset-modules": {
- "version": "0.1.4",
+ "version": "0.1.5",
+ "resolved": "https://registry.npmjs.org/@babel/preset-modules/-/preset-modules-0.1.5.tgz",
+ "integrity": "sha512-A57th6YRG7oR3cq/yt/Y84MvGgE0eJG2F1JLhKuyG+jFxEgrd/HAMJatiFtmOiZurz+0DkrvbheCLaV5f2JfjA==",
"devOptional": true,
- "license": "MIT",
"dependencies": {
"@babel/helper-plugin-utils": "^7.0.0",
"@babel/plugin-proposal-unicode-property-regex": "^7.4.4",
@@ -1859,7 +2143,7 @@
},
"node_modules/@babel/preset-react": {
"version": "7.13.13",
- "devOptional": true,
+ "dev": true,
"license": "MIT",
"dependencies": {
"@babel/helper-plugin-utils": "^7.13.0",
@@ -1875,7 +2159,7 @@
},
"node_modules/@babel/preset-typescript": {
"version": "7.13.0",
- "dev": true,
+ "devOptional": true,
"license": "MIT",
"dependencies": {
"@babel/helper-plugin-utils": "^7.13.0",
@@ -1888,7 +2172,7 @@
},
"node_modules/@babel/register": {
"version": "7.16.0",
- "dev": true,
+ "devOptional": true,
"license": "MIT",
"dependencies": {
"clone-deep": "^4.0.1",
@@ -1906,7 +2190,7 @@
},
"node_modules/@babel/register/node_modules/clone-deep": {
"version": "4.0.1",
- "dev": true,
+ "devOptional": true,
"license": "MIT",
"dependencies": {
"is-plain-object": "^2.0.4",
@@ -1919,7 +2203,7 @@
},
"node_modules/@babel/register/node_modules/find-cache-dir": {
"version": "2.1.0",
- "dev": true,
+ "devOptional": true,
"license": "MIT",
"dependencies": {
"commondir": "^1.0.1",
@@ -1932,7 +2216,7 @@
},
"node_modules/@babel/register/node_modules/shallow-clone": {
"version": "3.0.1",
- "dev": true,
+ "devOptional": true,
"license": "MIT",
"dependencies": {
"kind-of": "^6.0.2"
@@ -1941,6 +2225,12 @@
"node": ">=8"
}
},
+ "node_modules/@babel/regjsgen": {
+ "version": "0.8.0",
+ "resolved": "https://registry.npmjs.org/@babel/regjsgen/-/regjsgen-0.8.0.tgz",
+ "integrity": "sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA==",
+ "devOptional": true
+ },
"node_modules/@babel/runtime": {
"version": "7.21.0",
"resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.21.0.tgz",
@@ -1958,46 +2248,46 @@
"integrity": "sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg=="
},
"node_modules/@babel/template": {
- "version": "7.12.13",
+ "version": "7.20.7",
+ "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.20.7.tgz",
+ "integrity": "sha512-8SegXApWe6VoNw0r9JHpSteLKTpTiLZ4rMlGIm9JQ18KiCtyQiAMEazujAHrUS5flrcqYZa75ukev3P6QmUwUw==",
"devOptional": true,
- "license": "MIT",
"dependencies": {
- "@babel/code-frame": "^7.12.13",
- "@babel/parser": "^7.12.13",
- "@babel/types": "^7.12.13"
+ "@babel/code-frame": "^7.18.6",
+ "@babel/parser": "^7.20.7",
+ "@babel/types": "^7.20.7"
+ },
+ "engines": {
+ "node": ">=6.9.0"
}
},
"node_modules/@babel/traverse": {
- "version": "7.13.13",
+ "version": "7.21.5",
+ "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.21.5.tgz",
+ "integrity": "sha512-AhQoI3YjWi6u/y/ntv7k48mcrCXmus0t79J9qPNlk/lAsFlCiJ047RmbfMOawySTHtywXhbXgpx/8nXMYd+oFw==",
"devOptional": true,
- "license": "MIT",
"dependencies": {
- "@babel/code-frame": "^7.12.13",
- "@babel/generator": "^7.13.9",
- "@babel/helper-function-name": "^7.12.13",
- "@babel/helper-split-export-declaration": "^7.12.13",
- "@babel/parser": "^7.13.13",
- "@babel/types": "^7.13.13",
+ "@babel/code-frame": "^7.21.4",
+ "@babel/generator": "^7.21.5",
+ "@babel/helper-environment-visitor": "^7.21.5",
+ "@babel/helper-function-name": "^7.21.0",
+ "@babel/helper-hoist-variables": "^7.18.6",
+ "@babel/helper-split-export-declaration": "^7.18.6",
+ "@babel/parser": "^7.21.5",
+ "@babel/types": "^7.21.5",
"debug": "^4.1.0",
"globals": "^11.1.0"
- }
- },
- "node_modules/@babel/traverse/node_modules/@babel/generator": {
- "version": "7.13.9",
- "devOptional": true,
- "license": "MIT",
- "dependencies": {
- "@babel/types": "^7.13.0",
- "jsesc": "^2.5.1",
- "source-map": "^0.5.0"
+ },
+ "engines": {
+ "node": ">=6.9.0"
}
},
"node_modules/@babel/types": {
- "version": "7.21.2",
- "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.21.2.tgz",
- "integrity": "sha512-3wRZSs7jiFaB8AjxiiD+VqN5DTG2iRvJGQ+qYFrs/654lg6kGTQWIOFjlBo5RaXuAZjBmP3+OQH4dmhqiiyYxw==",
+ "version": "7.21.5",
+ "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.21.5.tgz",
+ "integrity": "sha512-m4AfNvVF2mVC/F7fDEdH2El3HzUg9It/XsCxZiOTTA3m3qYfcSVSbTfM6Q9xG+hYDniZssYhlXKKUMD5m8tF4Q==",
"dependencies": {
- "@babel/helper-string-parser": "^7.19.4",
+ "@babel/helper-string-parser": "^7.21.5",
"@babel/helper-validator-identifier": "^7.19.1",
"to-fast-properties": "^2.0.0"
},
@@ -2005,6 +2295,12 @@
"node": ">=6.9.0"
}
},
+ "node_modules/@base2/pretty-print-object": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/@base2/pretty-print-object/-/pretty-print-object-1.0.1.tgz",
+ "integrity": "sha512-4iri8i1AqYHJE2DstZYkyEprg6Pq6sKx3xn5FpySk9sNhH7qN2LLlHJCfDTZRILNwQNPD7mATWM0TBui7uC1pA==",
+ "optional": true
+ },
"node_modules/@bcoe/v8-coverage": {
"version": "0.2.3",
"license": "MIT",
@@ -2045,15 +2341,6 @@
"node": ">=6 <7 || >=8"
}
},
- "node_modules/@changesets/apply-release-plan/node_modules/resolve-from": {
- "version": "5.0.0",
- "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz",
- "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==",
- "dev": true,
- "engines": {
- "node": ">=8"
- }
- },
"node_modules/@changesets/apply-release-plan/node_modules/semver": {
"version": "5.7.1",
"resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz",
@@ -2168,15 +2455,6 @@
"node": ">=6 <7 || >=8"
}
},
- "node_modules/@changesets/cli/node_modules/resolve-from": {
- "version": "5.0.0",
- "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz",
- "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==",
- "dev": true,
- "engines": {
- "node": ">=8"
- }
- },
"node_modules/@changesets/cli/node_modules/semver": {
"version": "5.7.1",
"resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz",
@@ -2517,6 +2795,15 @@
"react": ">=16.8.0"
}
},
+ "node_modules/@discoveryjs/json-ext": {
+ "version": "0.5.7",
+ "resolved": "https://registry.npmjs.org/@discoveryjs/json-ext/-/json-ext-0.5.7.tgz",
+ "integrity": "sha512-dBVuXR082gk3jsFp7Rd/JI4kytwGHecnCoTtXFb7DB6CNHp4rg5k1bhg0nWdLGLnOV71lmDzGQaLMy8iPLY0pw==",
+ "optional": true,
+ "engines": {
+ "node": ">=10.0.0"
+ }
+ },
"node_modules/@editorjs/editorjs": {
"version": "2.24.3",
"license": "Apache-2.0",
@@ -2602,35 +2889,6 @@
"resolved": "https://registry.npmjs.org/@emotion/utils/-/utils-1.2.0.tgz",
"integrity": "sha512-sn3WH53Kzpw8oQ5mgMmIzzyAaH2ZqFEbozVVBSYp538E06OSE6ytOp7pRAjNQR+Q/orwqdQYJSe2m3hCOeznkw=="
},
- "node_modules/@emotion/babel-plugin/node_modules/babel-plugin-macros": {
- "version": "3.1.0",
- "resolved": "https://registry.npmjs.org/babel-plugin-macros/-/babel-plugin-macros-3.1.0.tgz",
- "integrity": "sha512-Cg7TFGpIr01vOQNODXOOaGz2NpCU5gl8x1qJFbb6hbZxR7XrcE2vtbAsTAbJ7/xwJtUuJEw8K8Zr/AE0LHlesg==",
- "dependencies": {
- "@babel/runtime": "^7.12.5",
- "cosmiconfig": "^7.0.0",
- "resolve": "^1.19.0"
- },
- "engines": {
- "node": ">=10",
- "npm": ">=6"
- }
- },
- "node_modules/@emotion/babel-plugin/node_modules/cosmiconfig": {
- "version": "7.1.0",
- "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.1.0.tgz",
- "integrity": "sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==",
- "dependencies": {
- "@types/parse-json": "^4.0.0",
- "import-fresh": "^3.2.1",
- "parse-json": "^5.0.0",
- "path-type": "^4.0.0",
- "yaml": "^1.10.0"
- },
- "engines": {
- "node": ">=10"
- }
- },
"node_modules/@emotion/babel-plugin/node_modules/csstype": {
"version": "3.1.1",
"resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.1.tgz",
@@ -2647,83 +2905,6 @@
"url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/@emotion/babel-plugin/node_modules/import-fresh": {
- "version": "3.3.0",
- "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz",
- "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==",
- "dependencies": {
- "parent-module": "^1.0.0",
- "resolve-from": "^4.0.0"
- },
- "engines": {
- "node": ">=6"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/@emotion/babel-plugin/node_modules/parse-json": {
- "version": "5.2.0",
- "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz",
- "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==",
- "dependencies": {
- "@babel/code-frame": "^7.0.0",
- "error-ex": "^1.3.1",
- "json-parse-even-better-errors": "^2.3.0",
- "lines-and-columns": "^1.1.6"
- },
- "engines": {
- "node": ">=8"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/@emotion/babel-plugin/node_modules/resolve-from": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz",
- "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==",
- "engines": {
- "node": ">=4"
- }
- },
- "node_modules/@emotion/cache": {
- "version": "10.0.29",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "@emotion/sheet": "0.9.4",
- "@emotion/stylis": "0.8.5",
- "@emotion/utils": "0.11.3",
- "@emotion/weak-memoize": "0.2.5"
- }
- },
- "node_modules/@emotion/core": {
- "version": "10.1.1",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "@babel/runtime": "^7.5.5",
- "@emotion/cache": "^10.0.27",
- "@emotion/css": "^10.0.27",
- "@emotion/serialize": "^0.11.15",
- "@emotion/sheet": "0.9.4",
- "@emotion/utils": "0.11.3"
- },
- "peerDependencies": {
- "react": ">=16.3.0"
- }
- },
- "node_modules/@emotion/css": {
- "version": "10.0.27",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "@emotion/serialize": "^0.11.15",
- "@emotion/utils": "0.11.3",
- "babel-plugin-emotion": "^10.0.27"
- }
- },
"node_modules/@emotion/hash": {
"version": "0.8.0",
"license": "MIT"
@@ -2821,79 +3002,6 @@
"resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.1.tgz",
"integrity": "sha512-DJR/VvkAvSZW9bTouZue2sSxDwdTN92uHjqeKVm+0dAqdfNykRzQ95tay8aXMBAAPpUiq4Qcug2L7neoRh2Egw=="
},
- "node_modules/@emotion/serialize": {
- "version": "0.11.16",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "@emotion/hash": "0.8.0",
- "@emotion/memoize": "0.7.4",
- "@emotion/unitless": "0.7.5",
- "@emotion/utils": "0.11.3",
- "csstype": "^2.5.7"
- }
- },
- "node_modules/@emotion/serialize/node_modules/@emotion/memoize": {
- "version": "0.7.4",
- "license": "MIT",
- "optional": true
- },
- "node_modules/@emotion/sheet": {
- "version": "0.9.4",
- "license": "MIT",
- "optional": true
- },
- "node_modules/@emotion/styled": {
- "version": "10.0.27",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "@emotion/styled-base": "^10.0.27",
- "babel-plugin-emotion": "^10.0.27"
- },
- "peerDependencies": {
- "@emotion/core": "^10.0.27",
- "react": ">=16.3.0"
- }
- },
- "node_modules/@emotion/styled-base": {
- "version": "10.0.31",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "@babel/runtime": "^7.5.5",
- "@emotion/is-prop-valid": "0.8.8",
- "@emotion/serialize": "^0.11.15",
- "@emotion/utils": "0.11.3"
- },
- "peerDependencies": {
- "@emotion/core": "^10.0.28",
- "react": ">=16.3.0"
- }
- },
- "node_modules/@emotion/styled-base/node_modules/@emotion/is-prop-valid": {
- "version": "0.8.8",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "@emotion/memoize": "0.7.4"
- }
- },
- "node_modules/@emotion/styled-base/node_modules/@emotion/memoize": {
- "version": "0.7.4",
- "license": "MIT",
- "optional": true
- },
- "node_modules/@emotion/stylis": {
- "version": "0.8.5",
- "license": "MIT",
- "optional": true
- },
- "node_modules/@emotion/unitless": {
- "version": "0.7.5",
- "license": "MIT",
- "optional": true
- },
"node_modules/@emotion/use-insertion-effect-with-fallbacks": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/@emotion/use-insertion-effect-with-fallbacks/-/use-insertion-effect-with-fallbacks-1.0.0.tgz",
@@ -2902,16 +3010,6 @@
"react": ">=16.8.0"
}
},
- "node_modules/@emotion/utils": {
- "version": "0.11.3",
- "license": "MIT",
- "optional": true
- },
- "node_modules/@emotion/weak-memoize": {
- "version": "0.2.5",
- "license": "MIT",
- "optional": true
- },
"node_modules/@esbuild-plugins/node-globals-polyfill": {
"version": "0.1.1",
"dev": true,
@@ -2920,6 +3018,336 @@
"esbuild": "*"
}
},
+ "node_modules/@esbuild/android-arm": {
+ "version": "0.17.18",
+ "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.17.18.tgz",
+ "integrity": "sha512-EmwL+vUBZJ7mhFCs5lA4ZimpUH3WMAoqvOIYhVQwdIgSpHC8ImHdsRyhHAVxpDYUSm0lWvd63z0XH1IlImS2Qw==",
+ "cpu": [
+ "arm"
+ ],
+ "optional": true,
+ "os": [
+ "android"
+ ],
+ "engines": {
+ "node": ">=12"
+ }
+ },
+ "node_modules/@esbuild/android-arm64": {
+ "version": "0.17.18",
+ "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.17.18.tgz",
+ "integrity": "sha512-/iq0aK0eeHgSC3z55ucMAHO05OIqmQehiGay8eP5l/5l+iEr4EIbh4/MI8xD9qRFjqzgkc0JkX0LculNC9mXBw==",
+ "cpu": [
+ "arm64"
+ ],
+ "optional": true,
+ "os": [
+ "android"
+ ],
+ "engines": {
+ "node": ">=12"
+ }
+ },
+ "node_modules/@esbuild/android-x64": {
+ "version": "0.17.18",
+ "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.17.18.tgz",
+ "integrity": "sha512-x+0efYNBF3NPW2Xc5bFOSFW7tTXdAcpfEg2nXmxegm4mJuVeS+i109m/7HMiOQ6M12aVGGFlqJX3RhNdYM2lWg==",
+ "cpu": [
+ "x64"
+ ],
+ "optional": true,
+ "os": [
+ "android"
+ ],
+ "engines": {
+ "node": ">=12"
+ }
+ },
+ "node_modules/@esbuild/darwin-arm64": {
+ "version": "0.17.18",
+ "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.17.18.tgz",
+ "integrity": "sha512-6tY+djEAdF48M1ONWnQb1C+6LiXrKjmqjzPNPWXhu/GzOHTHX2nh8Mo2ZAmBFg0kIodHhciEgUBtcYCAIjGbjQ==",
+ "cpu": [
+ "arm64"
+ ],
+ "optional": true,
+ "os": [
+ "darwin"
+ ],
+ "engines": {
+ "node": ">=12"
+ }
+ },
+ "node_modules/@esbuild/darwin-x64": {
+ "version": "0.17.18",
+ "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.17.18.tgz",
+ "integrity": "sha512-Qq84ykvLvya3dO49wVC9FFCNUfSrQJLbxhoQk/TE1r6MjHo3sFF2tlJCwMjhkBVq3/ahUisj7+EpRSz0/+8+9A==",
+ "cpu": [
+ "x64"
+ ],
+ "optional": true,
+ "os": [
+ "darwin"
+ ],
+ "engines": {
+ "node": ">=12"
+ }
+ },
+ "node_modules/@esbuild/freebsd-arm64": {
+ "version": "0.17.18",
+ "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.17.18.tgz",
+ "integrity": "sha512-fw/ZfxfAzuHfaQeMDhbzxp9mc+mHn1Y94VDHFHjGvt2Uxl10mT4CDavHm+/L9KG441t1QdABqkVYwakMUeyLRA==",
+ "cpu": [
+ "arm64"
+ ],
+ "optional": true,
+ "os": [
+ "freebsd"
+ ],
+ "engines": {
+ "node": ">=12"
+ }
+ },
+ "node_modules/@esbuild/freebsd-x64": {
+ "version": "0.17.18",
+ "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.17.18.tgz",
+ "integrity": "sha512-FQFbRtTaEi8ZBi/A6kxOC0V0E9B/97vPdYjY9NdawyLd4Qk5VD5g2pbWN2VR1c0xhzcJm74HWpObPszWC+qTew==",
+ "cpu": [
+ "x64"
+ ],
+ "optional": true,
+ "os": [
+ "freebsd"
+ ],
+ "engines": {
+ "node": ">=12"
+ }
+ },
+ "node_modules/@esbuild/linux-arm": {
+ "version": "0.17.18",
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.17.18.tgz",
+ "integrity": "sha512-jW+UCM40LzHcouIaqv3e/oRs0JM76JfhHjCavPxMUti7VAPh8CaGSlS7cmyrdpzSk7A+8f0hiedHqr/LMnfijg==",
+ "cpu": [
+ "arm"
+ ],
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">=12"
+ }
+ },
+ "node_modules/@esbuild/linux-arm64": {
+ "version": "0.17.18",
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.17.18.tgz",
+ "integrity": "sha512-R7pZvQZFOY2sxUG8P6A21eq6q+eBv7JPQYIybHVf1XkQYC+lT7nDBdC7wWKTrbvMXKRaGudp/dzZCwL/863mZQ==",
+ "cpu": [
+ "arm64"
+ ],
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">=12"
+ }
+ },
+ "node_modules/@esbuild/linux-ia32": {
+ "version": "0.17.18",
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.17.18.tgz",
+ "integrity": "sha512-ygIMc3I7wxgXIxk6j3V00VlABIjq260i967Cp9BNAk5pOOpIXmd1RFQJQX9Io7KRsthDrQYrtcx7QCof4o3ZoQ==",
+ "cpu": [
+ "ia32"
+ ],
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">=12"
+ }
+ },
+ "node_modules/@esbuild/linux-loong64": {
+ "version": "0.17.18",
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.17.18.tgz",
+ "integrity": "sha512-bvPG+MyFs5ZlwYclCG1D744oHk1Pv7j8psF5TfYx7otCVmcJsEXgFEhQkbhNW8otDHL1a2KDINW20cfCgnzgMQ==",
+ "cpu": [
+ "loong64"
+ ],
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">=12"
+ }
+ },
+ "node_modules/@esbuild/linux-mips64el": {
+ "version": "0.17.18",
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.17.18.tgz",
+ "integrity": "sha512-oVqckATOAGuiUOa6wr8TXaVPSa+6IwVJrGidmNZS1cZVx0HqkTMkqFGD2HIx9H1RvOwFeWYdaYbdY6B89KUMxA==",
+ "cpu": [
+ "mips64el"
+ ],
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">=12"
+ }
+ },
+ "node_modules/@esbuild/linux-ppc64": {
+ "version": "0.17.18",
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.17.18.tgz",
+ "integrity": "sha512-3dLlQO+b/LnQNxgH4l9rqa2/IwRJVN9u/bK63FhOPB4xqiRqlQAU0qDU3JJuf0BmaH0yytTBdoSBHrb2jqc5qQ==",
+ "cpu": [
+ "ppc64"
+ ],
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">=12"
+ }
+ },
+ "node_modules/@esbuild/linux-riscv64": {
+ "version": "0.17.18",
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.17.18.tgz",
+ "integrity": "sha512-/x7leOyDPjZV3TcsdfrSI107zItVnsX1q2nho7hbbQoKnmoeUWjs+08rKKt4AUXju7+3aRZSsKrJtaRmsdL1xA==",
+ "cpu": [
+ "riscv64"
+ ],
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">=12"
+ }
+ },
+ "node_modules/@esbuild/linux-s390x": {
+ "version": "0.17.18",
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.17.18.tgz",
+ "integrity": "sha512-cX0I8Q9xQkL/6F5zWdYmVf5JSQt+ZfZD2bJudZrWD+4mnUvoZ3TDDXtDX2mUaq6upMFv9FlfIh4Gfun0tbGzuw==",
+ "cpu": [
+ "s390x"
+ ],
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">=12"
+ }
+ },
+ "node_modules/@esbuild/linux-x64": {
+ "version": "0.17.18",
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.17.18.tgz",
+ "integrity": "sha512-66RmRsPlYy4jFl0vG80GcNRdirx4nVWAzJmXkevgphP1qf4dsLQCpSKGM3DUQCojwU1hnepI63gNZdrr02wHUA==",
+ "cpu": [
+ "x64"
+ ],
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">=12"
+ }
+ },
+ "node_modules/@esbuild/netbsd-x64": {
+ "version": "0.17.18",
+ "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.17.18.tgz",
+ "integrity": "sha512-95IRY7mI2yrkLlTLb1gpDxdC5WLC5mZDi+kA9dmM5XAGxCME0F8i4bYH4jZreaJ6lIZ0B8hTrweqG1fUyW7jbg==",
+ "cpu": [
+ "x64"
+ ],
+ "optional": true,
+ "os": [
+ "netbsd"
+ ],
+ "engines": {
+ "node": ">=12"
+ }
+ },
+ "node_modules/@esbuild/openbsd-x64": {
+ "version": "0.17.18",
+ "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.17.18.tgz",
+ "integrity": "sha512-WevVOgcng+8hSZ4Q3BKL3n1xTv5H6Nb53cBrtzzEjDbbnOmucEVcZeGCsCOi9bAOcDYEeBZbD2SJNBxlfP3qiA==",
+ "cpu": [
+ "x64"
+ ],
+ "optional": true,
+ "os": [
+ "openbsd"
+ ],
+ "engines": {
+ "node": ">=12"
+ }
+ },
+ "node_modules/@esbuild/sunos-x64": {
+ "version": "0.17.18",
+ "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.17.18.tgz",
+ "integrity": "sha512-Rzf4QfQagnwhQXVBS3BYUlxmEbcV7MY+BH5vfDZekU5eYpcffHSyjU8T0xucKVuOcdCsMo+Ur5wmgQJH2GfNrg==",
+ "cpu": [
+ "x64"
+ ],
+ "optional": true,
+ "os": [
+ "sunos"
+ ],
+ "engines": {
+ "node": ">=12"
+ }
+ },
+ "node_modules/@esbuild/win32-arm64": {
+ "version": "0.17.18",
+ "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.17.18.tgz",
+ "integrity": "sha512-Kb3Ko/KKaWhjeAm2YoT/cNZaHaD1Yk/pa3FTsmqo9uFh1D1Rfco7BBLIPdDOozrObj2sahslFuAQGvWbgWldAg==",
+ "cpu": [
+ "arm64"
+ ],
+ "optional": true,
+ "os": [
+ "win32"
+ ],
+ "engines": {
+ "node": ">=12"
+ }
+ },
+ "node_modules/@esbuild/win32-ia32": {
+ "version": "0.17.18",
+ "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.17.18.tgz",
+ "integrity": "sha512-0/xUMIdkVHwkvxfbd5+lfG7mHOf2FRrxNbPiKWg9C4fFrB8H0guClmaM3BFiRUYrznVoyxTIyC/Ou2B7QQSwmw==",
+ "cpu": [
+ "ia32"
+ ],
+ "optional": true,
+ "os": [
+ "win32"
+ ],
+ "engines": {
+ "node": ">=12"
+ }
+ },
+ "node_modules/@esbuild/win32-x64": {
+ "version": "0.17.18",
+ "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.17.18.tgz",
+ "integrity": "sha512-qU25Ma1I3NqTSHJUOKi9sAH1/Mzuvlke0ioMJRthLXKm7JiSKVwFghlGbDLOO2sARECGhja4xYfRAZNPAkooYg==",
+ "cpu": [
+ "x64"
+ ],
+ "optional": true,
+ "os": [
+ "win32"
+ ],
+ "engines": {
+ "node": ">=12"
+ }
+ },
"node_modules/@eslint/eslintrc": {
"version": "0.4.3",
"license": "MIT",
@@ -2961,29 +3389,6 @@
"node": ">= 4"
}
},
- "node_modules/@eslint/eslintrc/node_modules/import-fresh": {
- "version": "3.3.0",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "parent-module": "^1.0.0",
- "resolve-from": "^4.0.0"
- },
- "engines": {
- "node": ">=6"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/@eslint/eslintrc/node_modules/resolve-from": {
- "version": "4.0.0",
- "license": "MIT",
- "optional": true,
- "engines": {
- "node": ">=4"
- }
- },
"node_modules/@eslint/eslintrc/node_modules/type-fest": {
"version": "0.20.2",
"license": "(MIT OR CC0-1.0)",
@@ -2995,6 +3400,12 @@
"url": "https://github.com/sponsors/sindresorhus"
}
},
+ "node_modules/@fal-works/esbuild-plugin-global-externals": {
+ "version": "2.1.2",
+ "resolved": "https://registry.npmjs.org/@fal-works/esbuild-plugin-global-externals/-/esbuild-plugin-global-externals-2.1.2.tgz",
+ "integrity": "sha512-cEee/Z+I12mZcFJshKcCqC8tuX5hG3s+d+9nZ3LabqKF1vKdF41B92pJVCBggjAGORAeOzyyDDKrZwIkLffeOQ==",
+ "optional": true
+ },
"node_modules/@floating-ui/core": {
"version": "0.7.3",
"resolved": "https://registry.npmjs.org/@floating-ui/core/-/core-0.7.3.tgz",
@@ -3517,26 +3928,6 @@
"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"
}
},
- "node_modules/@graphql-codegen/cli/node_modules/anymatch": {
- "version": "3.1.2",
- "dev": true,
- "license": "ISC",
- "dependencies": {
- "normalize-path": "^3.0.0",
- "picomatch": "^2.0.4"
- },
- "engines": {
- "node": ">= 8"
- }
- },
- "node_modules/@graphql-codegen/cli/node_modules/binary-extensions": {
- "version": "2.2.0",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=8"
- }
- },
"node_modules/@graphql-codegen/cli/node_modules/chalk": {
"version": "4.1.2",
"dev": true,
@@ -3552,26 +3943,6 @@
"url": "https://github.com/chalk/chalk?sponsor=1"
}
},
- "node_modules/@graphql-codegen/cli/node_modules/chokidar": {
- "version": "3.5.2",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "anymatch": "~3.1.2",
- "braces": "~3.0.2",
- "glob-parent": "~5.1.2",
- "is-binary-path": "~2.1.0",
- "is-glob": "~4.0.1",
- "normalize-path": "~3.0.0",
- "readdirp": "~3.6.0"
- },
- "engines": {
- "node": ">= 8.10.0"
- },
- "optionalDependencies": {
- "fsevents": "~2.3.2"
- }
- },
"node_modules/@graphql-codegen/cli/node_modules/cliui": {
"version": "7.0.4",
"dev": true,
@@ -3582,33 +3953,6 @@
"wrap-ansi": "^7.0.0"
}
},
- "node_modules/@graphql-codegen/cli/node_modules/cosmiconfig": {
- "version": "7.0.1",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@types/parse-json": "^4.0.0",
- "import-fresh": "^3.2.1",
- "parse-json": "^5.0.0",
- "path-type": "^4.0.0",
- "yaml": "^1.10.0"
- },
- "engines": {
- "node": ">=10"
- }
- },
- "node_modules/@graphql-codegen/cli/node_modules/fsevents": {
- "version": "2.3.2",
- "dev": true,
- "license": "MIT",
- "optional": true,
- "os": [
- "darwin"
- ],
- "engines": {
- "node": "^8.16.0 || ^10.6.0 || >=11.0.0"
- }
- },
"node_modules/@graphql-codegen/cli/node_modules/globby": {
"version": "11.0.4",
"dev": true,
@@ -3636,32 +3980,6 @@
"node": ">=8"
}
},
- "node_modules/@graphql-codegen/cli/node_modules/import-fresh": {
- "version": "3.3.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "parent-module": "^1.0.0",
- "resolve-from": "^4.0.0"
- },
- "engines": {
- "node": ">=6"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/@graphql-codegen/cli/node_modules/is-binary-path": {
- "version": "2.1.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "binary-extensions": "^2.0.0"
- },
- "engines": {
- "node": ">=8"
- }
- },
"node_modules/@graphql-codegen/cli/node_modules/log-symbols": {
"version": "4.1.0",
"dev": true,
@@ -3688,42 +4006,6 @@
"node": ">=10"
}
},
- "node_modules/@graphql-codegen/cli/node_modules/parse-json": {
- "version": "5.2.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/code-frame": "^7.0.0",
- "error-ex": "^1.3.1",
- "json-parse-even-better-errors": "^2.3.0",
- "lines-and-columns": "^1.1.6"
- },
- "engines": {
- "node": ">=8"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/@graphql-codegen/cli/node_modules/readdirp": {
- "version": "3.6.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "picomatch": "^2.2.1"
- },
- "engines": {
- "node": ">=8.10.0"
- }
- },
- "node_modules/@graphql-codegen/cli/node_modules/resolve-from": {
- "version": "4.0.0",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=4"
- }
- },
"node_modules/@graphql-codegen/cli/node_modules/strip-ansi": {
"version": "6.0.0",
"dev": true,
@@ -4554,89 +4836,6 @@
"graphql": "^14.0.0 || ^15.0.0"
}
},
- "node_modules/@graphql-tools/graphql-tag-pluck/node_modules/@babel/code-frame": {
- "version": "7.14.5",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/highlight": "^7.14.5"
- },
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/@graphql-tools/graphql-tag-pluck/node_modules/@babel/generator": {
- "version": "7.15.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/types": "^7.15.0",
- "jsesc": "^2.5.1",
- "source-map": "^0.5.0"
- },
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/@graphql-tools/graphql-tag-pluck/node_modules/@babel/helper-function-name": {
- "version": "7.14.5",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/helper-get-function-arity": "^7.14.5",
- "@babel/template": "^7.14.5",
- "@babel/types": "^7.14.5"
- },
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/@graphql-tools/graphql-tag-pluck/node_modules/@babel/helper-get-function-arity": {
- "version": "7.14.5",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/types": "^7.14.5"
- },
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/@graphql-tools/graphql-tag-pluck/node_modules/@babel/helper-hoist-variables": {
- "version": "7.14.5",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/types": "^7.14.5"
- },
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/@graphql-tools/graphql-tag-pluck/node_modules/@babel/helper-split-export-declaration": {
- "version": "7.14.5",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/types": "^7.14.5"
- },
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/@graphql-tools/graphql-tag-pluck/node_modules/@babel/highlight": {
- "version": "7.14.5",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/helper-validator-identifier": "^7.14.5",
- "chalk": "^2.0.0",
- "js-tokens": "^4.0.0"
- },
- "engines": {
- "node": ">=6.9.0"
- }
- },
"node_modules/@graphql-tools/graphql-tag-pluck/node_modules/@babel/parser": {
"version": "7.15.3",
"dev": true,
@@ -4648,19 +4847,6 @@
"node": ">=6.0.0"
}
},
- "node_modules/@graphql-tools/graphql-tag-pluck/node_modules/@babel/template": {
- "version": "7.14.5",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/code-frame": "^7.14.5",
- "@babel/parser": "^7.14.5",
- "@babel/types": "^7.14.5"
- },
- "engines": {
- "node": ">=6.9.0"
- }
- },
"node_modules/@graphql-tools/graphql-tag-pluck/node_modules/@babel/traverse": {
"version": "7.15.0",
"dev": true,
@@ -4709,14 +4895,6 @@
"graphql": "^14.0.0 || ^15.0.0"
}
},
- "node_modules/@graphql-tools/import/node_modules/resolve-from": {
- "version": "5.0.0",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=8"
- }
- },
"node_modules/@graphql-tools/import/node_modules/tslib": {
"version": "2.2.0",
"dev": true,
@@ -5078,27 +5256,6 @@
"license": "BSD-3-Clause",
"optional": true
},
- "node_modules/@hypnosphi/create-react-context": {
- "version": "0.3.1",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "gud": "^1.0.0",
- "warning": "^4.0.3"
- },
- "peerDependencies": {
- "prop-types": "^15.0.0",
- "react": ">=0.14.0"
- }
- },
- "node_modules/@hypnosphi/create-react-context/node_modules/warning": {
- "version": "4.0.3",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "loose-envify": "^1.0.0"
- }
- },
"node_modules/@iarna/toml": {
"version": "2.2.5",
"dev": true,
@@ -5161,14 +5318,6 @@
"node": ">=8"
}
},
- "node_modules/@istanbuljs/load-nyc-config/node_modules/resolve-from": {
- "version": "5.0.0",
- "devOptional": true,
- "license": "MIT",
- "engines": {
- "node": ">=8"
- }
- },
"node_modules/@istanbuljs/schema": {
"version": "0.1.3",
"devOptional": true,
@@ -5446,6 +5595,18 @@
"node": ">=8"
}
},
+ "node_modules/@jest/schemas": {
+ "version": "29.4.3",
+ "resolved": "https://registry.npmjs.org/@jest/schemas/-/schemas-29.4.3.tgz",
+ "integrity": "sha512-VLYKXQmtmuEz6IxJsrZwzG9NvtkQsWNnWMsKxqWNu3+CnfzJQhp0WDDKWLVV9hLKr0l3SLLFRqcYHjhtyuDVxg==",
+ "optional": true,
+ "dependencies": {
+ "@sinclair/typebox": "^0.25.16"
+ },
+ "engines": {
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
+ }
+ },
"node_modules/@jest/source-map": {
"version": "27.5.1",
"license": "MIT",
@@ -5630,9 +5791,71 @@
"node": ">=8"
}
},
+ "node_modules/@joshwooding/vite-plugin-react-docgen-typescript": {
+ "version": "0.2.1",
+ "resolved": "https://registry.npmjs.org/@joshwooding/vite-plugin-react-docgen-typescript/-/vite-plugin-react-docgen-typescript-0.2.1.tgz",
+ "integrity": "sha512-ou4ZJSXMMWHqGS4g8uNRbC5TiTWxAgQZiVucoUrOCWuPrTbkpJbmVyIi9jU72SBry7gQtuMEDp4YR8EEXAg7VQ==",
+ "optional": true,
+ "dependencies": {
+ "glob": "^7.2.0",
+ "glob-promise": "^4.2.0",
+ "magic-string": "^0.27.0",
+ "react-docgen-typescript": "^2.2.2"
+ },
+ "peerDependencies": {
+ "typescript": ">= 4.3.x",
+ "vite": "^3.0.0 || ^4.0.0"
+ },
+ "peerDependenciesMeta": {
+ "typescript": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/@joshwooding/vite-plugin-react-docgen-typescript/node_modules/@types/glob": {
+ "version": "7.2.0",
+ "resolved": "https://registry.npmjs.org/@types/glob/-/glob-7.2.0.tgz",
+ "integrity": "sha512-ZUxbzKl0IfJILTS6t7ip5fQQM/J3TJYubDm3nMbgubNNYS62eXeUpoLUC8/7fJNiFYHTrGPQn7hspDUzIHX3UA==",
+ "optional": true,
+ "dependencies": {
+ "@types/minimatch": "*",
+ "@types/node": "*"
+ }
+ },
+ "node_modules/@joshwooding/vite-plugin-react-docgen-typescript/node_modules/glob-promise": {
+ "version": "4.2.2",
+ "resolved": "https://registry.npmjs.org/glob-promise/-/glob-promise-4.2.2.tgz",
+ "integrity": "sha512-xcUzJ8NWN5bktoTIX7eOclO1Npxd/dyVqUJxlLIDasT4C7KZyqlPIwkdJ0Ypiy3p2ZKahTjK4M9uC3sNSfNMzw==",
+ "optional": true,
+ "dependencies": {
+ "@types/glob": "^7.1.3"
+ },
+ "engines": {
+ "node": ">=12"
+ },
+ "funding": {
+ "type": "individual",
+ "url": "https://github.com/sponsors/ahmadnassri"
+ },
+ "peerDependencies": {
+ "glob": "^7.1.6"
+ }
+ },
+ "node_modules/@joshwooding/vite-plugin-react-docgen-typescript/node_modules/magic-string": {
+ "version": "0.27.0",
+ "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.27.0.tgz",
+ "integrity": "sha512-8UnnX2PeRAPZuN12svgR9j7M1uWMovg/CEnIwIG0LFkXSJJe4PdfUGiTGl8V9bsBHFUtfVINcSyYxd7q+kx9fA==",
+ "optional": true,
+ "dependencies": {
+ "@jridgewell/sourcemap-codec": "^1.4.13"
+ },
+ "engines": {
+ "node": ">=12"
+ }
+ },
"node_modules/@jridgewell/gen-mapping": {
"version": "0.3.2",
- "dev": true,
+ "devOptional": true,
"license": "MIT",
"dependencies": {
"@jridgewell/set-array": "^1.0.1",
@@ -5645,7 +5868,7 @@
},
"node_modules/@jridgewell/resolve-uri": {
"version": "3.1.0",
- "dev": true,
+ "devOptional": true,
"license": "MIT",
"engines": {
"node": ">=6.0.0"
@@ -5653,7 +5876,7 @@
},
"node_modules/@jridgewell/set-array": {
"version": "1.1.2",
- "dev": true,
+ "devOptional": true,
"license": "MIT",
"engines": {
"node": ">=6.0.0"
@@ -5670,18 +5893,24 @@
},
"node_modules/@jridgewell/sourcemap-codec": {
"version": "1.4.14",
- "dev": true,
+ "devOptional": true,
"license": "MIT"
},
"node_modules/@jridgewell/trace-mapping": {
"version": "0.3.17",
- "dev": true,
+ "devOptional": true,
"license": "MIT",
"dependencies": {
"@jridgewell/resolve-uri": "3.1.0",
"@jridgewell/sourcemap-codec": "1.4.14"
}
},
+ "node_modules/@juggle/resize-observer": {
+ "version": "3.4.0",
+ "resolved": "https://registry.npmjs.org/@juggle/resize-observer/-/resize-observer-3.4.0.tgz",
+ "integrity": "sha512-dfLbk+PwWvFzSxwk3n5ySL0hfBog779o8h68wK/7/APo/7cgyWp5jcXockbxdk5kFRkbeXWm4Fbi9FrdN381sA==",
+ "optional": true
+ },
"node_modules/@manypkg/find-root": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/@manypkg/find-root/-/find-root-1.1.0.tgz",
@@ -5961,16 +6190,21 @@
"react-dom": "^16.8.0 || ^17.0.0"
}
},
- "node_modules/@mrmlnc/readdir-enhanced": {
- "version": "2.2.1",
- "license": "MIT",
+ "node_modules/@mdx-js/react": {
+ "version": "2.3.0",
+ "resolved": "https://registry.npmjs.org/@mdx-js/react/-/react-2.3.0.tgz",
+ "integrity": "sha512-zQH//gdOmuu7nt2oJR29vFhDv88oGPmVw6BggmrHeMI+xgEkp1B2dX9/bMBSYtK0dyLX/aOmesKS09g222K1/g==",
"optional": true,
"dependencies": {
- "call-me-maybe": "^1.0.1",
- "glob-to-regexp": "^0.3.0"
+ "@types/mdx": "^2.0.0",
+ "@types/react": ">=16"
},
- "engines": {
- "node": ">=4"
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ },
+ "peerDependencies": {
+ "react": ">=16"
}
},
"node_modules/@n1ru4l/graphql-live-query": {
@@ -5988,6 +6222,17 @@
"node": ">=12"
}
},
+ "node_modules/@ndelangen/get-tarball": {
+ "version": "3.0.7",
+ "resolved": "https://registry.npmjs.org/@ndelangen/get-tarball/-/get-tarball-3.0.7.tgz",
+ "integrity": "sha512-NqGfTZIZpRFef1GoVaShSSRwDC3vde3ThtTeqFdcYd6ipKqnfEVhjK2hUeHjCQUcptyZr2TONqcloFXM+5QBrQ==",
+ "optional": true,
+ "dependencies": {
+ "gunzip-maybe": "^1.4.2",
+ "pump": "^3.0.0",
+ "tar-fs": "^2.1.1"
+ }
+ },
"node_modules/@nicolo-ribaudo/chokidar-2": {
"version": "2.1.8-no-fsevents.3",
"dev": true,
@@ -6292,50 +6537,6 @@
"node": ">=14"
}
},
- "node_modules/@percy/cli-exec/node_modules/cross-spawn": {
- "version": "7.0.3",
- "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz",
- "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==",
- "dev": true,
- "dependencies": {
- "path-key": "^3.1.0",
- "shebang-command": "^2.0.0",
- "which": "^2.0.1"
- },
- "engines": {
- "node": ">= 8"
- }
- },
- "node_modules/@percy/cli-exec/node_modules/path-key": {
- "version": "3.1.1",
- "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz",
- "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==",
- "dev": true,
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/@percy/cli-exec/node_modules/shebang-command": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz",
- "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==",
- "dev": true,
- "dependencies": {
- "shebang-regex": "^3.0.0"
- },
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/@percy/cli-exec/node_modules/shebang-regex": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz",
- "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==",
- "dev": true,
- "engines": {
- "node": ">=8"
- }
- },
"node_modules/@percy/cli-exec/node_modules/which": {
"version": "2.0.2",
"resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz",
@@ -6431,80 +6632,12 @@
"url": "https://github.com/sponsors/epoberezkin"
}
},
- "node_modules/@percy/config/node_modules/cosmiconfig": {
- "version": "7.1.0",
- "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.1.0.tgz",
- "integrity": "sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==",
- "dev": true,
- "dependencies": {
- "@types/parse-json": "^4.0.0",
- "import-fresh": "^3.2.1",
- "parse-json": "^5.0.0",
- "path-type": "^4.0.0",
- "yaml": "^1.10.0"
- },
- "engines": {
- "node": ">=10"
- }
- },
- "node_modules/@percy/config/node_modules/cosmiconfig/node_modules/yaml": {
- "version": "1.10.2",
- "resolved": "https://registry.npmjs.org/yaml/-/yaml-1.10.2.tgz",
- "integrity": "sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==",
- "dev": true,
- "engines": {
- "node": ">= 6"
- }
- },
- "node_modules/@percy/config/node_modules/import-fresh": {
- "version": "3.3.0",
- "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz",
- "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==",
- "dev": true,
- "dependencies": {
- "parent-module": "^1.0.0",
- "resolve-from": "^4.0.0"
- },
- "engines": {
- "node": ">=6"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
"node_modules/@percy/config/node_modules/json-schema-traverse": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz",
"integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==",
"dev": true
},
- "node_modules/@percy/config/node_modules/parse-json": {
- "version": "5.2.0",
- "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz",
- "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==",
- "dev": true,
- "dependencies": {
- "@babel/code-frame": "^7.0.0",
- "error-ex": "^1.3.1",
- "json-parse-even-better-errors": "^2.3.0",
- "lines-and-columns": "^1.1.6"
- },
- "engines": {
- "node": ">=8"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/@percy/config/node_modules/resolve-from": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz",
- "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==",
- "dev": true,
- "engines": {
- "node": ">=4"
- }
- },
"node_modules/@percy/config/node_modules/yaml": {
"version": "2.2.1",
"resolved": "https://registry.npmjs.org/yaml/-/yaml-2.2.1.tgz",
@@ -6539,71 +6672,12 @@
"node": ">=14"
}
},
- "node_modules/@percy/core/node_modules/cross-spawn": {
- "version": "7.0.3",
- "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz",
- "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==",
- "dev": true,
- "dependencies": {
- "path-key": "^3.1.0",
- "shebang-command": "^2.0.0",
- "which": "^2.0.1"
- },
- "engines": {
- "node": ">= 8"
- }
- },
- "node_modules/@percy/core/node_modules/path-key": {
- "version": "3.1.1",
- "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz",
- "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==",
- "dev": true,
- "engines": {
- "node": ">=8"
- }
- },
"node_modules/@percy/core/node_modules/path-to-regexp": {
"version": "6.2.1",
"resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-6.2.1.tgz",
"integrity": "sha512-JLyh7xT1kizaEvcaXOQwOc2/Yhw6KZOvPf1S8401UyLk86CU79LN3vl7ztXGm/pZ+YjoyAJ4rxmHwbkBXJX+yw==",
"dev": true
},
- "node_modules/@percy/core/node_modules/shebang-command": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz",
- "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==",
- "dev": true,
- "dependencies": {
- "shebang-regex": "^3.0.0"
- },
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/@percy/core/node_modules/shebang-regex": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz",
- "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==",
- "dev": true,
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/@percy/core/node_modules/which": {
- "version": "2.0.2",
- "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz",
- "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==",
- "dev": true,
- "dependencies": {
- "isexe": "^2.0.0"
- },
- "bin": {
- "node-which": "bin/node-which"
- },
- "engines": {
- "node": ">= 8"
- }
- },
"node_modules/@percy/core/node_modules/ws": {
"version": "8.13.0",
"resolved": "https://registry.npmjs.org/ws/-/ws-8.13.0.tgz",
@@ -7661,21 +7735,6 @@
"react-dom": "^16.8.0 || 17.x"
}
},
- "node_modules/@reach/router": {
- "version": "1.3.4",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "create-react-context": "0.3.0",
- "invariant": "^2.2.3",
- "prop-types": "^15.6.1",
- "react-lifecycles-compat": "^3.0.4"
- },
- "peerDependencies": {
- "react": "15.x || 16.x || 16.4.0-alpha.0911da3",
- "react-dom": "15.x || 16.x || 16.4.0-alpha.0911da3"
- }
- },
"node_modules/@reach/tooltip": {
"version": "0.17.0",
"license": "MIT",
@@ -8252,6 +8311,12 @@
"dev": true,
"license": "BSD-3-Clause"
},
+ "node_modules/@sinclair/typebox": {
+ "version": "0.25.24",
+ "resolved": "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.25.24.tgz",
+ "integrity": "sha512-XJfwUVUKDHF5ugKwIcxEgc9k8b7HbznCp6eUfWgu710hMPNIO4aw4/zB5RogDQz8nd6gyCDpU9O/m6qYEWY6yQ==",
+ "optional": true
+ },
"node_modules/@sindresorhus/fnv1a": {
"version": "1.2.0",
"dev": true,
@@ -8262,7 +8327,7 @@
},
"node_modules/@sindresorhus/is": {
"version": "4.0.0",
- "dev": true,
+ "devOptional": true,
"license": "MIT",
"engines": {
"node": ">=10"
@@ -8287,473 +8352,421 @@
"@sinonjs/commons": "^1.7.0"
}
},
- "node_modules/@storybook/addons": {
- "version": "5.3.21",
- "license": "MIT",
+ "node_modules/@snyk/dep-graph": {
+ "version": "2.6.0",
+ "resolved": "https://registry.npmjs.org/@snyk/dep-graph/-/dep-graph-2.6.0.tgz",
+ "integrity": "sha512-9NPk7cTvDNA90NyNQvh87LYKgkCoD67i+FGdRpwA0/CL59RRY7cG37RTFe++Y3ZALxpYK1sLNzU+yeB7vzVhqQ==",
"optional": true,
"dependencies": {
- "@storybook/api": "5.3.21",
- "@storybook/channels": "5.3.21",
- "@storybook/client-logger": "5.3.21",
- "@storybook/core-events": "5.3.21",
- "core-js": "^3.0.1",
- "global": "^4.3.2",
- "util-deprecate": "^1.0.2"
- }
- },
- "node_modules/@storybook/api": {
- "version": "5.3.21",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "@reach/router": "^1.2.1",
- "@storybook/channels": "5.3.21",
- "@storybook/client-logger": "5.3.21",
- "@storybook/core-events": "5.3.21",
- "@storybook/csf": "0.0.1",
- "@storybook/router": "5.3.21",
- "@storybook/theming": "5.3.21",
- "@types/reach__router": "^1.2.3",
- "core-js": "^3.0.1",
- "fast-deep-equal": "^2.0.1",
- "global": "^4.3.2",
- "lodash": "^4.17.15",
- "memoizerific": "^1.11.3",
- "prop-types": "^15.6.2",
- "react": "^16.8.3",
- "semver": "^6.0.0",
- "shallow-equal": "^1.1.0",
- "store2": "^2.7.1",
- "telejson": "^3.2.0",
- "util-deprecate": "^1.0.2"
- },
- "peerDependencies": {
- "regenerator-runtime": "*"
- }
- },
- "node_modules/@storybook/api/node_modules/fast-deep-equal": {
- "version": "2.0.1",
- "license": "MIT",
- "optional": true
- },
- "node_modules/@storybook/api/node_modules/react": {
- "version": "16.14.0",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "loose-envify": "^1.1.0",
- "object-assign": "^4.1.1",
- "prop-types": "^15.6.2"
+ "event-loop-spinner": "^2.1.0",
+ "lodash.clone": "^4.5.0",
+ "lodash.constant": "^3.0.0",
+ "lodash.filter": "^4.6.0",
+ "lodash.foreach": "^4.5.0",
+ "lodash.isempty": "^4.4.0",
+ "lodash.isequal": "^4.5.0",
+ "lodash.isfunction": "^3.0.9",
+ "lodash.isundefined": "^3.0.1",
+ "lodash.map": "^4.6.0",
+ "lodash.reduce": "^4.6.0",
+ "lodash.size": "^4.2.0",
+ "lodash.transform": "^4.6.0",
+ "lodash.union": "^4.6.0",
+ "lodash.values": "^4.3.0",
+ "object-hash": "^3.0.0",
+ "packageurl-js": "^1.0.0",
+ "semver": "^7.0.0",
+ "tslib": "^2"
},
"engines": {
- "node": ">=0.10.0"
+ "node": ">=10"
}
},
- "node_modules/@storybook/api/node_modules/semver": {
- "version": "6.3.0",
- "license": "ISC",
- "optional": true,
- "bin": {
- "semver": "bin/semver.js"
- }
- },
- "node_modules/@storybook/channel-postmessage": {
- "version": "5.3.21",
- "license": "MIT",
+ "node_modules/@snyk/graphlib": {
+ "version": "2.1.9-patch.3",
+ "resolved": "https://registry.npmjs.org/@snyk/graphlib/-/graphlib-2.1.9-patch.3.tgz",
+ "integrity": "sha512-bBY9b9ulfLj0v2Eer0yFYa3syVeIxVKl2EpxSrsVeT4mjA0CltZyHsF0JjoaGXP27nItTdJS5uVsj1NA+3aE+Q==",
"optional": true,
"dependencies": {
- "@storybook/channels": "5.3.21",
- "@storybook/client-logger": "5.3.21",
- "core-js": "^3.0.1",
- "global": "^4.3.2",
- "telejson": "^3.2.0"
+ "lodash.clone": "^4.5.0",
+ "lodash.constant": "^3.0.0",
+ "lodash.filter": "^4.6.0",
+ "lodash.foreach": "^4.5.0",
+ "lodash.has": "^4.5.2",
+ "lodash.isempty": "^4.4.0",
+ "lodash.isfunction": "^3.0.9",
+ "lodash.isundefined": "^3.0.1",
+ "lodash.keys": "^4.2.0",
+ "lodash.map": "^4.6.0",
+ "lodash.reduce": "^4.6.0",
+ "lodash.size": "^4.2.0",
+ "lodash.transform": "^4.6.0",
+ "lodash.union": "^4.6.0",
+ "lodash.values": "^4.3.0"
}
},
- "node_modules/@storybook/channels": {
- "version": "5.3.21",
- "license": "MIT",
+ "node_modules/@storybook/addon-actions": {
+ "version": "7.0.8",
+ "resolved": "https://registry.npmjs.org/@storybook/addon-actions/-/addon-actions-7.0.8.tgz",
+ "integrity": "sha512-9DRkofKfGvVa2xESovXP5gCjpv0rvMwZJ16IqD/o1sRPRETsCeidTBMgrSX8wJq0TtJPen663DAdIrVuVXezlA==",
"optional": true,
"dependencies": {
- "core-js": "^3.0.1"
- }
- },
- "node_modules/@storybook/client-api": {
- "version": "5.3.21",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "@storybook/addons": "5.3.21",
- "@storybook/channel-postmessage": "5.3.21",
- "@storybook/channels": "5.3.21",
- "@storybook/client-logger": "5.3.21",
- "@storybook/core-events": "5.3.21",
- "@storybook/csf": "0.0.1",
- "@types/webpack-env": "^1.15.0",
- "core-js": "^3.0.1",
- "eventemitter3": "^4.0.0",
- "global": "^4.3.2",
- "is-plain-object": "^3.0.0",
- "lodash": "^4.17.15",
- "memoizerific": "^1.11.3",
- "qs": "^6.6.0",
- "stable": "^0.1.8",
- "ts-dedent": "^1.1.0",
- "util-deprecate": "^1.0.2"
- }
- },
- "node_modules/@storybook/client-api/node_modules/is-plain-object": {
- "version": "3.0.1",
- "license": "MIT",
- "optional": true,
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/@storybook/client-logger": {
- "version": "5.3.21",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "core-js": "^3.0.1"
- }
- },
- "node_modules/@storybook/components": {
- "version": "5.3.21",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "@storybook/client-logger": "5.3.21",
- "@storybook/theming": "5.3.21",
- "@types/react-syntax-highlighter": "11.0.4",
- "@types/react-textarea-autosize": "^4.3.3",
- "core-js": "^3.0.1",
- "global": "^4.3.2",
- "lodash": "^4.17.15",
- "markdown-to-jsx": "^6.11.4",
- "memoizerific": "^1.11.3",
- "polished": "^3.3.1",
- "popper.js": "^1.14.7",
+ "@storybook/client-logger": "7.0.8",
+ "@storybook/components": "7.0.8",
+ "@storybook/core-events": "7.0.8",
+ "@storybook/global": "^5.0.0",
+ "@storybook/manager-api": "7.0.8",
+ "@storybook/preview-api": "7.0.8",
+ "@storybook/theming": "7.0.8",
+ "@storybook/types": "7.0.8",
+ "dequal": "^2.0.2",
+ "lodash": "^4.17.21",
+ "polished": "^4.2.2",
"prop-types": "^15.7.2",
- "react": "^16.8.3",
- "react-dom": "^16.8.3",
- "react-focus-lock": "^2.1.0",
- "react-helmet-async": "^1.0.2",
- "react-popper-tooltip": "^2.8.3",
- "react-syntax-highlighter": "^11.0.2",
- "react-textarea-autosize": "^7.1.0",
- "simplebar-react": "^1.0.0-alpha.6",
- "ts-dedent": "^1.1.0"
+ "react-inspector": "^6.0.0",
+ "telejson": "^7.0.3",
+ "ts-dedent": "^2.0.0",
+ "uuid": "^9.0.0"
},
- "peerDependencies": {
- "react": "*",
- "react-dom": "*"
- }
- },
- "node_modules/@storybook/components/node_modules/popper.js": {
- "version": "1.16.1",
- "license": "MIT",
- "optional": true,
"funding": {
"type": "opencollective",
- "url": "https://opencollective.com/popperjs"
+ "url": "https://opencollective.com/storybook"
+ },
+ "peerDependencies": {
+ "react": "^16.8.0 || ^17.0.0 || ^18.0.0",
+ "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0"
+ },
+ "peerDependenciesMeta": {
+ "react": {
+ "optional": true
+ },
+ "react-dom": {
+ "optional": true
+ }
}
},
- "node_modules/@storybook/components/node_modules/react": {
- "version": "16.14.0",
- "license": "MIT",
+ "node_modules/@storybook/addon-actions/node_modules/uuid": {
+ "version": "9.0.0",
+ "resolved": "https://registry.npmjs.org/uuid/-/uuid-9.0.0.tgz",
+ "integrity": "sha512-MXcSTerfPa4uqyzStbRoTgt5XIe3x5+42+q1sDuy3R5MDk66URdLMOZe5aPX/SQd+kuYAh0FdP/pO28IkQyTeg==",
+ "optional": true,
+ "bin": {
+ "uuid": "dist/bin/uuid"
+ }
+ },
+ "node_modules/@storybook/addon-backgrounds": {
+ "version": "7.0.8",
+ "resolved": "https://registry.npmjs.org/@storybook/addon-backgrounds/-/addon-backgrounds-7.0.8.tgz",
+ "integrity": "sha512-xDTySwXWlyROWi9SJEa12DfGyaYL8oMGADMgn/C82qzcIXGx2tpkjU4UsA/w7JvpZumLr5wEfGrZiStg2xFygA==",
"optional": true,
"dependencies": {
- "loose-envify": "^1.1.0",
- "object-assign": "^4.1.1",
- "prop-types": "^15.6.2"
+ "@storybook/client-logger": "7.0.8",
+ "@storybook/components": "7.0.8",
+ "@storybook/core-events": "7.0.8",
+ "@storybook/global": "^5.0.0",
+ "@storybook/manager-api": "7.0.8",
+ "@storybook/preview-api": "7.0.8",
+ "@storybook/theming": "7.0.8",
+ "@storybook/types": "7.0.8",
+ "memoizerific": "^1.11.3",
+ "ts-dedent": "^2.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/storybook"
+ },
+ "peerDependencies": {
+ "react": "^16.8.0 || ^17.0.0 || ^18.0.0",
+ "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0"
+ },
+ "peerDependenciesMeta": {
+ "react": {
+ "optional": true
+ },
+ "react-dom": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/@storybook/addon-controls": {
+ "version": "7.0.8",
+ "resolved": "https://registry.npmjs.org/@storybook/addon-controls/-/addon-controls-7.0.8.tgz",
+ "integrity": "sha512-SdCO0Y6zWMmVGp/yVmc66tBDKyPdlIrVVh3Knjk/MKBCjINKq/Bqn59UWcRH00b2lie2LzNfmbBc8LPMg6efag==",
+ "optional": true,
+ "dependencies": {
+ "@storybook/blocks": "7.0.8",
+ "@storybook/client-logger": "7.0.8",
+ "@storybook/components": "7.0.8",
+ "@storybook/core-common": "7.0.8",
+ "@storybook/manager-api": "7.0.8",
+ "@storybook/node-logger": "7.0.8",
+ "@storybook/preview-api": "7.0.8",
+ "@storybook/theming": "7.0.8",
+ "@storybook/types": "7.0.8",
+ "lodash": "^4.17.21",
+ "ts-dedent": "^2.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/storybook"
+ },
+ "peerDependencies": {
+ "react": "^16.8.0 || ^17.0.0 || ^18.0.0",
+ "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0"
+ },
+ "peerDependenciesMeta": {
+ "react": {
+ "optional": true
+ },
+ "react-dom": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/@storybook/addon-docs": {
+ "version": "7.0.8",
+ "resolved": "https://registry.npmjs.org/@storybook/addon-docs/-/addon-docs-7.0.8.tgz",
+ "integrity": "sha512-X+fWWaGELyQoQna5cCegUn3swfjdicbmUNJLEiU7kV7pa2fmNyx801gdkS7x1s5wjBkxVDU/TJ3kvd8tfWPV7A==",
+ "optional": true,
+ "dependencies": {
+ "@babel/core": "^7.20.2",
+ "@babel/plugin-transform-react-jsx": "^7.19.0",
+ "@jest/transform": "^29.3.1",
+ "@mdx-js/react": "^2.1.5",
+ "@storybook/blocks": "7.0.8",
+ "@storybook/client-logger": "7.0.8",
+ "@storybook/components": "7.0.8",
+ "@storybook/csf-plugin": "7.0.8",
+ "@storybook/csf-tools": "7.0.8",
+ "@storybook/global": "^5.0.0",
+ "@storybook/mdx2-csf": "^1.0.0",
+ "@storybook/node-logger": "7.0.8",
+ "@storybook/postinstall": "7.0.8",
+ "@storybook/preview-api": "7.0.8",
+ "@storybook/react-dom-shim": "7.0.8",
+ "@storybook/theming": "7.0.8",
+ "@storybook/types": "7.0.8",
+ "fs-extra": "^11.1.0",
+ "remark-external-links": "^8.0.0",
+ "remark-slug": "^6.0.0",
+ "ts-dedent": "^2.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/storybook"
+ },
+ "peerDependencies": {
+ "react": "^16.8.0 || ^17.0.0 || ^18.0.0",
+ "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0"
+ }
+ },
+ "node_modules/@storybook/addon-docs/node_modules/@jest/transform": {
+ "version": "29.5.0",
+ "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-29.5.0.tgz",
+ "integrity": "sha512-8vbeZWqLJOvHaDfeMuoHITGKSz5qWc9u04lnWrQE3VyuSw604PzQM824ZeX9XSjUCeDiE3GuxZe5UKa8J61NQw==",
+ "optional": true,
+ "dependencies": {
+ "@babel/core": "^7.11.6",
+ "@jest/types": "^29.5.0",
+ "@jridgewell/trace-mapping": "^0.3.15",
+ "babel-plugin-istanbul": "^6.1.1",
+ "chalk": "^4.0.0",
+ "convert-source-map": "^2.0.0",
+ "fast-json-stable-stringify": "^2.1.0",
+ "graceful-fs": "^4.2.9",
+ "jest-haste-map": "^29.5.0",
+ "jest-regex-util": "^29.4.3",
+ "jest-util": "^29.5.0",
+ "micromatch": "^4.0.4",
+ "pirates": "^4.0.4",
+ "slash": "^3.0.0",
+ "write-file-atomic": "^4.0.2"
},
"engines": {
- "node": ">=0.10.0"
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
}
},
- "node_modules/@storybook/components/node_modules/react-dom": {
- "version": "16.14.0",
- "license": "MIT",
+ "node_modules/@storybook/addon-docs/node_modules/@jest/types": {
+ "version": "29.5.0",
+ "resolved": "https://registry.npmjs.org/@jest/types/-/types-29.5.0.tgz",
+ "integrity": "sha512-qbu7kN6czmVRc3xWFQcAN03RAUamgppVUdXrvl1Wr3jlNF93o9mJbGcDWrwGB6ht44u7efB1qCFgVQmca24Uog==",
"optional": true,
"dependencies": {
- "loose-envify": "^1.1.0",
- "object-assign": "^4.1.1",
- "prop-types": "^15.6.2",
- "scheduler": "^0.19.1"
+ "@jest/schemas": "^29.4.3",
+ "@types/istanbul-lib-coverage": "^2.0.0",
+ "@types/istanbul-reports": "^3.0.0",
+ "@types/node": "*",
+ "@types/yargs": "^17.0.8",
+ "chalk": "^4.0.0"
},
- "peerDependencies": {
- "react": "^16.14.0"
+ "engines": {
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
}
},
- "node_modules/@storybook/core": {
- "version": "5.3.21",
- "license": "MIT",
+ "node_modules/@storybook/addon-docs/node_modules/@types/yargs": {
+ "version": "17.0.24",
+ "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-17.0.24.tgz",
+ "integrity": "sha512-6i0aC7jV6QzQB8ne1joVZ0eSFIstHsCrobmOtghM11yGlH0j43FKL2UhWdELkyps0zuf7qVTUVCCR+tgSlyLLw==",
"optional": true,
"dependencies": {
- "@babel/plugin-proposal-class-properties": "^7.7.0",
- "@babel/plugin-proposal-object-rest-spread": "^7.6.2",
- "@babel/plugin-syntax-dynamic-import": "^7.2.0",
- "@babel/plugin-transform-react-constant-elements": "^7.2.0",
- "@babel/preset-env": "^7.4.5",
- "@storybook/addons": "5.3.21",
- "@storybook/channel-postmessage": "5.3.21",
- "@storybook/client-api": "5.3.21",
- "@storybook/client-logger": "5.3.21",
- "@storybook/core-events": "5.3.21",
- "@storybook/csf": "0.0.1",
- "@storybook/node-logger": "5.3.21",
- "@storybook/router": "5.3.21",
- "@storybook/theming": "5.3.21",
- "@storybook/ui": "5.3.21",
- "airbnb-js-shims": "^2.2.1",
- "ansi-to-html": "^0.6.11",
- "autoprefixer": "^9.7.2",
- "babel-plugin-add-react-displayname": "^0.0.5",
- "babel-plugin-emotion": "^10.0.20",
- "babel-plugin-macros": "^2.7.0",
- "babel-preset-minify": "^0.5.0 || 0.6.0-alpha.5",
- "boxen": "^4.1.0",
- "case-sensitive-paths-webpack-plugin": "^2.2.0",
- "chalk": "^3.0.0",
- "cli-table3": "0.5.1",
- "commander": "^4.0.1",
- "core-js": "^3.0.1",
- "corejs-upgrade-webpack-plugin": "^2.2.0",
- "css-loader": "^3.0.0",
- "detect-port": "^1.3.0",
- "dotenv-webpack": "^1.7.0",
- "ejs": "^2.7.4",
- "express": "^4.17.0",
- "file-loader": "^4.2.0",
- "file-system-cache": "^1.0.5",
- "find-cache-dir": "^3.0.0",
- "find-up": "^4.1.0",
- "fs-extra": "^8.0.1",
- "glob-base": "^0.3.0",
- "global": "^4.3.2",
- "html-webpack-plugin": "^4.0.0-beta.2",
- "inquirer": "^7.0.0",
- "interpret": "^2.0.0",
- "ip": "^1.1.5",
- "json5": "^2.1.1",
- "lazy-universal-dotenv": "^3.0.1",
- "micromatch": "^4.0.2",
- "node-fetch": "^2.6.0",
- "open": "^7.0.0",
- "pnp-webpack-plugin": "1.5.0",
- "postcss-flexbugs-fixes": "^4.1.0",
- "postcss-loader": "^3.0.0",
- "pretty-hrtime": "^1.0.3",
- "qs": "^6.6.0",
- "raw-loader": "^3.1.0",
- "react-dev-utils": "^9.0.0",
- "regenerator-runtime": "^0.13.3",
- "resolve": "^1.11.0",
- "resolve-from": "^5.0.0",
- "semver": "^6.0.0",
- "serve-favicon": "^2.5.0",
- "shelljs": "^0.8.3",
- "style-loader": "^1.0.0",
- "terser-webpack-plugin": "^2.1.2",
- "ts-dedent": "^1.1.0",
- "unfetch": "^4.1.0",
- "url-loader": "^2.0.1",
- "util-deprecate": "^1.0.2",
- "webpack": "^4.33.0",
- "webpack-dev-middleware": "^3.7.0",
- "webpack-hot-middleware": "^2.25.0",
- "webpack-virtual-modules": "^0.2.0"
- },
- "peerDependencies": {
- "@babel/core": "*",
- "babel-loader": "^7.0.0 || ^8.0.0",
- "react": "*",
- "react-dom": "*"
+ "@types/yargs-parser": "*"
}
},
- "node_modules/@storybook/core-events": {
- "version": "5.3.21",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "core-js": "^3.0.1"
- }
- },
- "node_modules/@storybook/core/node_modules/chalk": {
- "version": "3.0.0",
- "license": "MIT",
+ "node_modules/@storybook/addon-docs/node_modules/chalk": {
+ "version": "4.1.2",
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
+ "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
"optional": true,
"dependencies": {
"ansi-styles": "^4.1.0",
"supports-color": "^7.1.0"
},
"engines": {
- "node": ">=8"
- }
- },
- "node_modules/@storybook/core/node_modules/dotenv": {
- "version": "6.2.0",
- "license": "BSD-2-Clause",
- "optional": true,
- "engines": {
- "node": ">=6"
- }
- },
- "node_modules/@storybook/core/node_modules/dotenv-defaults": {
- "version": "1.1.1",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "dotenv": "^6.2.0"
- }
- },
- "node_modules/@storybook/core/node_modules/dotenv-webpack": {
- "version": "1.8.0",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "dotenv-defaults": "^1.0.2"
- },
- "peerDependencies": {
- "webpack": "^1 || ^2 || ^3 || ^4"
- }
- },
- "node_modules/@storybook/core/node_modules/file-loader": {
- "version": "4.3.0",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "loader-utils": "^1.2.3",
- "schema-utils": "^2.5.0"
- },
- "engines": {
- "node": ">= 8.9.0"
- },
- "peerDependencies": {
- "webpack": "^4.0.0"
- }
- },
- "node_modules/@storybook/core/node_modules/find-up": {
- "version": "4.1.0",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "locate-path": "^5.0.0",
- "path-exists": "^4.0.0"
- },
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/@storybook/core/node_modules/has-flag": {
- "version": "4.0.0",
- "license": "MIT",
- "optional": true,
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/@storybook/core/node_modules/html-webpack-plugin": {
- "version": "4.5.2",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "@types/html-minifier-terser": "^5.0.0",
- "@types/tapable": "^1.0.5",
- "@types/webpack": "^4.41.8",
- "html-minifier-terser": "^5.0.1",
- "loader-utils": "^1.2.3",
- "lodash": "^4.17.20",
- "pretty-error": "^2.1.1",
- "tapable": "^1.1.3",
- "util.promisify": "1.0.0"
- },
- "engines": {
- "node": ">=6.9"
- },
- "peerDependencies": {
- "webpack": "^4.0.0 || ^5.0.0"
- }
- },
- "node_modules/@storybook/core/node_modules/interpret": {
- "version": "2.2.0",
- "license": "MIT",
- "optional": true,
- "engines": {
- "node": ">= 0.10"
- }
- },
- "node_modules/@storybook/core/node_modules/locate-path": {
- "version": "5.0.0",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "p-locate": "^4.1.0"
- },
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/@storybook/core/node_modules/p-locate": {
- "version": "4.1.0",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "p-limit": "^2.2.0"
- },
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/@storybook/core/node_modules/path-exists": {
- "version": "4.0.0",
- "license": "MIT",
- "optional": true,
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/@storybook/core/node_modules/regenerator-runtime": {
- "version": "0.13.7",
- "license": "MIT",
- "optional": true
- },
- "node_modules/@storybook/core/node_modules/resolve-from": {
- "version": "5.0.0",
- "license": "MIT",
- "optional": true,
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/@storybook/core/node_modules/schema-utils": {
- "version": "2.7.1",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "@types/json-schema": "^7.0.5",
- "ajv": "^6.12.4",
- "ajv-keywords": "^3.5.2"
- },
- "engines": {
- "node": ">= 8.9.0"
+ "node": ">=10"
},
"funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/webpack"
+ "url": "https://github.com/chalk/chalk?sponsor=1"
}
},
- "node_modules/@storybook/core/node_modules/semver": {
- "version": "6.3.0",
- "license": "ISC",
+ "node_modules/@storybook/addon-docs/node_modules/convert-source-map": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz",
+ "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==",
+ "optional": true
+ },
+ "node_modules/@storybook/addon-docs/node_modules/fs-extra": {
+ "version": "11.1.1",
+ "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-11.1.1.tgz",
+ "integrity": "sha512-MGIE4HOvQCeUCzmlHs0vXpih4ysz4wg9qiSAu6cd42lVwPbTM1TjV7RusoyQqMmk/95gdQZX72u+YW+c3eEpFQ==",
"optional": true,
- "bin": {
- "semver": "bin/semver.js"
+ "dependencies": {
+ "graceful-fs": "^4.2.0",
+ "jsonfile": "^6.0.1",
+ "universalify": "^2.0.0"
+ },
+ "engines": {
+ "node": ">=14.14"
}
},
- "node_modules/@storybook/core/node_modules/supports-color": {
+ "node_modules/@storybook/addon-docs/node_modules/fsevents": {
+ "version": "2.3.2",
+ "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz",
+ "integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==",
+ "hasInstallScript": true,
+ "optional": true,
+ "os": [
+ "darwin"
+ ],
+ "engines": {
+ "node": "^8.16.0 || ^10.6.0 || >=11.0.0"
+ }
+ },
+ "node_modules/@storybook/addon-docs/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==",
+ "optional": true,
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/@storybook/addon-docs/node_modules/jest-haste-map": {
+ "version": "29.5.0",
+ "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-29.5.0.tgz",
+ "integrity": "sha512-IspOPnnBro8YfVYSw6yDRKh/TiCdRngjxeacCps1cQ9cgVN6+10JUcuJ1EabrgYLOATsIAigxA0rLR9x/YlrSA==",
+ "optional": true,
+ "dependencies": {
+ "@jest/types": "^29.5.0",
+ "@types/graceful-fs": "^4.1.3",
+ "@types/node": "*",
+ "anymatch": "^3.0.3",
+ "fb-watchman": "^2.0.0",
+ "graceful-fs": "^4.2.9",
+ "jest-regex-util": "^29.4.3",
+ "jest-util": "^29.5.0",
+ "jest-worker": "^29.5.0",
+ "micromatch": "^4.0.4",
+ "walker": "^1.0.8"
+ },
+ "engines": {
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
+ },
+ "optionalDependencies": {
+ "fsevents": "^2.3.2"
+ }
+ },
+ "node_modules/@storybook/addon-docs/node_modules/jest-regex-util": {
+ "version": "29.4.3",
+ "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-29.4.3.tgz",
+ "integrity": "sha512-O4FglZaMmWXbGHSQInfXewIsd1LMn9p3ZXB/6r4FOkyhX2/iP/soMG98jGvk/A3HAN78+5VWcBGO0BJAPRh4kg==",
+ "optional": true,
+ "engines": {
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
+ }
+ },
+ "node_modules/@storybook/addon-docs/node_modules/jest-util": {
+ "version": "29.5.0",
+ "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-29.5.0.tgz",
+ "integrity": "sha512-RYMgG/MTadOr5t8KdhejfvUU82MxsCu5MF6KuDUHl+NuwzUt+Sm6jJWxTJVrDR1j5M/gJVCPKQEpWXY+yIQ6lQ==",
+ "optional": true,
+ "dependencies": {
+ "@jest/types": "^29.5.0",
+ "@types/node": "*",
+ "chalk": "^4.0.0",
+ "ci-info": "^3.2.0",
+ "graceful-fs": "^4.2.9",
+ "picomatch": "^2.2.3"
+ },
+ "engines": {
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
+ }
+ },
+ "node_modules/@storybook/addon-docs/node_modules/jest-worker": {
+ "version": "29.5.0",
+ "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-29.5.0.tgz",
+ "integrity": "sha512-NcrQnevGoSp4b5kg+akIpthoAFHxPBcb5P6mYPY0fUNT+sSvmtu6jlkEle3anczUKIKEbMxFimk9oTP/tpIPgA==",
+ "optional": true,
+ "dependencies": {
+ "@types/node": "*",
+ "jest-util": "^29.5.0",
+ "merge-stream": "^2.0.0",
+ "supports-color": "^8.0.0"
+ },
+ "engines": {
+ "node": "^14.15.0 || ^16.10.0 || >=18.0.0"
+ }
+ },
+ "node_modules/@storybook/addon-docs/node_modules/jest-worker/node_modules/supports-color": {
+ "version": "8.1.1",
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz",
+ "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==",
+ "optional": true,
+ "dependencies": {
+ "has-flag": "^4.0.0"
+ },
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/supports-color?sponsor=1"
+ }
+ },
+ "node_modules/@storybook/addon-docs/node_modules/jsonfile": {
+ "version": "6.1.0",
+ "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz",
+ "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==",
+ "optional": true,
+ "dependencies": {
+ "universalify": "^2.0.0"
+ },
+ "optionalDependencies": {
+ "graceful-fs": "^4.1.6"
+ }
+ },
+ "node_modules/@storybook/addon-docs/node_modules/supports-color": {
"version": "7.2.0",
- "license": "MIT",
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
+ "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
"optional": true,
"dependencies": {
"has-flag": "^4.0.0"
@@ -8762,64 +8775,1949 @@
"node": ">=8"
}
},
- "node_modules/@storybook/core/node_modules/util.promisify": {
- "version": "1.0.0",
- "license": "MIT",
+ "node_modules/@storybook/addon-docs/node_modules/universalify": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz",
+ "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==",
"optional": true,
- "dependencies": {
- "define-properties": "^1.1.2",
- "object.getownpropertydescriptors": "^2.0.3"
+ "engines": {
+ "node": ">= 10.0.0"
}
},
- "node_modules/@storybook/csf": {
- "version": "0.0.1",
- "license": "MIT",
+ "node_modules/@storybook/addon-docs/node_modules/write-file-atomic": {
+ "version": "4.0.2",
+ "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-4.0.2.tgz",
+ "integrity": "sha512-7KxauUdBmSdWnmpaGFg+ppNjKF8uNLry8LyzjauQDOVONfFLNKrKvQOxZ/VuTIcS/gge/YNahf5RIIQWTSarlg==",
"optional": true,
"dependencies": {
- "lodash": "^4.17.15"
+ "imurmurhash": "^0.1.4",
+ "signal-exit": "^3.0.7"
+ },
+ "engines": {
+ "node": "^12.13.0 || ^14.15.0 || >=16.0.0"
}
},
- "node_modules/@storybook/node-logger": {
- "version": "5.3.21",
- "license": "MIT",
+ "node_modules/@storybook/addon-essentials": {
+ "version": "7.0.8",
+ "resolved": "https://registry.npmjs.org/@storybook/addon-essentials/-/addon-essentials-7.0.8.tgz",
+ "integrity": "sha512-tqZcntWkNTcV3xhBoFauw1K8ScEuzEb76qS+AlqZP8DCetGImevt08KELQGyzCU80my9T+iSvC5V68v3zXtK9Q==",
"optional": true,
"dependencies": {
- "@types/npmlog": "^4.1.2",
- "chalk": "^3.0.0",
- "core-js": "^3.0.1",
- "npmlog": "^4.1.2",
- "pretty-hrtime": "^1.0.3",
- "regenerator-runtime": "^0.13.3"
+ "@storybook/addon-actions": "7.0.8",
+ "@storybook/addon-backgrounds": "7.0.8",
+ "@storybook/addon-controls": "7.0.8",
+ "@storybook/addon-docs": "7.0.8",
+ "@storybook/addon-highlight": "7.0.8",
+ "@storybook/addon-measure": "7.0.8",
+ "@storybook/addon-outline": "7.0.8",
+ "@storybook/addon-toolbars": "7.0.8",
+ "@storybook/addon-viewport": "7.0.8",
+ "@storybook/core-common": "7.0.8",
+ "@storybook/manager-api": "7.0.8",
+ "@storybook/node-logger": "7.0.8",
+ "@storybook/preview-api": "7.0.8",
+ "ts-dedent": "^2.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/storybook"
+ },
+ "peerDependencies": {
+ "react": "^16.8.0 || ^17.0.0 || ^18.0.0",
+ "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0"
}
},
- "node_modules/@storybook/node-logger/node_modules/chalk": {
- "version": "3.0.0",
- "license": "MIT",
+ "node_modules/@storybook/addon-highlight": {
+ "version": "7.0.8",
+ "resolved": "https://registry.npmjs.org/@storybook/addon-highlight/-/addon-highlight-7.0.8.tgz",
+ "integrity": "sha512-d26jo7/Z1PIzZH+cE5E6jZ3yKgKFOPZNfylz2Gpg8jD2gV91Nk30ursl4nEJToEsEe2JkSdae4Qm59vCXbWcNw==",
+ "optional": true,
+ "dependencies": {
+ "@storybook/core-events": "7.0.8",
+ "@storybook/global": "^5.0.0",
+ "@storybook/preview-api": "7.0.8"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/storybook"
+ }
+ },
+ "node_modules/@storybook/addon-interactions": {
+ "version": "7.0.8",
+ "resolved": "https://registry.npmjs.org/@storybook/addon-interactions/-/addon-interactions-7.0.8.tgz",
+ "integrity": "sha512-fVAOJnWZ3Ce9TAnqR42xM/x0yiRK5qSnBPYGbZyg5Q2y4dg8jBvs8HRh44XMgUSs0XmtLVauAlA+Co549zKtwA==",
+ "optional": true,
+ "dependencies": {
+ "@storybook/client-logger": "7.0.8",
+ "@storybook/components": "7.0.8",
+ "@storybook/core-common": "7.0.8",
+ "@storybook/core-events": "7.0.8",
+ "@storybook/global": "^5.0.0",
+ "@storybook/instrumenter": "7.0.8",
+ "@storybook/manager-api": "7.0.8",
+ "@storybook/preview-api": "7.0.8",
+ "@storybook/theming": "7.0.8",
+ "@storybook/types": "7.0.8",
+ "jest-mock": "^27.0.6",
+ "polished": "^4.2.2",
+ "ts-dedent": "^2.2.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/storybook"
+ },
+ "peerDependencies": {
+ "react": "^16.8.0 || ^17.0.0 || ^18.0.0",
+ "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0"
+ },
+ "peerDependenciesMeta": {
+ "react": {
+ "optional": true
+ },
+ "react-dom": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/@storybook/addon-links": {
+ "version": "7.0.8",
+ "resolved": "https://registry.npmjs.org/@storybook/addon-links/-/addon-links-7.0.8.tgz",
+ "integrity": "sha512-BhEwbrNfyJrSzbdyv+jE33QDXADA3ilBooJm2KY9NsVLu56Jk5d76dELZ+ucLLRvsg1wc+5Z8yH+knqtmUD+Hg==",
+ "optional": true,
+ "dependencies": {
+ "@storybook/client-logger": "7.0.8",
+ "@storybook/core-events": "7.0.8",
+ "@storybook/csf": "^0.1.0",
+ "@storybook/global": "^5.0.0",
+ "@storybook/manager-api": "7.0.8",
+ "@storybook/preview-api": "7.0.8",
+ "@storybook/router": "7.0.8",
+ "@storybook/types": "7.0.8",
+ "prop-types": "^15.7.2",
+ "ts-dedent": "^2.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/storybook"
+ },
+ "peerDependencies": {
+ "react": "^16.8.0 || ^17.0.0 || ^18.0.0",
+ "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0"
+ },
+ "peerDependenciesMeta": {
+ "react": {
+ "optional": true
+ },
+ "react-dom": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/@storybook/addon-measure": {
+ "version": "7.0.8",
+ "resolved": "https://registry.npmjs.org/@storybook/addon-measure/-/addon-measure-7.0.8.tgz",
+ "integrity": "sha512-22q/aS8OHQZe35kAIz18iDGVb18ZF/eyQWnN6HLRQFzvQlqxxjKqVuMHyCIN0w53czYFq31kiL4YWcLd3L33/Q==",
+ "optional": true,
+ "dependencies": {
+ "@storybook/client-logger": "7.0.8",
+ "@storybook/components": "7.0.8",
+ "@storybook/core-events": "7.0.8",
+ "@storybook/global": "^5.0.0",
+ "@storybook/manager-api": "7.0.8",
+ "@storybook/preview-api": "7.0.8",
+ "@storybook/types": "7.0.8"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/storybook"
+ },
+ "peerDependencies": {
+ "react": "^16.8.0 || ^17.0.0 || ^18.0.0",
+ "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0"
+ },
+ "peerDependenciesMeta": {
+ "react": {
+ "optional": true
+ },
+ "react-dom": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/@storybook/addon-outline": {
+ "version": "7.0.8",
+ "resolved": "https://registry.npmjs.org/@storybook/addon-outline/-/addon-outline-7.0.8.tgz",
+ "integrity": "sha512-NfW6/dvtni6gE/Aj7NIc8GfbjnjmgI07mm7BCCKwzsHS9s3AA1ewxyhgL1E9dsigh1DK0SQpW9PdJxUcOonbew==",
+ "optional": true,
+ "dependencies": {
+ "@storybook/client-logger": "7.0.8",
+ "@storybook/components": "7.0.8",
+ "@storybook/core-events": "7.0.8",
+ "@storybook/global": "^5.0.0",
+ "@storybook/manager-api": "7.0.8",
+ "@storybook/preview-api": "7.0.8",
+ "@storybook/types": "7.0.8",
+ "ts-dedent": "^2.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/storybook"
+ },
+ "peerDependencies": {
+ "react": "^16.8.0 || ^17.0.0 || ^18.0.0",
+ "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0"
+ },
+ "peerDependenciesMeta": {
+ "react": {
+ "optional": true
+ },
+ "react-dom": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/@storybook/addon-toolbars": {
+ "version": "7.0.8",
+ "resolved": "https://registry.npmjs.org/@storybook/addon-toolbars/-/addon-toolbars-7.0.8.tgz",
+ "integrity": "sha512-BNlMia7B+tnaAZZotkPB7GPaFPV+ITngqmfGwmPeCP+4AnCY1oX9GJ9uYeSUBB3sV9m8OHrAxj/z+/SVY1l2Cw==",
+ "optional": true,
+ "dependencies": {
+ "@storybook/client-logger": "7.0.8",
+ "@storybook/components": "7.0.8",
+ "@storybook/manager-api": "7.0.8",
+ "@storybook/preview-api": "7.0.8",
+ "@storybook/theming": "7.0.8"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/storybook"
+ },
+ "peerDependencies": {
+ "react": "^16.8.0 || ^17.0.0 || ^18.0.0",
+ "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0"
+ },
+ "peerDependenciesMeta": {
+ "react": {
+ "optional": true
+ },
+ "react-dom": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/@storybook/addon-viewport": {
+ "version": "7.0.8",
+ "resolved": "https://registry.npmjs.org/@storybook/addon-viewport/-/addon-viewport-7.0.8.tgz",
+ "integrity": "sha512-IwHs8e/Zwixt5rk+EINblMyKh8RxPBStsc0pzHerJ8knMwzXMUPGmlDPuWYUg1u4eg3dacjGrtQbFIxsqso0Mw==",
+ "optional": true,
+ "dependencies": {
+ "@storybook/client-logger": "7.0.8",
+ "@storybook/components": "7.0.8",
+ "@storybook/core-events": "7.0.8",
+ "@storybook/global": "^5.0.0",
+ "@storybook/manager-api": "7.0.8",
+ "@storybook/preview-api": "7.0.8",
+ "@storybook/theming": "7.0.8",
+ "memoizerific": "^1.11.3",
+ "prop-types": "^15.7.2"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/storybook"
+ },
+ "peerDependencies": {
+ "react": "^16.8.0 || ^17.0.0 || ^18.0.0",
+ "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0"
+ },
+ "peerDependenciesMeta": {
+ "react": {
+ "optional": true
+ },
+ "react-dom": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/@storybook/blocks": {
+ "version": "7.0.8",
+ "resolved": "https://registry.npmjs.org/@storybook/blocks/-/blocks-7.0.8.tgz",
+ "integrity": "sha512-VAzlMf5DRm0ZX6/9W/4Izv3j9n87i4MthBmN+rnUG+cmPumBm3xtETJqZbSIAWAM4ucKHrgrKQhZPg1QX1U66w==",
+ "optional": true,
+ "dependencies": {
+ "@storybook/channels": "7.0.8",
+ "@storybook/client-logger": "7.0.8",
+ "@storybook/components": "7.0.8",
+ "@storybook/core-events": "7.0.8",
+ "@storybook/csf": "^0.1.0",
+ "@storybook/docs-tools": "7.0.8",
+ "@storybook/global": "^5.0.0",
+ "@storybook/manager-api": "7.0.8",
+ "@storybook/preview-api": "7.0.8",
+ "@storybook/theming": "7.0.8",
+ "@storybook/types": "7.0.8",
+ "@types/lodash": "^4.14.167",
+ "color-convert": "^2.0.1",
+ "dequal": "^2.0.2",
+ "lodash": "^4.17.21",
+ "markdown-to-jsx": "^7.1.8",
+ "memoizerific": "^1.11.3",
+ "polished": "^4.2.2",
+ "react-colorful": "^5.1.2",
+ "telejson": "^7.0.3",
+ "ts-dedent": "^2.0.0",
+ "util-deprecate": "^1.0.2"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/storybook"
+ },
+ "peerDependencies": {
+ "react": "^16.8.0 || ^17.0.0 || ^18.0.0",
+ "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0"
+ }
+ },
+ "node_modules/@storybook/builder-manager": {
+ "version": "7.0.8",
+ "resolved": "https://registry.npmjs.org/@storybook/builder-manager/-/builder-manager-7.0.8.tgz",
+ "integrity": "sha512-PxFiXbxAy4o6kV5EjtEq1cg6UwJsMhV7ZvYn3HuKNkS+8qk2iZdAe0tGcA9LbvRR6k5rEeU/PxbRjcBWBjUyEA==",
+ "optional": true,
+ "dependencies": {
+ "@fal-works/esbuild-plugin-global-externals": "^2.1.2",
+ "@storybook/core-common": "7.0.8",
+ "@storybook/manager": "7.0.8",
+ "@storybook/node-logger": "7.0.8",
+ "@types/ejs": "^3.1.1",
+ "@types/find-cache-dir": "^3.2.1",
+ "@yarnpkg/esbuild-plugin-pnp": "^3.0.0-rc.10",
+ "browser-assert": "^1.2.1",
+ "ejs": "^3.1.8",
+ "esbuild": "^0.17.0",
+ "esbuild-plugin-alias": "^0.2.1",
+ "express": "^4.17.3",
+ "find-cache-dir": "^3.0.0",
+ "fs-extra": "^11.1.0",
+ "process": "^0.11.10",
+ "util": "^0.12.4"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/storybook"
+ }
+ },
+ "node_modules/@storybook/builder-manager/node_modules/esbuild": {
+ "version": "0.17.18",
+ "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.17.18.tgz",
+ "integrity": "sha512-z1lix43jBs6UKjcZVKOw2xx69ffE2aG0PygLL5qJ9OS/gy0Ewd1gW/PUQIOIQGXBHWNywSc0floSKoMFF8aK2w==",
+ "hasInstallScript": true,
+ "optional": true,
+ "bin": {
+ "esbuild": "bin/esbuild"
+ },
+ "engines": {
+ "node": ">=12"
+ },
+ "optionalDependencies": {
+ "@esbuild/android-arm": "0.17.18",
+ "@esbuild/android-arm64": "0.17.18",
+ "@esbuild/android-x64": "0.17.18",
+ "@esbuild/darwin-arm64": "0.17.18",
+ "@esbuild/darwin-x64": "0.17.18",
+ "@esbuild/freebsd-arm64": "0.17.18",
+ "@esbuild/freebsd-x64": "0.17.18",
+ "@esbuild/linux-arm": "0.17.18",
+ "@esbuild/linux-arm64": "0.17.18",
+ "@esbuild/linux-ia32": "0.17.18",
+ "@esbuild/linux-loong64": "0.17.18",
+ "@esbuild/linux-mips64el": "0.17.18",
+ "@esbuild/linux-ppc64": "0.17.18",
+ "@esbuild/linux-riscv64": "0.17.18",
+ "@esbuild/linux-s390x": "0.17.18",
+ "@esbuild/linux-x64": "0.17.18",
+ "@esbuild/netbsd-x64": "0.17.18",
+ "@esbuild/openbsd-x64": "0.17.18",
+ "@esbuild/sunos-x64": "0.17.18",
+ "@esbuild/win32-arm64": "0.17.18",
+ "@esbuild/win32-ia32": "0.17.18",
+ "@esbuild/win32-x64": "0.17.18"
+ }
+ },
+ "node_modules/@storybook/builder-manager/node_modules/fs-extra": {
+ "version": "11.1.1",
+ "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-11.1.1.tgz",
+ "integrity": "sha512-MGIE4HOvQCeUCzmlHs0vXpih4ysz4wg9qiSAu6cd42lVwPbTM1TjV7RusoyQqMmk/95gdQZX72u+YW+c3eEpFQ==",
+ "optional": true,
+ "dependencies": {
+ "graceful-fs": "^4.2.0",
+ "jsonfile": "^6.0.1",
+ "universalify": "^2.0.0"
+ },
+ "engines": {
+ "node": ">=14.14"
+ }
+ },
+ "node_modules/@storybook/builder-manager/node_modules/jsonfile": {
+ "version": "6.1.0",
+ "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz",
+ "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==",
+ "optional": true,
+ "dependencies": {
+ "universalify": "^2.0.0"
+ },
+ "optionalDependencies": {
+ "graceful-fs": "^4.1.6"
+ }
+ },
+ "node_modules/@storybook/builder-manager/node_modules/universalify": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz",
+ "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==",
+ "optional": true,
+ "engines": {
+ "node": ">= 10.0.0"
+ }
+ },
+ "node_modules/@storybook/builder-vite": {
+ "version": "7.0.8",
+ "resolved": "https://registry.npmjs.org/@storybook/builder-vite/-/builder-vite-7.0.8.tgz",
+ "integrity": "sha512-Zj2LCObL4+y0qVkvIyFY+mV/TQl980bWX6gqvL1bYJ2dMV4jDekM1imoiYXkBs5dBN90Y76IOd+78KTjfz1hmg==",
+ "optional": true,
+ "dependencies": {
+ "@storybook/channel-postmessage": "7.0.8",
+ "@storybook/channel-websocket": "7.0.8",
+ "@storybook/client-logger": "7.0.8",
+ "@storybook/core-common": "7.0.8",
+ "@storybook/csf-plugin": "7.0.8",
+ "@storybook/mdx2-csf": "^1.0.0",
+ "@storybook/node-logger": "7.0.8",
+ "@storybook/preview": "7.0.8",
+ "@storybook/preview-api": "7.0.8",
+ "@storybook/types": "7.0.8",
+ "browser-assert": "^1.2.1",
+ "es-module-lexer": "^0.9.3",
+ "express": "^4.17.3",
+ "fs-extra": "^11.1.0",
+ "glob": "^8.1.0",
+ "glob-promise": "^6.0.2",
+ "magic-string": "^0.27.0",
+ "remark-external-links": "^8.0.0",
+ "remark-slug": "^6.0.0",
+ "rollup": "^2.25.0 || ^3.3.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/storybook"
+ },
+ "peerDependencies": {
+ "@preact/preset-vite": "*",
+ "typescript": ">= 4.3.x",
+ "vite": "^3.0.0 || ^4.0.0",
+ "vite-plugin-glimmerx": "*"
+ },
+ "peerDependenciesMeta": {
+ "@preact/preset-vite": {
+ "optional": true
+ },
+ "typescript": {
+ "optional": true
+ },
+ "vite-plugin-glimmerx": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/@storybook/builder-vite/node_modules/brace-expansion": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz",
+ "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==",
+ "optional": true,
+ "dependencies": {
+ "balanced-match": "^1.0.0"
+ }
+ },
+ "node_modules/@storybook/builder-vite/node_modules/fs-extra": {
+ "version": "11.1.1",
+ "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-11.1.1.tgz",
+ "integrity": "sha512-MGIE4HOvQCeUCzmlHs0vXpih4ysz4wg9qiSAu6cd42lVwPbTM1TjV7RusoyQqMmk/95gdQZX72u+YW+c3eEpFQ==",
+ "optional": true,
+ "dependencies": {
+ "graceful-fs": "^4.2.0",
+ "jsonfile": "^6.0.1",
+ "universalify": "^2.0.0"
+ },
+ "engines": {
+ "node": ">=14.14"
+ }
+ },
+ "node_modules/@storybook/builder-vite/node_modules/glob": {
+ "version": "8.1.0",
+ "resolved": "https://registry.npmjs.org/glob/-/glob-8.1.0.tgz",
+ "integrity": "sha512-r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ==",
+ "optional": true,
+ "dependencies": {
+ "fs.realpath": "^1.0.0",
+ "inflight": "^1.0.4",
+ "inherits": "2",
+ "minimatch": "^5.0.1",
+ "once": "^1.3.0"
+ },
+ "engines": {
+ "node": ">=12"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/isaacs"
+ }
+ },
+ "node_modules/@storybook/builder-vite/node_modules/jsonfile": {
+ "version": "6.1.0",
+ "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz",
+ "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==",
+ "optional": true,
+ "dependencies": {
+ "universalify": "^2.0.0"
+ },
+ "optionalDependencies": {
+ "graceful-fs": "^4.1.6"
+ }
+ },
+ "node_modules/@storybook/builder-vite/node_modules/magic-string": {
+ "version": "0.27.0",
+ "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.27.0.tgz",
+ "integrity": "sha512-8UnnX2PeRAPZuN12svgR9j7M1uWMovg/CEnIwIG0LFkXSJJe4PdfUGiTGl8V9bsBHFUtfVINcSyYxd7q+kx9fA==",
+ "optional": true,
+ "dependencies": {
+ "@jridgewell/sourcemap-codec": "^1.4.13"
+ },
+ "engines": {
+ "node": ">=12"
+ }
+ },
+ "node_modules/@storybook/builder-vite/node_modules/minimatch": {
+ "version": "5.1.6",
+ "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.6.tgz",
+ "integrity": "sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==",
+ "optional": true,
+ "dependencies": {
+ "brace-expansion": "^2.0.1"
+ },
+ "engines": {
+ "node": ">=10"
+ }
+ },
+ "node_modules/@storybook/builder-vite/node_modules/universalify": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz",
+ "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==",
+ "optional": true,
+ "engines": {
+ "node": ">= 10.0.0"
+ }
+ },
+ "node_modules/@storybook/channel-postmessage": {
+ "version": "7.0.8",
+ "resolved": "https://registry.npmjs.org/@storybook/channel-postmessage/-/channel-postmessage-7.0.8.tgz",
+ "integrity": "sha512-op/SB2Tg66bxS4DHOhrSVja7Xdp8aiWIJ47vygSq31nqpwv5auCTptOrcdzTikOjH+4dKfTGxTx6Z5g065tuiQ==",
+ "optional": true,
+ "dependencies": {
+ "@storybook/channels": "7.0.8",
+ "@storybook/client-logger": "7.0.8",
+ "@storybook/core-events": "7.0.8",
+ "@storybook/global": "^5.0.0",
+ "qs": "^6.10.0",
+ "telejson": "^7.0.3"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/storybook"
+ }
+ },
+ "node_modules/@storybook/channel-websocket": {
+ "version": "7.0.8",
+ "resolved": "https://registry.npmjs.org/@storybook/channel-websocket/-/channel-websocket-7.0.8.tgz",
+ "integrity": "sha512-qHMVc8b+zaOGDEG1i2905PCUwkGH3Ys/DqtZJAry64MaTnXrR6bPE3lI+FDRyr5a5afV53yz8rb7lTMoNaHpUg==",
+ "optional": true,
+ "dependencies": {
+ "@storybook/channels": "7.0.8",
+ "@storybook/client-logger": "7.0.8",
+ "@storybook/global": "^5.0.0",
+ "telejson": "^7.0.3"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/storybook"
+ }
+ },
+ "node_modules/@storybook/channels": {
+ "version": "7.0.8",
+ "resolved": "https://registry.npmjs.org/@storybook/channels/-/channels-7.0.8.tgz",
+ "integrity": "sha512-z8W4r8te/EiEDfk8qaxmjwMcKMe+x12leWEwtyz6e9XI0Q4qTk17dDtq/XZ5Ab2Ks4VSvWRu1e/QURiVpjbo2Q==",
+ "optional": true,
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/storybook"
+ }
+ },
+ "node_modules/@storybook/cli": {
+ "version": "7.0.8",
+ "resolved": "https://registry.npmjs.org/@storybook/cli/-/cli-7.0.8.tgz",
+ "integrity": "sha512-KvuleEXWrDz1OZC9c/ejAWSEns7YAXYCsS76BA3hx/xGnpcUQG7AZ00G8sy7viHFQjjA3G1YsMOm2p4YI0A1oA==",
+ "optional": true,
+ "dependencies": {
+ "@babel/core": "^7.20.2",
+ "@babel/preset-env": "^7.20.2",
+ "@ndelangen/get-tarball": "^3.0.7",
+ "@storybook/codemod": "7.0.8",
+ "@storybook/core-common": "7.0.8",
+ "@storybook/core-server": "7.0.8",
+ "@storybook/csf-tools": "7.0.8",
+ "@storybook/node-logger": "7.0.8",
+ "@storybook/telemetry": "7.0.8",
+ "@storybook/types": "7.0.8",
+ "@types/semver": "^7.3.4",
+ "boxen": "^5.1.2",
+ "chalk": "^4.1.0",
+ "commander": "^6.2.1",
+ "cross-spawn": "^7.0.3",
+ "detect-indent": "^6.1.0",
+ "envinfo": "^7.7.3",
+ "execa": "^5.0.0",
+ "express": "^4.17.3",
+ "find-up": "^5.0.0",
+ "fs-extra": "^11.1.0",
+ "get-npm-tarball-url": "^2.0.3",
+ "get-port": "^5.1.1",
+ "giget": "^1.0.0",
+ "globby": "^11.0.2",
+ "jscodeshift": "^0.14.0",
+ "leven": "^3.1.0",
+ "prettier": "^2.8.0",
+ "prompts": "^2.4.0",
+ "puppeteer-core": "^2.1.1",
+ "read-pkg-up": "^7.0.1",
+ "semver": "^7.3.7",
+ "shelljs": "^0.8.5",
+ "simple-update-notifier": "^1.0.0",
+ "strip-json-comments": "^3.0.1",
+ "tempy": "^1.0.1",
+ "ts-dedent": "^2.0.0",
+ "util-deprecate": "^1.0.2"
+ },
+ "bin": {
+ "getstorybook": "bin/index.js",
+ "sb": "bin/index.js"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/storybook"
+ }
+ },
+ "node_modules/@storybook/cli/node_modules/ast-types": {
+ "version": "0.15.2",
+ "resolved": "https://registry.npmjs.org/ast-types/-/ast-types-0.15.2.tgz",
+ "integrity": "sha512-c27loCv9QkZinsa5ProX751khO9DJl/AcB5c2KNtA6NRvHKS0PgLfcftz72KVq504vB0Gku5s2kUZzDBvQWvHg==",
+ "optional": true,
+ "dependencies": {
+ "tslib": "^2.0.1"
+ },
+ "engines": {
+ "node": ">=4"
+ }
+ },
+ "node_modules/@storybook/cli/node_modules/chalk": {
+ "version": "4.1.2",
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
+ "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
"optional": true,
"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/@storybook/cli/node_modules/commander": {
+ "version": "6.2.1",
+ "resolved": "https://registry.npmjs.org/commander/-/commander-6.2.1.tgz",
+ "integrity": "sha512-U7VdrJFnJgo4xjrHpTzu0yrHPGImdsmD95ZlgYSEajAn2JKzDhDTPG9kBTefmObL2w/ngeZnilk+OV9CG3d7UA==",
+ "optional": true,
+ "engines": {
+ "node": ">= 6"
+ }
+ },
+ "node_modules/@storybook/cli/node_modules/execa": {
+ "version": "5.1.1",
+ "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz",
+ "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==",
+ "optional": true,
+ "dependencies": {
+ "cross-spawn": "^7.0.3",
+ "get-stream": "^6.0.0",
+ "human-signals": "^2.1.0",
+ "is-stream": "^2.0.0",
+ "merge-stream": "^2.0.0",
+ "npm-run-path": "^4.0.1",
+ "onetime": "^5.1.2",
+ "signal-exit": "^3.0.3",
+ "strip-final-newline": "^2.0.0"
+ },
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/sindresorhus/execa?sponsor=1"
+ }
+ },
+ "node_modules/@storybook/cli/node_modules/find-up": {
+ "version": "5.0.0",
+ "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz",
+ "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==",
+ "optional": true,
+ "dependencies": {
+ "locate-path": "^6.0.0",
+ "path-exists": "^4.0.0"
+ },
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/@storybook/cli/node_modules/fs-extra": {
+ "version": "11.1.1",
+ "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-11.1.1.tgz",
+ "integrity": "sha512-MGIE4HOvQCeUCzmlHs0vXpih4ysz4wg9qiSAu6cd42lVwPbTM1TjV7RusoyQqMmk/95gdQZX72u+YW+c3eEpFQ==",
+ "optional": true,
+ "dependencies": {
+ "graceful-fs": "^4.2.0",
+ "jsonfile": "^6.0.1",
+ "universalify": "^2.0.0"
+ },
+ "engines": {
+ "node": ">=14.14"
+ }
+ },
+ "node_modules/@storybook/cli/node_modules/get-stream": {
+ "version": "6.0.1",
+ "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz",
+ "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==",
+ "optional": true,
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/@storybook/cli/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==",
+ "optional": true,
"engines": {
"node": ">=8"
}
},
+ "node_modules/@storybook/cli/node_modules/human-signals": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz",
+ "integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==",
+ "optional": true,
+ "engines": {
+ "node": ">=10.17.0"
+ }
+ },
+ "node_modules/@storybook/cli/node_modules/jscodeshift": {
+ "version": "0.14.0",
+ "resolved": "https://registry.npmjs.org/jscodeshift/-/jscodeshift-0.14.0.tgz",
+ "integrity": "sha512-7eCC1knD7bLUPuSCwXsMZUH51O8jIcoVyKtI6P0XM0IVzlGjckPy3FIwQlorzbN0Sg79oK+RlohN32Mqf/lrYA==",
+ "optional": true,
+ "dependencies": {
+ "@babel/core": "^7.13.16",
+ "@babel/parser": "^7.13.16",
+ "@babel/plugin-proposal-class-properties": "^7.13.0",
+ "@babel/plugin-proposal-nullish-coalescing-operator": "^7.13.8",
+ "@babel/plugin-proposal-optional-chaining": "^7.13.12",
+ "@babel/plugin-transform-modules-commonjs": "^7.13.8",
+ "@babel/preset-flow": "^7.13.13",
+ "@babel/preset-typescript": "^7.13.0",
+ "@babel/register": "^7.13.16",
+ "babel-core": "^7.0.0-bridge.0",
+ "chalk": "^4.1.2",
+ "flow-parser": "0.*",
+ "graceful-fs": "^4.2.4",
+ "micromatch": "^4.0.4",
+ "neo-async": "^2.5.0",
+ "node-dir": "^0.1.17",
+ "recast": "^0.21.0",
+ "temp": "^0.8.4",
+ "write-file-atomic": "^2.3.0"
+ },
+ "bin": {
+ "jscodeshift": "bin/jscodeshift.js"
+ },
+ "peerDependencies": {
+ "@babel/preset-env": "^7.1.6"
+ }
+ },
+ "node_modules/@storybook/cli/node_modules/jsonfile": {
+ "version": "6.1.0",
+ "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz",
+ "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==",
+ "optional": true,
+ "dependencies": {
+ "universalify": "^2.0.0"
+ },
+ "optionalDependencies": {
+ "graceful-fs": "^4.1.6"
+ }
+ },
+ "node_modules/@storybook/cli/node_modules/locate-path": {
+ "version": "6.0.0",
+ "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz",
+ "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==",
+ "optional": true,
+ "dependencies": {
+ "p-locate": "^5.0.0"
+ },
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/@storybook/cli/node_modules/p-limit": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz",
+ "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==",
+ "optional": true,
+ "dependencies": {
+ "yocto-queue": "^0.1.0"
+ },
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/@storybook/cli/node_modules/p-locate": {
+ "version": "5.0.0",
+ "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz",
+ "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==",
+ "optional": true,
+ "dependencies": {
+ "p-limit": "^3.0.2"
+ },
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/@storybook/cli/node_modules/path-exists": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz",
+ "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==",
+ "optional": true,
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/@storybook/cli/node_modules/recast": {
+ "version": "0.21.5",
+ "resolved": "https://registry.npmjs.org/recast/-/recast-0.21.5.tgz",
+ "integrity": "sha512-hjMmLaUXAm1hIuTqOdeYObMslq/q+Xff6QE3Y2P+uoHAg2nmVlLBps2hzh1UJDdMtDTMXOFewK6ky51JQIeECg==",
+ "optional": true,
+ "dependencies": {
+ "ast-types": "0.15.2",
+ "esprima": "~4.0.0",
+ "source-map": "~0.6.1",
+ "tslib": "^2.0.1"
+ },
+ "engines": {
+ "node": ">= 4"
+ }
+ },
+ "node_modules/@storybook/cli/node_modules/semver": {
+ "version": "7.5.0",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.0.tgz",
+ "integrity": "sha512-+XC0AD/R7Q2mPSRuy2Id0+CGTZ98+8f+KvwirxOKIEyid+XSx6HbC63p+O4IndTHuX5Z+JxQ0TghCkO5Cg/2HA==",
+ "optional": true,
+ "dependencies": {
+ "lru-cache": "^6.0.0"
+ },
+ "bin": {
+ "semver": "bin/semver.js"
+ },
+ "engines": {
+ "node": ">=10"
+ }
+ },
+ "node_modules/@storybook/cli/node_modules/shelljs": {
+ "version": "0.8.5",
+ "resolved": "https://registry.npmjs.org/shelljs/-/shelljs-0.8.5.tgz",
+ "integrity": "sha512-TiwcRcrkhHvbrZbnRcFYMLl30Dfov3HKqzp5tO5b4pt6G/SezKcYhmDg15zXVBswHmctSAQKznqNW2LO5tTDow==",
+ "optional": true,
+ "dependencies": {
+ "glob": "^7.0.0",
+ "interpret": "^1.0.0",
+ "rechoir": "^0.6.2"
+ },
+ "bin": {
+ "shjs": "bin/shjs"
+ },
+ "engines": {
+ "node": ">=4"
+ }
+ },
+ "node_modules/@storybook/cli/node_modules/source-map": {
+ "version": "0.6.1",
+ "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
+ "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
+ "optional": true,
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/@storybook/cli/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==",
+ "optional": true,
+ "dependencies": {
+ "has-flag": "^4.0.0"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/@storybook/cli/node_modules/tempy": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/tempy/-/tempy-1.0.1.tgz",
+ "integrity": "sha512-biM9brNqxSc04Ee71hzFbryD11nX7VPhQQY32AdDmjFvodsRFz/3ufeoTZ6uYkRFfGo188tENcASNs3vTdsM0w==",
+ "optional": true,
+ "dependencies": {
+ "del": "^6.0.0",
+ "is-stream": "^2.0.0",
+ "temp-dir": "^2.0.0",
+ "type-fest": "^0.16.0",
+ "unique-string": "^2.0.0"
+ },
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/@storybook/cli/node_modules/type-fest": {
+ "version": "0.16.0",
+ "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.16.0.tgz",
+ "integrity": "sha512-eaBzG6MxNzEn9kiwvtre90cXaNLkmadMWa1zQMs3XORCXNbsH/OewwbxC5ia9dCxIxnTAsSxXJaa/p5y8DlvJg==",
+ "optional": true,
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/@storybook/cli/node_modules/universalify": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz",
+ "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==",
+ "optional": true,
+ "engines": {
+ "node": ">= 10.0.0"
+ }
+ },
+ "node_modules/@storybook/client-logger": {
+ "version": "7.0.8",
+ "resolved": "https://registry.npmjs.org/@storybook/client-logger/-/client-logger-7.0.8.tgz",
+ "integrity": "sha512-UuyX57Jzn8L0QOhDPBA/v9UqIGCtFKqtaS23mNNNDoc1X3u+boULNgqWGD84F2U7JWg2xNopIJvjQxhH30/Jhw==",
+ "optional": true,
+ "dependencies": {
+ "@storybook/global": "^5.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/storybook"
+ }
+ },
+ "node_modules/@storybook/codemod": {
+ "version": "7.0.8",
+ "resolved": "https://registry.npmjs.org/@storybook/codemod/-/codemod-7.0.8.tgz",
+ "integrity": "sha512-0zEUlnHtyU6BdiqsOqKrC4QBPl/BOR8LNEoKQbprmemAqRx0SUirawyHfgxzlrlKiGvHgmsrOglCb/9tZmbY/g==",
+ "optional": true,
+ "dependencies": {
+ "@babel/core": "~7.21.0",
+ "@babel/preset-env": "~7.21.0",
+ "@babel/types": "~7.21.2",
+ "@storybook/csf": "^0.1.0",
+ "@storybook/csf-tools": "7.0.8",
+ "@storybook/node-logger": "7.0.8",
+ "@storybook/types": "7.0.8",
+ "cross-spawn": "^7.0.3",
+ "globby": "^11.0.2",
+ "jscodeshift": "^0.14.0",
+ "lodash": "^4.17.21",
+ "prettier": "^2.8.0",
+ "recast": "^0.23.1"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/storybook"
+ }
+ },
+ "node_modules/@storybook/codemod/node_modules/ast-types": {
+ "version": "0.16.1",
+ "resolved": "https://registry.npmjs.org/ast-types/-/ast-types-0.16.1.tgz",
+ "integrity": "sha512-6t10qk83GOG8p0vKmaCr8eiilZwO171AvbROMtvvNiwrTly62t+7XkA8RdIIVbpMhCASAsxgAzdRSwh6nw/5Dg==",
+ "optional": true,
+ "dependencies": {
+ "tslib": "^2.0.1"
+ },
+ "engines": {
+ "node": ">=4"
+ }
+ },
+ "node_modules/@storybook/codemod/node_modules/chalk": {
+ "version": "4.1.2",
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
+ "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
+ "optional": true,
+ "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/@storybook/codemod/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==",
+ "optional": true,
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/@storybook/codemod/node_modules/jscodeshift": {
+ "version": "0.14.0",
+ "resolved": "https://registry.npmjs.org/jscodeshift/-/jscodeshift-0.14.0.tgz",
+ "integrity": "sha512-7eCC1knD7bLUPuSCwXsMZUH51O8jIcoVyKtI6P0XM0IVzlGjckPy3FIwQlorzbN0Sg79oK+RlohN32Mqf/lrYA==",
+ "optional": true,
+ "dependencies": {
+ "@babel/core": "^7.13.16",
+ "@babel/parser": "^7.13.16",
+ "@babel/plugin-proposal-class-properties": "^7.13.0",
+ "@babel/plugin-proposal-nullish-coalescing-operator": "^7.13.8",
+ "@babel/plugin-proposal-optional-chaining": "^7.13.12",
+ "@babel/plugin-transform-modules-commonjs": "^7.13.8",
+ "@babel/preset-flow": "^7.13.13",
+ "@babel/preset-typescript": "^7.13.0",
+ "@babel/register": "^7.13.16",
+ "babel-core": "^7.0.0-bridge.0",
+ "chalk": "^4.1.2",
+ "flow-parser": "0.*",
+ "graceful-fs": "^4.2.4",
+ "micromatch": "^4.0.4",
+ "neo-async": "^2.5.0",
+ "node-dir": "^0.1.17",
+ "recast": "^0.21.0",
+ "temp": "^0.8.4",
+ "write-file-atomic": "^2.3.0"
+ },
+ "bin": {
+ "jscodeshift": "bin/jscodeshift.js"
+ },
+ "peerDependencies": {
+ "@babel/preset-env": "^7.1.6"
+ }
+ },
+ "node_modules/@storybook/codemod/node_modules/jscodeshift/node_modules/ast-types": {
+ "version": "0.15.2",
+ "resolved": "https://registry.npmjs.org/ast-types/-/ast-types-0.15.2.tgz",
+ "integrity": "sha512-c27loCv9QkZinsa5ProX751khO9DJl/AcB5c2KNtA6NRvHKS0PgLfcftz72KVq504vB0Gku5s2kUZzDBvQWvHg==",
+ "optional": true,
+ "dependencies": {
+ "tslib": "^2.0.1"
+ },
+ "engines": {
+ "node": ">=4"
+ }
+ },
+ "node_modules/@storybook/codemod/node_modules/jscodeshift/node_modules/recast": {
+ "version": "0.21.5",
+ "resolved": "https://registry.npmjs.org/recast/-/recast-0.21.5.tgz",
+ "integrity": "sha512-hjMmLaUXAm1hIuTqOdeYObMslq/q+Xff6QE3Y2P+uoHAg2nmVlLBps2hzh1UJDdMtDTMXOFewK6ky51JQIeECg==",
+ "optional": true,
+ "dependencies": {
+ "ast-types": "0.15.2",
+ "esprima": "~4.0.0",
+ "source-map": "~0.6.1",
+ "tslib": "^2.0.1"
+ },
+ "engines": {
+ "node": ">= 4"
+ }
+ },
+ "node_modules/@storybook/codemod/node_modules/recast": {
+ "version": "0.23.1",
+ "resolved": "https://registry.npmjs.org/recast/-/recast-0.23.1.tgz",
+ "integrity": "sha512-RokaBcoxSjXUDzz1TXSZmZsSW6ZpLmlA3GGqJ8uuTrQ9hZhEz+4Tpsc+gRvYRJ2BU4H+ZyUlg91eSGDw7bwy7g==",
+ "optional": true,
+ "dependencies": {
+ "assert": "^2.0.0",
+ "ast-types": "^0.16.1",
+ "esprima": "~4.0.0",
+ "source-map": "~0.6.1",
+ "tslib": "^2.0.1"
+ },
+ "engines": {
+ "node": ">= 4"
+ }
+ },
+ "node_modules/@storybook/codemod/node_modules/source-map": {
+ "version": "0.6.1",
+ "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
+ "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
+ "optional": true,
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/@storybook/codemod/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==",
+ "optional": true,
+ "dependencies": {
+ "has-flag": "^4.0.0"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/@storybook/components": {
+ "version": "7.0.8",
+ "resolved": "https://registry.npmjs.org/@storybook/components/-/components-7.0.8.tgz",
+ "integrity": "sha512-eBY+uZE+0dHwvUTQHa/GNzAexEg1Sqhzyu+NTWx2mAzNzXBaoBQ1wz33sXQFWQZA6Bv/yritPmfo6470f8/AFg==",
+ "optional": true,
+ "dependencies": {
+ "@storybook/client-logger": "7.0.8",
+ "@storybook/csf": "^0.1.0",
+ "@storybook/global": "^5.0.0",
+ "@storybook/theming": "7.0.8",
+ "@storybook/types": "7.0.8",
+ "memoizerific": "^1.11.3",
+ "use-resize-observer": "^9.1.0",
+ "util-deprecate": "^1.0.2"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/storybook"
+ },
+ "peerDependencies": {
+ "react": "^16.8.0 || ^17.0.0 || ^18.0.0",
+ "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0"
+ }
+ },
+ "node_modules/@storybook/core-client": {
+ "version": "7.0.8",
+ "resolved": "https://registry.npmjs.org/@storybook/core-client/-/core-client-7.0.8.tgz",
+ "integrity": "sha512-JDEhoLO49wfhvwtZ532kBwI5sTGpikL1MFGgExsGpm1hOfLsOXwSm033M2NrieZBCrdIReVpiwpRiK9Mc8hL/Q==",
+ "optional": true,
+ "dependencies": {
+ "@storybook/client-logger": "7.0.8",
+ "@storybook/preview-api": "7.0.8"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/storybook"
+ }
+ },
+ "node_modules/@storybook/core-common": {
+ "version": "7.0.8",
+ "resolved": "https://registry.npmjs.org/@storybook/core-common/-/core-common-7.0.8.tgz",
+ "integrity": "sha512-W0/jtHndO4GO98g9bWnkMB9rZrH+aZCefEGZcUrTpgOa+Ws/b6l8YDEoR1V1hGPROT5cn82+9zU4s5y1d462Sg==",
+ "optional": true,
+ "dependencies": {
+ "@storybook/node-logger": "7.0.8",
+ "@storybook/types": "7.0.8",
+ "@types/node": "^16.0.0",
+ "@types/pretty-hrtime": "^1.0.0",
+ "chalk": "^4.1.0",
+ "esbuild": "^0.17.0",
+ "esbuild-register": "^3.4.0",
+ "file-system-cache": "^2.0.0",
+ "find-up": "^5.0.0",
+ "fs-extra": "^11.1.0",
+ "glob": "^8.1.0",
+ "glob-promise": "^6.0.2",
+ "handlebars": "^4.7.7",
+ "lazy-universal-dotenv": "^4.0.0",
+ "picomatch": "^2.3.0",
+ "pkg-dir": "^5.0.0",
+ "pretty-hrtime": "^1.0.3",
+ "resolve-from": "^5.0.0",
+ "ts-dedent": "^2.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/storybook"
+ }
+ },
+ "node_modules/@storybook/core-common/node_modules/@types/node": {
+ "version": "16.18.25",
+ "resolved": "https://registry.npmjs.org/@types/node/-/node-16.18.25.tgz",
+ "integrity": "sha512-rUDO6s9Q/El1R1I21HG4qw/LstTHCPO/oQNAwI/4b2f9EWvMnqt4d3HJwPMawfZ3UvodB8516Yg+VAq54YM+eA==",
+ "optional": true
+ },
+ "node_modules/@storybook/core-common/node_modules/brace-expansion": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz",
+ "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==",
+ "optional": true,
+ "dependencies": {
+ "balanced-match": "^1.0.0"
+ }
+ },
+ "node_modules/@storybook/core-common/node_modules/chalk": {
+ "version": "4.1.2",
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
+ "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
+ "optional": true,
+ "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/@storybook/core-common/node_modules/esbuild": {
+ "version": "0.17.18",
+ "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.17.18.tgz",
+ "integrity": "sha512-z1lix43jBs6UKjcZVKOw2xx69ffE2aG0PygLL5qJ9OS/gy0Ewd1gW/PUQIOIQGXBHWNywSc0floSKoMFF8aK2w==",
+ "hasInstallScript": true,
+ "optional": true,
+ "bin": {
+ "esbuild": "bin/esbuild"
+ },
+ "engines": {
+ "node": ">=12"
+ },
+ "optionalDependencies": {
+ "@esbuild/android-arm": "0.17.18",
+ "@esbuild/android-arm64": "0.17.18",
+ "@esbuild/android-x64": "0.17.18",
+ "@esbuild/darwin-arm64": "0.17.18",
+ "@esbuild/darwin-x64": "0.17.18",
+ "@esbuild/freebsd-arm64": "0.17.18",
+ "@esbuild/freebsd-x64": "0.17.18",
+ "@esbuild/linux-arm": "0.17.18",
+ "@esbuild/linux-arm64": "0.17.18",
+ "@esbuild/linux-ia32": "0.17.18",
+ "@esbuild/linux-loong64": "0.17.18",
+ "@esbuild/linux-mips64el": "0.17.18",
+ "@esbuild/linux-ppc64": "0.17.18",
+ "@esbuild/linux-riscv64": "0.17.18",
+ "@esbuild/linux-s390x": "0.17.18",
+ "@esbuild/linux-x64": "0.17.18",
+ "@esbuild/netbsd-x64": "0.17.18",
+ "@esbuild/openbsd-x64": "0.17.18",
+ "@esbuild/sunos-x64": "0.17.18",
+ "@esbuild/win32-arm64": "0.17.18",
+ "@esbuild/win32-ia32": "0.17.18",
+ "@esbuild/win32-x64": "0.17.18"
+ }
+ },
+ "node_modules/@storybook/core-common/node_modules/find-up": {
+ "version": "5.0.0",
+ "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz",
+ "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==",
+ "optional": true,
+ "dependencies": {
+ "locate-path": "^6.0.0",
+ "path-exists": "^4.0.0"
+ },
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/@storybook/core-common/node_modules/fs-extra": {
+ "version": "11.1.1",
+ "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-11.1.1.tgz",
+ "integrity": "sha512-MGIE4HOvQCeUCzmlHs0vXpih4ysz4wg9qiSAu6cd42lVwPbTM1TjV7RusoyQqMmk/95gdQZX72u+YW+c3eEpFQ==",
+ "optional": true,
+ "dependencies": {
+ "graceful-fs": "^4.2.0",
+ "jsonfile": "^6.0.1",
+ "universalify": "^2.0.0"
+ },
+ "engines": {
+ "node": ">=14.14"
+ }
+ },
+ "node_modules/@storybook/core-common/node_modules/glob": {
+ "version": "8.1.0",
+ "resolved": "https://registry.npmjs.org/glob/-/glob-8.1.0.tgz",
+ "integrity": "sha512-r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ==",
+ "optional": true,
+ "dependencies": {
+ "fs.realpath": "^1.0.0",
+ "inflight": "^1.0.4",
+ "inherits": "2",
+ "minimatch": "^5.0.1",
+ "once": "^1.3.0"
+ },
+ "engines": {
+ "node": ">=12"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/isaacs"
+ }
+ },
+ "node_modules/@storybook/core-common/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==",
+ "optional": true,
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/@storybook/core-common/node_modules/jsonfile": {
+ "version": "6.1.0",
+ "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz",
+ "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==",
+ "optional": true,
+ "dependencies": {
+ "universalify": "^2.0.0"
+ },
+ "optionalDependencies": {
+ "graceful-fs": "^4.1.6"
+ }
+ },
+ "node_modules/@storybook/core-common/node_modules/locate-path": {
+ "version": "6.0.0",
+ "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz",
+ "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==",
+ "optional": true,
+ "dependencies": {
+ "p-locate": "^5.0.0"
+ },
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/@storybook/core-common/node_modules/minimatch": {
+ "version": "5.1.6",
+ "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.6.tgz",
+ "integrity": "sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==",
+ "optional": true,
+ "dependencies": {
+ "brace-expansion": "^2.0.1"
+ },
+ "engines": {
+ "node": ">=10"
+ }
+ },
+ "node_modules/@storybook/core-common/node_modules/p-limit": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz",
+ "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==",
+ "optional": true,
+ "dependencies": {
+ "yocto-queue": "^0.1.0"
+ },
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/@storybook/core-common/node_modules/p-locate": {
+ "version": "5.0.0",
+ "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz",
+ "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==",
+ "optional": true,
+ "dependencies": {
+ "p-limit": "^3.0.2"
+ },
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/@storybook/core-common/node_modules/path-exists": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz",
+ "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==",
+ "optional": true,
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/@storybook/core-common/node_modules/pkg-dir": {
+ "version": "5.0.0",
+ "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-5.0.0.tgz",
+ "integrity": "sha512-NPE8TDbzl/3YQYY7CSS228s3g2ollTFnc+Qi3tqmqJp9Vg2ovUpixcJEo2HJScN2Ez+kEaal6y70c0ehqJBJeA==",
+ "optional": true,
+ "dependencies": {
+ "find-up": "^5.0.0"
+ },
+ "engines": {
+ "node": ">=10"
+ }
+ },
+ "node_modules/@storybook/core-common/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==",
+ "optional": true,
+ "dependencies": {
+ "has-flag": "^4.0.0"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/@storybook/core-common/node_modules/universalify": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz",
+ "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==",
+ "optional": true,
+ "engines": {
+ "node": ">= 10.0.0"
+ }
+ },
+ "node_modules/@storybook/core-events": {
+ "version": "7.0.8",
+ "resolved": "https://registry.npmjs.org/@storybook/core-events/-/core-events-7.0.8.tgz",
+ "integrity": "sha512-CQJs3PKQ8HJmMe7kzYy2bWz3hw5d8myAtO5LAgvPHKsVqAZ0R+rN4lXlcPNWf/x3tb8JizDJpPgTCBdOBb+tkg==",
+ "optional": true,
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/storybook"
+ }
+ },
+ "node_modules/@storybook/core-server": {
+ "version": "7.0.8",
+ "resolved": "https://registry.npmjs.org/@storybook/core-server/-/core-server-7.0.8.tgz",
+ "integrity": "sha512-ONF2PYV9XKYTpUoS88ECKemSIescJuj849X71hPZMOs439g0gXJlYVnwIs0zgAj6ZcuXgjDIB81FicX8uv4+Yw==",
+ "optional": true,
+ "dependencies": {
+ "@aw-web-design/x-default-browser": "1.4.88",
+ "@discoveryjs/json-ext": "^0.5.3",
+ "@storybook/builder-manager": "7.0.8",
+ "@storybook/core-common": "7.0.8",
+ "@storybook/core-events": "7.0.8",
+ "@storybook/csf": "^0.1.0",
+ "@storybook/csf-tools": "7.0.8",
+ "@storybook/docs-mdx": "^0.1.0",
+ "@storybook/global": "^5.0.0",
+ "@storybook/manager": "7.0.8",
+ "@storybook/node-logger": "7.0.8",
+ "@storybook/preview-api": "7.0.8",
+ "@storybook/telemetry": "7.0.8",
+ "@storybook/types": "7.0.8",
+ "@types/detect-port": "^1.3.0",
+ "@types/node": "^16.0.0",
+ "@types/node-fetch": "^2.5.7",
+ "@types/pretty-hrtime": "^1.0.0",
+ "@types/semver": "^7.3.4",
+ "better-opn": "^2.1.1",
+ "boxen": "^5.1.2",
+ "chalk": "^4.1.0",
+ "cli-table3": "^0.6.1",
+ "compression": "^1.7.4",
+ "detect-port": "^1.3.0",
+ "express": "^4.17.3",
+ "fs-extra": "^11.1.0",
+ "globby": "^11.0.2",
+ "ip": "^2.0.0",
+ "lodash": "^4.17.21",
+ "node-fetch": "^2.6.7",
+ "open": "^8.4.0",
+ "pretty-hrtime": "^1.0.3",
+ "prompts": "^2.4.0",
+ "read-pkg-up": "^7.0.1",
+ "semver": "^7.3.7",
+ "serve-favicon": "^2.5.0",
+ "telejson": "^7.0.3",
+ "ts-dedent": "^2.0.0",
+ "util-deprecate": "^1.0.2",
+ "watchpack": "^2.2.0",
+ "ws": "^8.2.3"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/storybook"
+ }
+ },
+ "node_modules/@storybook/core-server/node_modules/@types/node": {
+ "version": "16.18.25",
+ "resolved": "https://registry.npmjs.org/@types/node/-/node-16.18.25.tgz",
+ "integrity": "sha512-rUDO6s9Q/El1R1I21HG4qw/LstTHCPO/oQNAwI/4b2f9EWvMnqt4d3HJwPMawfZ3UvodB8516Yg+VAq54YM+eA==",
+ "optional": true
+ },
+ "node_modules/@storybook/core-server/node_modules/chalk": {
+ "version": "4.1.2",
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
+ "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
+ "optional": true,
+ "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/@storybook/core-server/node_modules/fs-extra": {
+ "version": "11.1.1",
+ "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-11.1.1.tgz",
+ "integrity": "sha512-MGIE4HOvQCeUCzmlHs0vXpih4ysz4wg9qiSAu6cd42lVwPbTM1TjV7RusoyQqMmk/95gdQZX72u+YW+c3eEpFQ==",
+ "optional": true,
+ "dependencies": {
+ "graceful-fs": "^4.2.0",
+ "jsonfile": "^6.0.1",
+ "universalify": "^2.0.0"
+ },
+ "engines": {
+ "node": ">=14.14"
+ }
+ },
+ "node_modules/@storybook/core-server/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==",
+ "optional": true,
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/@storybook/core-server/node_modules/jsonfile": {
+ "version": "6.1.0",
+ "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz",
+ "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==",
+ "optional": true,
+ "dependencies": {
+ "universalify": "^2.0.0"
+ },
+ "optionalDependencies": {
+ "graceful-fs": "^4.1.6"
+ }
+ },
+ "node_modules/@storybook/core-server/node_modules/node-fetch": {
+ "version": "2.6.9",
+ "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.9.tgz",
+ "integrity": "sha512-DJm/CJkZkRjKKj4Zi4BsKVZh3ValV5IR5s7LVZnW+6YMh0W1BfNA8XSs6DLMGYlId5F3KnA70uu2qepcR08Qqg==",
+ "optional": true,
+ "dependencies": {
+ "whatwg-url": "^5.0.0"
+ },
+ "engines": {
+ "node": "4.x || >=6.0.0"
+ },
+ "peerDependencies": {
+ "encoding": "^0.1.0"
+ },
+ "peerDependenciesMeta": {
+ "encoding": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/@storybook/core-server/node_modules/semver": {
+ "version": "7.5.0",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.0.tgz",
+ "integrity": "sha512-+XC0AD/R7Q2mPSRuy2Id0+CGTZ98+8f+KvwirxOKIEyid+XSx6HbC63p+O4IndTHuX5Z+JxQ0TghCkO5Cg/2HA==",
+ "optional": true,
+ "dependencies": {
+ "lru-cache": "^6.0.0"
+ },
+ "bin": {
+ "semver": "bin/semver.js"
+ },
+ "engines": {
+ "node": ">=10"
+ }
+ },
+ "node_modules/@storybook/core-server/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==",
+ "optional": true,
+ "dependencies": {
+ "has-flag": "^4.0.0"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/@storybook/core-server/node_modules/tr46": {
+ "version": "0.0.3",
+ "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz",
+ "integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==",
+ "optional": true
+ },
+ "node_modules/@storybook/core-server/node_modules/universalify": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz",
+ "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==",
+ "optional": true,
+ "engines": {
+ "node": ">= 10.0.0"
+ }
+ },
+ "node_modules/@storybook/core-server/node_modules/webidl-conversions": {
+ "version": "3.0.1",
+ "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz",
+ "integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==",
+ "optional": true
+ },
+ "node_modules/@storybook/core-server/node_modules/whatwg-url": {
+ "version": "5.0.0",
+ "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz",
+ "integrity": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==",
+ "optional": true,
+ "dependencies": {
+ "tr46": "~0.0.3",
+ "webidl-conversions": "^3.0.0"
+ }
+ },
+ "node_modules/@storybook/core-server/node_modules/ws": {
+ "version": "8.13.0",
+ "resolved": "https://registry.npmjs.org/ws/-/ws-8.13.0.tgz",
+ "integrity": "sha512-x9vcZYTrFPC7aSIbj7sRCYo7L/Xb8Iy+pW0ng0wt2vCJv7M9HOMy0UoN3rr+IFC7hb7vXoqS+P9ktyLLLhO+LA==",
+ "optional": true,
+ "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
+ }
+ }
+ },
+ "node_modules/@storybook/csf": {
+ "version": "0.1.0",
+ "resolved": "https://registry.npmjs.org/@storybook/csf/-/csf-0.1.0.tgz",
+ "integrity": "sha512-uk+jMXCZ8t38jSTHk2o5btI+aV2Ksbvl6DoOv3r6VaCM1KZqeuMwtwywIQdflkA8/6q/dKT8z8L+g8hC4GC3VQ==",
+ "optional": true,
+ "dependencies": {
+ "type-fest": "^2.19.0"
+ }
+ },
+ "node_modules/@storybook/csf-plugin": {
+ "version": "7.0.8",
+ "resolved": "https://registry.npmjs.org/@storybook/csf-plugin/-/csf-plugin-7.0.8.tgz",
+ "integrity": "sha512-HDdAOmS/mstjyE8LxXebSv207lqulC+gawbeWpfZKdR0MOkfn2WmWlIxvLYRrcejkUg8irNS4SHNGBCwygde4A==",
+ "optional": true,
+ "dependencies": {
+ "@storybook/csf-tools": "7.0.8",
+ "unplugin": "^0.10.2"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/storybook"
+ }
+ },
+ "node_modules/@storybook/csf-tools": {
+ "version": "7.0.8",
+ "resolved": "https://registry.npmjs.org/@storybook/csf-tools/-/csf-tools-7.0.8.tgz",
+ "integrity": "sha512-bMuljBJrZ1UL80NAHNfGgcDg7bMLnsppmuX6WVayOKMM3BcuRQVNiWC0ZLC6yrmPRinalqWdE/GDhwA/IevThg==",
+ "optional": true,
+ "dependencies": {
+ "@babel/generator": "~7.21.1",
+ "@babel/parser": "~7.21.2",
+ "@babel/traverse": "~7.21.2",
+ "@babel/types": "~7.21.2",
+ "@storybook/csf": "^0.1.0",
+ "@storybook/types": "7.0.8",
+ "fs-extra": "^11.1.0",
+ "recast": "^0.23.1",
+ "ts-dedent": "^2.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/storybook"
+ }
+ },
+ "node_modules/@storybook/csf-tools/node_modules/ast-types": {
+ "version": "0.16.1",
+ "resolved": "https://registry.npmjs.org/ast-types/-/ast-types-0.16.1.tgz",
+ "integrity": "sha512-6t10qk83GOG8p0vKmaCr8eiilZwO171AvbROMtvvNiwrTly62t+7XkA8RdIIVbpMhCASAsxgAzdRSwh6nw/5Dg==",
+ "optional": true,
+ "dependencies": {
+ "tslib": "^2.0.1"
+ },
+ "engines": {
+ "node": ">=4"
+ }
+ },
+ "node_modules/@storybook/csf-tools/node_modules/fs-extra": {
+ "version": "11.1.1",
+ "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-11.1.1.tgz",
+ "integrity": "sha512-MGIE4HOvQCeUCzmlHs0vXpih4ysz4wg9qiSAu6cd42lVwPbTM1TjV7RusoyQqMmk/95gdQZX72u+YW+c3eEpFQ==",
+ "optional": true,
+ "dependencies": {
+ "graceful-fs": "^4.2.0",
+ "jsonfile": "^6.0.1",
+ "universalify": "^2.0.0"
+ },
+ "engines": {
+ "node": ">=14.14"
+ }
+ },
+ "node_modules/@storybook/csf-tools/node_modules/jsonfile": {
+ "version": "6.1.0",
+ "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz",
+ "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==",
+ "optional": true,
+ "dependencies": {
+ "universalify": "^2.0.0"
+ },
+ "optionalDependencies": {
+ "graceful-fs": "^4.1.6"
+ }
+ },
+ "node_modules/@storybook/csf-tools/node_modules/recast": {
+ "version": "0.23.1",
+ "resolved": "https://registry.npmjs.org/recast/-/recast-0.23.1.tgz",
+ "integrity": "sha512-RokaBcoxSjXUDzz1TXSZmZsSW6ZpLmlA3GGqJ8uuTrQ9hZhEz+4Tpsc+gRvYRJ2BU4H+ZyUlg91eSGDw7bwy7g==",
+ "optional": true,
+ "dependencies": {
+ "assert": "^2.0.0",
+ "ast-types": "^0.16.1",
+ "esprima": "~4.0.0",
+ "source-map": "~0.6.1",
+ "tslib": "^2.0.1"
+ },
+ "engines": {
+ "node": ">= 4"
+ }
+ },
+ "node_modules/@storybook/csf-tools/node_modules/source-map": {
+ "version": "0.6.1",
+ "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
+ "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
+ "optional": true,
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/@storybook/csf-tools/node_modules/universalify": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz",
+ "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==",
+ "optional": true,
+ "engines": {
+ "node": ">= 10.0.0"
+ }
+ },
+ "node_modules/@storybook/csf/node_modules/type-fest": {
+ "version": "2.19.0",
+ "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-2.19.0.tgz",
+ "integrity": "sha512-RAH822pAdBgcNMAfWnCBU3CFZcfZ/i1eZjwFU/dsLKumyuuP3niueg2UAukXYF0E2AAoc82ZSSf9J0WQBinzHA==",
+ "optional": true,
+ "engines": {
+ "node": ">=12.20"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/@storybook/docs-mdx": {
+ "version": "0.1.0",
+ "resolved": "https://registry.npmjs.org/@storybook/docs-mdx/-/docs-mdx-0.1.0.tgz",
+ "integrity": "sha512-JDaBR9lwVY4eSH5W8EGHrhODjygPd6QImRbwjAuJNEnY0Vw4ie3bPkeGfnacB3OBW6u/agqPv2aRlR46JcAQLg==",
+ "optional": true
+ },
+ "node_modules/@storybook/docs-tools": {
+ "version": "7.0.8",
+ "resolved": "https://registry.npmjs.org/@storybook/docs-tools/-/docs-tools-7.0.8.tgz",
+ "integrity": "sha512-Lg/Cnhh3OURzCamWUNFLm0IqolzId6w+n1NCwSTEdPJ1PFKAYvuewRoul9gbaAfzg4pzWITGpltyzRmFH/G6Xw==",
+ "optional": true,
+ "dependencies": {
+ "@babel/core": "^7.12.10",
+ "@storybook/core-common": "7.0.8",
+ "@storybook/preview-api": "7.0.8",
+ "@storybook/types": "7.0.8",
+ "@types/doctrine": "^0.0.3",
+ "doctrine": "^3.0.0",
+ "lodash": "^4.17.21"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/storybook"
+ }
+ },
+ "node_modules/@storybook/global": {
+ "version": "5.0.0",
+ "resolved": "https://registry.npmjs.org/@storybook/global/-/global-5.0.0.tgz",
+ "integrity": "sha512-FcOqPAXACP0I3oJ/ws6/rrPT9WGhu915Cg8D02a9YxLo0DE9zI+a9A5gRGvmQ09fiWPukqI8ZAEoQEdWUKMQdQ==",
+ "optional": true
+ },
+ "node_modules/@storybook/instrumenter": {
+ "version": "7.0.8",
+ "resolved": "https://registry.npmjs.org/@storybook/instrumenter/-/instrumenter-7.0.8.tgz",
+ "integrity": "sha512-wFXSeUOOi4nyYv2+TkNic7qmSxO5VuFFt4qmTYv/MmZUAfIZKGq8S5K+McIKFUcYEnjkcvYvOWTNM6hEhlQpQw==",
+ "optional": true,
+ "dependencies": {
+ "@storybook/channels": "7.0.8",
+ "@storybook/client-logger": "7.0.8",
+ "@storybook/core-events": "7.0.8",
+ "@storybook/global": "^5.0.0",
+ "@storybook/preview-api": "7.0.8"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/storybook"
+ }
+ },
+ "node_modules/@storybook/manager": {
+ "version": "7.0.8",
+ "resolved": "https://registry.npmjs.org/@storybook/manager/-/manager-7.0.8.tgz",
+ "integrity": "sha512-qdmuRb6q5yUtrIVmkkftS9QR7HoYy5+UQ15VCgS2Q1o0Fz1A2TD9fd9MuxRfqGFO2wDOnmI8ps7Uw5XkKNjD9w==",
+ "optional": true,
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/storybook"
+ }
+ },
+ "node_modules/@storybook/manager-api": {
+ "version": "7.0.8",
+ "resolved": "https://registry.npmjs.org/@storybook/manager-api/-/manager-api-7.0.8.tgz",
+ "integrity": "sha512-5z5ZuijtlMhT/VHmwJnzA4y6W3xfSVQ887wn93GQG7G8xMAMADODOdJK2e10jgto8OPoT8GyDHXCBvGh2oIJzQ==",
+ "optional": true,
+ "dependencies": {
+ "@storybook/channels": "7.0.8",
+ "@storybook/client-logger": "7.0.8",
+ "@storybook/core-events": "7.0.8",
+ "@storybook/csf": "^0.1.0",
+ "@storybook/global": "^5.0.0",
+ "@storybook/router": "7.0.8",
+ "@storybook/theming": "7.0.8",
+ "@storybook/types": "7.0.8",
+ "dequal": "^2.0.2",
+ "lodash": "^4.17.21",
+ "memoizerific": "^1.11.3",
+ "semver": "^7.3.7",
+ "store2": "^2.14.2",
+ "telejson": "^7.0.3",
+ "ts-dedent": "^2.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/storybook"
+ },
+ "peerDependencies": {
+ "react": "^16.8.0 || ^17.0.0 || ^18.0.0",
+ "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0"
+ }
+ },
+ "node_modules/@storybook/manager-api/node_modules/semver": {
+ "version": "7.5.0",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.0.tgz",
+ "integrity": "sha512-+XC0AD/R7Q2mPSRuy2Id0+CGTZ98+8f+KvwirxOKIEyid+XSx6HbC63p+O4IndTHuX5Z+JxQ0TghCkO5Cg/2HA==",
+ "optional": true,
+ "dependencies": {
+ "lru-cache": "^6.0.0"
+ },
+ "bin": {
+ "semver": "bin/semver.js"
+ },
+ "engines": {
+ "node": ">=10"
+ }
+ },
+ "node_modules/@storybook/mdx2-csf": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/@storybook/mdx2-csf/-/mdx2-csf-1.0.0.tgz",
+ "integrity": "sha512-dBAnEL4HfxxJmv7LdEYUoZlQbWj9APZNIbOaq0tgF8XkxiIbzqvgB0jhL/9UOrysSDbQWBiCRTu2wOVxedGfmw==",
+ "optional": true
+ },
+ "node_modules/@storybook/node-logger": {
+ "version": "7.0.8",
+ "resolved": "https://registry.npmjs.org/@storybook/node-logger/-/node-logger-7.0.8.tgz",
+ "integrity": "sha512-POO1iXohTJbkQidp76GZR+HoVeFIuRBHlwWNtHZOgR1PnwocGvf43NJ/GMZLvxiwf/d2wyObXy4n1/R1jPw5Ew==",
+ "optional": true,
+ "dependencies": {
+ "@types/npmlog": "^4.1.2",
+ "chalk": "^4.1.0",
+ "npmlog": "^5.0.1",
+ "pretty-hrtime": "^1.0.3"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/storybook"
+ }
+ },
+ "node_modules/@storybook/node-logger/node_modules/chalk": {
+ "version": "4.1.2",
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
+ "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
+ "optional": true,
+ "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/@storybook/node-logger/node_modules/has-flag": {
"version": "4.0.0",
- "license": "MIT",
+ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
+ "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
"optional": true,
"engines": {
"node": ">=8"
}
},
- "node_modules/@storybook/node-logger/node_modules/regenerator-runtime": {
- "version": "0.13.7",
- "license": "MIT",
- "optional": true
- },
"node_modules/@storybook/node-logger/node_modules/supports-color": {
"version": "7.2.0",
- "license": "MIT",
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
+ "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
"optional": true,
"dependencies": {
"has-flag": "^4.0.0"
@@ -8828,212 +10726,341 @@
"node": ">=8"
}
},
- "node_modules/@storybook/react": {
- "version": "5.3.21",
- "license": "MIT",
+ "node_modules/@storybook/postinstall": {
+ "version": "7.0.8",
+ "resolved": "https://registry.npmjs.org/@storybook/postinstall/-/postinstall-7.0.8.tgz",
+ "integrity": "sha512-EVVsnSych+2DfmhWr86x4pM7FDGbhXZ3jOUzYydNboDHzl922RdAsj5LSfLeAne74gArJX3H/XzoqCBNA5V/GQ==",
"optional": true,
- "dependencies": {
- "@babel/plugin-transform-react-constant-elements": "^7.6.3",
- "@babel/preset-flow": "^7.0.0",
- "@babel/preset-react": "^7.0.0",
- "@storybook/addons": "5.3.21",
- "@storybook/core": "5.3.21",
- "@storybook/node-logger": "5.3.21",
- "@svgr/webpack": "^4.0.3",
- "@types/webpack-env": "^1.15.0",
- "babel-plugin-add-react-displayname": "^0.0.5",
- "babel-plugin-named-asset-import": "^0.3.1",
- "babel-plugin-react-docgen": "^4.0.0",
- "core-js": "^3.0.1",
- "global": "^4.3.2",
- "lodash": "^4.17.15",
- "mini-css-extract-plugin": "^0.7.0",
- "prop-types": "^15.7.2",
- "react-dev-utils": "^9.0.0",
- "regenerator-runtime": "^0.13.3",
- "semver": "^6.0.0",
- "ts-dedent": "^1.1.0",
- "webpack": "^4.33.0"
- },
- "bin": {
- "build-storybook": "bin/build.js",
- "start-storybook": "bin/index.js",
- "storybook-server": "bin/index.js"
- },
- "engines": {
- "node": ">=8.0.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.1",
- "babel-loader": "^7.0.0 || ^8.0.0",
- "react": "*",
- "react-dom": "*"
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/storybook"
}
},
- "node_modules/@storybook/react/node_modules/regenerator-runtime": {
- "version": "0.13.7",
- "license": "MIT",
+ "node_modules/@storybook/preview": {
+ "version": "7.0.8",
+ "resolved": "https://registry.npmjs.org/@storybook/preview/-/preview-7.0.8.tgz",
+ "integrity": "sha512-A66yChrFaFXWmBYdmY1KlTligdK7aU2j84SlpnPQhIYFy5lDGMZW3y+1p3TWNUVlZHnOWSKKn1wCg8vH5By09w==",
+ "optional": true,
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/storybook"
+ }
+ },
+ "node_modules/@storybook/preview-api": {
+ "version": "7.0.8",
+ "resolved": "https://registry.npmjs.org/@storybook/preview-api/-/preview-api-7.0.8.tgz",
+ "integrity": "sha512-+/nhvNo7ML6bPnFYJRH/+mwU/sVJbIGhxFy4r+4Omxaw4aKhs8T0eVijGE2KOahRKG3qUCYV1CaTqmnlbcXgbw==",
+ "optional": true,
+ "dependencies": {
+ "@storybook/channel-postmessage": "7.0.8",
+ "@storybook/channels": "7.0.8",
+ "@storybook/client-logger": "7.0.8",
+ "@storybook/core-events": "7.0.8",
+ "@storybook/csf": "^0.1.0",
+ "@storybook/global": "^5.0.0",
+ "@storybook/types": "7.0.8",
+ "@types/qs": "^6.9.5",
+ "dequal": "^2.0.2",
+ "lodash": "^4.17.21",
+ "memoizerific": "^1.11.3",
+ "qs": "^6.10.0",
+ "synchronous-promise": "^2.0.15",
+ "ts-dedent": "^2.0.0",
+ "util-deprecate": "^1.0.2"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/storybook"
+ }
+ },
+ "node_modules/@storybook/react": {
+ "version": "7.0.8",
+ "resolved": "https://registry.npmjs.org/@storybook/react/-/react-7.0.8.tgz",
+ "integrity": "sha512-X+qtGzT92exOr5iHXv3tdGhhADIwEJavYZaVBzpGffxKyR6bXh6MFjVdhWNo5b/eGiF2NSOa35xj+RFWUmp/Fw==",
+ "optional": true,
+ "dependencies": {
+ "@storybook/client-logger": "7.0.8",
+ "@storybook/core-client": "7.0.8",
+ "@storybook/docs-tools": "7.0.8",
+ "@storybook/global": "^5.0.0",
+ "@storybook/preview-api": "7.0.8",
+ "@storybook/react-dom-shim": "7.0.8",
+ "@storybook/types": "7.0.8",
+ "@types/escodegen": "^0.0.6",
+ "@types/estree": "^0.0.51",
+ "@types/node": "^16.0.0",
+ "acorn": "^7.4.1",
+ "acorn-jsx": "^5.3.1",
+ "acorn-walk": "^7.2.0",
+ "escodegen": "^2.0.0",
+ "html-tags": "^3.1.0",
+ "lodash": "^4.17.21",
+ "prop-types": "^15.7.2",
+ "react-element-to-jsx-string": "^15.0.0",
+ "ts-dedent": "^2.0.0",
+ "type-fest": "^2.19.0",
+ "util-deprecate": "^1.0.2"
+ },
+ "engines": {
+ "node": ">=16.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/storybook"
+ },
+ "peerDependencies": {
+ "react": "^16.8.0 || ^17.0.0 || ^18.0.0",
+ "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0"
+ },
+ "peerDependenciesMeta": {
+ "typescript": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/@storybook/react-dom-shim": {
+ "version": "7.0.8",
+ "resolved": "https://registry.npmjs.org/@storybook/react-dom-shim/-/react-dom-shim-7.0.8.tgz",
+ "integrity": "sha512-7o5eIf5t2CnGST+MZF2lMsX7MRH/y2698J/E69naVwigoX28ooSjwxBsXMdQhG5Y2XKda+NNnQgyvOsgYeH/Og==",
+ "optional": true,
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/storybook"
+ },
+ "peerDependencies": {
+ "react": "^16.8.0 || ^17.0.0 || ^18.0.0",
+ "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0"
+ }
+ },
+ "node_modules/@storybook/react-vite": {
+ "version": "7.0.8",
+ "resolved": "https://registry.npmjs.org/@storybook/react-vite/-/react-vite-7.0.8.tgz",
+ "integrity": "sha512-V1b7S3GksLFX7UNLW0A/jowl2ykRZFJghaLFP894JCaTqwVQnlvmUcoMGOPKNJ0bWt5Gkrih95lOmekcDPzfzQ==",
+ "optional": true,
+ "dependencies": {
+ "@joshwooding/vite-plugin-react-docgen-typescript": "0.2.1",
+ "@rollup/pluginutils": "^4.2.0",
+ "@storybook/builder-vite": "7.0.8",
+ "@storybook/react": "7.0.8",
+ "@vitejs/plugin-react": "^3.0.1",
+ "ast-types": "^0.14.2",
+ "magic-string": "^0.27.0",
+ "react-docgen": "6.0.0-alpha.3"
+ },
+ "engines": {
+ "node": ">=16"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/storybook"
+ },
+ "peerDependencies": {
+ "react": "^16.8.0 || ^17.0.0 || ^18.0.0",
+ "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0",
+ "vite": "^3.0.0 || ^4.0.0"
+ }
+ },
+ "node_modules/@storybook/react-vite/node_modules/@rollup/pluginutils": {
+ "version": "4.2.1",
+ "resolved": "https://registry.npmjs.org/@rollup/pluginutils/-/pluginutils-4.2.1.tgz",
+ "integrity": "sha512-iKnFXr7NkdZAIHiIWE+BX5ULi/ucVFYWD6TbAV+rZctiRTY2PL6tsIKhoIOaoskiWAkgu+VsbXgUVDNLHf+InQ==",
+ "optional": true,
+ "dependencies": {
+ "estree-walker": "^2.0.1",
+ "picomatch": "^2.2.2"
+ },
+ "engines": {
+ "node": ">= 8.0.0"
+ }
+ },
+ "node_modules/@storybook/react-vite/node_modules/estree-walker": {
+ "version": "2.0.2",
+ "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-2.0.2.tgz",
+ "integrity": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==",
"optional": true
},
- "node_modules/@storybook/react/node_modules/semver": {
- "version": "6.3.0",
- "license": "ISC",
+ "node_modules/@storybook/react-vite/node_modules/magic-string": {
+ "version": "0.27.0",
+ "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.27.0.tgz",
+ "integrity": "sha512-8UnnX2PeRAPZuN12svgR9j7M1uWMovg/CEnIwIG0LFkXSJJe4PdfUGiTGl8V9bsBHFUtfVINcSyYxd7q+kx9fA==",
"optional": true,
- "bin": {
- "semver": "bin/semver.js"
+ "dependencies": {
+ "@jridgewell/sourcemap-codec": "^1.4.13"
+ },
+ "engines": {
+ "node": ">=12"
+ }
+ },
+ "node_modules/@storybook/react/node_modules/@types/estree": {
+ "version": "0.0.51",
+ "resolved": "https://registry.npmjs.org/@types/estree/-/estree-0.0.51.tgz",
+ "integrity": "sha512-CuPgU6f3eT/XgKKPqKd/gLZV1Xmvf1a2R5POBOGQa6uv82xpls89HU5zKeVoyR8XzHd1RGNOlQlvUe3CFkjWNQ==",
+ "optional": true
+ },
+ "node_modules/@storybook/react/node_modules/@types/node": {
+ "version": "16.18.25",
+ "resolved": "https://registry.npmjs.org/@types/node/-/node-16.18.25.tgz",
+ "integrity": "sha512-rUDO6s9Q/El1R1I21HG4qw/LstTHCPO/oQNAwI/4b2f9EWvMnqt4d3HJwPMawfZ3UvodB8516Yg+VAq54YM+eA==",
+ "optional": true
+ },
+ "node_modules/@storybook/react/node_modules/type-fest": {
+ "version": "2.19.0",
+ "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-2.19.0.tgz",
+ "integrity": "sha512-RAH822pAdBgcNMAfWnCBU3CFZcfZ/i1eZjwFU/dsLKumyuuP3niueg2UAukXYF0E2AAoc82ZSSf9J0WQBinzHA==",
+ "optional": true,
+ "engines": {
+ "node": ">=12.20"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
}
},
"node_modules/@storybook/router": {
- "version": "5.3.21",
- "license": "MIT",
+ "version": "7.0.8",
+ "resolved": "https://registry.npmjs.org/@storybook/router/-/router-7.0.8.tgz",
+ "integrity": "sha512-aVTBGLN84tGLsHTX+SbekyZPN9In3eaf7xCtssi5PYVezpV5y1/KrOsCk9sztuhfzoTkEtB0WFBVKpKdH9jBtQ==",
"optional": true,
"dependencies": {
- "@reach/router": "^1.2.1",
- "@storybook/csf": "0.0.1",
- "@types/reach__router": "^1.2.3",
- "core-js": "^3.0.1",
- "global": "^4.3.2",
- "lodash": "^4.17.15",
+ "@storybook/client-logger": "7.0.8",
"memoizerific": "^1.11.3",
- "qs": "^6.6.0",
- "util-deprecate": "^1.0.2"
+ "qs": "^6.10.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/storybook"
},
"peerDependencies": {
- "react": "*",
- "react-dom": "*"
+ "react": "^16.8.0 || ^17.0.0 || ^18.0.0",
+ "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0"
+ }
+ },
+ "node_modules/@storybook/telemetry": {
+ "version": "7.0.8",
+ "resolved": "https://registry.npmjs.org/@storybook/telemetry/-/telemetry-7.0.8.tgz",
+ "integrity": "sha512-V621AZ/f6WyPX9orqpiZa8oUbdUdHdzl1N51h0+p+lZoWJmDLvrrsmXH80ClBV7oA4c6NP/8nbZrq3jnpI7VAQ==",
+ "optional": true,
+ "dependencies": {
+ "@storybook/client-logger": "7.0.8",
+ "@storybook/core-common": "7.0.8",
+ "chalk": "^4.1.0",
+ "detect-package-manager": "^2.0.1",
+ "fetch-retry": "^5.0.2",
+ "fs-extra": "^11.1.0",
+ "isomorphic-unfetch": "^3.1.0",
+ "nanoid": "^3.3.1",
+ "read-pkg-up": "^7.0.1"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/storybook"
+ }
+ },
+ "node_modules/@storybook/telemetry/node_modules/chalk": {
+ "version": "4.1.2",
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
+ "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
+ "optional": true,
+ "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/@storybook/telemetry/node_modules/fs-extra": {
+ "version": "11.1.1",
+ "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-11.1.1.tgz",
+ "integrity": "sha512-MGIE4HOvQCeUCzmlHs0vXpih4ysz4wg9qiSAu6cd42lVwPbTM1TjV7RusoyQqMmk/95gdQZX72u+YW+c3eEpFQ==",
+ "optional": true,
+ "dependencies": {
+ "graceful-fs": "^4.2.0",
+ "jsonfile": "^6.0.1",
+ "universalify": "^2.0.0"
+ },
+ "engines": {
+ "node": ">=14.14"
+ }
+ },
+ "node_modules/@storybook/telemetry/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==",
+ "optional": true,
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/@storybook/telemetry/node_modules/jsonfile": {
+ "version": "6.1.0",
+ "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz",
+ "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==",
+ "optional": true,
+ "dependencies": {
+ "universalify": "^2.0.0"
+ },
+ "optionalDependencies": {
+ "graceful-fs": "^4.1.6"
+ }
+ },
+ "node_modules/@storybook/telemetry/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==",
+ "optional": true,
+ "dependencies": {
+ "has-flag": "^4.0.0"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/@storybook/telemetry/node_modules/universalify": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz",
+ "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==",
+ "optional": true,
+ "engines": {
+ "node": ">= 10.0.0"
}
},
"node_modules/@storybook/theming": {
- "version": "5.3.21",
- "license": "MIT",
+ "version": "7.0.8",
+ "resolved": "https://registry.npmjs.org/@storybook/theming/-/theming-7.0.8.tgz",
+ "integrity": "sha512-nU4j/QrobGxPgAg34ieIswkDITC/eHFJqzMfnyc3EhA8P60YNFWjzQlDlkDA5jG/6xiakihLWH2pzLhPDdME5g==",
"optional": true,
"dependencies": {
- "@emotion/core": "^10.0.20",
- "@emotion/styled": "^10.0.17",
- "@storybook/client-logger": "5.3.21",
- "core-js": "^3.0.1",
- "deep-object-diff": "^1.1.0",
- "emotion-theming": "^10.0.19",
- "global": "^4.3.2",
- "memoizerific": "^1.11.3",
- "polished": "^3.3.1",
- "prop-types": "^15.7.2",
- "resolve-from": "^5.0.0",
- "ts-dedent": "^1.1.0"
+ "@emotion/use-insertion-effect-with-fallbacks": "^1.0.0",
+ "@storybook/client-logger": "7.0.8",
+ "@storybook/global": "^5.0.0",
+ "memoizerific": "^1.11.3"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/storybook"
},
"peerDependencies": {
- "react": "*",
- "react-dom": "*"
+ "react": "^16.8.0 || ^17.0.0 || ^18.0.0",
+ "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0"
}
},
- "node_modules/@storybook/theming/node_modules/resolve-from": {
- "version": "5.0.0",
- "license": "MIT",
- "optional": true,
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/@storybook/ui": {
- "version": "5.3.21",
- "license": "MIT",
+ "node_modules/@storybook/types": {
+ "version": "7.0.8",
+ "resolved": "https://registry.npmjs.org/@storybook/types/-/types-7.0.8.tgz",
+ "integrity": "sha512-x83vL/TzBlv21nHuP35c+z4AUjHSY9G7NpZLTZ/5REcuXbeIfhjGOAyeUHB4lXhPXxsOlq3wHiQippB7bSJeeQ==",
"optional": true,
"dependencies": {
- "@emotion/core": "^10.0.20",
- "@storybook/addons": "5.3.21",
- "@storybook/api": "5.3.21",
- "@storybook/channels": "5.3.21",
- "@storybook/client-logger": "5.3.21",
- "@storybook/components": "5.3.21",
- "@storybook/core-events": "5.3.21",
- "@storybook/router": "5.3.21",
- "@storybook/theming": "5.3.21",
- "copy-to-clipboard": "^3.0.8",
- "core-js": "^3.0.1",
- "core-js-pure": "^3.0.1",
- "emotion-theming": "^10.0.19",
- "fast-deep-equal": "^2.0.1",
- "fuse.js": "^3.4.6",
- "global": "^4.3.2",
- "lodash": "^4.17.15",
- "markdown-to-jsx": "^6.11.4",
- "memoizerific": "^1.11.3",
- "polished": "^3.3.1",
- "prop-types": "^15.7.2",
- "qs": "^6.6.0",
- "react": "^16.8.3",
- "react-dom": "^16.8.3",
- "react-draggable": "^4.0.3",
- "react-helmet-async": "^1.0.2",
- "react-hotkeys": "2.0.0",
- "react-sizeme": "^2.6.7",
- "regenerator-runtime": "^0.13.2",
- "resolve-from": "^5.0.0",
- "semver": "^6.0.0",
- "store2": "^2.7.1",
- "telejson": "^3.2.0",
- "util-deprecate": "^1.0.2"
- }
- },
- "node_modules/@storybook/ui/node_modules/fast-deep-equal": {
- "version": "2.0.1",
- "license": "MIT",
- "optional": true
- },
- "node_modules/@storybook/ui/node_modules/fuse.js": {
- "version": "3.6.1",
- "license": "Apache-2.0",
- "optional": true,
- "engines": {
- "node": ">=6"
- }
- },
- "node_modules/@storybook/ui/node_modules/react": {
- "version": "16.14.0",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "loose-envify": "^1.1.0",
- "object-assign": "^4.1.1",
- "prop-types": "^15.6.2"
+ "@storybook/channels": "7.0.8",
+ "@types/babel__core": "^7.0.0",
+ "@types/express": "^4.7.0",
+ "file-system-cache": "^2.0.0"
},
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/@storybook/ui/node_modules/react-dom": {
- "version": "16.14.0",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "loose-envify": "^1.1.0",
- "object-assign": "^4.1.1",
- "prop-types": "^15.6.2",
- "scheduler": "^0.19.1"
- },
- "peerDependencies": {
- "react": "^16.14.0"
- }
- },
- "node_modules/@storybook/ui/node_modules/regenerator-runtime": {
- "version": "0.13.7",
- "license": "MIT",
- "optional": true
- },
- "node_modules/@storybook/ui/node_modules/resolve-from": {
- "version": "5.0.0",
- "license": "MIT",
- "optional": true,
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/@storybook/ui/node_modules/semver": {
- "version": "6.3.0",
- "license": "ISC",
- "optional": true,
- "bin": {
- "semver": "bin/semver.js"
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/storybook"
}
},
"node_modules/@surma/rollup-plugin-off-main-thread": {
@@ -9047,171 +11074,6 @@
"string.prototype.matchall": "^4.0.6"
}
},
- "node_modules/@surma/rollup-plugin-off-main-thread/node_modules/ejs": {
- "version": "3.1.8",
- "dev": true,
- "license": "Apache-2.0",
- "dependencies": {
- "jake": "^10.8.5"
- },
- "bin": {
- "ejs": "bin/cli.js"
- },
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/@svgr/babel-plugin-add-jsx-attribute": {
- "version": "4.2.0",
- "license": "MIT",
- "optional": true,
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/@svgr/babel-plugin-remove-jsx-attribute": {
- "version": "4.2.0",
- "license": "MIT",
- "optional": true,
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/@svgr/babel-plugin-remove-jsx-empty-expression": {
- "version": "4.2.0",
- "license": "MIT",
- "optional": true,
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/@svgr/babel-plugin-replace-jsx-attribute-value": {
- "version": "4.2.0",
- "license": "MIT",
- "optional": true,
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/@svgr/babel-plugin-svg-dynamic-title": {
- "version": "4.3.3",
- "license": "MIT",
- "optional": true,
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/@svgr/babel-plugin-svg-em-dimensions": {
- "version": "4.2.0",
- "license": "MIT",
- "optional": true,
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/@svgr/babel-plugin-transform-react-native-svg": {
- "version": "4.2.0",
- "license": "MIT",
- "optional": true,
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/@svgr/babel-plugin-transform-svg-component": {
- "version": "4.2.0",
- "license": "MIT",
- "optional": true,
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/@svgr/babel-preset": {
- "version": "4.3.3",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "@svgr/babel-plugin-add-jsx-attribute": "^4.2.0",
- "@svgr/babel-plugin-remove-jsx-attribute": "^4.2.0",
- "@svgr/babel-plugin-remove-jsx-empty-expression": "^4.2.0",
- "@svgr/babel-plugin-replace-jsx-attribute-value": "^4.2.0",
- "@svgr/babel-plugin-svg-dynamic-title": "^4.3.3",
- "@svgr/babel-plugin-svg-em-dimensions": "^4.2.0",
- "@svgr/babel-plugin-transform-react-native-svg": "^4.2.0",
- "@svgr/babel-plugin-transform-svg-component": "^4.2.0"
- },
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/@svgr/core": {
- "version": "4.3.3",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "@svgr/plugin-jsx": "^4.3.3",
- "camelcase": "^5.3.1",
- "cosmiconfig": "^5.2.1"
- },
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/@svgr/hast-util-to-babel-ast": {
- "version": "4.3.2",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "@babel/types": "^7.4.4"
- },
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/@svgr/plugin-jsx": {
- "version": "4.3.3",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "@babel/core": "^7.4.5",
- "@svgr/babel-preset": "^4.3.3",
- "@svgr/hast-util-to-babel-ast": "^4.3.2",
- "svg-parser": "^2.0.0"
- },
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/@svgr/plugin-svgo": {
- "version": "4.3.1",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "cosmiconfig": "^5.2.1",
- "merge-deep": "^3.0.2",
- "svgo": "^1.2.2"
- },
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/@svgr/webpack": {
- "version": "4.3.3",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "@babel/core": "^7.4.5",
- "@babel/plugin-transform-react-constant-elements": "^7.0.0",
- "@babel/preset-env": "^7.4.5",
- "@babel/preset-react": "^7.0.0",
- "@svgr/core": "^4.3.3",
- "@svgr/plugin-jsx": "^4.3.3",
- "@svgr/plugin-svgo": "^4.3.1",
- "loader-utils": "^1.2.3"
- },
- "engines": {
- "node": ">=8"
- }
- },
"node_modules/@swc/core": {
"version": "1.3.40",
"resolved": "https://registry.npmjs.org/@swc/core/-/core-1.3.40.tgz",
@@ -9390,7 +11252,7 @@
},
"node_modules/@szmarczak/http-timer": {
"version": "4.0.5",
- "dev": true,
+ "devOptional": true,
"license": "MIT",
"dependencies": {
"defer-to-connect": "^2.0.0"
@@ -9733,9 +11595,19 @@
"@babel/types": "^7.3.0"
}
},
+ "node_modules/@types/body-parser": {
+ "version": "1.19.2",
+ "resolved": "https://registry.npmjs.org/@types/body-parser/-/body-parser-1.19.2.tgz",
+ "integrity": "sha512-ALYone6pm6QmwZoAgeyNksccT9Q4AWZQ6PvfwR37GT6r6FWUPguq6sUmNGSMV2Wr761oQoBxwGGa6DR5o1DC9g==",
+ "optional": true,
+ "dependencies": {
+ "@types/connect": "*",
+ "@types/node": "*"
+ }
+ },
"node_modules/@types/cacheable-request": {
"version": "6.0.1",
- "dev": true,
+ "devOptional": true,
"license": "MIT",
"dependencies": {
"@types/http-cache-semantics": "*",
@@ -9757,6 +11629,15 @@
"dev": true,
"license": "MIT"
},
+ "node_modules/@types/connect": {
+ "version": "3.4.35",
+ "resolved": "https://registry.npmjs.org/@types/connect/-/connect-3.4.35.tgz",
+ "integrity": "sha512-cdeYyv4KWoEgpBISTxWvqYsVy444DOqehiF3fM3ne10AmJ62RSyNkUnxMJXHQWRQQX2eR94m5y1IZyDwBjV9FQ==",
+ "optional": true,
+ "dependencies": {
+ "@types/node": "*"
+ }
+ },
"node_modules/@types/debug": {
"version": "4.1.7",
"resolved": "https://registry.npmjs.org/@types/debug/-/debug-4.1.7.tgz",
@@ -9766,6 +11647,36 @@
"@types/ms": "*"
}
},
+ "node_modules/@types/detect-port": {
+ "version": "1.3.2",
+ "resolved": "https://registry.npmjs.org/@types/detect-port/-/detect-port-1.3.2.tgz",
+ "integrity": "sha512-xxgAGA2SAU4111QefXPSp5eGbDm/hW6zhvYl9IeEPZEry9F4d66QAHm5qpUXjb6IsevZV/7emAEx5MhP6O192g==",
+ "optional": true
+ },
+ "node_modules/@types/doctrine": {
+ "version": "0.0.3",
+ "resolved": "https://registry.npmjs.org/@types/doctrine/-/doctrine-0.0.3.tgz",
+ "integrity": "sha512-w5jZ0ee+HaPOaX25X2/2oGR/7rgAQSYII7X7pp0m9KgBfMP7uKfMfTvcpl5Dj+eDBbpxKGiqE+flqDr6XTd2RA==",
+ "optional": true
+ },
+ "node_modules/@types/ejs": {
+ "version": "3.1.2",
+ "resolved": "https://registry.npmjs.org/@types/ejs/-/ejs-3.1.2.tgz",
+ "integrity": "sha512-ZmiaE3wglXVWBM9fyVC17aGPkLo/UgaOjEiI2FXQfyczrCefORPxIe+2dVmnmk3zkVIbizjrlQzmPGhSYGXG5g==",
+ "optional": true
+ },
+ "node_modules/@types/emscripten": {
+ "version": "1.39.6",
+ "resolved": "https://registry.npmjs.org/@types/emscripten/-/emscripten-1.39.6.tgz",
+ "integrity": "sha512-H90aoynNhhkQP6DRweEjJp5vfUVdIj7tdPLsu7pq89vODD/lcugKfZOsfgwpvM6XUewEp2N5dCg1Uf3Qe55Dcg==",
+ "optional": true
+ },
+ "node_modules/@types/escodegen": {
+ "version": "0.0.6",
+ "resolved": "https://registry.npmjs.org/@types/escodegen/-/escodegen-0.0.6.tgz",
+ "integrity": "sha512-AjwI4MvWx3HAOaZqYsjKWyEObT9lcVV0Y0V8nXo6cXzN8ZiMxVhf6F3d/UNvXVGKrEzL/Dluc5p+y9GkzlTWig==",
+ "optional": true
+ },
"node_modules/@types/eslint": {
"version": "8.4.1",
"license": "MIT",
@@ -9780,6 +11691,30 @@
"devOptional": true,
"license": "MIT"
},
+ "node_modules/@types/express": {
+ "version": "4.17.17",
+ "resolved": "https://registry.npmjs.org/@types/express/-/express-4.17.17.tgz",
+ "integrity": "sha512-Q4FmmuLGBG58btUnfS1c1r/NQdlp3DMfGDGig8WhfpA2YRUtEkxAjkZb0yvplJGYdF1fsQ81iMDcH24sSCNC/Q==",
+ "optional": true,
+ "dependencies": {
+ "@types/body-parser": "*",
+ "@types/express-serve-static-core": "^4.17.33",
+ "@types/qs": "*",
+ "@types/serve-static": "*"
+ }
+ },
+ "node_modules/@types/express-serve-static-core": {
+ "version": "4.17.34",
+ "resolved": "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.17.34.tgz",
+ "integrity": "sha512-fvr49XlCGoUj2Pp730AItckfjat4WNb0lb3kfrLWffd+RLeoGAMsq7UOy04PAPtoL01uKwcp6u8nhzpgpDYr3w==",
+ "optional": true,
+ "dependencies": {
+ "@types/node": "*",
+ "@types/qs": "*",
+ "@types/range-parser": "*",
+ "@types/send": "*"
+ }
+ },
"node_modules/@types/extract-files": {
"version": "8.1.1",
"dev": true,
@@ -9789,6 +11724,12 @@
"version": "5.5.1",
"license": "MIT"
},
+ "node_modules/@types/find-cache-dir": {
+ "version": "3.2.1",
+ "resolved": "https://registry.npmjs.org/@types/find-cache-dir/-/find-cache-dir-3.2.1.tgz",
+ "integrity": "sha512-frsJrz2t/CeGifcu/6uRo4b+SzAwT4NYCVPu1GN8IB9XTzrpPkGuV0tmh9mN+/L0PklAlsC3u5Fxt0ju00LXIw==",
+ "optional": true
+ },
"node_modules/@types/fs-extra": {
"version": "9.0.13",
"dev": true,
@@ -9803,6 +11744,16 @@
"integrity": "sha512-T01/AdVa8o32oRho/p4FwhvHhHODJD3wiolWXkRRCjaeqR8FHocNGtT6pmFIGXFVy/aMDiQgwbnCKvGIRP1XIQ==",
"dev": true
},
+ "node_modules/@types/glob": {
+ "version": "8.1.0",
+ "resolved": "https://registry.npmjs.org/@types/glob/-/glob-8.1.0.tgz",
+ "integrity": "sha512-IO+MJPVhoqz+28h1qLAcBEH2+xHMK6MTyHJc7MTnnYb6wsoLR29POVGJ7LycmVXIqyy/4/2ShP5sUwTXuOwb/w==",
+ "optional": true,
+ "dependencies": {
+ "@types/minimatch": "^5.1.2",
+ "@types/node": "*"
+ }
+ },
"node_modules/@types/graceful-fs": {
"version": "4.1.6",
"devOptional": true,
@@ -9824,14 +11775,9 @@
"hoist-non-react-statics": "^3.3.0"
}
},
- "node_modules/@types/html-minifier-terser": {
- "version": "5.1.2",
- "license": "MIT",
- "optional": true
- },
"node_modules/@types/http-cache-semantics": {
"version": "4.0.0",
- "dev": true,
+ "devOptional": true,
"license": "MIT"
},
"node_modules/@types/is-ci": {
@@ -9843,11 +11789,6 @@
"ci-info": "^3.1.0"
}
},
- "node_modules/@types/is-function": {
- "version": "1.0.0",
- "license": "MIT",
- "optional": true
- },
"node_modules/@types/istanbul-lib-coverage": {
"version": "2.0.3",
"devOptional": true,
@@ -10005,8 +11946,8 @@
},
"node_modules/@types/json5": {
"version": "0.0.29",
- "devOptional": true,
- "license": "MIT"
+ "license": "MIT",
+ "optional": true
},
"node_modules/@types/jsonwebtoken": {
"version": "8.5.5",
@@ -10018,7 +11959,7 @@
},
"node_modules/@types/keyv": {
"version": "3.1.1",
- "dev": true,
+ "devOptional": true,
"license": "MIT",
"dependencies": {
"@types/node": "*"
@@ -10028,7 +11969,7 @@
"version": "4.14.191",
"resolved": "https://registry.npmjs.org/@types/lodash/-/lodash-4.14.191.tgz",
"integrity": "sha512-BdZ5BCCvho3EIXw6wUCXHe7rS53AIDPLE+JzwgT+OsJk53oBfbSmZZ7CX4VaRoN78N+TJpFi9QPlfIVNmJYWxQ==",
- "dev": true
+ "devOptional": true
},
"node_modules/@types/lodash-es": {
"version": "4.17.6",
@@ -10039,6 +11980,30 @@
"@types/lodash": "*"
}
},
+ "node_modules/@types/mdx": {
+ "version": "2.0.5",
+ "resolved": "https://registry.npmjs.org/@types/mdx/-/mdx-2.0.5.tgz",
+ "integrity": "sha512-76CqzuD6Q7LC+AtbPqrvD9AqsN0k8bsYo2bM2J8pmNldP1aIPAbzUQ7QbobyXL4eLr1wK5x8FZFe8eF/ubRuBg==",
+ "optional": true
+ },
+ "node_modules/@types/mime": {
+ "version": "1.3.2",
+ "resolved": "https://registry.npmjs.org/@types/mime/-/mime-1.3.2.tgz",
+ "integrity": "sha512-YATxVxgRqNH6nHEIsvg6k2Boc1JHI9ZbH5iWFFv/MTkchz3b1ieGDa5T0a9RznNdI0KhVbdbWSN+KWWrQZRxTw==",
+ "optional": true
+ },
+ "node_modules/@types/mime-types": {
+ "version": "2.1.1",
+ "resolved": "https://registry.npmjs.org/@types/mime-types/-/mime-types-2.1.1.tgz",
+ "integrity": "sha512-vXOTGVSLR2jMw440moWTC7H19iUyLtP3Z1YTj7cSsubOICinjMxFeb/V57v9QdyyPGbbWolUFSSmSiRSn94tFw==",
+ "optional": true
+ },
+ "node_modules/@types/minimatch": {
+ "version": "5.1.2",
+ "resolved": "https://registry.npmjs.org/@types/minimatch/-/minimatch-5.1.2.tgz",
+ "integrity": "sha512-K0VQKziLUWkVKiRVrx4a40iPaxTUefQmjtkQofBkYRcoaaL/8rhwDWww9qWbrgicNOgnpIsMxyNIUM4+n6dUIA==",
+ "optional": true
+ },
"node_modules/@types/minimist": {
"version": "1.2.2",
"resolved": "https://registry.npmjs.org/@types/minimist/-/minimist-1.2.2.tgz",
@@ -10055,15 +12020,40 @@
"version": "14.14.37",
"license": "MIT"
},
+ "node_modules/@types/node-fetch": {
+ "version": "2.6.3",
+ "resolved": "https://registry.npmjs.org/@types/node-fetch/-/node-fetch-2.6.3.tgz",
+ "integrity": "sha512-ETTL1mOEdq/sxUtgtOhKjyB2Irra4cjxksvcMUR5Zr4n+PxVhsCD9WS46oPbHL3et9Zde7CNRr+WUNlcHvsX+w==",
+ "optional": true,
+ "dependencies": {
+ "@types/node": "*",
+ "form-data": "^3.0.0"
+ }
+ },
+ "node_modules/@types/node-fetch/node_modules/form-data": {
+ "version": "3.0.1",
+ "resolved": "https://registry.npmjs.org/form-data/-/form-data-3.0.1.tgz",
+ "integrity": "sha512-RHkBKtLWUVwd7SqRIvCZMEvAMoGUp0XU+seQiZejj0COz3RI3hWP4sCv3gZWWLjJTd7rGwcsF5eKZGii0r/hbg==",
+ "optional": true,
+ "dependencies": {
+ "asynckit": "^0.4.0",
+ "combined-stream": "^1.0.8",
+ "mime-types": "^2.1.12"
+ },
+ "engines": {
+ "node": ">= 6"
+ }
+ },
"node_modules/@types/normalize-package-data": {
"version": "2.4.1",
"resolved": "https://registry.npmjs.org/@types/normalize-package-data/-/normalize-package-data-2.4.1.tgz",
"integrity": "sha512-Gj7cI7z+98M282Tqmp2K5EIsoouUEzbBJhQQzDE3jSIRk6r9gsz0oUokqIUR4u1R3dMHo0pDHM7sNOHyhulypw==",
- "dev": true
+ "devOptional": true
},
"node_modules/@types/npmlog": {
- "version": "4.1.2",
- "license": "MIT",
+ "version": "4.1.4",
+ "resolved": "https://registry.npmjs.org/@types/npmlog/-/npmlog-4.1.4.tgz",
+ "integrity": "sha512-WKG4gTr8przEZBiJ5r3s8ZIAoMXNbOgQ+j/d5O4X3x6kZJRLNvyUJuUK/KoG3+8BaOHPhp2m7WC6JKKeovDSzQ==",
"optional": true
},
"node_modules/@types/parse-json": {
@@ -10097,22 +12087,27 @@
"license": "MIT",
"optional": true
},
+ "node_modules/@types/pretty-hrtime": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/@types/pretty-hrtime/-/pretty-hrtime-1.0.1.tgz",
+ "integrity": "sha512-VjID5MJb1eGKthz2qUerWT8+R4b9N+CHvGCzg9fn4kWZgaF9AhdYikQio3R7wV8YY1NsQKPaCwKz1Yff+aHNUQ==",
+ "optional": true
+ },
"node_modules/@types/prop-types": {
"version": "15.7.3",
"license": "MIT"
},
- "node_modules/@types/q": {
- "version": "1.5.4",
- "license": "MIT",
+ "node_modules/@types/qs": {
+ "version": "6.9.7",
+ "resolved": "https://registry.npmjs.org/@types/qs/-/qs-6.9.7.tgz",
+ "integrity": "sha512-FGa1F62FT09qcrueBA6qYTrJPVDzah9a+493+o2PCXsesWHIn27G98TsSMs3WPNbZIEj4+VJf6saSFpvD+3Zsw==",
"optional": true
},
- "node_modules/@types/reach__router": {
- "version": "1.3.7",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "@types/react": "*"
- }
+ "node_modules/@types/range-parser": {
+ "version": "1.2.4",
+ "resolved": "https://registry.npmjs.org/@types/range-parser/-/range-parser-1.2.4.tgz",
+ "integrity": "sha512-EEhsLsD6UsDM1yFhAvy0Cjr6VwmpMWqFBCb9w07wVugF7w9nfajxLuVmngTIpgS6svCnm6Vaw+MZhoDCKnOfsw==",
+ "optional": true
},
"node_modules/@types/react": {
"version": "17.0.50",
@@ -10193,22 +12188,6 @@
"react-dnd": "^11.1.3"
}
},
- "node_modules/@types/react-syntax-highlighter": {
- "version": "11.0.4",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "@types/react": "*"
- }
- },
- "node_modules/@types/react-textarea-autosize": {
- "version": "4.3.5",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "@types/react": "*"
- }
- },
"node_modules/@types/react-transition-group": {
"version": "4.4.1",
"license": "MIT",
@@ -10239,7 +12218,7 @@
},
"node_modules/@types/responselike": {
"version": "1.0.0",
- "dev": true,
+ "devOptional": true,
"license": "MIT",
"dependencies": {
"@types/node": "*"
@@ -10251,9 +12230,29 @@
},
"node_modules/@types/semver": {
"version": "7.3.13",
- "dev": true,
+ "devOptional": true,
"license": "MIT"
},
+ "node_modules/@types/send": {
+ "version": "0.17.1",
+ "resolved": "https://registry.npmjs.org/@types/send/-/send-0.17.1.tgz",
+ "integrity": "sha512-Cwo8LE/0rnvX7kIIa3QHCkcuF21c05Ayb0ZfxPiv0W8VRiZiNW/WuRupHKpqqGVGf7SUA44QSOUKaEd9lIrd/Q==",
+ "optional": true,
+ "dependencies": {
+ "@types/mime": "^1",
+ "@types/node": "*"
+ }
+ },
+ "node_modules/@types/serve-static": {
+ "version": "1.15.1",
+ "resolved": "https://registry.npmjs.org/@types/serve-static/-/serve-static-1.15.1.tgz",
+ "integrity": "sha512-NUo5XNiAdULrJENtJXZZ3fHtfMolzZwczzBbnAeBbqBwG+LaG6YaJtuwzwGSQZ2wsCrxjEhNNjAkKigy3n8teQ==",
+ "optional": true,
+ "dependencies": {
+ "@types/mime": "*",
+ "@types/node": "*"
+ }
+ },
"node_modules/@types/setup-polly-jest": {
"version": "0.5.1",
"license": "MIT",
@@ -10272,30 +12271,11 @@
"license": "MIT",
"optional": true
},
- "node_modules/@types/source-list-map": {
- "version": "0.1.2",
- "license": "MIT",
- "optional": true
- },
"node_modules/@types/stack-utils": {
"version": "2.0.1",
"license": "MIT",
"optional": true
},
- "node_modules/@types/storybook__react": {
- "version": "4.0.2",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "@types/react": "*",
- "@types/webpack-env": "*"
- }
- },
- "node_modules/@types/tapable": {
- "version": "1.0.8",
- "license": "MIT",
- "optional": true
- },
"node_modules/@types/testing-library__jest-dom": {
"version": "5.14.5",
"license": "MIT",
@@ -10304,26 +12284,22 @@
"@types/jest": "*"
}
},
+ "node_modules/@types/treeify": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/@types/treeify/-/treeify-1.0.0.tgz",
+ "integrity": "sha512-ONpcZAEYlbPx4EtJwfTyCDQJGUpKf4sEcuySdCVjK5Fj/3vHp5HII1fqa1/+qrsLnpYELCQTfVW/awsGJePoIg==",
+ "optional": true
+ },
"node_modules/@types/trusted-types": {
"version": "2.0.2",
"dev": true,
"license": "MIT"
},
- "node_modules/@types/uglify-js": {
- "version": "3.17.1",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "source-map": "^0.6.1"
- }
- },
- "node_modules/@types/uglify-js/node_modules/source-map": {
- "version": "0.6.1",
- "license": "BSD-3-Clause",
- "optional": true,
- "engines": {
- "node": ">=0.10.0"
- }
+ "node_modules/@types/unist": {
+ "version": "2.0.6",
+ "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.6.tgz",
+ "integrity": "sha512-PBjIUxZHOuj0R15/xuwJYjFi+KZdNFrehocChv4g5hu6aFroHue8m0lBP0POdK2nKzbw0cgV1mws8+V/JAcEkQ==",
+ "optional": true
},
"node_modules/@types/url-join": {
"version": "4.0.1",
@@ -10336,61 +12312,11 @@
"dev": true,
"license": "MIT"
},
- "node_modules/@types/webpack": {
- "version": "4.41.33",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "@types/node": "*",
- "@types/tapable": "^1",
- "@types/uglify-js": "*",
- "@types/webpack-sources": "*",
- "anymatch": "^3.0.0",
- "source-map": "^0.6.0"
- }
- },
"node_modules/@types/webpack-env": {
- "version": "1.16.0",
- "devOptional": true,
- "license": "MIT"
- },
- "node_modules/@types/webpack-sources": {
- "version": "3.2.0",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "@types/node": "*",
- "@types/source-list-map": "*",
- "source-map": "^0.7.3"
- }
- },
- "node_modules/@types/webpack-sources/node_modules/source-map": {
- "version": "0.7.4",
- "license": "BSD-3-Clause",
- "optional": true,
- "engines": {
- "node": ">= 8"
- }
- },
- "node_modules/@types/webpack/node_modules/anymatch": {
- "version": "3.1.2",
- "license": "ISC",
- "optional": true,
- "dependencies": {
- "normalize-path": "^3.0.0",
- "picomatch": "^2.0.4"
- },
- "engines": {
- "node": ">= 8"
- }
- },
- "node_modules/@types/webpack/node_modules/source-map": {
- "version": "0.6.1",
- "license": "BSD-3-Clause",
- "optional": true,
- "engines": {
- "node": ">=0.10.0"
- }
+ "version": "1.18.0",
+ "resolved": "https://registry.npmjs.org/@types/webpack-env/-/webpack-env-1.18.0.tgz",
+ "integrity": "sha512-56/MAlX5WMsPVbOg7tAxnYvNYMMWr/QJiIp6BxVSW3JJXUVzzOn64qW8TzQyMSqSUFM2+PVI4aUHcHOzIz/1tg==",
+ "devOptional": true
},
"node_modules/@types/websocket": {
"version": "1.0.4",
@@ -10914,6 +12840,25 @@
"resolved": "https://registry.npmjs.org/@vanilla-extract/css-utils/-/css-utils-0.1.3.tgz",
"integrity": "sha512-PZAcHROlgtCUGI2y0JntdNwvPwCNyeVnkQu6KTYKdmxBbK3w72XJUmLFYapfaFfgami4I9CTLnrJTPdtmS3gpw=="
},
+ "node_modules/@vitejs/plugin-react": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/@vitejs/plugin-react/-/plugin-react-3.1.0.tgz",
+ "integrity": "sha512-AfgcRL8ZBhAlc3BFdigClmTUMISmmzHn7sB2h9U1odvc5U/MjWXsAaz18b/WoppUTDBzxOJwo2VdClfUcItu9g==",
+ "optional": true,
+ "dependencies": {
+ "@babel/core": "^7.20.12",
+ "@babel/plugin-transform-react-jsx-self": "^7.18.6",
+ "@babel/plugin-transform-react-jsx-source": "^7.19.6",
+ "magic-string": "^0.27.0",
+ "react-refresh": "^0.14.0"
+ },
+ "engines": {
+ "node": "^14.18.0 || >=16.0.0"
+ },
+ "peerDependencies": {
+ "vite": "^4.1.0-beta.0"
+ }
+ },
"node_modules/@vitejs/plugin-react-swc": {
"version": "3.2.0",
"resolved": "https://registry.npmjs.org/@vitejs/plugin-react-swc/-/plugin-react-swc-3.2.0.tgz",
@@ -10926,6 +12871,18 @@
"vite": "^4"
}
},
+ "node_modules/@vitejs/plugin-react/node_modules/magic-string": {
+ "version": "0.27.0",
+ "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.27.0.tgz",
+ "integrity": "sha512-8UnnX2PeRAPZuN12svgR9j7M1uWMovg/CEnIwIG0LFkXSJJe4PdfUGiTGl8V9bsBHFUtfVINcSyYxd7q+kx9fA==",
+ "optional": true,
+ "dependencies": {
+ "@jridgewell/sourcemap-codec": "^1.4.13"
+ },
+ "engines": {
+ "node": ">=12"
+ }
+ },
"node_modules/@vue/compiler-core": {
"version": "3.2.31",
"dev": true,
@@ -11082,163 +13039,6 @@
"dev": true,
"license": "MIT"
},
- "node_modules/@webassemblyjs/ast": {
- "version": "1.9.0",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "@webassemblyjs/helper-module-context": "1.9.0",
- "@webassemblyjs/helper-wasm-bytecode": "1.9.0",
- "@webassemblyjs/wast-parser": "1.9.0"
- }
- },
- "node_modules/@webassemblyjs/floating-point-hex-parser": {
- "version": "1.9.0",
- "license": "MIT",
- "optional": true
- },
- "node_modules/@webassemblyjs/helper-api-error": {
- "version": "1.9.0",
- "license": "MIT",
- "optional": true
- },
- "node_modules/@webassemblyjs/helper-buffer": {
- "version": "1.9.0",
- "license": "MIT",
- "optional": true
- },
- "node_modules/@webassemblyjs/helper-code-frame": {
- "version": "1.9.0",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "@webassemblyjs/wast-printer": "1.9.0"
- }
- },
- "node_modules/@webassemblyjs/helper-fsm": {
- "version": "1.9.0",
- "license": "ISC",
- "optional": true
- },
- "node_modules/@webassemblyjs/helper-module-context": {
- "version": "1.9.0",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "@webassemblyjs/ast": "1.9.0"
- }
- },
- "node_modules/@webassemblyjs/helper-wasm-bytecode": {
- "version": "1.9.0",
- "license": "MIT",
- "optional": true
- },
- "node_modules/@webassemblyjs/helper-wasm-section": {
- "version": "1.9.0",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "@webassemblyjs/ast": "1.9.0",
- "@webassemblyjs/helper-buffer": "1.9.0",
- "@webassemblyjs/helper-wasm-bytecode": "1.9.0",
- "@webassemblyjs/wasm-gen": "1.9.0"
- }
- },
- "node_modules/@webassemblyjs/ieee754": {
- "version": "1.9.0",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "@xtuc/ieee754": "^1.2.0"
- }
- },
- "node_modules/@webassemblyjs/leb128": {
- "version": "1.9.0",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "@xtuc/long": "4.2.2"
- }
- },
- "node_modules/@webassemblyjs/utf8": {
- "version": "1.9.0",
- "license": "MIT",
- "optional": true
- },
- "node_modules/@webassemblyjs/wasm-edit": {
- "version": "1.9.0",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "@webassemblyjs/ast": "1.9.0",
- "@webassemblyjs/helper-buffer": "1.9.0",
- "@webassemblyjs/helper-wasm-bytecode": "1.9.0",
- "@webassemblyjs/helper-wasm-section": "1.9.0",
- "@webassemblyjs/wasm-gen": "1.9.0",
- "@webassemblyjs/wasm-opt": "1.9.0",
- "@webassemblyjs/wasm-parser": "1.9.0",
- "@webassemblyjs/wast-printer": "1.9.0"
- }
- },
- "node_modules/@webassemblyjs/wasm-gen": {
- "version": "1.9.0",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "@webassemblyjs/ast": "1.9.0",
- "@webassemblyjs/helper-wasm-bytecode": "1.9.0",
- "@webassemblyjs/ieee754": "1.9.0",
- "@webassemblyjs/leb128": "1.9.0",
- "@webassemblyjs/utf8": "1.9.0"
- }
- },
- "node_modules/@webassemblyjs/wasm-opt": {
- "version": "1.9.0",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "@webassemblyjs/ast": "1.9.0",
- "@webassemblyjs/helper-buffer": "1.9.0",
- "@webassemblyjs/wasm-gen": "1.9.0",
- "@webassemblyjs/wasm-parser": "1.9.0"
- }
- },
- "node_modules/@webassemblyjs/wasm-parser": {
- "version": "1.9.0",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "@webassemblyjs/ast": "1.9.0",
- "@webassemblyjs/helper-api-error": "1.9.0",
- "@webassemblyjs/helper-wasm-bytecode": "1.9.0",
- "@webassemblyjs/ieee754": "1.9.0",
- "@webassemblyjs/leb128": "1.9.0",
- "@webassemblyjs/utf8": "1.9.0"
- }
- },
- "node_modules/@webassemblyjs/wast-parser": {
- "version": "1.9.0",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "@webassemblyjs/ast": "1.9.0",
- "@webassemblyjs/floating-point-hex-parser": "1.9.0",
- "@webassemblyjs/helper-api-error": "1.9.0",
- "@webassemblyjs/helper-code-frame": "1.9.0",
- "@webassemblyjs/helper-fsm": "1.9.0",
- "@xtuc/long": "4.2.2"
- }
- },
- "node_modules/@webassemblyjs/wast-printer": {
- "version": "1.9.0",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "@webassemblyjs/ast": "1.9.0",
- "@webassemblyjs/wast-parser": "1.9.0",
- "@xtuc/long": "4.2.2"
- }
- },
"node_modules/@wry/context": {
"version": "0.6.1",
"license": "MIT",
@@ -11273,14 +13073,243 @@
"version": "1.4.0",
"license": "MIT"
},
- "node_modules/@xtuc/ieee754": {
- "version": "1.2.0",
- "license": "BSD-3-Clause",
+ "node_modules/@yarnpkg/core": {
+ "version": "2.4.0",
+ "resolved": "https://registry.npmjs.org/@yarnpkg/core/-/core-2.4.0.tgz",
+ "integrity": "sha512-FYjcPNTfDfMKLFafQPt49EY28jnYC82Z2S7oMwLPUh144BL8v8YXzb4aCnFyi5nFC5h2kcrJfZh7+Pm/qvCqGw==",
+ "optional": true,
+ "dependencies": {
+ "@arcanis/slice-ansi": "^1.0.2",
+ "@types/semver": "^7.1.0",
+ "@types/treeify": "^1.0.0",
+ "@yarnpkg/fslib": "^2.4.0",
+ "@yarnpkg/json-proxy": "^2.1.0",
+ "@yarnpkg/libzip": "^2.2.1",
+ "@yarnpkg/parsers": "^2.3.0",
+ "@yarnpkg/pnp": "^2.3.2",
+ "@yarnpkg/shell": "^2.4.1",
+ "binjumper": "^0.1.4",
+ "camelcase": "^5.3.1",
+ "chalk": "^3.0.0",
+ "ci-info": "^2.0.0",
+ "clipanion": "^2.6.2",
+ "cross-spawn": "7.0.3",
+ "diff": "^4.0.1",
+ "globby": "^11.0.1",
+ "got": "^11.7.0",
+ "json-file-plus": "^3.3.1",
+ "lodash": "^4.17.15",
+ "micromatch": "^4.0.2",
+ "mkdirp": "^0.5.1",
+ "p-limit": "^2.2.0",
+ "pluralize": "^7.0.0",
+ "pretty-bytes": "^5.1.0",
+ "semver": "^7.1.2",
+ "stream-to-promise": "^2.2.0",
+ "tar-stream": "^2.0.1",
+ "treeify": "^1.1.0",
+ "tslib": "^1.13.0",
+ "tunnel": "^0.0.6"
+ },
+ "engines": {
+ "node": ">=10.19.0"
+ }
+ },
+ "node_modules/@yarnpkg/core/node_modules/chalk": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz",
+ "integrity": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==",
+ "optional": true,
+ "dependencies": {
+ "ansi-styles": "^4.1.0",
+ "supports-color": "^7.1.0"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/@yarnpkg/core/node_modules/ci-info": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-2.0.0.tgz",
+ "integrity": "sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ==",
"optional": true
},
- "node_modules/@xtuc/long": {
- "version": "4.2.2",
- "license": "Apache-2.0",
+ "node_modules/@yarnpkg/core/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==",
+ "optional": true,
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/@yarnpkg/core/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==",
+ "optional": true,
+ "dependencies": {
+ "has-flag": "^4.0.0"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/@yarnpkg/core/node_modules/tslib": {
+ "version": "1.14.1",
+ "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz",
+ "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==",
+ "optional": true
+ },
+ "node_modules/@yarnpkg/esbuild-plugin-pnp": {
+ "version": "3.0.0-rc.15",
+ "resolved": "https://registry.npmjs.org/@yarnpkg/esbuild-plugin-pnp/-/esbuild-plugin-pnp-3.0.0-rc.15.tgz",
+ "integrity": "sha512-kYzDJO5CA9sy+on/s2aIW0411AklfCi8Ck/4QDivOqsMKpStZA2SsR+X27VTggGwpStWaLrjJcDcdDMowtG8MA==",
+ "optional": true,
+ "dependencies": {
+ "tslib": "^2.4.0"
+ },
+ "engines": {
+ "node": ">=14.15.0"
+ },
+ "peerDependencies": {
+ "esbuild": ">=0.10.0"
+ }
+ },
+ "node_modules/@yarnpkg/fslib": {
+ "version": "2.10.3",
+ "resolved": "https://registry.npmjs.org/@yarnpkg/fslib/-/fslib-2.10.3.tgz",
+ "integrity": "sha512-41H+Ga78xT9sHvWLlFOZLIhtU6mTGZ20pZ29EiZa97vnxdohJD2AF42rCoAoWfqUz486xY6fhjMH+DYEM9r14A==",
+ "optional": true,
+ "dependencies": {
+ "@yarnpkg/libzip": "^2.3.0",
+ "tslib": "^1.13.0"
+ },
+ "engines": {
+ "node": ">=12 <14 || 14.2 - 14.9 || >14.10.0"
+ }
+ },
+ "node_modules/@yarnpkg/fslib/node_modules/tslib": {
+ "version": "1.14.1",
+ "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz",
+ "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==",
+ "optional": true
+ },
+ "node_modules/@yarnpkg/json-proxy": {
+ "version": "2.1.1",
+ "resolved": "https://registry.npmjs.org/@yarnpkg/json-proxy/-/json-proxy-2.1.1.tgz",
+ "integrity": "sha512-meUiCAgCYpXTH1qJfqfz+dX013ohW9p2dKfwIzUYAFutH+lsz1eHPBIk72cuCV84adh9gX6j66ekBKH/bIhCQw==",
+ "optional": true,
+ "dependencies": {
+ "@yarnpkg/fslib": "^2.5.0",
+ "tslib": "^1.13.0"
+ },
+ "engines": {
+ "node": ">=12 <14 || 14.2 - 14.9 || >14.10.0"
+ }
+ },
+ "node_modules/@yarnpkg/json-proxy/node_modules/tslib": {
+ "version": "1.14.1",
+ "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz",
+ "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==",
+ "optional": true
+ },
+ "node_modules/@yarnpkg/libzip": {
+ "version": "2.3.0",
+ "resolved": "https://registry.npmjs.org/@yarnpkg/libzip/-/libzip-2.3.0.tgz",
+ "integrity": "sha512-6xm38yGVIa6mKm/DUCF2zFFJhERh/QWp1ufm4cNUvxsONBmfPg8uZ9pZBdOmF6qFGr/HlT6ABBkCSx/dlEtvWg==",
+ "optional": true,
+ "dependencies": {
+ "@types/emscripten": "^1.39.6",
+ "tslib": "^1.13.0"
+ },
+ "engines": {
+ "node": ">=12 <14 || 14.2 - 14.9 || >14.10.0"
+ }
+ },
+ "node_modules/@yarnpkg/libzip/node_modules/tslib": {
+ "version": "1.14.1",
+ "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz",
+ "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==",
+ "optional": true
+ },
+ "node_modules/@yarnpkg/lockfile": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/@yarnpkg/lockfile/-/lockfile-1.1.0.tgz",
+ "integrity": "sha512-GpSwvyXOcOOlV70vbnzjj4fW5xW/FdUF6nQEt1ENy7m4ZCczi1+/buVUPAqmGfqznsORNFzUMjctTIp8a9tuCQ==",
+ "optional": true
+ },
+ "node_modules/@yarnpkg/parsers": {
+ "version": "2.5.1",
+ "resolved": "https://registry.npmjs.org/@yarnpkg/parsers/-/parsers-2.5.1.tgz",
+ "integrity": "sha512-KtYN6Ez3x753vPF9rETxNTPnPjeaHY11Exlpqb4eTII7WRlnGiZ5rvvQBau4R20Ik5KBv+vS3EJEcHyCunwzzw==",
+ "optional": true,
+ "dependencies": {
+ "js-yaml": "^3.10.0",
+ "tslib": "^1.13.0"
+ },
+ "engines": {
+ "node": ">=12 <14 || 14.2 - 14.9 || >14.10.0"
+ }
+ },
+ "node_modules/@yarnpkg/parsers/node_modules/tslib": {
+ "version": "1.14.1",
+ "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz",
+ "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==",
+ "optional": true
+ },
+ "node_modules/@yarnpkg/pnp": {
+ "version": "2.3.2",
+ "resolved": "https://registry.npmjs.org/@yarnpkg/pnp/-/pnp-2.3.2.tgz",
+ "integrity": "sha512-JdwHu1WBCISqJEhIwx6Hbpe8MYsYbkGMxoxolkDiAeJ9IGEe08mQcbX1YmUDV1ozSWlm9JZE90nMylcDsXRFpA==",
+ "optional": true,
+ "dependencies": {
+ "@types/node": "^13.7.0",
+ "@yarnpkg/fslib": "^2.4.0",
+ "tslib": "^1.13.0"
+ },
+ "engines": {
+ "node": ">=10.19.0"
+ }
+ },
+ "node_modules/@yarnpkg/pnp/node_modules/@types/node": {
+ "version": "13.13.52",
+ "resolved": "https://registry.npmjs.org/@types/node/-/node-13.13.52.tgz",
+ "integrity": "sha512-s3nugnZumCC//n4moGGe6tkNMyYEdaDBitVjwPxXmR5lnMG5dHePinH2EdxkG3Rh1ghFHHixAG4NJhpJW1rthQ==",
+ "optional": true
+ },
+ "node_modules/@yarnpkg/pnp/node_modules/tslib": {
+ "version": "1.14.1",
+ "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz",
+ "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==",
+ "optional": true
+ },
+ "node_modules/@yarnpkg/shell": {
+ "version": "2.4.1",
+ "resolved": "https://registry.npmjs.org/@yarnpkg/shell/-/shell-2.4.1.tgz",
+ "integrity": "sha512-oNNJkH8ZI5uwu0dMkJf737yMSY1WXn9gp55DqSA5wAOhKvV5DJTXFETxkVgBQhO6Bow9tMGSpvowTMD/oAW/9g==",
+ "optional": true,
+ "dependencies": {
+ "@yarnpkg/fslib": "^2.4.0",
+ "@yarnpkg/parsers": "^2.3.0",
+ "clipanion": "^2.6.2",
+ "cross-spawn": "7.0.3",
+ "fast-glob": "^3.2.2",
+ "micromatch": "^4.0.2",
+ "stream-buffers": "^3.0.2",
+ "tslib": "^1.13.0"
+ },
+ "bin": {
+ "shell": "lib/cli.js"
+ },
+ "engines": {
+ "node": ">=10.19.0"
+ }
+ },
+ "node_modules/@yarnpkg/shell/node_modules/tslib": {
+ "version": "1.14.1",
+ "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz",
+ "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==",
"optional": true
},
"node_modules/abab": {
@@ -11313,8 +13342,9 @@
}
},
"node_modules/acorn": {
- "version": "6.4.2",
- "license": "MIT",
+ "version": "7.4.1",
+ "resolved": "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz",
+ "integrity": "sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==",
"optional": true,
"bin": {
"acorn": "bin/acorn"
@@ -11332,17 +13362,6 @@
"acorn-walk": "^7.1.1"
}
},
- "node_modules/acorn-globals/node_modules/acorn": {
- "version": "7.4.1",
- "license": "MIT",
- "optional": true,
- "bin": {
- "acorn": "bin/acorn"
- },
- "engines": {
- "node": ">=0.4.0"
- }
- },
"node_modules/acorn-jsx": {
"version": "5.3.2",
"devOptional": true,
@@ -11390,11 +13409,12 @@
}
},
"node_modules/address": {
- "version": "1.1.2",
- "license": "MIT",
+ "version": "1.2.2",
+ "resolved": "https://registry.npmjs.org/address/-/address-1.2.2.tgz",
+ "integrity": "sha512-4B/qKCfeE/ODUaAUpSwfzazo5x29WD4r3vXiWsB7I2mSDAihwEqKO+g8GELZUQSSAo5e1XTYh3ZVfLyxBc12nA==",
"optional": true,
"engines": {
- "node": ">= 0.12.0"
+ "node": ">= 10.0.0"
}
},
"node_modules/agent-base": {
@@ -11428,30 +13448,6 @@
"node": ">=6"
}
},
- "node_modules/airbnb-js-shims": {
- "version": "2.2.1",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "array-includes": "^3.0.3",
- "array.prototype.flat": "^1.2.1",
- "array.prototype.flatmap": "^1.2.1",
- "es5-shim": "^4.5.13",
- "es6-shim": "^0.35.5",
- "function.prototype.name": "^1.1.0",
- "globalthis": "^1.0.0",
- "object.entries": "^1.1.0",
- "object.fromentries": "^2.0.0 || ^1.0.0",
- "object.getownpropertydescriptors": "^2.0.3",
- "object.values": "^1.1.0",
- "promise.allsettled": "^1.0.0",
- "promise.prototype.finally": "^3.1.0",
- "string.prototype.matchall": "^4.0.0 || ^3.0.1",
- "string.prototype.padend": "^3.0.0",
- "string.prototype.padstart": "^3.0.0",
- "symbol.prototype.description": "^1.0.0"
- }
- },
"node_modules/ajv": {
"version": "6.12.6",
"devOptional": true,
@@ -11467,17 +13463,9 @@
"url": "https://github.com/sponsors/epoberezkin"
}
},
- "node_modules/ajv-errors": {
- "version": "1.0.1",
- "license": "MIT",
- "optional": true,
- "peerDependencies": {
- "ajv": ">=5.0.0"
- }
- },
"node_modules/ajv-keywords": {
"version": "3.5.2",
- "devOptional": true,
+ "dev": true,
"license": "MIT",
"peerDependencies": {
"ajv": "^6.9.1"
@@ -11513,14 +13501,6 @@
"node": ">=6"
}
},
- "node_modules/ansi-colors": {
- "version": "3.2.4",
- "license": "MIT",
- "optional": true,
- "engines": {
- "node": ">=6"
- }
- },
"node_modules/ansi-escapes": {
"version": "4.3.2",
"devOptional": true,
@@ -11535,17 +13515,6 @@
"url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/ansi-html": {
- "version": "0.0.7",
- "engines": [
- "node >= 0.8.0"
- ],
- "license": "Apache-2.0",
- "optional": true,
- "bin": {
- "ansi-html": "bin/ansi-html"
- }
- },
"node_modules/ansi-regex": {
"version": "5.0.1",
"license": "MIT",
@@ -11566,25 +13535,6 @@
"url": "https://github.com/chalk/ansi-styles?sponsor=1"
}
},
- "node_modules/ansi-to-html": {
- "version": "0.6.14",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "entities": "^1.1.2"
- },
- "bin": {
- "ansi-to-html": "bin/ansi-to-html"
- },
- "engines": {
- "node": "*"
- }
- },
- "node_modules/ansi-to-html/node_modules/entities": {
- "version": "1.1.2",
- "license": "BSD-2-Clause",
- "optional": true
- },
"node_modules/any-observable": {
"version": "0.3.0",
"dev": true,
@@ -11593,137 +13543,23 @@
"node": ">=6"
}
},
+ "node_modules/any-promise": {
+ "version": "1.3.0",
+ "resolved": "https://registry.npmjs.org/any-promise/-/any-promise-1.3.0.tgz",
+ "integrity": "sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==",
+ "optional": true
+ },
"node_modules/anymatch": {
- "version": "2.0.0",
- "license": "ISC",
- "optional": true,
+ "version": "3.1.3",
+ "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz",
+ "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==",
+ "devOptional": true,
"dependencies": {
- "micromatch": "^3.1.4",
- "normalize-path": "^2.1.1"
- }
- },
- "node_modules/anymatch/node_modules/braces": {
- "version": "2.3.2",
- "license": "MIT",
- "optional": true,
- "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.2",
- "snapdragon": "^0.8.1",
- "snapdragon-node": "^2.0.1",
- "split-string": "^3.0.2",
- "to-regex": "^3.0.1"
+ "normalize-path": "^3.0.0",
+ "picomatch": "^2.0.4"
},
"engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/anymatch/node_modules/braces/node_modules/extend-shallow": {
- "version": "2.0.1",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "is-extendable": "^0.1.0"
- },
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/anymatch/node_modules/fill-range": {
- "version": "4.0.0",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "extend-shallow": "^2.0.1",
- "is-number": "^3.0.0",
- "repeat-string": "^1.6.1",
- "to-regex-range": "^2.1.0"
- },
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/anymatch/node_modules/fill-range/node_modules/extend-shallow": {
- "version": "2.0.1",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "is-extendable": "^0.1.0"
- },
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/anymatch/node_modules/is-number": {
- "version": "3.0.0",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "kind-of": "^3.0.2"
- },
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/anymatch/node_modules/is-number/node_modules/kind-of": {
- "version": "3.2.2",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "is-buffer": "^1.1.5"
- },
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/anymatch/node_modules/micromatch": {
- "version": "3.1.10",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "arr-diff": "^4.0.0",
- "array-unique": "^0.3.2",
- "braces": "^2.3.1",
- "define-property": "^2.0.2",
- "extend-shallow": "^3.0.2",
- "extglob": "^2.0.4",
- "fragment-cache": "^0.2.1",
- "kind-of": "^6.0.2",
- "nanomatch": "^1.2.9",
- "object.pick": "^1.3.0",
- "regex-not": "^1.0.0",
- "snapdragon": "^0.8.1",
- "to-regex": "^3.0.2"
- },
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/anymatch/node_modules/normalize-path": {
- "version": "2.1.1",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "remove-trailing-separator": "^1.0.1"
- },
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/anymatch/node_modules/to-regex-range": {
- "version": "2.1.1",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "is-number": "^3.0.0",
- "repeat-string": "^1.6.1"
- },
- "engines": {
- "node": ">=0.10.0"
+ "node": ">= 8"
}
},
"node_modules/apollo-upload-client": {
@@ -11745,12 +13581,14 @@
},
"node_modules/app-root-dir": {
"version": "1.0.2",
- "license": "MIT",
+ "resolved": "https://registry.npmjs.org/app-root-dir/-/app-root-dir-1.0.2.tgz",
+ "integrity": "sha512-jlpIfsOoNoafl92Sz//64uQHGSyMrD2vYG5d8o2a4qGvyNCvXur7bzIsWtAC/6flI2RYAp3kv8rsfBtaLm7w0g==",
"optional": true
},
"node_modules/aproba": {
- "version": "1.2.0",
- "license": "ISC",
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/aproba/-/aproba-2.0.0.tgz",
+ "integrity": "sha512-lYe4Gx7QT+MKGbDsA+Z+he/Wtef0BiwDOlK/XkBrdfsh9J/jPPXbX0tE9x9cl27Tmu5gg3QUbUrQYa/y+KOHPQ==",
"optional": true
},
"node_modules/arch": {
@@ -11773,12 +13611,16 @@
"optional": true
},
"node_modules/are-we-there-yet": {
- "version": "1.1.5",
- "license": "ISC",
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-2.0.0.tgz",
+ "integrity": "sha512-Ci/qENmwHnsYo9xKIcUJN5LeDKdJ6R1Z1j9V/J5wyq8nh/mYPEpIKJbBZXtZjG04HiK7zV/p6Vs9952MrMeUIw==",
"optional": true,
"dependencies": {
"delegates": "^1.0.0",
- "readable-stream": "^2.0.6"
+ "readable-stream": "^3.6.0"
+ },
+ "engines": {
+ "node": ">=10"
}
},
"node_modules/arg": {
@@ -11851,7 +13693,7 @@
},
"node_modules/arr-diff": {
"version": "4.0.0",
- "devOptional": true,
+ "dev": true,
"license": "MIT",
"engines": {
"node": ">=0.10.0"
@@ -11859,7 +13701,7 @@
},
"node_modules/arr-flatten": {
"version": "1.1.0",
- "devOptional": true,
+ "dev": true,
"license": "MIT",
"engines": {
"node": ">=0.10.0"
@@ -11867,7 +13709,7 @@
},
"node_modules/arr-union": {
"version": "3.1.0",
- "devOptional": true,
+ "dev": true,
"license": "MIT",
"engines": {
"node": ">=0.10.0"
@@ -11911,17 +13753,9 @@
"node": ">=8"
}
},
- "node_modules/array-uniq": {
- "version": "1.0.3",
- "license": "MIT",
- "optional": true,
- "engines": {
- "node": ">=0.10.0"
- }
- },
"node_modules/array-unique": {
"version": "0.3.2",
- "devOptional": true,
+ "dev": true,
"license": "MIT",
"engines": {
"node": ">=0.10.0"
@@ -11943,44 +13777,9 @@
"url": "https://github.com/sponsors/ljharb"
}
},
- "node_modules/array.prototype.flatmap": {
- "version": "1.2.4",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "call-bind": "^1.0.0",
- "define-properties": "^1.1.3",
- "es-abstract": "^1.18.0-next.1",
- "function-bind": "^1.1.1"
- },
- "engines": {
- "node": ">= 0.4"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/array.prototype.map": {
- "version": "1.0.3",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "call-bind": "^1.0.0",
- "define-properties": "^1.1.3",
- "es-abstract": "^1.18.0-next.1",
- "es-array-method-boxes-properly": "^1.0.0",
- "is-string": "^1.0.5"
- },
- "engines": {
- "node": ">= 0.4"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
"node_modules/arrify": {
"version": "1.0.1",
- "devOptional": true,
+ "dev": true,
"license": "MIT",
"engines": {
"node": ">=0.10.0"
@@ -11988,7 +13787,7 @@
},
"node_modules/asap": {
"version": "2.0.6",
- "dev": true,
+ "devOptional": true,
"license": "MIT"
},
"node_modules/asn1": {
@@ -11999,29 +13798,16 @@
"safer-buffer": "~2.1.0"
}
},
- "node_modules/asn1.js": {
- "version": "5.4.1",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "bn.js": "^4.0.0",
- "inherits": "^2.0.1",
- "minimalistic-assert": "^1.0.0",
- "safer-buffer": "^2.1.0"
- }
- },
- "node_modules/asn1.js/node_modules/bn.js": {
- "version": "4.12.0",
- "license": "MIT",
- "optional": true
- },
"node_modules/assert": {
- "version": "1.5.0",
- "license": "MIT",
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/assert/-/assert-2.0.0.tgz",
+ "integrity": "sha512-se5Cd+js9dXJnu6Ag2JFc00t+HmHOen+8Q+L7O9zI0PqQXr20uk2J0XQqMxZEeo5U50o8Nvmmx7dZrl+Ufr35A==",
"optional": true,
"dependencies": {
- "object-assign": "^4.1.1",
- "util": "0.10.3"
+ "es6-object-assign": "^1.1.0",
+ "is-nan": "^1.2.1",
+ "object-is": "^1.0.1",
+ "util": "^0.12.0"
}
},
"node_modules/assert-plus": {
@@ -12032,22 +13818,9 @@
"node": ">=0.8"
}
},
- "node_modules/assert/node_modules/inherits": {
- "version": "2.0.1",
- "license": "ISC",
- "optional": true
- },
- "node_modules/assert/node_modules/util": {
- "version": "0.10.3",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "inherits": "2.0.1"
- }
- },
"node_modules/assign-symbols": {
"version": "1.0.0",
- "devOptional": true,
+ "dev": true,
"license": "MIT",
"engines": {
"node": ">=0.10.0"
@@ -12069,9 +13842,10 @@
"devOptional": true,
"license": "MIT"
},
- "node_modules/async-each": {
- "version": "1.0.3",
- "license": "MIT",
+ "node_modules/async-limiter": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/async-limiter/-/async-limiter-1.0.1.tgz",
+ "integrity": "sha512-csOlWGAcRFJaI6m+F2WKdnMKr4HhdhFVBk0H/QbJFMCr+uO2kwohwXQPxw/9OCxp05r5ghVBFSyioixx3gfkNQ==",
"optional": true
},
"node_modules/async-retry": {
@@ -12097,7 +13871,7 @@
},
"node_modules/atob": {
"version": "2.1.2",
- "devOptional": true,
+ "dev": true,
"license": "(MIT OR Apache-2.0)",
"bin": {
"atob": "bin/atob.js"
@@ -12124,27 +13898,6 @@
"url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/autoprefixer": {
- "version": "9.8.6",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "browserslist": "^4.12.0",
- "caniuse-lite": "^1.0.30001109",
- "colorette": "^1.2.1",
- "normalize-range": "^0.1.2",
- "num2fraction": "^1.2.2",
- "postcss": "^7.0.32",
- "postcss-value-parser": "^4.1.0"
- },
- "bin": {
- "autoprefixer": "bin/autoprefixer"
- },
- "funding": {
- "type": "tidelift",
- "url": "https://tidelift.com/funding/github/npm/autoprefixer"
- }
- },
"node_modules/available-typed-arrays": {
"version": "1.0.5",
"license": "MIT",
@@ -12196,114 +13949,14 @@
}
}
},
- "node_modules/babel-code-frame": {
- "version": "6.26.0",
- "devOptional": true,
- "license": "MIT",
- "dependencies": {
- "chalk": "^1.1.3",
- "esutils": "^2.0.2",
- "js-tokens": "^3.0.2"
- }
- },
- "node_modules/babel-code-frame/node_modules/ansi-regex": {
- "version": "2.1.1",
- "devOptional": true,
- "license": "MIT",
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/babel-code-frame/node_modules/ansi-styles": {
- "version": "2.2.1",
- "devOptional": true,
- "license": "MIT",
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/babel-code-frame/node_modules/chalk": {
- "version": "1.1.3",
- "devOptional": true,
- "license": "MIT",
- "dependencies": {
- "ansi-styles": "^2.2.1",
- "escape-string-regexp": "^1.0.2",
- "has-ansi": "^2.0.0",
- "strip-ansi": "^3.0.0",
- "supports-color": "^2.0.0"
- },
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/babel-code-frame/node_modules/js-tokens": {
- "version": "3.0.2",
- "devOptional": true,
- "license": "MIT"
- },
- "node_modules/babel-code-frame/node_modules/strip-ansi": {
- "version": "3.0.1",
- "devOptional": true,
- "license": "MIT",
- "dependencies": {
- "ansi-regex": "^2.0.0"
- },
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/babel-code-frame/node_modules/supports-color": {
- "version": "2.0.0",
- "devOptional": true,
- "license": "MIT",
- "engines": {
- "node": ">=0.8.0"
- }
- },
"node_modules/babel-core": {
"version": "7.0.0-bridge.0",
- "dev": true,
+ "devOptional": true,
"license": "MIT",
"peerDependencies": {
"@babel/core": "^7.0.0-0"
}
},
- "node_modules/babel-helper-evaluate-path": {
- "version": "0.5.0",
- "license": "MIT",
- "optional": true
- },
- "node_modules/babel-helper-flip-expressions": {
- "version": "0.4.3",
- "license": "MIT",
- "optional": true
- },
- "node_modules/babel-helper-is-nodes-equiv": {
- "version": "0.0.1",
- "license": "MIT",
- "optional": true
- },
- "node_modules/babel-helper-is-void-0": {
- "version": "0.4.3",
- "license": "MIT",
- "optional": true
- },
- "node_modules/babel-helper-mark-eval-scopes": {
- "version": "0.4.3",
- "license": "MIT",
- "optional": true
- },
- "node_modules/babel-helper-remove-or-void": {
- "version": "0.4.3",
- "license": "MIT",
- "optional": true
- },
- "node_modules/babel-helper-to-multiple-sequence-expressions": {
- "version": "0.5.0",
- "license": "MIT",
- "optional": true
- },
"node_modules/babel-jest": {
"version": "27.5.1",
"devOptional": true,
@@ -12429,41 +14082,6 @@
"semver": "bin/semver.js"
}
},
- "node_modules/babel-plugin-add-react-displayname": {
- "version": "0.0.5",
- "license": "MIT",
- "optional": true
- },
- "node_modules/babel-plugin-dynamic-import-node": {
- "version": "2.3.3",
- "devOptional": true,
- "license": "MIT",
- "dependencies": {
- "object.assign": "^4.1.0"
- }
- },
- "node_modules/babel-plugin-emotion": {
- "version": "10.2.2",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "@babel/helper-module-imports": "^7.0.0",
- "@emotion/hash": "0.8.0",
- "@emotion/memoize": "0.7.4",
- "@emotion/serialize": "^0.11.16",
- "babel-plugin-macros": "^2.0.0",
- "babel-plugin-syntax-jsx": "^6.18.0",
- "convert-source-map": "^1.5.0",
- "escape-string-regexp": "^1.0.5",
- "find-root": "^1.1.0",
- "source-map": "^0.5.7"
- }
- },
- "node_modules/babel-plugin-emotion/node_modules/@emotion/memoize": {
- "version": "0.7.4",
- "license": "MIT",
- "optional": true
- },
"node_modules/babel-plugin-istanbul": {
"version": "6.1.1",
"devOptional": true,
@@ -12494,168 +14112,27 @@
}
},
"node_modules/babel-plugin-macros": {
- "version": "2.8.0",
- "license": "MIT",
- "optional": true,
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/babel-plugin-macros/-/babel-plugin-macros-3.1.0.tgz",
+ "integrity": "sha512-Cg7TFGpIr01vOQNODXOOaGz2NpCU5gl8x1qJFbb6hbZxR7XrcE2vtbAsTAbJ7/xwJtUuJEw8K8Zr/AE0LHlesg==",
"dependencies": {
- "@babel/runtime": "^7.7.2",
- "cosmiconfig": "^6.0.0",
- "resolve": "^1.12.0"
- }
- },
- "node_modules/babel-plugin-macros/node_modules/cosmiconfig": {
- "version": "6.0.0",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "@types/parse-json": "^4.0.0",
- "import-fresh": "^3.1.0",
- "parse-json": "^5.0.0",
- "path-type": "^4.0.0",
- "yaml": "^1.7.2"
+ "@babel/runtime": "^7.12.5",
+ "cosmiconfig": "^7.0.0",
+ "resolve": "^1.19.0"
},
"engines": {
- "node": ">=8"
- }
- },
- "node_modules/babel-plugin-macros/node_modules/import-fresh": {
- "version": "3.3.0",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "parent-module": "^1.0.0",
- "resolve-from": "^4.0.0"
- },
- "engines": {
- "node": ">=6"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/babel-plugin-macros/node_modules/parse-json": {
- "version": "5.2.0",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "@babel/code-frame": "^7.0.0",
- "error-ex": "^1.3.1",
- "json-parse-even-better-errors": "^2.3.0",
- "lines-and-columns": "^1.1.6"
- },
- "engines": {
- "node": ">=8"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/babel-plugin-macros/node_modules/resolve-from": {
- "version": "4.0.0",
- "license": "MIT",
- "optional": true,
- "engines": {
- "node": ">=4"
- }
- },
- "node_modules/babel-plugin-minify-builtins": {
- "version": "0.5.0",
- "license": "MIT",
- "optional": true
- },
- "node_modules/babel-plugin-minify-constant-folding": {
- "version": "0.5.0",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "babel-helper-evaluate-path": "^0.5.0"
- }
- },
- "node_modules/babel-plugin-minify-dead-code-elimination": {
- "version": "0.5.1",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "babel-helper-evaluate-path": "^0.5.0",
- "babel-helper-mark-eval-scopes": "^0.4.3",
- "babel-helper-remove-or-void": "^0.4.3",
- "lodash": "^4.17.11"
- }
- },
- "node_modules/babel-plugin-minify-flip-comparisons": {
- "version": "0.4.3",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "babel-helper-is-void-0": "^0.4.3"
- }
- },
- "node_modules/babel-plugin-minify-guarded-expressions": {
- "version": "0.4.4",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "babel-helper-evaluate-path": "^0.5.0",
- "babel-helper-flip-expressions": "^0.4.3"
- }
- },
- "node_modules/babel-plugin-minify-infinity": {
- "version": "0.4.3",
- "license": "MIT",
- "optional": true
- },
- "node_modules/babel-plugin-minify-mangle-names": {
- "version": "0.5.0",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "babel-helper-mark-eval-scopes": "^0.4.3"
- }
- },
- "node_modules/babel-plugin-minify-numeric-literals": {
- "version": "0.4.3",
- "license": "MIT",
- "optional": true
- },
- "node_modules/babel-plugin-minify-replace": {
- "version": "0.5.0",
- "license": "MIT",
- "optional": true
- },
- "node_modules/babel-plugin-minify-simplify": {
- "version": "0.5.1",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "babel-helper-evaluate-path": "^0.5.0",
- "babel-helper-flip-expressions": "^0.4.3",
- "babel-helper-is-nodes-equiv": "^0.0.1",
- "babel-helper-to-multiple-sequence-expressions": "^0.5.0"
- }
- },
- "node_modules/babel-plugin-minify-type-constructors": {
- "version": "0.4.3",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "babel-helper-is-void-0": "^0.4.3"
- }
- },
- "node_modules/babel-plugin-named-asset-import": {
- "version": "0.3.7",
- "license": "MIT",
- "optional": true,
- "peerDependencies": {
- "@babel/core": "^7.1.0"
+ "node": ">=10",
+ "npm": ">=6"
}
},
"node_modules/babel-plugin-polyfill-corejs2": {
- "version": "0.1.10",
+ "version": "0.3.3",
+ "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.3.3.tgz",
+ "integrity": "sha512-8hOdmFYFSZhqg2C/JgLUQ+t52o5nirNwaWM2B9LWteozwIvM14VSwdsCAUET10qT+kmySAlseadmfeeSWFCy+Q==",
"devOptional": true,
- "license": "MIT",
"dependencies": {
- "@babel/compat-data": "^7.13.0",
- "@babel/helper-define-polyfill-provider": "^0.1.5",
+ "@babel/compat-data": "^7.17.7",
+ "@babel/helper-define-polyfill-provider": "^0.3.3",
"semver": "^6.1.1"
},
"peerDependencies": {
@@ -12664,116 +14141,43 @@
},
"node_modules/babel-plugin-polyfill-corejs2/node_modules/semver": {
"version": "6.3.0",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz",
+ "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==",
"devOptional": true,
- "license": "ISC",
"bin": {
"semver": "bin/semver.js"
}
},
"node_modules/babel-plugin-polyfill-corejs3": {
- "version": "0.1.7",
+ "version": "0.6.0",
+ "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.6.0.tgz",
+ "integrity": "sha512-+eHqR6OPcBhJOGgsIar7xoAB1GcSwVUA3XjAd7HJNzOXT4wv6/H7KIdA/Nc60cvUlDbKApmqNvD1B1bzOt4nyA==",
"devOptional": true,
- "license": "MIT",
"dependencies": {
- "@babel/helper-define-polyfill-provider": "^0.1.5",
- "core-js-compat": "^3.8.1"
+ "@babel/helper-define-polyfill-provider": "^0.3.3",
+ "core-js-compat": "^3.25.1"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
}
},
"node_modules/babel-plugin-polyfill-regenerator": {
- "version": "0.1.6",
+ "version": "0.4.1",
+ "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.4.1.tgz",
+ "integrity": "sha512-NtQGmyQDXjQqQ+IzRkBVwEOz9lQ4zxAQZgoAYEtU9dJjnl1Oc98qnN7jcp+bE7O7aYzVpavXE3/VKXNzUbh7aw==",
"devOptional": true,
- "license": "MIT",
"dependencies": {
- "@babel/helper-define-polyfill-provider": "^0.1.5"
+ "@babel/helper-define-polyfill-provider": "^0.3.3"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
}
},
- "node_modules/babel-plugin-react-docgen": {
- "version": "4.2.1",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "ast-types": "^0.14.2",
- "lodash": "^4.17.15",
- "react-docgen": "^5.0.0"
- }
- },
- "node_modules/babel-plugin-syntax-jsx": {
- "version": "6.18.0",
- "license": "MIT",
- "optional": true
- },
"node_modules/babel-plugin-syntax-trailing-function-commas": {
"version": "7.0.0-beta.0",
"dev": true,
"license": "MIT"
},
- "node_modules/babel-plugin-transform-inline-consecutive-adds": {
- "version": "0.4.3",
- "license": "MIT",
- "optional": true
- },
- "node_modules/babel-plugin-transform-member-expression-literals": {
- "version": "6.9.4",
- "license": "MIT",
- "optional": true
- },
- "node_modules/babel-plugin-transform-merge-sibling-variables": {
- "version": "6.9.4",
- "license": "MIT",
- "optional": true
- },
- "node_modules/babel-plugin-transform-minify-booleans": {
- "version": "6.9.4",
- "license": "MIT",
- "optional": true
- },
- "node_modules/babel-plugin-transform-property-literals": {
- "version": "6.9.4",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "esutils": "^2.0.2"
- }
- },
- "node_modules/babel-plugin-transform-regexp-constructors": {
- "version": "0.4.3",
- "license": "MIT",
- "optional": true
- },
- "node_modules/babel-plugin-transform-remove-console": {
- "version": "6.9.4",
- "license": "MIT",
- "optional": true
- },
- "node_modules/babel-plugin-transform-remove-debugger": {
- "version": "6.9.4",
- "license": "MIT",
- "optional": true
- },
- "node_modules/babel-plugin-transform-remove-undefined": {
- "version": "0.5.0",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "babel-helper-evaluate-path": "^0.5.0"
- }
- },
- "node_modules/babel-plugin-transform-simplify-comparison-operators": {
- "version": "6.9.4",
- "license": "MIT",
- "optional": true
- },
- "node_modules/babel-plugin-transform-undefined-to-void": {
- "version": "6.9.4",
- "license": "MIT",
- "optional": true
- },
"node_modules/babel-preset-current-node-syntax": {
"version": "1.0.1",
"devOptional": true,
@@ -12848,36 +14252,6 @@
"@babel/core": "^7.0.0"
}
},
- "node_modules/babel-preset-minify": {
- "version": "0.5.1",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "babel-plugin-minify-builtins": "^0.5.0",
- "babel-plugin-minify-constant-folding": "^0.5.0",
- "babel-plugin-minify-dead-code-elimination": "^0.5.1",
- "babel-plugin-minify-flip-comparisons": "^0.4.3",
- "babel-plugin-minify-guarded-expressions": "^0.4.4",
- "babel-plugin-minify-infinity": "^0.4.3",
- "babel-plugin-minify-mangle-names": "^0.5.0",
- "babel-plugin-minify-numeric-literals": "^0.4.3",
- "babel-plugin-minify-replace": "^0.5.0",
- "babel-plugin-minify-simplify": "^0.5.1",
- "babel-plugin-minify-type-constructors": "^0.4.3",
- "babel-plugin-transform-inline-consecutive-adds": "^0.4.3",
- "babel-plugin-transform-member-expression-literals": "^6.9.4",
- "babel-plugin-transform-merge-sibling-variables": "^6.9.4",
- "babel-plugin-transform-minify-booleans": "^6.9.4",
- "babel-plugin-transform-property-literals": "^6.9.4",
- "babel-plugin-transform-regexp-constructors": "^0.4.3",
- "babel-plugin-transform-remove-console": "^6.9.4",
- "babel-plugin-transform-remove-debugger": "^6.9.4",
- "babel-plugin-transform-remove-undefined": "^0.5.0",
- "babel-plugin-transform-simplify-comparison-operators": "^6.9.4",
- "babel-plugin-transform-undefined-to-void": "^6.9.4",
- "lodash": "^4.17.11"
- }
- },
"node_modules/backo2": {
"version": "1.0.2",
"dev": true,
@@ -12898,7 +14272,7 @@
},
"node_modules/base": {
"version": "0.11.2",
- "devOptional": true,
+ "dev": true,
"license": "MIT",
"dependencies": {
"cache-base": "^1.0.1",
@@ -12915,7 +14289,7 @@
},
"node_modules/base/node_modules/define-property": {
"version": "1.0.0",
- "devOptional": true,
+ "dev": true,
"license": "MIT",
"dependencies": {
"is-descriptor": "^1.0.0"
@@ -12926,7 +14300,7 @@
},
"node_modules/base/node_modules/is-accessor-descriptor": {
"version": "1.0.0",
- "devOptional": true,
+ "dev": true,
"license": "MIT",
"dependencies": {
"kind-of": "^6.0.0"
@@ -12937,7 +14311,7 @@
},
"node_modules/base/node_modules/is-data-descriptor": {
"version": "1.0.0",
- "devOptional": true,
+ "dev": true,
"license": "MIT",
"dependencies": {
"kind-of": "^6.0.0"
@@ -12948,7 +14322,7 @@
},
"node_modules/base/node_modules/is-descriptor": {
"version": "1.0.2",
- "devOptional": true,
+ "dev": true,
"license": "MIT",
"dependencies": {
"is-accessor-descriptor": "^1.0.0",
@@ -12994,11 +14368,6 @@
"dev": true,
"license": "MIT"
},
- "node_modules/batch-processor": {
- "version": "1.0.0",
- "license": "MIT",
- "optional": true
- },
"node_modules/bcrypt-pbkdf": {
"version": "1.0.2",
"license": "BSD-3-Clause",
@@ -13012,6 +14381,34 @@
"dev": true,
"license": "Apache-2.0"
},
+ "node_modules/better-opn": {
+ "version": "2.1.1",
+ "resolved": "https://registry.npmjs.org/better-opn/-/better-opn-2.1.1.tgz",
+ "integrity": "sha512-kIPXZS5qwyKiX/HcRvDYfmBQUa8XP17I0mYZZ0y4UhpYOSvtsLHDYqmomS+Mj20aDvD3knEiQ0ecQy2nhio3yA==",
+ "optional": true,
+ "dependencies": {
+ "open": "^7.0.3"
+ },
+ "engines": {
+ "node": ">8.0.0"
+ }
+ },
+ "node_modules/better-opn/node_modules/open": {
+ "version": "7.4.2",
+ "resolved": "https://registry.npmjs.org/open/-/open-7.4.2.tgz",
+ "integrity": "sha512-MVHddDVweXZF3awtlAS+6pgKLlm/JgxZ90+/NBurBoQctVOOB/zDdVjcyPzQ+0laDGbsWgrRkflI65sQeOgT9Q==",
+ "optional": true,
+ "dependencies": {
+ "is-docker": "^2.0.0",
+ "is-wsl": "^2.1.1"
+ },
+ "engines": {
+ "node": ">=8"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
"node_modules/better-path-resolve": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/better-path-resolve/-/better-path-resolve-1.0.0.tgz",
@@ -13024,22 +14421,23 @@
"node": ">=4"
}
},
+ "node_modules/big-integer": {
+ "version": "1.6.51",
+ "resolved": "https://registry.npmjs.org/big-integer/-/big-integer-1.6.51.tgz",
+ "integrity": "sha512-GPEid2Y9QU1Exl1rpO9B2IPJGHPSupF5GnVIP0blYvNOMer2bTvSWs1jGOUg04hTmu67nmLsQ9TBo1puaotBHg==",
+ "optional": true,
+ "engines": {
+ "node": ">=0.6"
+ }
+ },
"node_modules/big.js": {
"version": "5.2.2",
- "devOptional": true,
+ "dev": true,
"license": "MIT",
"engines": {
"node": "*"
}
},
- "node_modules/binary-extensions": {
- "version": "1.13.1",
- "license": "MIT",
- "optional": true,
- "engines": {
- "node": ">=0.10.0"
- }
- },
"node_modules/bindings": {
"version": "1.5.0",
"license": "MIT",
@@ -13048,9 +14446,18 @@
"file-uri-to-path": "1.0.0"
}
},
+ "node_modules/binjumper": {
+ "version": "0.1.4",
+ "resolved": "https://registry.npmjs.org/binjumper/-/binjumper-0.1.4.tgz",
+ "integrity": "sha512-Gdxhj+U295tIM6cO4bJO1jsvSjBVHNpj2o/OwW7pqDEtaqF6KdOxjtbo93jMMKAkP7+u09+bV8DhSqjIv4qR3w==",
+ "optional": true,
+ "engines": {
+ "node": ">=10.12.0"
+ }
+ },
"node_modules/bl": {
"version": "4.1.0",
- "dev": true,
+ "devOptional": true,
"license": "MIT",
"dependencies": {
"buffer": "^5.5.0",
@@ -13060,7 +14467,7 @@
},
"node_modules/bl/node_modules/buffer": {
"version": "5.7.1",
- "dev": true,
+ "devOptional": true,
"funding": [
{
"type": "github",
@@ -13081,19 +14488,6 @@
"ieee754": "^1.1.13"
}
},
- "node_modules/bl/node_modules/readable-stream": {
- "version": "3.6.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "inherits": "^2.0.3",
- "string_decoder": "^1.1.1",
- "util-deprecate": "^1.0.1"
- },
- "engines": {
- "node": ">= 6"
- }
- },
"node_modules/blob-util": {
"version": "2.0.2",
"license": "Apache-2.0",
@@ -13109,11 +14503,6 @@
"dev": true,
"license": "MIT"
},
- "node_modules/bn.js": {
- "version": "5.2.0",
- "license": "MIT",
- "optional": true
- },
"node_modules/body-parser": {
"version": "1.20.1",
"resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.1.tgz",
@@ -13180,7 +14569,7 @@
},
"node_modules/boolbase": {
"version": "1.0.0",
- "devOptional": true,
+ "dev": true,
"license": "ISC"
},
"node_modules/bowser": {
@@ -13189,50 +14578,64 @@
"license": "MIT"
},
"node_modules/boxen": {
- "version": "4.2.0",
- "license": "MIT",
- "optional": true,
+ "version": "5.1.2",
+ "resolved": "https://registry.npmjs.org/boxen/-/boxen-5.1.2.tgz",
+ "integrity": "sha512-9gYgQKXx+1nP8mP7CzFyaUARhg7D3n1dF/FnErWmu9l6JvGpNUN278h0aSb+QjoiKSWG+iZ3uHrcqk0qrY9RQQ==",
"dependencies": {
"ansi-align": "^3.0.0",
- "camelcase": "^5.3.1",
- "chalk": "^3.0.0",
- "cli-boxes": "^2.2.0",
- "string-width": "^4.1.0",
- "term-size": "^2.1.0",
- "type-fest": "^0.8.1",
- "widest-line": "^3.1.0"
+ "camelcase": "^6.2.0",
+ "chalk": "^4.1.0",
+ "cli-boxes": "^2.2.1",
+ "string-width": "^4.2.2",
+ "type-fest": "^0.20.2",
+ "widest-line": "^3.1.0",
+ "wrap-ansi": "^7.0.0"
},
"engines": {
- "node": ">=8"
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/boxen/node_modules/camelcase": {
+ "version": "6.3.0",
+ "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz",
+ "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==",
+ "engines": {
+ "node": ">=10"
},
"funding": {
"url": "https://github.com/sponsors/sindresorhus"
}
},
"node_modules/boxen/node_modules/chalk": {
- "version": "3.0.0",
- "license": "MIT",
- "optional": true,
+ "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": ">=8"
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/chalk?sponsor=1"
}
},
"node_modules/boxen/node_modules/has-flag": {
"version": "4.0.0",
- "license": "MIT",
- "optional": true,
+ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
+ "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
"engines": {
"node": ">=8"
}
},
"node_modules/boxen/node_modules/supports-color": {
"version": "7.2.0",
- "license": "MIT",
- "optional": true,
+ "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"
},
@@ -13241,11 +14644,26 @@
}
},
"node_modules/boxen/node_modules/type-fest": {
- "version": "0.8.1",
- "license": "(MIT OR CC0-1.0)",
- "optional": true,
+ "version": "0.20.2",
+ "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz",
+ "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==",
"engines": {
- "node": ">=8"
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/bplist-parser": {
+ "version": "0.2.0",
+ "resolved": "https://registry.npmjs.org/bplist-parser/-/bplist-parser-0.2.0.tgz",
+ "integrity": "sha512-z0M+byMThzQmD9NILRniCUXYsYpjwnlO8N5uCFaCqIOpqRsJCrQL9NK3JsD67CN5a08nF5oIL2bD6loTdHOuKw==",
+ "optional": true,
+ "dependencies": {
+ "big-integer": "^1.6.44"
+ },
+ "engines": {
+ "node": ">= 5.10.0"
}
},
"node_modules/brace-expansion": {
@@ -13276,9 +14694,10 @@
"wcwidth": "^1.0.1"
}
},
- "node_modules/brorand": {
- "version": "1.1.0",
- "license": "MIT",
+ "node_modules/browser-assert": {
+ "version": "1.2.1",
+ "resolved": "https://registry.npmjs.org/browser-assert/-/browser-assert-1.2.1.tgz",
+ "integrity": "sha512-nfulgvOR6S4gt9UKCeGJOuSGBPGiFT6oQ/2UBnvTY/5aQ1PnksW72fhZkM30DzoRRv2WpwZf1vHHEr3mtuXIWQ==",
"optional": true
},
"node_modules/browser-process-hrtime": {
@@ -13286,106 +14705,41 @@
"license": "BSD-2-Clause",
"optional": true
},
- "node_modules/browserify-aes": {
- "version": "1.2.0",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "buffer-xor": "^1.0.3",
- "cipher-base": "^1.0.0",
- "create-hash": "^1.1.0",
- "evp_bytestokey": "^1.0.3",
- "inherits": "^2.0.1",
- "safe-buffer": "^5.0.1"
- }
- },
- "node_modules/browserify-cipher": {
- "version": "1.0.1",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "browserify-aes": "^1.0.4",
- "browserify-des": "^1.0.0",
- "evp_bytestokey": "^1.0.0"
- }
- },
- "node_modules/browserify-des": {
- "version": "1.0.2",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "cipher-base": "^1.0.1",
- "des.js": "^1.0.0",
- "inherits": "^2.0.1",
- "safe-buffer": "^5.1.2"
- }
- },
- "node_modules/browserify-rsa": {
- "version": "4.1.0",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "bn.js": "^5.0.0",
- "randombytes": "^2.0.1"
- }
- },
- "node_modules/browserify-sign": {
- "version": "4.2.1",
- "license": "ISC",
- "optional": true,
- "dependencies": {
- "bn.js": "^5.1.1",
- "browserify-rsa": "^4.0.1",
- "create-hash": "^1.2.0",
- "create-hmac": "^1.1.7",
- "elliptic": "^6.5.3",
- "inherits": "^2.0.4",
- "parse-asn1": "^5.1.5",
- "readable-stream": "^3.6.0",
- "safe-buffer": "^5.2.0"
- }
- },
- "node_modules/browserify-sign/node_modules/readable-stream": {
- "version": "3.6.0",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "inherits": "^2.0.3",
- "string_decoder": "^1.1.1",
- "util-deprecate": "^1.0.1"
- },
- "engines": {
- "node": ">= 6"
- }
- },
"node_modules/browserify-zlib": {
- "version": "0.2.0",
- "license": "MIT",
+ "version": "0.1.4",
+ "resolved": "https://registry.npmjs.org/browserify-zlib/-/browserify-zlib-0.1.4.tgz",
+ "integrity": "sha512-19OEpq7vWgsH6WkvkBJQDFvJS1uPcbFOQ4v9CU839dO+ZZXUZO6XpE6hNCqvlIIj+4fZvRiJ6DsAQ382GwiyTQ==",
"optional": true,
"dependencies": {
- "pako": "~1.0.5"
+ "pako": "~0.2.0"
}
},
"node_modules/browserslist": {
- "version": "4.16.3",
+ "version": "4.21.5",
+ "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.21.5.tgz",
+ "integrity": "sha512-tUkiguQGW7S3IhB7N+c2MV/HZPSCPAAiYBZXLsBhFB/PCy6ZKKsZrmBayHV9fdGV/ARIfJ14NkxKzRDjvp7L6w==",
"devOptional": true,
- "license": "MIT",
+ "funding": [
+ {
+ "type": "opencollective",
+ "url": "https://opencollective.com/browserslist"
+ },
+ {
+ "type": "tidelift",
+ "url": "https://tidelift.com/funding/github/npm/browserslist"
+ }
+ ],
"dependencies": {
- "caniuse-lite": "^1.0.30001181",
- "colorette": "^1.2.1",
- "electron-to-chromium": "^1.3.649",
- "escalade": "^3.1.1",
- "node-releases": "^1.1.70"
+ "caniuse-lite": "^1.0.30001449",
+ "electron-to-chromium": "^1.4.284",
+ "node-releases": "^2.0.8",
+ "update-browserslist-db": "^1.0.10"
},
"bin": {
"browserslist": "cli.js"
},
"engines": {
"node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/browserslist"
}
},
"node_modules/bs-logger": {
@@ -13407,16 +14761,6 @@
"node-int64": "^0.4.0"
}
},
- "node_modules/buffer": {
- "version": "4.9.2",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "base64-js": "^1.0.2",
- "ieee754": "^1.1.4",
- "isarray": "^1.0.0"
- }
- },
"node_modules/buffer-crc32": {
"version": "0.2.13",
"devOptional": true,
@@ -13435,16 +14779,6 @@
"devOptional": true,
"license": "MIT"
},
- "node_modules/buffer-xor": {
- "version": "1.0.3",
- "license": "MIT",
- "optional": true
- },
- "node_modules/buffer/node_modules/isarray": {
- "version": "1.0.0",
- "license": "MIT",
- "optional": true
- },
"node_modules/builtin-modules": {
"version": "3.3.0",
"dev": true,
@@ -13456,11 +14790,6 @@
"url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/builtin-status-codes": {
- "version": "3.0.0",
- "license": "MIT",
- "optional": true
- },
"node_modules/busboy": {
"version": "1.6.0",
"dev": true,
@@ -13480,55 +14809,178 @@
"node": ">= 0.8"
}
},
- "node_modules/cacache": {
- "version": "12.0.4",
- "license": "ISC",
+ "node_modules/c8": {
+ "version": "7.13.0",
+ "resolved": "https://registry.npmjs.org/c8/-/c8-7.13.0.tgz",
+ "integrity": "sha512-/NL4hQTv1gBL6J6ei80zu3IiTrmePDKXKXOTLpHvcIWZTVYQlDhVWjjWvkhICylE8EwwnMVzDZugCvdx0/DIIA==",
"optional": true,
"dependencies": {
- "bluebird": "^3.5.5",
- "chownr": "^1.1.1",
- "figgy-pudding": "^3.5.1",
- "glob": "^7.1.4",
- "graceful-fs": "^4.1.15",
- "infer-owner": "^1.0.3",
- "lru-cache": "^5.1.1",
- "mississippi": "^3.0.0",
- "mkdirp": "^0.5.1",
- "move-concurrently": "^1.0.1",
- "promise-inflight": "^1.0.1",
- "rimraf": "^2.6.3",
- "ssri": "^6.0.1",
- "unique-filename": "^1.1.1",
- "y18n": "^4.0.0"
- }
- },
- "node_modules/cacache/node_modules/lru-cache": {
- "version": "5.1.1",
- "license": "ISC",
- "optional": true,
- "dependencies": {
- "yallist": "^3.0.2"
- }
- },
- "node_modules/cacache/node_modules/rimraf": {
- "version": "2.7.1",
- "license": "ISC",
- "optional": true,
- "dependencies": {
- "glob": "^7.1.3"
+ "@bcoe/v8-coverage": "^0.2.3",
+ "@istanbuljs/schema": "^0.1.3",
+ "find-up": "^5.0.0",
+ "foreground-child": "^2.0.0",
+ "istanbul-lib-coverage": "^3.2.0",
+ "istanbul-lib-report": "^3.0.0",
+ "istanbul-reports": "^3.1.4",
+ "rimraf": "^3.0.2",
+ "test-exclude": "^6.0.0",
+ "v8-to-istanbul": "^9.0.0",
+ "yargs": "^16.2.0",
+ "yargs-parser": "^20.2.9"
},
"bin": {
- "rimraf": "bin.js"
+ "c8": "bin/c8.js"
+ },
+ "engines": {
+ "node": ">=10.12.0"
}
},
- "node_modules/cacache/node_modules/yallist": {
- "version": "3.1.1",
- "license": "ISC",
- "optional": true
+ "node_modules/c8/node_modules/cliui": {
+ "version": "7.0.4",
+ "resolved": "https://registry.npmjs.org/cliui/-/cliui-7.0.4.tgz",
+ "integrity": "sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==",
+ "optional": true,
+ "dependencies": {
+ "string-width": "^4.2.0",
+ "strip-ansi": "^6.0.0",
+ "wrap-ansi": "^7.0.0"
+ }
+ },
+ "node_modules/c8/node_modules/find-up": {
+ "version": "5.0.0",
+ "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz",
+ "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==",
+ "optional": true,
+ "dependencies": {
+ "locate-path": "^6.0.0",
+ "path-exists": "^4.0.0"
+ },
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/c8/node_modules/locate-path": {
+ "version": "6.0.0",
+ "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz",
+ "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==",
+ "optional": true,
+ "dependencies": {
+ "p-locate": "^5.0.0"
+ },
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/c8/node_modules/p-limit": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz",
+ "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==",
+ "optional": true,
+ "dependencies": {
+ "yocto-queue": "^0.1.0"
+ },
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/c8/node_modules/p-locate": {
+ "version": "5.0.0",
+ "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz",
+ "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==",
+ "optional": true,
+ "dependencies": {
+ "p-limit": "^3.0.2"
+ },
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/c8/node_modules/path-exists": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz",
+ "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==",
+ "optional": true,
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/c8/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==",
+ "optional": true,
+ "dependencies": {
+ "ansi-regex": "^5.0.1"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/c8/node_modules/v8-to-istanbul": {
+ "version": "9.1.0",
+ "resolved": "https://registry.npmjs.org/v8-to-istanbul/-/v8-to-istanbul-9.1.0.tgz",
+ "integrity": "sha512-6z3GW9x8G1gd+JIIgQQQxXuiJtCXeAjp6RaPEPLv62mH3iPHPxV6W3robxtCzNErRo6ZwTmzWhsbNvjyEBKzKA==",
+ "optional": true,
+ "dependencies": {
+ "@jridgewell/trace-mapping": "^0.3.12",
+ "@types/istanbul-lib-coverage": "^2.0.1",
+ "convert-source-map": "^1.6.0"
+ },
+ "engines": {
+ "node": ">=10.12.0"
+ }
+ },
+ "node_modules/c8/node_modules/y18n": {
+ "version": "5.0.8",
+ "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz",
+ "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==",
+ "optional": true,
+ "engines": {
+ "node": ">=10"
+ }
+ },
+ "node_modules/c8/node_modules/yargs": {
+ "version": "16.2.0",
+ "resolved": "https://registry.npmjs.org/yargs/-/yargs-16.2.0.tgz",
+ "integrity": "sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==",
+ "optional": true,
+ "dependencies": {
+ "cliui": "^7.0.2",
+ "escalade": "^3.1.1",
+ "get-caller-file": "^2.0.5",
+ "require-directory": "^2.1.1",
+ "string-width": "^4.2.0",
+ "y18n": "^5.0.5",
+ "yargs-parser": "^20.2.2"
+ },
+ "engines": {
+ "node": ">=10"
+ }
+ },
+ "node_modules/c8/node_modules/yargs-parser": {
+ "version": "20.2.9",
+ "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.9.tgz",
+ "integrity": "sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==",
+ "optional": true,
+ "engines": {
+ "node": ">=10"
+ }
},
"node_modules/cache-base": {
"version": "1.0.1",
- "devOptional": true,
+ "dev": true,
"license": "MIT",
"dependencies": {
"collection-visit": "^1.0.0",
@@ -13547,7 +14999,7 @@
},
"node_modules/cacheable-lookup": {
"version": "5.0.4",
- "dev": true,
+ "devOptional": true,
"license": "MIT",
"engines": {
"node": ">=10.6.0"
@@ -13555,7 +15007,7 @@
},
"node_modules/cacheable-request": {
"version": "7.0.1",
- "dev": true,
+ "devOptional": true,
"license": "MIT",
"dependencies": {
"clone-response": "^1.0.2",
@@ -13572,7 +15024,7 @@
},
"node_modules/cacheable-request/node_modules/normalize-url": {
"version": "4.5.0",
- "dev": true,
+ "devOptional": true,
"license": "MIT",
"engines": {
"node": ">=8"
@@ -13597,41 +15049,6 @@
"url": "https://github.com/sponsors/ljharb"
}
},
- "node_modules/call-me-maybe": {
- "version": "1.0.1",
- "license": "MIT",
- "optional": true
- },
- "node_modules/caller-callsite": {
- "version": "2.0.0",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "callsites": "^2.0.0"
- },
- "engines": {
- "node": ">=4"
- }
- },
- "node_modules/caller-path": {
- "version": "2.0.0",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "caller-callsite": "^2.0.0"
- },
- "engines": {
- "node": ">=4"
- }
- },
- "node_modules/callsites": {
- "version": "2.0.0",
- "license": "MIT",
- "optional": true,
- "engines": {
- "node": ">=4"
- }
- },
"node_modules/camelcase": {
"version": "5.3.1",
"devOptional": true,
@@ -13666,15 +15083,25 @@
"node": ">=8"
}
},
- "node_modules/can-use-dom": {
- "version": "0.1.0",
- "license": "MIT",
- "optional": true
- },
"node_modules/caniuse-lite": {
- "version": "1.0.30001208",
+ "version": "1.0.30001482",
+ "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001482.tgz",
+ "integrity": "sha512-F1ZInsg53cegyjroxLNW9DmrEQ1SuGRTO1QlpA0o2/6OpQ0gFeDRoq1yFmnr8Sakn9qwwt9DmbxHB6w167OSuQ==",
"devOptional": true,
- "license": "CC-BY-4.0"
+ "funding": [
+ {
+ "type": "opencollective",
+ "url": "https://opencollective.com/browserslist"
+ },
+ {
+ "type": "tidelift",
+ "url": "https://tidelift.com/funding/github/npm/caniuse-lite"
+ },
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/ai"
+ }
+ ]
},
"node_modules/canvas-hypertxt": {
"version": "0.0.7",
@@ -13700,14 +15127,6 @@
"tslib": "^2.0.3"
}
},
- "node_modules/case-sensitive-paths-webpack-plugin": {
- "version": "2.4.0",
- "license": "MIT",
- "optional": true,
- "engines": {
- "node": ">=4"
- }
- },
"node_modules/caseless": {
"version": "0.12.0",
"license": "Apache-2.0",
@@ -13851,7 +15270,7 @@
},
"node_modules/chardet": {
"version": "0.7.0",
- "devOptional": true,
+ "dev": true,
"license": "MIT"
},
"node_modules/charenc": {
@@ -13871,35 +15290,30 @@
}
},
"node_modules/chokidar": {
- "version": "3.5.1",
+ "version": "3.5.3",
+ "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.3.tgz",
+ "integrity": "sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==",
"devOptional": true,
- "license": "MIT",
+ "funding": [
+ {
+ "type": "individual",
+ "url": "https://paulmillr.com/funding/"
+ }
+ ],
"dependencies": {
- "anymatch": "~3.1.1",
+ "anymatch": "~3.1.2",
"braces": "~3.0.2",
- "glob-parent": "~5.1.0",
+ "glob-parent": "~5.1.2",
"is-binary-path": "~2.1.0",
"is-glob": "~4.0.1",
"normalize-path": "~3.0.0",
- "readdirp": "~3.5.0"
+ "readdirp": "~3.6.0"
},
"engines": {
"node": ">= 8.10.0"
},
"optionalDependencies": {
- "fsevents": "~2.3.1"
- }
- },
- "node_modules/chokidar/node_modules/anymatch": {
- "version": "3.1.2",
- "devOptional": true,
- "license": "ISC",
- "dependencies": {
- "normalize-path": "^3.0.0",
- "picomatch": "^2.0.4"
- },
- "engines": {
- "node": ">= 8"
+ "fsevents": "~2.3.2"
}
},
"node_modules/chokidar/node_modules/binary-extensions": {
@@ -13912,7 +15326,6 @@
},
"node_modules/chokidar/node_modules/fsevents": {
"version": "2.3.2",
- "dev": true,
"license": "MIT",
"optional": true,
"os": [
@@ -13933,39 +15346,31 @@
"node": ">=8"
}
},
- "node_modules/chokidar/node_modules/readdirp": {
- "version": "3.5.0",
- "devOptional": true,
- "license": "MIT",
- "dependencies": {
- "picomatch": "^2.2.1"
- },
+ "node_modules/chownr": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/chownr/-/chownr-2.0.0.tgz",
+ "integrity": "sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==",
+ "optional": true,
"engines": {
- "node": ">=8.10.0"
+ "node": ">=10"
}
},
- "node_modules/chownr": {
- "version": "1.1.4",
- "license": "ISC",
- "optional": true
- },
- "node_modules/chrome-trace-event": {
- "version": "1.0.2",
- "license": "MIT",
+ "node_modules/chromatic": {
+ "version": "6.17.4",
+ "resolved": "https://registry.npmjs.org/chromatic/-/chromatic-6.17.4.tgz",
+ "integrity": "sha512-vnlvsv2lkp8BVtTn1OumJzqkDk2qB3pcGxEDIfZtVboKtzIPjnIlGa+c1fVKQe8NvHDU8R39k8klqgKHIXUVJw==",
"optional": true,
"dependencies": {
- "tslib": "^1.9.0"
+ "@discoveryjs/json-ext": "^0.5.7",
+ "@types/webpack-env": "^1.17.0",
+ "snyk-nodejs-lockfile-parser": "^1.49.0"
},
- "engines": {
- "node": ">=6.0"
+ "bin": {
+ "chroma": "bin/main.cjs",
+ "chromatic": "bin/main.cjs",
+ "chromatic-cli": "bin/main.cjs"
}
},
- "node_modules/chrome-trace-event/node_modules/tslib": {
- "version": "1.14.1",
- "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz",
- "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==",
- "optional": true
- },
"node_modules/ci-info": {
"version": "3.7.0",
"devOptional": true,
@@ -13974,15 +15379,6 @@
"node": ">=8"
}
},
- "node_modules/cipher-base": {
- "version": "1.0.4",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "inherits": "^2.0.1",
- "safe-buffer": "^5.0.1"
- }
- },
"node_modules/cjs-module-lexer": {
"version": "1.2.2",
"license": "MIT",
@@ -13990,7 +15386,7 @@
},
"node_modules/class-utils": {
"version": "0.3.6",
- "devOptional": true,
+ "dev": true,
"license": "MIT",
"dependencies": {
"arr-union": "^3.1.0",
@@ -14004,7 +15400,7 @@
},
"node_modules/class-utils/node_modules/define-property": {
"version": "0.2.5",
- "devOptional": true,
+ "dev": true,
"license": "MIT",
"dependencies": {
"is-descriptor": "^0.1.0"
@@ -14017,25 +15413,6 @@
"version": "2.3.1",
"license": "MIT"
},
- "node_modules/clean-css": {
- "version": "4.2.4",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "source-map": "~0.6.0"
- },
- "engines": {
- "node": ">= 4.0"
- }
- },
- "node_modules/clean-css/node_modules/source-map": {
- "version": "0.6.1",
- "license": "BSD-3-Clause",
- "optional": true,
- "engines": {
- "node": ">=0.10.0"
- }
- },
"node_modules/cli-boxes": {
"version": "2.2.1",
"license": "MIT",
@@ -14048,7 +15425,7 @@
},
"node_modules/cli-cursor": {
"version": "2.1.0",
- "devOptional": true,
+ "dev": true,
"license": "MIT",
"dependencies": {
"restore-cursor": "^2.0.0"
@@ -14069,57 +15446,18 @@
}
},
"node_modules/cli-table3": {
- "version": "0.5.1",
- "license": "MIT",
+ "version": "0.6.3",
+ "resolved": "https://registry.npmjs.org/cli-table3/-/cli-table3-0.6.3.tgz",
+ "integrity": "sha512-w5Jac5SykAeZJKntOxJCrm63Eg5/4dhMWIcuTbo9rpE+brgaSZo0RuNJZeOyMgsUdhDeojvgyQLmjI+K50ZGyg==",
"optional": true,
"dependencies": {
- "object-assign": "^4.1.0",
- "string-width": "^2.1.1"
+ "string-width": "^4.2.0"
},
"engines": {
- "node": ">=6"
+ "node": "10.* || >= 12.*"
},
"optionalDependencies": {
- "colors": "^1.1.2"
- }
- },
- "node_modules/cli-table3/node_modules/ansi-regex": {
- "version": "3.0.0",
- "license": "MIT",
- "optional": true,
- "engines": {
- "node": ">=4"
- }
- },
- "node_modules/cli-table3/node_modules/is-fullwidth-code-point": {
- "version": "2.0.0",
- "license": "MIT",
- "optional": true,
- "engines": {
- "node": ">=4"
- }
- },
- "node_modules/cli-table3/node_modules/string-width": {
- "version": "2.1.1",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "is-fullwidth-code-point": "^2.0.0",
- "strip-ansi": "^4.0.0"
- },
- "engines": {
- "node": ">=4"
- }
- },
- "node_modules/cli-table3/node_modules/strip-ansi": {
- "version": "4.0.0",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "ansi-regex": "^3.0.0"
- },
- "engines": {
- "node": ">=4"
+ "@colors/colors": "1.5.0"
}
},
"node_modules/cli-truncate": {
@@ -14179,21 +15517,17 @@
},
"node_modules/cli-width": {
"version": "3.0.0",
- "devOptional": true,
+ "dev": true,
"license": "ISC",
"engines": {
"node": ">= 10"
}
},
- "node_modules/clipboard": {
- "version": "2.0.8",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "good-listener": "^1.2.2",
- "select": "^1.1.2",
- "tiny-emitter": "^2.0.0"
- }
+ "node_modules/clipanion": {
+ "version": "2.6.2",
+ "resolved": "https://registry.npmjs.org/clipanion/-/clipanion-2.6.2.tgz",
+ "integrity": "sha512-0tOHJNMF9+4R3qcbBL+4IxLErpaYSYvzs10aXuECDbZdJOuJHdagJMAqvLdeaUQTI/o2uSCDRpet6ywDiKOAYw==",
+ "optional": true
},
"node_modules/cliui": {
"version": "5.0.0",
@@ -14276,32 +15610,6 @@
"node": ">=0.8"
}
},
- "node_modules/clone-deep": {
- "version": "0.2.4",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "for-own": "^0.1.3",
- "is-plain-object": "^2.0.1",
- "kind-of": "^3.0.2",
- "lazy-cache": "^1.0.3",
- "shallow-clone": "^0.1.2"
- },
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/clone-deep/node_modules/kind-of": {
- "version": "3.2.2",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "is-buffer": "^1.1.5"
- },
- "engines": {
- "node": ">=0.10.0"
- }
- },
"node_modules/clone-response": {
"version": "1.0.2",
"license": "MIT",
@@ -14325,22 +15633,9 @@
"node": ">= 0.12.0"
}
},
- "node_modules/coa": {
- "version": "2.0.2",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "@types/q": "^1.5.1",
- "chalk": "^2.4.1",
- "q": "^1.1.2"
- },
- "engines": {
- "node": ">= 4.0"
- }
- },
"node_modules/code-point-at": {
"version": "1.1.0",
- "devOptional": true,
+ "dev": true,
"license": "MIT",
"engines": {
"node": ">=0.10.0"
@@ -14429,7 +15724,7 @@
},
"node_modules/collection-visit": {
"version": "1.0.0",
- "devOptional": true,
+ "dev": true,
"license": "MIT",
"dependencies": {
"map-visit": "^1.0.0",
@@ -14453,14 +15748,24 @@
"version": "1.1.4",
"license": "MIT"
},
+ "node_modules/color-support": {
+ "version": "1.1.3",
+ "resolved": "https://registry.npmjs.org/color-support/-/color-support-1.1.3.tgz",
+ "integrity": "sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg==",
+ "optional": true,
+ "bin": {
+ "color-support": "bin.js"
+ }
+ },
"node_modules/colorette": {
- "version": "1.2.2",
- "devOptional": true,
- "license": "MIT"
+ "version": "2.0.20",
+ "resolved": "https://registry.npmjs.org/colorette/-/colorette-2.0.20.tgz",
+ "integrity": "sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==",
+ "devOptional": true
},
"node_modules/colors": {
"version": "1.4.0",
- "devOptional": true,
+ "dev": true,
"license": "MIT",
"engines": {
"node": ">=0.1.90"
@@ -14477,18 +15782,9 @@
"node": ">= 0.8"
}
},
- "node_modules/comma-separated-tokens": {
- "version": "1.0.8",
- "license": "MIT",
- "optional": true,
- "funding": {
- "type": "github",
- "url": "https://github.com/sponsors/wooorm"
- }
- },
"node_modules/commander": {
"version": "4.1.1",
- "devOptional": true,
+ "dev": true,
"license": "MIT",
"engines": {
"node": ">= 6"
@@ -14509,9 +15805,69 @@
},
"node_modules/component-emitter": {
"version": "1.3.0",
- "devOptional": true,
+ "dev": true,
"license": "MIT"
},
+ "node_modules/compressible": {
+ "version": "2.0.18",
+ "resolved": "https://registry.npmjs.org/compressible/-/compressible-2.0.18.tgz",
+ "integrity": "sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==",
+ "optional": true,
+ "dependencies": {
+ "mime-db": ">= 1.43.0 < 2"
+ },
+ "engines": {
+ "node": ">= 0.6"
+ }
+ },
+ "node_modules/compression": {
+ "version": "1.7.4",
+ "resolved": "https://registry.npmjs.org/compression/-/compression-1.7.4.tgz",
+ "integrity": "sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ==",
+ "optional": true,
+ "dependencies": {
+ "accepts": "~1.3.5",
+ "bytes": "3.0.0",
+ "compressible": "~2.0.16",
+ "debug": "2.6.9",
+ "on-headers": "~1.0.2",
+ "safe-buffer": "5.1.2",
+ "vary": "~1.1.2"
+ },
+ "engines": {
+ "node": ">= 0.8.0"
+ }
+ },
+ "node_modules/compression/node_modules/bytes": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.0.0.tgz",
+ "integrity": "sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw==",
+ "optional": true,
+ "engines": {
+ "node": ">= 0.8"
+ }
+ },
+ "node_modules/compression/node_modules/debug": {
+ "version": "2.6.9",
+ "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
+ "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
+ "optional": true,
+ "dependencies": {
+ "ms": "2.0.0"
+ }
+ },
+ "node_modules/compression/node_modules/ms": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
+ "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==",
+ "optional": true
+ },
+ "node_modules/compression/node_modules/safe-buffer": {
+ "version": "5.1.2",
+ "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz",
+ "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==",
+ "optional": true
+ },
"node_modules/compute-scroll-into-view": {
"version": "1.0.17",
"license": "MIT"
@@ -14523,10 +15879,11 @@
},
"node_modules/concat-stream": {
"version": "1.6.2",
+ "resolved": "https://registry.npmjs.org/concat-stream/-/concat-stream-1.6.2.tgz",
+ "integrity": "sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==",
"engines": [
"node >= 0.8"
],
- "license": "MIT",
"optional": true,
"dependencies": {
"buffer-from": "^1.0.0",
@@ -14535,6 +15892,33 @@
"typedarray": "^0.0.6"
}
},
+ "node_modules/concat-stream/node_modules/isarray": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz",
+ "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==",
+ "optional": true
+ },
+ "node_modules/concat-stream/node_modules/readable-stream": {
+ "version": "2.3.8",
+ "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz",
+ "integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==",
+ "optional": true,
+ "dependencies": {
+ "core-util-is": "~1.0.0",
+ "inherits": "~2.0.3",
+ "isarray": "~1.0.0",
+ "process-nextick-args": "~2.0.0",
+ "safe-buffer": "~5.1.1",
+ "string_decoder": "~1.1.1",
+ "util-deprecate": "~1.0.1"
+ }
+ },
+ "node_modules/concat-stream/node_modules/safe-buffer": {
+ "version": "5.1.2",
+ "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz",
+ "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==",
+ "optional": true
+ },
"node_modules/configstore": {
"version": "5.0.1",
"license": "BSD-2-Clause",
@@ -14593,13 +15977,10 @@
"dev": true,
"license": "MIT"
},
- "node_modules/console-browserify": {
- "version": "1.2.0",
- "optional": true
- },
"node_modules/console-control-strings": {
"version": "1.1.0",
- "license": "ISC",
+ "resolved": "https://registry.npmjs.org/console-control-strings/-/console-control-strings-1.1.0.tgz",
+ "integrity": "sha512-ty/fTekppD2fIwRvnZAVdeOiGd1c7YXEixbgJTNzqcxJWKQnjJ/V1bNEEE6hygpM3WjwHFUVK6HTjWSzV4a8sQ==",
"optional": true
},
"node_modules/constant-case": {
@@ -14621,11 +16002,6 @@
"tslib": "^2.0.3"
}
},
- "node_modules/constants-browserify": {
- "version": "1.0.0",
- "license": "MIT",
- "optional": true
- },
"node_modules/contains-path": {
"version": "0.1.0",
"license": "MIT",
@@ -14679,33 +16055,9 @@
"devOptional": true,
"license": "MIT"
},
- "node_modules/copy-concurrently": {
- "version": "1.0.5",
- "license": "ISC",
- "optional": true,
- "dependencies": {
- "aproba": "^1.1.1",
- "fs-write-stream-atomic": "^1.0.8",
- "iferr": "^0.1.5",
- "mkdirp": "^0.5.1",
- "rimraf": "^2.5.4",
- "run-queue": "^1.0.0"
- }
- },
- "node_modules/copy-concurrently/node_modules/rimraf": {
- "version": "2.7.1",
- "license": "ISC",
- "optional": true,
- "dependencies": {
- "glob": "^7.1.3"
- },
- "bin": {
- "rimraf": "bin.js"
- }
- },
"node_modules/copy-descriptor": {
"version": "0.1.1",
- "devOptional": true,
+ "dev": true,
"license": "MIT",
"engines": {
"node": ">=0.10.0"
@@ -14720,7 +16072,7 @@
},
"node_modules/core-js": {
"version": "3.10.1",
- "devOptional": true,
+ "dev": true,
"hasInstallScript": true,
"license": "MIT",
"funding": {
@@ -14729,58 +16081,23 @@
}
},
"node_modules/core-js-compat": {
- "version": "3.10.1",
+ "version": "3.30.1",
+ "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.30.1.tgz",
+ "integrity": "sha512-d690npR7MC6P0gq4npTl5n2VQeNAmUrJ90n+MHiKS7W2+xno4o3F5GDEuylSdi6EJ3VssibSGXOa1r3YXD3Mhw==",
"devOptional": true,
- "license": "MIT",
"dependencies": {
- "browserslist": "^4.16.3",
- "semver": "7.0.0"
+ "browserslist": "^4.21.5"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/core-js"
}
},
- "node_modules/core-js-compat/node_modules/semver": {
- "version": "7.0.0",
- "devOptional": true,
- "license": "ISC",
- "bin": {
- "semver": "bin/semver.js"
- }
- },
- "node_modules/core-js-pure": {
- "version": "3.10.1",
- "hasInstallScript": true,
- "license": "MIT",
- "optional": true,
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/core-js"
- }
- },
"node_modules/core-util-is": {
"version": "1.0.2",
"license": "MIT",
"optional": true
},
- "node_modules/corejs-upgrade-webpack-plugin": {
- "version": "2.2.0",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "resolve-from": "^5.0.0",
- "webpack": "^4.38.0"
- }
- },
- "node_modules/corejs-upgrade-webpack-plugin/node_modules/resolve-from": {
- "version": "5.0.0",
- "license": "MIT",
- "optional": true,
- "engines": {
- "node": ">=8"
- }
- },
"node_modules/cors": {
"version": "2.8.5",
"dev": true,
@@ -14794,17 +16111,18 @@
}
},
"node_modules/cosmiconfig": {
- "version": "5.2.1",
- "license": "MIT",
- "optional": true,
+ "version": "7.1.0",
+ "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.1.0.tgz",
+ "integrity": "sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==",
"dependencies": {
- "import-fresh": "^2.0.0",
- "is-directory": "^0.3.1",
- "js-yaml": "^3.13.1",
- "parse-json": "^4.0.0"
+ "@types/parse-json": "^4.0.0",
+ "import-fresh": "^3.2.1",
+ "parse-json": "^5.0.0",
+ "path-type": "^4.0.0",
+ "yaml": "^1.10.0"
},
"engines": {
- "node": ">=4"
+ "node": ">=10"
}
},
"node_modules/cosmiconfig-toml-loader": {
@@ -14826,66 +16144,6 @@
"node": ">=0.8"
}
},
- "node_modules/create-ecdh": {
- "version": "4.0.4",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "bn.js": "^4.1.0",
- "elliptic": "^6.5.3"
- }
- },
- "node_modules/create-ecdh/node_modules/bn.js": {
- "version": "4.12.0",
- "license": "MIT",
- "optional": true
- },
- "node_modules/create-hash": {
- "version": "1.2.0",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "cipher-base": "^1.0.1",
- "inherits": "^2.0.1",
- "md5.js": "^1.3.4",
- "ripemd160": "^2.0.1",
- "sha.js": "^2.4.0"
- }
- },
- "node_modules/create-hmac": {
- "version": "1.1.7",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "cipher-base": "^1.0.3",
- "create-hash": "^1.1.0",
- "inherits": "^2.0.1",
- "ripemd160": "^2.0.0",
- "safe-buffer": "^5.0.1",
- "sha.js": "^2.4.8"
- }
- },
- "node_modules/create-react-context": {
- "version": "0.3.0",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "gud": "^1.0.0",
- "warning": "^4.0.3"
- },
- "peerDependencies": {
- "prop-types": "^15.0.0",
- "react": "^0.14.0 || ^15.0.0 || ^16.0.0"
- }
- },
- "node_modules/create-react-context/node_modules/warning": {
- "version": "4.0.3",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "loose-envify": "^1.0.0"
- }
- },
"node_modules/create-require": {
"version": "1.1.1",
"dev": true,
@@ -14906,10 +16164,18 @@
"node": ">=8.0"
}
},
- "node_modules/cross-env/node_modules/cross-spawn": {
- "version": "7.0.3",
- "dev": true,
+ "node_modules/cross-fetch": {
+ "version": "3.1.4",
"license": "MIT",
+ "dependencies": {
+ "node-fetch": "2.6.1"
+ }
+ },
+ "node_modules/cross-spawn": {
+ "version": "7.0.3",
+ "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz",
+ "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==",
+ "devOptional": true,
"dependencies": {
"path-key": "^3.1.0",
"shebang-command": "^2.0.0",
@@ -14919,18 +16185,11 @@
"node": ">= 8"
}
},
- "node_modules/cross-env/node_modules/path-key": {
- "version": "3.1.1",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/cross-env/node_modules/shebang-command": {
+ "node_modules/cross-spawn/node_modules/shebang-command": {
"version": "2.0.0",
- "dev": true,
- "license": "MIT",
+ "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz",
+ "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==",
+ "devOptional": true,
"dependencies": {
"shebang-regex": "^3.0.0"
},
@@ -14938,18 +16197,20 @@
"node": ">=8"
}
},
- "node_modules/cross-env/node_modules/shebang-regex": {
+ "node_modules/cross-spawn/node_modules/shebang-regex": {
"version": "3.0.0",
- "dev": true,
- "license": "MIT",
+ "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz",
+ "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==",
+ "devOptional": true,
"engines": {
"node": ">=8"
}
},
- "node_modules/cross-env/node_modules/which": {
+ "node_modules/cross-spawn/node_modules/which": {
"version": "2.0.2",
- "dev": true,
- "license": "ISC",
+ "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz",
+ "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==",
+ "devOptional": true,
"dependencies": {
"isexe": "^2.0.0"
},
@@ -14960,36 +16221,6 @@
"node": ">= 8"
}
},
- "node_modules/cross-fetch": {
- "version": "3.1.4",
- "license": "MIT",
- "dependencies": {
- "node-fetch": "2.6.1"
- }
- },
- "node_modules/cross-spawn": {
- "version": "6.0.5",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "nice-try": "^1.0.4",
- "path-key": "^2.0.1",
- "semver": "^5.5.0",
- "shebang-command": "^1.2.0",
- "which": "^1.2.9"
- },
- "engines": {
- "node": ">=4.8"
- }
- },
- "node_modules/cross-spawn/node_modules/semver": {
- "version": "5.7.1",
- "license": "ISC",
- "optional": true,
- "bin": {
- "semver": "bin/semver"
- }
- },
"node_modules/crypt": {
"version": "0.0.2",
"license": "BSD-3-Clause",
@@ -14998,27 +16229,6 @@
"node": "*"
}
},
- "node_modules/crypto-browserify": {
- "version": "3.12.0",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "browserify-cipher": "^1.0.0",
- "browserify-sign": "^4.0.0",
- "create-ecdh": "^4.0.0",
- "create-hash": "^1.1.0",
- "create-hmac": "^1.1.0",
- "diffie-hellman": "^5.0.0",
- "inherits": "^2.0.1",
- "pbkdf2": "^3.0.3",
- "public-encrypt": "^4.0.0",
- "randombytes": "^2.0.0",
- "randomfill": "^1.0.3"
- },
- "engines": {
- "node": "*"
- }
- },
"node_modules/crypto-random-string": {
"version": "2.0.0",
"license": "MIT",
@@ -15054,131 +16264,6 @@
"url": "https://opencollective.com/jss"
}
},
- "node_modules/css-loader": {
- "version": "3.6.0",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "camelcase": "^5.3.1",
- "cssesc": "^3.0.0",
- "icss-utils": "^4.1.1",
- "loader-utils": "^1.2.3",
- "normalize-path": "^3.0.0",
- "postcss": "^7.0.32",
- "postcss-modules-extract-imports": "^2.0.0",
- "postcss-modules-local-by-default": "^3.0.2",
- "postcss-modules-scope": "^2.2.0",
- "postcss-modules-values": "^3.0.0",
- "postcss-value-parser": "^4.1.0",
- "schema-utils": "^2.7.0",
- "semver": "^6.3.0"
- },
- "engines": {
- "node": ">= 8.9.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/webpack"
- },
- "peerDependencies": {
- "webpack": "^4.0.0 || ^5.0.0"
- }
- },
- "node_modules/css-loader/node_modules/schema-utils": {
- "version": "2.7.1",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "@types/json-schema": "^7.0.5",
- "ajv": "^6.12.4",
- "ajv-keywords": "^3.5.2"
- },
- "engines": {
- "node": ">= 8.9.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/webpack"
- }
- },
- "node_modules/css-loader/node_modules/semver": {
- "version": "6.3.0",
- "license": "ISC",
- "optional": true,
- "bin": {
- "semver": "bin/semver.js"
- }
- },
- "node_modules/css-select": {
- "version": "2.1.0",
- "license": "BSD-2-Clause",
- "optional": true,
- "dependencies": {
- "boolbase": "^1.0.0",
- "css-what": "^3.2.1",
- "domutils": "^1.7.0",
- "nth-check": "^1.0.2"
- }
- },
- "node_modules/css-select-base-adapter": {
- "version": "0.1.1",
- "license": "MIT",
- "optional": true
- },
- "node_modules/css-select/node_modules/dom-serializer": {
- "version": "0.2.2",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "domelementtype": "^2.0.1",
- "entities": "^2.0.0"
- }
- },
- "node_modules/css-select/node_modules/dom-serializer/node_modules/domelementtype": {
- "version": "2.2.0",
- "funding": [
- {
- "type": "github",
- "url": "https://github.com/sponsors/fb55"
- }
- ],
- "license": "BSD-2-Clause",
- "optional": true
- },
- "node_modules/css-select/node_modules/domelementtype": {
- "version": "1.3.1",
- "license": "BSD-2-Clause",
- "optional": true
- },
- "node_modules/css-select/node_modules/domutils": {
- "version": "1.7.0",
- "license": "BSD-2-Clause",
- "optional": true,
- "dependencies": {
- "dom-serializer": "0",
- "domelementtype": "1"
- }
- },
- "node_modules/css-tree": {
- "version": "1.0.0-alpha.37",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "mdn-data": "2.0.4",
- "source-map": "^0.6.1"
- },
- "engines": {
- "node": ">=8.0.0"
- }
- },
- "node_modules/css-tree/node_modules/source-map": {
- "version": "0.6.1",
- "license": "BSD-3-Clause",
- "optional": true,
- "engines": {
- "node": ">=0.10.0"
- }
- },
"node_modules/css-vendor": {
"version": "2.0.8",
"license": "MIT",
@@ -15187,74 +16272,16 @@
"is-in-browser": "^1.0.2"
}
},
- "node_modules/css-what": {
- "version": "3.4.2",
- "license": "BSD-2-Clause",
- "optional": true,
- "engines": {
- "node": ">= 6"
- },
- "funding": {
- "url": "https://github.com/sponsors/fb55"
- }
- },
"node_modules/css.escape": {
"version": "1.5.1",
"license": "MIT",
"optional": true
},
- "node_modules/cssesc": {
- "version": "3.0.0",
- "license": "MIT",
- "optional": true,
- "bin": {
- "cssesc": "bin/cssesc"
- },
- "engines": {
- "node": ">=4"
- }
- },
"node_modules/cssfontparser": {
"version": "1.2.1",
"license": "MIT",
"optional": true
},
- "node_modules/csso": {
- "version": "4.2.0",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "css-tree": "^1.1.2"
- },
- "engines": {
- "node": ">=8.0.0"
- }
- },
- "node_modules/csso/node_modules/css-tree": {
- "version": "1.1.3",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "mdn-data": "2.0.14",
- "source-map": "^0.6.1"
- },
- "engines": {
- "node": ">=8.0.0"
- }
- },
- "node_modules/csso/node_modules/mdn-data": {
- "version": "2.0.14",
- "license": "CC0-1.0",
- "optional": true
- },
- "node_modules/csso/node_modules/source-map": {
- "version": "0.6.1",
- "license": "BSD-3-Clause",
- "optional": true,
- "engines": {
- "node": ">=0.10.0"
- }
- },
"node_modules/cssom": {
"version": "0.4.4",
"license": "MIT",
@@ -15340,11 +16367,6 @@
"node": ">=0.10.0"
}
},
- "node_modules/cyclist": {
- "version": "1.0.1",
- "license": "MIT",
- "optional": true
- },
"node_modules/cypress": {
"version": "12.4.0",
"hasInstallScript": true,
@@ -15799,20 +16821,6 @@
"node": ">=8"
}
},
- "node_modules/cypress/node_modules/cli-table3": {
- "version": "0.6.2",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "string-width": "^4.2.0"
- },
- "engines": {
- "node": "10.* || >= 12.*"
- },
- "optionalDependencies": {
- "@colors/colors": "1.5.0"
- }
- },
"node_modules/cypress/node_modules/cli-truncate": {
"version": "2.1.0",
"license": "MIT",
@@ -15828,11 +16836,6 @@
"url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/cypress/node_modules/colorette": {
- "version": "2.0.16",
- "license": "MIT",
- "optional": true
- },
"node_modules/cypress/node_modules/commander": {
"version": "5.1.0",
"license": "MIT",
@@ -16179,7 +17182,7 @@
},
"node_modules/decode-uri-component": {
"version": "0.2.0",
- "devOptional": true,
+ "dev": true,
"license": "MIT",
"engines": {
"node": ">=0.10"
@@ -16187,7 +17190,7 @@
},
"node_modules/decompress-response": {
"version": "6.0.0",
- "dev": true,
+ "devOptional": true,
"license": "MIT",
"dependencies": {
"mimic-response": "^3.1.0"
@@ -16201,7 +17204,7 @@
},
"node_modules/decompress-response/node_modules/mimic-response": {
"version": "3.1.0",
- "dev": true,
+ "devOptional": true,
"license": "MIT",
"engines": {
"node": ">=10"
@@ -16215,22 +17218,6 @@
"license": "MIT",
"optional": true
},
- "node_modules/deep-equal": {
- "version": "1.1.1",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "is-arguments": "^1.0.4",
- "is-date-object": "^1.0.1",
- "is-regex": "^1.0.4",
- "object-is": "^1.0.1",
- "object-keys": "^1.1.1",
- "regexp.prototype.flags": "^1.2.0"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
"node_modules/deep-extend": {
"version": "0.6.0",
"license": "MIT",
@@ -16243,11 +17230,6 @@
"license": "MIT",
"optional": true
},
- "node_modules/deep-object-diff": {
- "version": "1.1.0",
- "license": "MIT",
- "optional": true
- },
"node_modules/deepmerge": {
"version": "4.2.2",
"devOptional": true,
@@ -16256,6 +17238,22 @@
"node": ">=0.10.0"
}
},
+ "node_modules/default-browser-id": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/default-browser-id/-/default-browser-id-3.0.0.tgz",
+ "integrity": "sha512-OZ1y3y0SqSICtE8DE4S8YOE9UZOJ8wO16fKWVP5J1Qz42kV9jcnMVFrEE/noXb/ss3Q4pZIH79kxofzyNNtUNA==",
+ "optional": true,
+ "dependencies": {
+ "bplist-parser": "^0.2.0",
+ "untildify": "^4.0.0"
+ },
+ "engines": {
+ "node": ">=12"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
"node_modules/defaults": {
"version": "1.0.3",
"dev": true,
@@ -16266,12 +17264,21 @@
},
"node_modules/defer-to-connect": {
"version": "2.0.1",
- "dev": true,
+ "devOptional": true,
"license": "MIT",
"engines": {
"node": ">=10"
}
},
+ "node_modules/define-lazy-prop": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/define-lazy-prop/-/define-lazy-prop-2.0.0.tgz",
+ "integrity": "sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==",
+ "optional": true,
+ "engines": {
+ "node": ">=8"
+ }
+ },
"node_modules/define-properties": {
"version": "1.1.4",
"devOptional": true,
@@ -16289,7 +17296,7 @@
},
"node_modules/define-property": {
"version": "2.0.2",
- "devOptional": true,
+ "dev": true,
"license": "MIT",
"dependencies": {
"is-descriptor": "^1.0.2",
@@ -16301,7 +17308,7 @@
},
"node_modules/define-property/node_modules/is-accessor-descriptor": {
"version": "1.0.0",
- "devOptional": true,
+ "dev": true,
"license": "MIT",
"dependencies": {
"kind-of": "^6.0.0"
@@ -16312,7 +17319,7 @@
},
"node_modules/define-property/node_modules/is-data-descriptor": {
"version": "1.0.0",
- "devOptional": true,
+ "dev": true,
"license": "MIT",
"dependencies": {
"kind-of": "^6.0.0"
@@ -16323,7 +17330,7 @@
},
"node_modules/define-property/node_modules/is-descriptor": {
"version": "1.0.2",
- "devOptional": true,
+ "dev": true,
"license": "MIT",
"dependencies": {
"is-accessor-descriptor": "^1.0.0",
@@ -16334,6 +17341,49 @@
"node": ">=0.10.0"
}
},
+ "node_modules/defu": {
+ "version": "6.1.2",
+ "resolved": "https://registry.npmjs.org/defu/-/defu-6.1.2.tgz",
+ "integrity": "sha512-+uO4+qr7msjNNWKYPHqN/3+Dx3NFkmIzayk2L1MyZQlvgZb/J1A0fo410dpKrN2SnqFjt8n4JL8fDJE0wIgjFQ==",
+ "optional": true
+ },
+ "node_modules/del": {
+ "version": "6.1.1",
+ "resolved": "https://registry.npmjs.org/del/-/del-6.1.1.tgz",
+ "integrity": "sha512-ua8BhapfP0JUJKC/zV9yHHDW/rDoDxP4Zhn3AkA6/xT6gY7jYXJiaeyBZznYVujhZZET+UgcbZiQ7sN3WqcImg==",
+ "optional": true,
+ "dependencies": {
+ "globby": "^11.0.1",
+ "graceful-fs": "^4.2.4",
+ "is-glob": "^4.0.1",
+ "is-path-cwd": "^2.2.0",
+ "is-path-inside": "^3.0.2",
+ "p-map": "^4.0.0",
+ "rimraf": "^3.0.2",
+ "slash": "^3.0.0"
+ },
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/del/node_modules/p-map": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/p-map/-/p-map-4.0.0.tgz",
+ "integrity": "sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==",
+ "optional": true,
+ "dependencies": {
+ "aggregate-error": "^3.0.0"
+ },
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
"node_modules/delayed-stream": {
"version": "1.0.0",
"devOptional": true,
@@ -16342,14 +17392,10 @@
"node": ">=0.4.0"
}
},
- "node_modules/delegate": {
- "version": "3.2.0",
- "license": "MIT",
- "optional": true
- },
"node_modules/delegates": {
"version": "1.0.0",
- "license": "MIT",
+ "resolved": "https://registry.npmjs.org/delegates/-/delegates-1.0.0.tgz",
+ "integrity": "sha512-bd2L678uiWATM6m5Z1VzNCErI3jiGzt6HGY8OVICs40JQq/HALfbyNJmp0UDakEY4pMMaN0Ly5om/B1VI/+xfQ==",
"optional": true
},
"node_modules/depd": {
@@ -16664,13 +17710,13 @@
"dev": true,
"license": "ISC"
},
- "node_modules/des.js": {
- "version": "1.0.1",
- "license": "MIT",
+ "node_modules/dequal": {
+ "version": "2.0.3",
+ "resolved": "https://registry.npmjs.org/dequal/-/dequal-2.0.3.tgz",
+ "integrity": "sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==",
"optional": true,
- "dependencies": {
- "inherits": "^2.0.1",
- "minimalistic-assert": "^1.0.0"
+ "engines": {
+ "node": ">=6"
}
},
"node_modules/destroy": {
@@ -16684,9 +17730,10 @@
}
},
"node_modules/detect-indent": {
- "version": "6.0.0",
- "dev": true,
- "license": "MIT",
+ "version": "6.1.0",
+ "resolved": "https://registry.npmjs.org/detect-indent/-/detect-indent-6.1.0.tgz",
+ "integrity": "sha512-reYkTUJAZb9gUuZ2RvVCNhVHdg62RHnJ7WJl8ftMi4diZ6NWlciOzQN88pUhSELEwflJht4oQDv0F0BMlwaYtA==",
+ "devOptional": true,
"engines": {
"node": ">=8"
}
@@ -16703,38 +17750,79 @@
"version": "1.1.0",
"license": "MIT"
},
+ "node_modules/detect-package-manager": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/detect-package-manager/-/detect-package-manager-2.0.1.tgz",
+ "integrity": "sha512-j/lJHyoLlWi6G1LDdLgvUtz60Zo5GEj+sVYtTVXnYLDPuzgC3llMxonXym9zIwhhUII8vjdw0LXxavpLqTbl1A==",
+ "optional": true,
+ "dependencies": {
+ "execa": "^5.1.1"
+ },
+ "engines": {
+ "node": ">=12"
+ }
+ },
+ "node_modules/detect-package-manager/node_modules/execa": {
+ "version": "5.1.1",
+ "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz",
+ "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==",
+ "optional": true,
+ "dependencies": {
+ "cross-spawn": "^7.0.3",
+ "get-stream": "^6.0.0",
+ "human-signals": "^2.1.0",
+ "is-stream": "^2.0.0",
+ "merge-stream": "^2.0.0",
+ "npm-run-path": "^4.0.1",
+ "onetime": "^5.1.2",
+ "signal-exit": "^3.0.3",
+ "strip-final-newline": "^2.0.0"
+ },
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/sindresorhus/execa?sponsor=1"
+ }
+ },
+ "node_modules/detect-package-manager/node_modules/get-stream": {
+ "version": "6.0.1",
+ "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz",
+ "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==",
+ "optional": true,
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/detect-package-manager/node_modules/human-signals": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz",
+ "integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==",
+ "optional": true,
+ "engines": {
+ "node": ">=10.17.0"
+ }
+ },
"node_modules/detect-port": {
- "version": "1.3.0",
- "license": "MIT",
+ "version": "1.5.1",
+ "resolved": "https://registry.npmjs.org/detect-port/-/detect-port-1.5.1.tgz",
+ "integrity": "sha512-aBzdj76lueB6uUst5iAs7+0H/oOjqI5D16XUWxlWMIMROhcM0rfsNVk93zTngq1dDNpoXRr++Sus7ETAExppAQ==",
"optional": true,
"dependencies": {
"address": "^1.0.1",
- "debug": "^2.6.0"
+ "debug": "4"
},
"bin": {
- "detect": "bin/detect-port",
- "detect-port": "bin/detect-port"
- },
- "engines": {
- "node": ">= 4.2.1"
+ "detect": "bin/detect-port.js",
+ "detect-port": "bin/detect-port.js"
}
},
- "node_modules/detect-port/node_modules/debug": {
- "version": "2.6.9",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "ms": "2.0.0"
- }
- },
- "node_modules/detect-port/node_modules/ms": {
- "version": "2.0.0",
- "license": "MIT",
- "optional": true
- },
"node_modules/diff": {
"version": "4.0.2",
- "dev": true,
+ "devOptional": true,
"license": "BSD-3-Clause",
"engines": {
"node": ">=0.3.1"
@@ -16748,21 +17836,6 @@
"node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
}
},
- "node_modules/diffie-hellman": {
- "version": "5.0.3",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "bn.js": "^4.1.0",
- "miller-rabin": "^4.0.0",
- "randombytes": "^2.0.0"
- }
- },
- "node_modules/diffie-hellman/node_modules/bn.js": {
- "version": "4.12.0",
- "license": "MIT",
- "optional": true
- },
"node_modules/dir-glob": {
"version": "3.0.1",
"license": "MIT",
@@ -16798,14 +17871,6 @@
"license": "MIT",
"optional": true
},
- "node_modules/dom-converter": {
- "version": "0.2.0",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "utila": "~0.4"
- }
- },
"node_modules/dom-helpers": {
"version": "5.2.0",
"license": "MIT",
@@ -16843,19 +17908,6 @@
"url": "https://github.com/fb55/domhandler?sponsor=1"
}
},
- "node_modules/dom-walk": {
- "version": "0.1.2",
- "optional": true
- },
- "node_modules/domain-browser": {
- "version": "1.2.0",
- "license": "MIT",
- "optional": true,
- "engines": {
- "node": ">=0.4",
- "npm": ">=1.2"
- }
- },
"node_modules/domelementtype": {
"version": "2.2.0",
"funding": [
@@ -16930,7 +17982,7 @@
},
"node_modules/dot-case": {
"version": "3.0.4",
- "devOptional": true,
+ "dev": true,
"license": "MIT",
"dependencies": {
"no-case": "^3.0.4",
@@ -16939,7 +17991,7 @@
},
"node_modules/dot-case/node_modules/no-case": {
"version": "3.0.4",
- "devOptional": true,
+ "dev": true,
"license": "MIT",
"dependencies": {
"lower-case": "^2.0.2",
@@ -16972,9 +18024,13 @@
}
},
"node_modules/dotenv-expand": {
- "version": "5.1.0",
- "license": "BSD-2-Clause",
- "optional": true
+ "version": "10.0.0",
+ "resolved": "https://registry.npmjs.org/dotenv-expand/-/dotenv-expand-10.0.0.tgz",
+ "integrity": "sha512-GopVGCpVS1UKH75VKHGuQFqS1Gusej0z4FyQkPdwjil2gNIv+LNsqBlboOzpJFZKVT95GkCyWJbBSdFEFUWI2A==",
+ "optional": true,
+ "engines": {
+ "node": ">=12"
+ }
},
"node_modules/downshift": {
"version": "6.1.7",
@@ -17013,7 +18069,7 @@
},
"node_modules/duplexer": {
"version": "0.1.2",
- "devOptional": true,
+ "dev": true,
"license": "MIT"
},
"node_modules/duplexer3": {
@@ -17022,7 +18078,8 @@
},
"node_modules/duplexify": {
"version": "3.7.1",
- "license": "MIT",
+ "resolved": "https://registry.npmjs.org/duplexify/-/duplexify-3.7.1.tgz",
+ "integrity": "sha512-07z8uv2wMyS51kKhD1KsdXJg5WQ6t93RneqRxUHnskXVtlYYkLqM0gqStQZ3pj073g687jPCHrqNfCzawLYh5g==",
"optional": true,
"dependencies": {
"end-of-stream": "^1.0.0",
@@ -17031,6 +18088,33 @@
"stream-shift": "^1.0.0"
}
},
+ "node_modules/duplexify/node_modules/isarray": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz",
+ "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==",
+ "optional": true
+ },
+ "node_modules/duplexify/node_modules/readable-stream": {
+ "version": "2.3.8",
+ "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz",
+ "integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==",
+ "optional": true,
+ "dependencies": {
+ "core-util-is": "~1.0.0",
+ "inherits": "~2.0.3",
+ "isarray": "~1.0.0",
+ "process-nextick-args": "~2.0.0",
+ "safe-buffer": "~5.1.1",
+ "string_decoder": "~1.1.1",
+ "util-deprecate": "~1.0.1"
+ }
+ },
+ "node_modules/duplexify/node_modules/safe-buffer": {
+ "version": "5.1.2",
+ "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz",
+ "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==",
+ "optional": true
+ },
"node_modules/ecc-jsbn": {
"version": "0.1.2",
"license": "MIT",
@@ -17061,18 +18145,25 @@
"license": "MIT"
},
"node_modules/ejs": {
- "version": "2.7.4",
- "hasInstallScript": true,
- "license": "Apache-2.0",
- "optional": true,
+ "version": "3.1.9",
+ "resolved": "https://registry.npmjs.org/ejs/-/ejs-3.1.9.tgz",
+ "integrity": "sha512-rC+QVNMJWv+MtPgkt0y+0rVEIdbtxVADApW9JXrUVlzHetgcyczP/E7DJmWJ4fJCZF2cPcBk0laWO9ZHMG3DmQ==",
+ "devOptional": true,
+ "dependencies": {
+ "jake": "^10.8.5"
+ },
+ "bin": {
+ "ejs": "bin/cli.js"
+ },
"engines": {
"node": ">=0.10.0"
}
},
"node_modules/electron-to-chromium": {
- "version": "1.3.710",
- "devOptional": true,
- "license": "ISC"
+ "version": "1.4.384",
+ "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.384.tgz",
+ "integrity": "sha512-I97q0MmRAAqj53+a8vZsDkEXBZki+ehYAOPzwtQzALip52aEp2+BJqHFtTlsfjoqVZYwPpHC8wM6MbsSZQ/Eqw==",
+ "devOptional": true
},
"node_modules/elegant-spinner": {
"version": "1.0.1",
@@ -17082,33 +18173,6 @@
"node": ">=0.10.0"
}
},
- "node_modules/element-resize-detector": {
- "version": "1.2.2",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "batch-processor": "1.0.0"
- }
- },
- "node_modules/elliptic": {
- "version": "6.5.4",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "bn.js": "^4.11.9",
- "brorand": "^1.1.0",
- "hash.js": "^1.0.0",
- "hmac-drbg": "^1.0.1",
- "inherits": "^2.0.4",
- "minimalistic-assert": "^1.0.1",
- "minimalistic-crypto-utils": "^1.0.1"
- }
- },
- "node_modules/elliptic/node_modules/bn.js": {
- "version": "4.12.0",
- "license": "MIT",
- "optional": true
- },
"node_modules/emittery": {
"version": "0.8.1",
"license": "MIT",
@@ -17126,26 +18190,12 @@
},
"node_modules/emojis-list": {
"version": "3.0.0",
- "devOptional": true,
+ "dev": true,
"license": "MIT",
"engines": {
"node": ">= 4"
}
},
- "node_modules/emotion-theming": {
- "version": "10.0.27",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "@babel/runtime": "^7.5.5",
- "@emotion/weak-memoize": "0.2.5",
- "hoist-non-react-statics": "^3.3.0"
- },
- "peerDependencies": {
- "@emotion/core": "^10.0.27",
- "react": ">=16.3.0"
- }
- },
"node_modules/encodeurl": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz",
@@ -17162,30 +18212,6 @@
"once": "^1.4.0"
}
},
- "node_modules/enhanced-resolve": {
- "version": "4.5.0",
- "optional": true,
- "dependencies": {
- "graceful-fs": "^4.1.2",
- "memory-fs": "^0.5.0",
- "tapable": "^1.0.0"
- },
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/enhanced-resolve/node_modules/memory-fs": {
- "version": "0.5.0",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "errno": "^0.1.3",
- "readable-stream": "^2.0.1"
- },
- "engines": {
- "node": ">=4.3.0 <5.0.0 || >=5.10"
- }
- },
"node_modules/enquirer": {
"version": "2.3.6",
"devOptional": true,
@@ -17221,15 +18247,16 @@
"node": ">=10"
}
},
- "node_modules/errno": {
- "version": "0.1.8",
- "license": "MIT",
+ "node_modules/envinfo": {
+ "version": "7.8.1",
+ "resolved": "https://registry.npmjs.org/envinfo/-/envinfo-7.8.1.tgz",
+ "integrity": "sha512-/o+BXHmB7ocbHEAs6F2EnG0ogybVVUdkRunTT2glZU9XAaGmhqskrvKwqXuDfNjEO0LZKWdejEEpnq8aM0tOaw==",
"optional": true,
- "dependencies": {
- "prr": "~1.0.1"
- },
"bin": {
- "errno": "cli.js"
+ "envinfo": "dist/cli.js"
+ },
+ "engines": {
+ "node": ">=4"
}
},
"node_modules/error-ex": {
@@ -17276,11 +18303,6 @@
"url": "https://github.com/sponsors/ljharb"
}
},
- "node_modules/es-array-method-boxes-properly": {
- "version": "1.0.0",
- "license": "MIT",
- "optional": true
- },
"node_modules/es-get-iterator": {
"version": "1.1.2",
"license": "MIT",
@@ -17304,6 +18326,12 @@
"license": "MIT",
"optional": true
},
+ "node_modules/es-module-lexer": {
+ "version": "0.9.3",
+ "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-0.9.3.tgz",
+ "integrity": "sha512-1HQ2M2sPtxwnvOvT1ZClHyQDiggdNjURWpY2we6aMKCQiUVxTmVs2UYPLIrD84sS+kMdUwfBSylbJPwNnBrnHQ==",
+ "optional": true
+ },
"node_modules/es-to-primitive": {
"version": "1.2.1",
"devOptional": true,
@@ -17320,17 +18348,10 @@
"url": "https://github.com/sponsors/ljharb"
}
},
- "node_modules/es5-shim": {
- "version": "4.5.15",
- "license": "MIT",
- "optional": true,
- "engines": {
- "node": ">=0.4.0"
- }
- },
- "node_modules/es6-shim": {
- "version": "0.35.6",
- "license": "MIT",
+ "node_modules/es6-object-assign": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/es6-object-assign/-/es6-object-assign-1.1.0.tgz",
+ "integrity": "sha512-MEl9uirslVwqQU369iHNWZXsI8yaZYGg/D65aOgZkeyFJwHYSxilf7rQzXKI7DdDuBPrBXbfk3sl9hJhmd5AUw==",
"optional": true
},
"node_modules/esbuild": {
@@ -17367,6 +18388,54 @@
"esbuild-windows-arm64": "0.14.34"
}
},
+ "node_modules/esbuild-android-64": {
+ "version": "0.15.15",
+ "resolved": "https://registry.npmjs.org/esbuild-android-64/-/esbuild-android-64-0.15.15.tgz",
+ "integrity": "sha512-F+WjjQxO+JQOva3tJWNdVjouFMLK6R6i5gjDvgUthLYJnIZJsp1HlF523k73hELY20WPyEO8xcz7aaYBVkeg5Q==",
+ "cpu": [
+ "x64"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "android"
+ ],
+ "engines": {
+ "node": ">=12"
+ }
+ },
+ "node_modules/esbuild-android-arm64": {
+ "version": "0.15.15",
+ "resolved": "https://registry.npmjs.org/esbuild-android-arm64/-/esbuild-android-arm64-0.15.15.tgz",
+ "integrity": "sha512-attlyhD6Y22jNyQ0fIIQ7mnPvDWKw7k6FKnsXlBvQE6s3z6s6cuEHcSgoirquQc7TmZgVCK5fD/2uxmRN+ZpcQ==",
+ "cpu": [
+ "arm64"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "android"
+ ],
+ "engines": {
+ "node": ">=12"
+ }
+ },
+ "node_modules/esbuild-darwin-64": {
+ "version": "0.15.15",
+ "resolved": "https://registry.npmjs.org/esbuild-darwin-64/-/esbuild-darwin-64-0.15.15.tgz",
+ "integrity": "sha512-ohZtF8W1SHJ4JWldsPVdk8st0r9ExbAOSrBOh5L+Mq47i696GVwv1ab/KlmbUoikSTNoXEhDzVpxUR/WIO19FQ==",
+ "cpu": [
+ "x64"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "darwin"
+ ],
+ "engines": {
+ "node": ">=12"
+ }
+ },
"node_modules/esbuild-darwin-arm64": {
"version": "0.14.34",
"cpu": [
@@ -17382,6 +18451,166 @@
"node": ">=12"
}
},
+ "node_modules/esbuild-freebsd-64": {
+ "version": "0.15.15",
+ "resolved": "https://registry.npmjs.org/esbuild-freebsd-64/-/esbuild-freebsd-64-0.15.15.tgz",
+ "integrity": "sha512-KkTg+AmDXz1IvA9S1gt8dE24C8Thx0X5oM0KGF322DuP+P3evwTL9YyusHAWNsh4qLsR80nvBr/EIYs29VSwuA==",
+ "cpu": [
+ "x64"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "freebsd"
+ ],
+ "engines": {
+ "node": ">=12"
+ }
+ },
+ "node_modules/esbuild-freebsd-arm64": {
+ "version": "0.15.15",
+ "resolved": "https://registry.npmjs.org/esbuild-freebsd-arm64/-/esbuild-freebsd-arm64-0.15.15.tgz",
+ "integrity": "sha512-FUcML0DRsuyqCMfAC+HoeAqvWxMeq0qXvclZZ/lt2kLU6XBnDA5uKTLUd379WYEyVD4KKFctqWd9tTuk8C/96g==",
+ "cpu": [
+ "arm64"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "freebsd"
+ ],
+ "engines": {
+ "node": ">=12"
+ }
+ },
+ "node_modules/esbuild-linux-32": {
+ "version": "0.15.15",
+ "resolved": "https://registry.npmjs.org/esbuild-linux-32/-/esbuild-linux-32-0.15.15.tgz",
+ "integrity": "sha512-q28Qn5pZgHNqug02aTkzw5sW9OklSo96b5nm17Mq0pDXrdTBcQ+M6Q9A1B+dalFeynunwh/pvfrNucjzwDXj+Q==",
+ "cpu": [
+ "ia32"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">=12"
+ }
+ },
+ "node_modules/esbuild-linux-64": {
+ "version": "0.15.15",
+ "resolved": "https://registry.npmjs.org/esbuild-linux-64/-/esbuild-linux-64-0.15.15.tgz",
+ "integrity": "sha512-217KPmWMirkf8liO+fj2qrPwbIbhNTGNVtvqI1TnOWJgcMjUWvd677Gq3fTzXEjilkx2yWypVnTswM2KbXgoAg==",
+ "cpu": [
+ "x64"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">=12"
+ }
+ },
+ "node_modules/esbuild-linux-arm": {
+ "version": "0.15.15",
+ "resolved": "https://registry.npmjs.org/esbuild-linux-arm/-/esbuild-linux-arm-0.15.15.tgz",
+ "integrity": "sha512-RYVW9o2yN8yM7SB1yaWr378CwrjvGCyGybX3SdzPHpikUHkME2AP55Ma20uNwkNyY2eSYFX9D55kDrfQmQBR4w==",
+ "cpu": [
+ "arm"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">=12"
+ }
+ },
+ "node_modules/esbuild-linux-arm64": {
+ "version": "0.15.15",
+ "resolved": "https://registry.npmjs.org/esbuild-linux-arm64/-/esbuild-linux-arm64-0.15.15.tgz",
+ "integrity": "sha512-/ltmNFs0FivZkYsTzAsXIfLQX38lFnwJTWCJts0IbCqWZQe+jjj0vYBNbI0kmXLb3y5NljiM5USVAO1NVkdh2g==",
+ "cpu": [
+ "arm64"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">=12"
+ }
+ },
+ "node_modules/esbuild-linux-mips64le": {
+ "version": "0.15.15",
+ "resolved": "https://registry.npmjs.org/esbuild-linux-mips64le/-/esbuild-linux-mips64le-0.15.15.tgz",
+ "integrity": "sha512-PksEPb321/28GFFxtvL33yVPfnMZihxkEv5zME2zapXGp7fA1X2jYeiTUK+9tJ/EGgcNWuwvtawPxJG7Mmn86A==",
+ "cpu": [
+ "mips64el"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">=12"
+ }
+ },
+ "node_modules/esbuild-linux-ppc64le": {
+ "version": "0.15.15",
+ "resolved": "https://registry.npmjs.org/esbuild-linux-ppc64le/-/esbuild-linux-ppc64le-0.15.15.tgz",
+ "integrity": "sha512-ek8gJBEIhcpGI327eAZigBOHl58QqrJrYYIZBWQCnH3UnXoeWMrMZLeeZL8BI2XMBhP+sQ6ERctD5X+ajL/AIA==",
+ "cpu": [
+ "ppc64"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">=12"
+ }
+ },
+ "node_modules/esbuild-linux-riscv64": {
+ "version": "0.15.15",
+ "resolved": "https://registry.npmjs.org/esbuild-linux-riscv64/-/esbuild-linux-riscv64-0.15.15.tgz",
+ "integrity": "sha512-H5ilTZb33/GnUBrZMNJtBk7/OXzDHDXjIzoLXHSutwwsLxSNaLxzAaMoDGDd/keZoS+GDBqNVxdCkpuiRW4OSw==",
+ "cpu": [
+ "riscv64"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">=12"
+ }
+ },
+ "node_modules/esbuild-linux-s390x": {
+ "version": "0.15.15",
+ "resolved": "https://registry.npmjs.org/esbuild-linux-s390x/-/esbuild-linux-s390x-0.15.15.tgz",
+ "integrity": "sha512-jKaLUg78mua3rrtrkpv4Or2dNTJU7bgHN4bEjT4OX4GR7nLBSA9dfJezQouTxMmIW7opwEC5/iR9mpC18utnxQ==",
+ "cpu": [
+ "s390x"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">=12"
+ }
+ },
"node_modules/esbuild-loader": {
"version": "2.18.0",
"dev": true,
@@ -17442,6 +18671,424 @@
"node": ">=10.13.0"
}
},
+ "node_modules/esbuild-netbsd-64": {
+ "version": "0.15.15",
+ "resolved": "https://registry.npmjs.org/esbuild-netbsd-64/-/esbuild-netbsd-64-0.15.15.tgz",
+ "integrity": "sha512-aOvmF/UkjFuW6F36HbIlImJTTx45KUCHJndtKo+KdP8Dhq3mgLRKW9+6Ircpm8bX/RcS3zZMMmaBLkvGY06Gvw==",
+ "cpu": [
+ "x64"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "netbsd"
+ ],
+ "engines": {
+ "node": ">=12"
+ }
+ },
+ "node_modules/esbuild-openbsd-64": {
+ "version": "0.15.15",
+ "resolved": "https://registry.npmjs.org/esbuild-openbsd-64/-/esbuild-openbsd-64-0.15.15.tgz",
+ "integrity": "sha512-HFFX+WYedx1w2yJ1VyR1Dfo8zyYGQZf1cA69bLdrHzu9svj6KH6ZLK0k3A1/LFPhcEY9idSOhsB2UyU0tHPxgQ==",
+ "cpu": [
+ "x64"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "openbsd"
+ ],
+ "engines": {
+ "node": ">=12"
+ }
+ },
+ "node_modules/esbuild-plugin-alias": {
+ "version": "0.2.1",
+ "resolved": "https://registry.npmjs.org/esbuild-plugin-alias/-/esbuild-plugin-alias-0.2.1.tgz",
+ "integrity": "sha512-jyfL/pwPqaFXyKnj8lP8iLk6Z0m099uXR45aSN8Av1XD4vhvQutxxPzgA2bTcAwQpa1zCXDcWOlhFgyP3GKqhQ==",
+ "optional": true
+ },
+ "node_modules/esbuild-register": {
+ "version": "3.4.2",
+ "resolved": "https://registry.npmjs.org/esbuild-register/-/esbuild-register-3.4.2.tgz",
+ "integrity": "sha512-kG/XyTDyz6+YDuyfB9ZoSIOOmgyFCH+xPRtsCa8W85HLRV5Csp+o3jWVbOSHgSLfyLc5DmP+KFDNwty4mEjC+Q==",
+ "optional": true,
+ "dependencies": {
+ "debug": "^4.3.4"
+ },
+ "peerDependencies": {
+ "esbuild": ">=0.12 <1"
+ }
+ },
+ "node_modules/esbuild-sunos-64": {
+ "version": "0.15.15",
+ "resolved": "https://registry.npmjs.org/esbuild-sunos-64/-/esbuild-sunos-64-0.15.15.tgz",
+ "integrity": "sha512-jOPBudffG4HN8yJXcK9rib/ZTFoTA5pvIKbRrt3IKAGMq1EpBi4xoVoSRrq/0d4OgZLaQbmkHp8RO9eZIn5atA==",
+ "cpu": [
+ "x64"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "sunos"
+ ],
+ "engines": {
+ "node": ">=12"
+ }
+ },
+ "node_modules/esbuild-windows-32": {
+ "version": "0.15.15",
+ "resolved": "https://registry.npmjs.org/esbuild-windows-32/-/esbuild-windows-32-0.15.15.tgz",
+ "integrity": "sha512-MDkJ3QkjnCetKF0fKxCyYNBnOq6dmidcwstBVeMtXSgGYTy8XSwBeIE4+HuKiSsG6I/mXEb++px3IGSmTN0XiA==",
+ "cpu": [
+ "ia32"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "win32"
+ ],
+ "engines": {
+ "node": ">=12"
+ }
+ },
+ "node_modules/esbuild-windows-64": {
+ "version": "0.15.15",
+ "resolved": "https://registry.npmjs.org/esbuild-windows-64/-/esbuild-windows-64-0.15.15.tgz",
+ "integrity": "sha512-xaAUIB2qllE888SsMU3j9nrqyLbkqqkpQyWVkfwSil6BBPgcPk3zOFitTTncEKCLTQy3XV9RuH7PDj3aJDljWA==",
+ "cpu": [
+ "x64"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "win32"
+ ],
+ "engines": {
+ "node": ">=12"
+ }
+ },
+ "node_modules/esbuild-windows-arm64": {
+ "version": "0.15.15",
+ "resolved": "https://registry.npmjs.org/esbuild-windows-arm64/-/esbuild-windows-arm64-0.15.15.tgz",
+ "integrity": "sha512-ttuoCYCIJAFx4UUKKWYnFdrVpoXa3+3WWkXVI6s09U+YjhnyM5h96ewTq/WgQj9LFSIlABQvadHSOQyAVjW5xQ==",
+ "cpu": [
+ "arm64"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "win32"
+ ],
+ "engines": {
+ "node": ">=12"
+ }
+ },
+ "node_modules/esbuild/node_modules/esbuild-android-64": {
+ "version": "0.14.34",
+ "resolved": "https://registry.npmjs.org/esbuild-android-64/-/esbuild-android-64-0.14.34.tgz",
+ "integrity": "sha512-XfxcfJqmMYsT/LXqrptzFxmaR3GWzXHDLdFNIhm6S00zPaQF1TBBWm+9t0RZ6LRR7iwH57DPjaOeW20vMqI4Yw==",
+ "cpu": [
+ "x64"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "android"
+ ],
+ "engines": {
+ "node": ">=12"
+ }
+ },
+ "node_modules/esbuild/node_modules/esbuild-android-arm64": {
+ "version": "0.14.34",
+ "resolved": "https://registry.npmjs.org/esbuild-android-arm64/-/esbuild-android-arm64-0.14.34.tgz",
+ "integrity": "sha512-T02+NXTmSRL1Mc6puz+R9CB54rSPICkXKq6+tw8B6vxZFnCPzbJxgwIX4kcluz9p8nYBjF3+lSilTGWb7+Xgew==",
+ "cpu": [
+ "arm64"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "android"
+ ],
+ "engines": {
+ "node": ">=12"
+ }
+ },
+ "node_modules/esbuild/node_modules/esbuild-darwin-64": {
+ "version": "0.14.34",
+ "resolved": "https://registry.npmjs.org/esbuild-darwin-64/-/esbuild-darwin-64-0.14.34.tgz",
+ "integrity": "sha512-pLRip2Bh4Ng7Bf6AMgCrSp3pPe/qZyf11h5Qo2mOfJqLWzSVjxrXW+CFRJfrOVP7TCnh/gmZSM2AFdCPB72vtw==",
+ "cpu": [
+ "x64"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "darwin"
+ ],
+ "engines": {
+ "node": ">=12"
+ }
+ },
+ "node_modules/esbuild/node_modules/esbuild-freebsd-64": {
+ "version": "0.14.34",
+ "resolved": "https://registry.npmjs.org/esbuild-freebsd-64/-/esbuild-freebsd-64-0.14.34.tgz",
+ "integrity": "sha512-m0HBjePhe0hAQJgtMRMNV9kMgIyV4/qSnzPx42kRMQBcPhgjAq1JRu4Il26czC+9FgpMbFkUktb07f/Lwnc6CA==",
+ "cpu": [
+ "x64"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "freebsd"
+ ],
+ "engines": {
+ "node": ">=12"
+ }
+ },
+ "node_modules/esbuild/node_modules/esbuild-freebsd-arm64": {
+ "version": "0.14.34",
+ "resolved": "https://registry.npmjs.org/esbuild-freebsd-arm64/-/esbuild-freebsd-arm64-0.14.34.tgz",
+ "integrity": "sha512-cpRc2B94L1KvMPPYB4D6G39jLqpKlD3noAMY4/e86iXXXkhUYJJEtTuyNFTa9JRpWM0xCAp4mxjHjoIiLuoCLA==",
+ "cpu": [
+ "arm64"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "freebsd"
+ ],
+ "engines": {
+ "node": ">=12"
+ }
+ },
+ "node_modules/esbuild/node_modules/esbuild-linux-32": {
+ "version": "0.14.34",
+ "resolved": "https://registry.npmjs.org/esbuild-linux-32/-/esbuild-linux-32-0.14.34.tgz",
+ "integrity": "sha512-8nQaEaoW7MH/K/RlozJa+lE1ejHIr8fuPIHhc513UebRav7HtXgQvxHQ6VZRUkWtep23M6dd7UqhwO1tMOfzQQ==",
+ "cpu": [
+ "ia32"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">=12"
+ }
+ },
+ "node_modules/esbuild/node_modules/esbuild-linux-64": {
+ "version": "0.14.34",
+ "resolved": "https://registry.npmjs.org/esbuild-linux-64/-/esbuild-linux-64-0.14.34.tgz",
+ "integrity": "sha512-Y3of4qQoLLlAgf042MlrY1P+7PnN9zWj8nVtw9XQG5hcLOZLz7IKpU35oeu7n4wvyaZHwvQqDJ93gRLqdJekcQ==",
+ "cpu": [
+ "x64"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">=12"
+ }
+ },
+ "node_modules/esbuild/node_modules/esbuild-linux-arm": {
+ "version": "0.14.34",
+ "resolved": "https://registry.npmjs.org/esbuild-linux-arm/-/esbuild-linux-arm-0.14.34.tgz",
+ "integrity": "sha512-9lpq1NcJqssAF7alCO6zL3gvBVVt/lKw4oetUM7OgNnRX0OWpB+ZIO9FwCrSj/dMdmgDhPLf+119zB8QxSMmAg==",
+ "cpu": [
+ "arm"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">=12"
+ }
+ },
+ "node_modules/esbuild/node_modules/esbuild-linux-arm64": {
+ "version": "0.14.34",
+ "resolved": "https://registry.npmjs.org/esbuild-linux-arm64/-/esbuild-linux-arm64-0.14.34.tgz",
+ "integrity": "sha512-IlWaGtj9ir7+Nrume1DGcyzBDlK8GcnJq0ANKwcI9pVw8tqr+6GD0eqyF9SF1mR8UmAp+odrx1H5NdR2cHdFHA==",
+ "cpu": [
+ "arm64"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">=12"
+ }
+ },
+ "node_modules/esbuild/node_modules/esbuild-linux-mips64le": {
+ "version": "0.14.34",
+ "resolved": "https://registry.npmjs.org/esbuild-linux-mips64le/-/esbuild-linux-mips64le-0.14.34.tgz",
+ "integrity": "sha512-k3or+01Rska1AjUyNjA4buEwB51eyN/xPQAoOx1CjzAQC3l8rpjUDw55kXyL63O/1MUi4ISvtNtl8gLwdyEcxw==",
+ "cpu": [
+ "mips64el"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">=12"
+ }
+ },
+ "node_modules/esbuild/node_modules/esbuild-linux-ppc64le": {
+ "version": "0.14.34",
+ "resolved": "https://registry.npmjs.org/esbuild-linux-ppc64le/-/esbuild-linux-ppc64le-0.14.34.tgz",
+ "integrity": "sha512-+qxb8M9FfM2CJaVU7GgYpJOHM1ngQOx+/VrtBjb4C8oVqaPcESCeg2anjl+HRZy8VpYc71q/iBYausPPbJ+Keg==",
+ "cpu": [
+ "ppc64"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">=12"
+ }
+ },
+ "node_modules/esbuild/node_modules/esbuild-linux-riscv64": {
+ "version": "0.14.34",
+ "resolved": "https://registry.npmjs.org/esbuild-linux-riscv64/-/esbuild-linux-riscv64-0.14.34.tgz",
+ "integrity": "sha512-Y717ltBdQ5j5sZIHdy1DV9kieo0wMip0dCmVSTceowCPYSn1Cg33Kd6981+F/3b9FDMzNWldZFOBRILViENZSA==",
+ "cpu": [
+ "riscv64"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">=12"
+ }
+ },
+ "node_modules/esbuild/node_modules/esbuild-linux-s390x": {
+ "version": "0.14.34",
+ "resolved": "https://registry.npmjs.org/esbuild-linux-s390x/-/esbuild-linux-s390x-0.14.34.tgz",
+ "integrity": "sha512-bDDgYO4LhL4+zPs+WcBkXph+AQoPcQRTv18FzZS0WhjfH8TZx2QqlVPGhmhZ6WidrY+jKthUqO6UhGyIb4MpmA==",
+ "cpu": [
+ "s390x"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">=12"
+ }
+ },
+ "node_modules/esbuild/node_modules/esbuild-netbsd-64": {
+ "version": "0.14.34",
+ "resolved": "https://registry.npmjs.org/esbuild-netbsd-64/-/esbuild-netbsd-64-0.14.34.tgz",
+ "integrity": "sha512-cfaFGXdRt0+vHsjNPyF0POM4BVSHPSbhLPe8mppDc7GDDxjIl08mV1Zou14oDWMp/XZMjYN1kWYRSfftiD0vvQ==",
+ "cpu": [
+ "x64"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "netbsd"
+ ],
+ "engines": {
+ "node": ">=12"
+ }
+ },
+ "node_modules/esbuild/node_modules/esbuild-openbsd-64": {
+ "version": "0.14.34",
+ "resolved": "https://registry.npmjs.org/esbuild-openbsd-64/-/esbuild-openbsd-64-0.14.34.tgz",
+ "integrity": "sha512-vmy9DxXVnRiI14s8GKuYBtess+EVcDALkbpTqd5jw4XITutIzyB7n4x0Tj5utAkKsgZJB22lLWGekr0ABnSLow==",
+ "cpu": [
+ "x64"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "openbsd"
+ ],
+ "engines": {
+ "node": ">=12"
+ }
+ },
+ "node_modules/esbuild/node_modules/esbuild-sunos-64": {
+ "version": "0.14.34",
+ "resolved": "https://registry.npmjs.org/esbuild-sunos-64/-/esbuild-sunos-64-0.14.34.tgz",
+ "integrity": "sha512-eNPVatNET1F7tRMhii7goL/eptfxc0ALRjrj9SPFNqp0zmxrehBFD6BaP3R4LjMn6DbMO0jOAnTLFKr8NqcJAA==",
+ "cpu": [
+ "x64"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "sunos"
+ ],
+ "engines": {
+ "node": ">=12"
+ }
+ },
+ "node_modules/esbuild/node_modules/esbuild-windows-32": {
+ "version": "0.14.34",
+ "resolved": "https://registry.npmjs.org/esbuild-windows-32/-/esbuild-windows-32-0.14.34.tgz",
+ "integrity": "sha512-EFhpXyHEcnqWYe2rAHFd8dRw8wkrd9U+9oqcyoEL84GbanAYjiiIjBZsnR8kl0sCQ5w6bLpk7vCEIA2VS32Vcg==",
+ "cpu": [
+ "ia32"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "win32"
+ ],
+ "engines": {
+ "node": ">=12"
+ }
+ },
+ "node_modules/esbuild/node_modules/esbuild-windows-64": {
+ "version": "0.14.34",
+ "resolved": "https://registry.npmjs.org/esbuild-windows-64/-/esbuild-windows-64-0.14.34.tgz",
+ "integrity": "sha512-a8fbl8Ky7PxNEjf1aJmtxdDZj32/hC7S1OcA2ckEpCJRTjiKslI9vAdPpSjrKIWhws4Galpaawy0nB7fjHYf5Q==",
+ "cpu": [
+ "x64"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "win32"
+ ],
+ "engines": {
+ "node": ">=12"
+ }
+ },
+ "node_modules/esbuild/node_modules/esbuild-windows-arm64": {
+ "version": "0.14.34",
+ "resolved": "https://registry.npmjs.org/esbuild-windows-arm64/-/esbuild-windows-arm64-0.14.34.tgz",
+ "integrity": "sha512-EYvmKbSa2B3sPnpC28UEu9jBK5atGV4BaVRE7CYGUci2Hlz4AvtV/LML+TcDMT6gBgibnN2gcltWclab3UutMg==",
+ "cpu": [
+ "arm64"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "win32"
+ ],
+ "engines": {
+ "node": ">=12"
+ }
+ },
"node_modules/escalade": {
"version": "3.1.1",
"devOptional": true,
@@ -18048,18 +19695,6 @@
"eslint": ">=5.0.0"
}
},
- "node_modules/eslint-scope": {
- "version": "4.0.3",
- "license": "BSD-2-Clause",
- "optional": true,
- "dependencies": {
- "esrecurse": "^4.1.0",
- "estraverse": "^4.1.1"
- },
- "engines": {
- "node": ">=4.0.0"
- }
- },
"node_modules/eslint-utils": {
"version": "3.0.0",
"dev": true,
@@ -18108,19 +19743,6 @@
"url": "https://github.com/chalk/chalk?sponsor=1"
}
},
- "node_modules/eslint/node_modules/cross-spawn": {
- "version": "7.0.3",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "path-key": "^3.1.0",
- "shebang-command": "^2.0.0",
- "which": "^2.0.1"
- },
- "engines": {
- "node": ">= 8"
- }
- },
"node_modules/eslint/node_modules/escape-string-regexp": {
"version": "4.0.0",
"license": "MIT",
@@ -18196,21 +19818,6 @@
"node": ">= 4"
}
},
- "node_modules/eslint/node_modules/import-fresh": {
- "version": "3.3.0",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "parent-module": "^1.0.0",
- "resolve-from": "^4.0.0"
- },
- "engines": {
- "node": ">=6"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
"node_modules/eslint/node_modules/levn": {
"version": "0.4.1",
"license": "MIT",
@@ -18239,14 +19846,6 @@
"node": ">= 0.8.0"
}
},
- "node_modules/eslint/node_modules/path-key": {
- "version": "3.1.1",
- "license": "MIT",
- "optional": true,
- "engines": {
- "node": ">=8"
- }
- },
"node_modules/eslint/node_modules/prelude-ls": {
"version": "1.2.1",
"license": "MIT",
@@ -18255,33 +19854,6 @@
"node": ">= 0.8.0"
}
},
- "node_modules/eslint/node_modules/resolve-from": {
- "version": "4.0.0",
- "license": "MIT",
- "optional": true,
- "engines": {
- "node": ">=4"
- }
- },
- "node_modules/eslint/node_modules/shebang-command": {
- "version": "2.0.0",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "shebang-regex": "^3.0.0"
- },
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/eslint/node_modules/shebang-regex": {
- "version": "3.0.0",
- "license": "MIT",
- "optional": true,
- "engines": {
- "node": ">=8"
- }
- },
"node_modules/eslint/node_modules/strip-ansi": {
"version": "6.0.1",
"license": "MIT",
@@ -18326,20 +19898,6 @@
"url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/eslint/node_modules/which": {
- "version": "2.0.2",
- "license": "ISC",
- "optional": true,
- "dependencies": {
- "isexe": "^2.0.0"
- },
- "bin": {
- "node-which": "bin/node-which"
- },
- "engines": {
- "node": ">= 8"
- }
- },
"node_modules/espree": {
"version": "7.3.1",
"license": "BSD-2-Clause",
@@ -18353,17 +19911,6 @@
"node": "^10.12.0 || >=12.0.0"
}
},
- "node_modules/espree/node_modules/acorn": {
- "version": "7.4.1",
- "license": "MIT",
- "optional": true,
- "bin": {
- "acorn": "bin/acorn"
- },
- "engines": {
- "node": ">=0.4.0"
- }
- },
"node_modules/espree/node_modules/eslint-visitor-keys": {
"version": "1.3.0",
"license": "Apache-2.0",
@@ -18429,6 +19976,20 @@
"node": ">=4.0"
}
},
+ "node_modules/estree-to-babel": {
+ "version": "3.2.1",
+ "resolved": "https://registry.npmjs.org/estree-to-babel/-/estree-to-babel-3.2.1.tgz",
+ "integrity": "sha512-YNF+mZ/Wu2FU/gvmzuWtYc8rloubL7wfXCTgouFrnjGVXPA/EeYYA7pupXWrb3Iv1cTBeSSxxJIbK23l4MRNqg==",
+ "optional": true,
+ "dependencies": {
+ "@babel/traverse": "^7.1.6",
+ "@babel/types": "^7.2.0",
+ "c8": "^7.6.0"
+ },
+ "engines": {
+ "node": ">=8.3.0"
+ }
+ },
"node_modules/estree-walker": {
"version": "1.0.1",
"dev": true,
@@ -18450,6 +20011,15 @@
"node": ">= 0.6"
}
},
+ "node_modules/event-loop-spinner": {
+ "version": "2.2.0",
+ "resolved": "https://registry.npmjs.org/event-loop-spinner/-/event-loop-spinner-2.2.0.tgz",
+ "integrity": "sha512-KB44sV4Mv7uLIkJHJ5qhiZe5um6th2g57nHQL/uqnPHKP2IswoTRWUteEXTJQL4gW++1zqWUni+H2hGkP51c9w==",
+ "optional": true,
+ "dependencies": {
+ "tslib": "^2.1.0"
+ }
+ },
"node_modules/event-stream": {
"version": "3.3.4",
"dev": true,
@@ -18477,39 +20047,6 @@
"license": "MIT",
"optional": true
},
- "node_modules/eventemitter3": {
- "version": "4.0.7",
- "license": "MIT",
- "optional": true
- },
- "node_modules/events": {
- "version": "3.3.0",
- "license": "MIT",
- "optional": true,
- "engines": {
- "node": ">=0.8.x"
- }
- },
- "node_modules/eventsource": {
- "version": "1.1.0",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "original": "^1.0.0"
- },
- "engines": {
- "node": ">=0.12.0"
- }
- },
- "node_modules/evp_bytestokey": {
- "version": "1.0.3",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "md5.js": "^1.3.4",
- "safe-buffer": "^5.1.1"
- }
- },
"node_modules/execa": {
"version": "4.1.0",
"devOptional": true,
@@ -18532,60 +20069,6 @@
"url": "https://github.com/sindresorhus/execa?sponsor=1"
}
},
- "node_modules/execa/node_modules/cross-spawn": {
- "version": "7.0.3",
- "devOptional": true,
- "license": "MIT",
- "dependencies": {
- "path-key": "^3.1.0",
- "shebang-command": "^2.0.0",
- "which": "^2.0.1"
- },
- "engines": {
- "node": ">= 8"
- }
- },
- "node_modules/execa/node_modules/path-key": {
- "version": "3.1.1",
- "devOptional": true,
- "license": "MIT",
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/execa/node_modules/shebang-command": {
- "version": "2.0.0",
- "devOptional": true,
- "license": "MIT",
- "dependencies": {
- "shebang-regex": "^3.0.0"
- },
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/execa/node_modules/shebang-regex": {
- "version": "3.0.0",
- "devOptional": true,
- "license": "MIT",
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/execa/node_modules/which": {
- "version": "2.0.2",
- "devOptional": true,
- "license": "ISC",
- "dependencies": {
- "isexe": "^2.0.0"
- },
- "bin": {
- "node-which": "bin/node-which"
- },
- "engines": {
- "node": ">= 8"
- }
- },
"node_modules/executable": {
"version": "4.1.1",
"license": "MIT",
@@ -18618,7 +20101,7 @@
},
"node_modules/expand-brackets": {
"version": "2.1.4",
- "devOptional": true,
+ "dev": true,
"license": "MIT",
"dependencies": {
"debug": "^2.3.3",
@@ -18635,7 +20118,7 @@
},
"node_modules/expand-brackets/node_modules/debug": {
"version": "2.6.9",
- "devOptional": true,
+ "dev": true,
"license": "MIT",
"dependencies": {
"ms": "2.0.0"
@@ -18643,7 +20126,7 @@
},
"node_modules/expand-brackets/node_modules/define-property": {
"version": "0.2.5",
- "devOptional": true,
+ "dev": true,
"license": "MIT",
"dependencies": {
"is-descriptor": "^0.1.0"
@@ -18654,7 +20137,7 @@
},
"node_modules/expand-brackets/node_modules/extend-shallow": {
"version": "2.0.1",
- "devOptional": true,
+ "dev": true,
"license": "MIT",
"dependencies": {
"is-extendable": "^0.1.0"
@@ -18665,7 +20148,7 @@
},
"node_modules/expand-brackets/node_modules/ms": {
"version": "2.0.0",
- "devOptional": true,
+ "dev": true,
"license": "MIT"
},
"node_modules/expect": {
@@ -18775,7 +20258,7 @@
},
"node_modules/extend-shallow": {
"version": "3.0.2",
- "devOptional": true,
+ "dev": true,
"license": "MIT",
"dependencies": {
"assign-symbols": "^1.0.0",
@@ -18787,7 +20270,7 @@
},
"node_modules/extend-shallow/node_modules/is-extendable": {
"version": "1.0.1",
- "devOptional": true,
+ "dev": true,
"license": "MIT",
"dependencies": {
"is-plain-object": "^2.0.4"
@@ -18804,7 +20287,7 @@
},
"node_modules/external-editor": {
"version": "3.1.0",
- "devOptional": true,
+ "dev": true,
"license": "MIT",
"dependencies": {
"chardet": "^0.7.0",
@@ -18817,7 +20300,7 @@
},
"node_modules/extglob": {
"version": "2.0.4",
- "devOptional": true,
+ "dev": true,
"license": "MIT",
"dependencies": {
"array-unique": "^0.3.2",
@@ -18835,7 +20318,7 @@
},
"node_modules/extglob/node_modules/define-property": {
"version": "1.0.0",
- "devOptional": true,
+ "dev": true,
"license": "MIT",
"dependencies": {
"is-descriptor": "^1.0.0"
@@ -18846,7 +20329,7 @@
},
"node_modules/extglob/node_modules/extend-shallow": {
"version": "2.0.1",
- "devOptional": true,
+ "dev": true,
"license": "MIT",
"dependencies": {
"is-extendable": "^0.1.0"
@@ -18857,7 +20340,7 @@
},
"node_modules/extglob/node_modules/is-accessor-descriptor": {
"version": "1.0.0",
- "devOptional": true,
+ "dev": true,
"license": "MIT",
"dependencies": {
"kind-of": "^6.0.0"
@@ -18868,7 +20351,7 @@
},
"node_modules/extglob/node_modules/is-data-descriptor": {
"version": "1.0.0",
- "devOptional": true,
+ "dev": true,
"license": "MIT",
"dependencies": {
"kind-of": "^6.0.0"
@@ -18879,7 +20362,7 @@
},
"node_modules/extglob/node_modules/is-descriptor": {
"version": "1.0.2",
- "devOptional": true,
+ "dev": true,
"license": "MIT",
"dependencies": {
"is-accessor-descriptor": "^1.0.0",
@@ -18978,29 +20461,6 @@
"reusify": "^1.0.4"
}
},
- "node_modules/fault": {
- "version": "1.0.4",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "format": "^0.2.0"
- },
- "funding": {
- "type": "github",
- "url": "https://github.com/sponsors/wooorm"
- }
- },
- "node_modules/faye-websocket": {
- "version": "0.11.3",
- "license": "Apache-2.0",
- "optional": true,
- "dependencies": {
- "websocket-driver": ">=0.5.1"
- },
- "engines": {
- "node": ">=0.8.0"
- }
- },
"node_modules/fb-watchman": {
"version": "2.0.1",
"devOptional": true,
@@ -19036,9 +20496,10 @@
"pend": "~1.2.0"
}
},
- "node_modules/figgy-pudding": {
- "version": "3.5.2",
- "license": "ISC",
+ "node_modules/fetch-retry": {
+ "version": "5.0.5",
+ "resolved": "https://registry.npmjs.org/fetch-retry/-/fetch-retry-5.0.5.tgz",
+ "integrity": "sha512-q9SvpKH5Ka6h7X2C6r1sP31pQoeDb3o6/R9cg21ahfPAqbIOkW9tus1dXfwYb6G6dOI4F7nVS4Q+LSssBGIz0A==",
"optional": true
},
"node_modules/figures": {
@@ -19075,49 +20536,58 @@
}
},
"node_modules/file-system-cache": {
- "version": "1.0.5",
- "license": "MIT",
+ "version": "2.1.1",
+ "resolved": "https://registry.npmjs.org/file-system-cache/-/file-system-cache-2.1.1.tgz",
+ "integrity": "sha512-vgZ1uDsK29DM4pptUOv47zdJO2tYM5M/ERyAE9Jk0QBN6e64Md+a+xJSOp68dCCDH4niFMVD8nC8n8A5ic0bmg==",
"optional": true,
"dependencies": {
- "bluebird": "^3.3.5",
- "fs-extra": "^0.30.0",
- "ramda": "^0.21.0"
+ "fs-extra": "^11.1.0",
+ "ramda": "^0.28.0"
}
},
"node_modules/file-system-cache/node_modules/fs-extra": {
- "version": "0.30.0",
- "license": "MIT",
+ "version": "11.1.1",
+ "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-11.1.1.tgz",
+ "integrity": "sha512-MGIE4HOvQCeUCzmlHs0vXpih4ysz4wg9qiSAu6cd42lVwPbTM1TjV7RusoyQqMmk/95gdQZX72u+YW+c3eEpFQ==",
"optional": true,
"dependencies": {
- "graceful-fs": "^4.1.2",
- "jsonfile": "^2.1.0",
- "klaw": "^1.0.0",
- "path-is-absolute": "^1.0.0",
- "rimraf": "^2.2.8"
+ "graceful-fs": "^4.2.0",
+ "jsonfile": "^6.0.1",
+ "universalify": "^2.0.0"
+ },
+ "engines": {
+ "node": ">=14.14"
}
},
"node_modules/file-system-cache/node_modules/jsonfile": {
- "version": "2.4.0",
- "license": "MIT",
+ "version": "6.1.0",
+ "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz",
+ "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==",
"optional": true,
+ "dependencies": {
+ "universalify": "^2.0.0"
+ },
"optionalDependencies": {
"graceful-fs": "^4.1.6"
}
},
"node_modules/file-system-cache/node_modules/ramda": {
- "version": "0.21.0",
- "license": "MIT",
- "optional": true
- },
- "node_modules/file-system-cache/node_modules/rimraf": {
- "version": "2.7.1",
- "license": "ISC",
+ "version": "0.28.0",
+ "resolved": "https://registry.npmjs.org/ramda/-/ramda-0.28.0.tgz",
+ "integrity": "sha512-9QnLuG/kPVgWvMQ4aODhsBUFKOUmnbUnsSXACv+NCQZcHbeb+v8Lodp8OVxtRULN1/xOyYLLaL6npE6dMq5QTA==",
"optional": true,
- "dependencies": {
- "glob": "^7.1.3"
- },
- "bin": {
- "rimraf": "bin.js"
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/ramda"
+ }
+ },
+ "node_modules/file-system-cache/node_modules/universalify": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz",
+ "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==",
+ "optional": true,
+ "engines": {
+ "node": ">= 10.0.0"
}
},
"node_modules/file-uri-to-path": {
@@ -19127,7 +20597,7 @@
},
"node_modules/filelist": {
"version": "1.0.4",
- "dev": true,
+ "devOptional": true,
"license": "Apache-2.0",
"dependencies": {
"minimatch": "^5.0.1"
@@ -19135,7 +20605,7 @@
},
"node_modules/filelist/node_modules/brace-expansion": {
"version": "2.0.1",
- "dev": true,
+ "devOptional": true,
"license": "MIT",
"dependencies": {
"balanced-match": "^1.0.0"
@@ -19143,7 +20613,7 @@
},
"node_modules/filelist/node_modules/minimatch": {
"version": "5.1.0",
- "dev": true,
+ "devOptional": true,
"license": "ISC",
"dependencies": {
"brace-expansion": "^2.0.1"
@@ -19152,14 +20622,6 @@
"node": ">=10"
}
},
- "node_modules/filesize": {
- "version": "3.6.1",
- "license": "BSD-3-Clause",
- "optional": true,
- "engines": {
- "node": ">= 0.4.0"
- }
- },
"node_modules/fill-range": {
"version": "7.0.1",
"license": "MIT",
@@ -19476,21 +20938,12 @@
},
"node_modules/flow-parser": {
"version": "0.165.1",
- "dev": true,
+ "devOptional": true,
"license": "MIT",
"engines": {
"node": ">=0.4.0"
}
},
- "node_modules/flush-write-stream": {
- "version": "1.1.1",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "inherits": "^2.0.3",
- "readable-stream": "^2.3.6"
- }
- },
"node_modules/focus-lock": {
"version": "0.11.4",
"license": "MIT",
@@ -19511,21 +20964,23 @@
},
"node_modules/for-in": {
"version": "1.0.2",
- "devOptional": true,
+ "dev": true,
"license": "MIT",
"engines": {
"node": ">=0.10.0"
}
},
- "node_modules/for-own": {
- "version": "0.1.5",
- "license": "MIT",
+ "node_modules/foreground-child": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/foreground-child/-/foreground-child-2.0.0.tgz",
+ "integrity": "sha512-dCIq9FpEcyQyXKCkyzmlPTFNgrCzPudOe+mhvJU5zAtlBnGVy2yKxtfsxK2tQBThwq225jcvBjpw1Gr40uzZCA==",
"optional": true,
"dependencies": {
- "for-in": "^1.0.1"
+ "cross-spawn": "^7.0.0",
+ "signal-exit": "^3.0.2"
},
"engines": {
- "node": ">=0.10.0"
+ "node": ">=8.0.0"
}
},
"node_modules/forever-agent": {
@@ -19536,146 +20991,6 @@
"node": "*"
}
},
- "node_modules/fork-ts-checker-webpack-plugin": {
- "version": "3.1.1",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "babel-code-frame": "^6.22.0",
- "chalk": "^2.4.1",
- "chokidar": "^3.3.0",
- "micromatch": "^3.1.10",
- "minimatch": "^3.0.4",
- "semver": "^5.6.0",
- "tapable": "^1.0.0",
- "worker-rpc": "^0.1.0"
- },
- "engines": {
- "node": ">=6.11.5",
- "yarn": ">=1.0.0"
- }
- },
- "node_modules/fork-ts-checker-webpack-plugin/node_modules/braces": {
- "version": "2.3.2",
- "dev": true,
- "license": "MIT",
- "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.2",
- "snapdragon": "^0.8.1",
- "snapdragon-node": "^2.0.1",
- "split-string": "^3.0.2",
- "to-regex": "^3.0.1"
- },
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/fork-ts-checker-webpack-plugin/node_modules/braces/node_modules/extend-shallow": {
- "version": "2.0.1",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "is-extendable": "^0.1.0"
- },
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/fork-ts-checker-webpack-plugin/node_modules/fill-range": {
- "version": "4.0.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "extend-shallow": "^2.0.1",
- "is-number": "^3.0.0",
- "repeat-string": "^1.6.1",
- "to-regex-range": "^2.1.0"
- },
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/fork-ts-checker-webpack-plugin/node_modules/fill-range/node_modules/extend-shallow": {
- "version": "2.0.1",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "is-extendable": "^0.1.0"
- },
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/fork-ts-checker-webpack-plugin/node_modules/is-number": {
- "version": "3.0.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "kind-of": "^3.0.2"
- },
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/fork-ts-checker-webpack-plugin/node_modules/is-number/node_modules/kind-of": {
- "version": "3.2.2",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "is-buffer": "^1.1.5"
- },
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/fork-ts-checker-webpack-plugin/node_modules/micromatch": {
- "version": "3.1.10",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "arr-diff": "^4.0.0",
- "array-unique": "^0.3.2",
- "braces": "^2.3.1",
- "define-property": "^2.0.2",
- "extend-shallow": "^3.0.2",
- "extglob": "^2.0.4",
- "fragment-cache": "^0.2.1",
- "kind-of": "^6.0.2",
- "nanomatch": "^1.2.9",
- "object.pick": "^1.3.0",
- "regex-not": "^1.0.0",
- "snapdragon": "^0.8.1",
- "to-regex": "^3.0.2"
- },
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/fork-ts-checker-webpack-plugin/node_modules/semver": {
- "version": "5.7.1",
- "dev": true,
- "license": "ISC",
- "bin": {
- "semver": "bin/semver"
- }
- },
- "node_modules/fork-ts-checker-webpack-plugin/node_modules/to-regex-range": {
- "version": "2.1.1",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "is-number": "^3.0.0",
- "repeat-string": "^1.6.1"
- },
- "engines": {
- "node": ">=0.10.0"
- }
- },
"node_modules/form-data": {
"version": "2.3.3",
"license": "MIT",
@@ -19689,13 +21004,6 @@
"node": ">= 0.12"
}
},
- "node_modules/format": {
- "version": "0.2.2",
- "optional": true,
- "engines": {
- "node": ">=0.4.x"
- }
- },
"node_modules/forwarded": {
"version": "0.2.0",
"resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz",
@@ -19707,7 +21015,7 @@
},
"node_modules/fragment-cache": {
"version": "0.2.1",
- "devOptional": true,
+ "dev": true,
"license": "MIT",
"dependencies": {
"map-cache": "^0.2.2"
@@ -19729,15 +21037,6 @@
"dev": true,
"license": "MIT"
},
- "node_modules/from2": {
- "version": "2.3.0",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "inherits": "^2.0.1",
- "readable-stream": "^2.0.0"
- }
- },
"node_modules/frontend-collective-react-dnd-scrollzone": {
"version": "1.0.2",
"license": "MIT",
@@ -19779,9 +21078,15 @@
"react": "^16.14.0"
}
},
+ "node_modules/fs-constants": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/fs-constants/-/fs-constants-1.0.0.tgz",
+ "integrity": "sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==",
+ "optional": true
+ },
"node_modules/fs-extra": {
"version": "8.1.0",
- "devOptional": true,
+ "dev": true,
"license": "MIT",
"dependencies": {
"graceful-fs": "^4.2.0",
@@ -19794,7 +21099,8 @@
},
"node_modules/fs-minipass": {
"version": "2.1.0",
- "license": "ISC",
+ "resolved": "https://registry.npmjs.org/fs-minipass/-/fs-minipass-2.1.0.tgz",
+ "integrity": "sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==",
"optional": true,
"dependencies": {
"minipass": "^3.0.0"
@@ -19803,22 +21109,23 @@
"node": ">= 8"
}
},
+ "node_modules/fs-minipass/node_modules/minipass": {
+ "version": "3.3.6",
+ "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz",
+ "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==",
+ "optional": true,
+ "dependencies": {
+ "yallist": "^4.0.0"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
"node_modules/fs-readdir-recursive": {
"version": "1.1.0",
"dev": true,
"license": "MIT"
},
- "node_modules/fs-write-stream-atomic": {
- "version": "1.0.10",
- "license": "ISC",
- "optional": true,
- "dependencies": {
- "graceful-fs": "^4.1.2",
- "iferr": "^0.1.5",
- "imurmurhash": "^0.1.4",
- "readable-stream": "1 || 2"
- }
- },
"node_modules/fs.realpath": {
"version": "1.0.0",
"devOptional": true,
@@ -19890,61 +21197,35 @@
"version": "2.1.0"
},
"node_modules/gauge": {
- "version": "2.7.4",
- "license": "ISC",
+ "version": "3.0.2",
+ "resolved": "https://registry.npmjs.org/gauge/-/gauge-3.0.2.tgz",
+ "integrity": "sha512-+5J6MS/5XksCuXq++uFRsnUd7Ovu1XenbeuIuNRJxYWjgQbPuFhT14lAvsWfqfAmnwluf1OwMjz39HjfLPci0Q==",
"optional": true,
"dependencies": {
- "aproba": "^1.0.3",
+ "aproba": "^1.0.3 || ^2.0.0",
+ "color-support": "^1.1.2",
"console-control-strings": "^1.0.0",
- "has-unicode": "^2.0.0",
- "object-assign": "^4.1.0",
+ "has-unicode": "^2.0.1",
+ "object-assign": "^4.1.1",
"signal-exit": "^3.0.0",
- "string-width": "^1.0.1",
- "strip-ansi": "^3.0.1",
- "wide-align": "^1.1.0"
- }
- },
- "node_modules/gauge/node_modules/ansi-regex": {
- "version": "2.1.1",
- "license": "MIT",
- "optional": true,
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/gauge/node_modules/is-fullwidth-code-point": {
- "version": "1.0.0",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "number-is-nan": "^1.0.0"
+ "string-width": "^4.2.3",
+ "strip-ansi": "^6.0.1",
+ "wide-align": "^1.1.2"
},
"engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/gauge/node_modules/string-width": {
- "version": "1.0.2",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "code-point-at": "^1.0.0",
- "is-fullwidth-code-point": "^1.0.0",
- "strip-ansi": "^3.0.0"
- },
- "engines": {
- "node": ">=0.10.0"
+ "node": ">=10"
}
},
"node_modules/gauge/node_modules/strip-ansi": {
- "version": "3.0.1",
- "license": "MIT",
+ "version": "6.0.1",
+ "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz",
+ "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
"optional": true,
"dependencies": {
- "ansi-regex": "^2.0.0"
+ "ansi-regex": "^5.0.1"
},
"engines": {
- "node": ">=0.10.0"
+ "node": ">=8"
}
},
"node_modules/gensync": {
@@ -19982,6 +21263,15 @@
"node": ">=6"
}
},
+ "node_modules/get-npm-tarball-url": {
+ "version": "2.0.3",
+ "resolved": "https://registry.npmjs.org/get-npm-tarball-url/-/get-npm-tarball-url-2.0.3.tgz",
+ "integrity": "sha512-R/PW6RqyaBQNWYaSyfrh54/qtcnOp22FHCCiRhSSZj0FP3KQWCsxxt0DzIdVTbwTqe9CtQfvl/FPD4UIPt4pqw==",
+ "optional": true,
+ "engines": {
+ "node": ">=12.17"
+ }
+ },
"node_modules/get-own-enumerable-property-symbols": {
"version": "3.0.2",
"devOptional": true,
@@ -19995,6 +21285,18 @@
"node": ">=8.0.0"
}
},
+ "node_modules/get-port": {
+ "version": "5.1.1",
+ "resolved": "https://registry.npmjs.org/get-port/-/get-port-5.1.1.tgz",
+ "integrity": "sha512-g/Q1aTSDOxFpchXC4i8ZWvxA1lnPqx/JHqcpIw0/LX9T8x/GBbi6YnlN5nhaKIFkT8oFsscUKgDJYxfwfS6QsQ==",
+ "optional": true,
+ "engines": {
+ "node": ">=8"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
"node_modules/get-stream": {
"version": "5.2.0",
"devOptional": true,
@@ -20026,7 +21328,7 @@
},
"node_modules/get-value": {
"version": "2.0.6",
- "devOptional": true,
+ "dev": true,
"license": "MIT",
"engines": {
"node": ">=0.10.0"
@@ -20048,6 +21350,43 @@
"assert-plus": "^1.0.0"
}
},
+ "node_modules/giget": {
+ "version": "1.1.2",
+ "resolved": "https://registry.npmjs.org/giget/-/giget-1.1.2.tgz",
+ "integrity": "sha512-HsLoS07HiQ5oqvObOI+Qb2tyZH4Gj5nYGfF9qQcZNrPw+uEFhdXtgJr01aO2pWadGHucajYDLxxbtQkm97ON2A==",
+ "optional": true,
+ "dependencies": {
+ "colorette": "^2.0.19",
+ "defu": "^6.1.2",
+ "https-proxy-agent": "^5.0.1",
+ "mri": "^1.2.0",
+ "node-fetch-native": "^1.0.2",
+ "pathe": "^1.1.0",
+ "tar": "^6.1.13"
+ },
+ "bin": {
+ "giget": "dist/cli.mjs"
+ }
+ },
+ "node_modules/giget/node_modules/https-proxy-agent": {
+ "version": "5.0.1",
+ "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz",
+ "integrity": "sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==",
+ "optional": true,
+ "dependencies": {
+ "agent-base": "6",
+ "debug": "4"
+ },
+ "engines": {
+ "node": ">= 6"
+ }
+ },
+ "node_modules/giget/node_modules/pathe": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/pathe/-/pathe-1.1.0.tgz",
+ "integrity": "sha512-ODbEPR0KKHqECXW1GoxdDb+AZvULmXjVPy4rt+pGo2+TnjJTIPJQSVS6N63n8T2Ip+syHhbn52OewKicV0373w==",
+ "optional": true
+ },
"node_modules/git-up": {
"version": "4.0.2",
"dev": true,
@@ -20061,6 +21400,12 @@
"version": "2.22.1",
"license": "BSD-2-Clause"
},
+ "node_modules/github-slugger": {
+ "version": "1.5.0",
+ "resolved": "https://registry.npmjs.org/github-slugger/-/github-slugger-1.5.0.tgz",
+ "integrity": "sha512-wIh+gKBI9Nshz2o46B0B3f5k/W+WI9ZAv6y5Dn5WJ5SK1t0TnDimB4WE5rmTD05ZAIn8HALCZVmCsvj0w0v0lw==",
+ "optional": true
+ },
"node_modules/glob": {
"version": "7.2.3",
"devOptional": true,
@@ -20080,45 +21425,6 @@
"url": "https://github.com/sponsors/isaacs"
}
},
- "node_modules/glob-base": {
- "version": "0.3.0",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "glob-parent": "^2.0.0",
- "is-glob": "^2.0.0"
- },
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/glob-base/node_modules/glob-parent": {
- "version": "2.0.0",
- "license": "ISC",
- "optional": true,
- "dependencies": {
- "is-glob": "^2.0.0"
- }
- },
- "node_modules/glob-base/node_modules/is-extglob": {
- "version": "1.0.0",
- "license": "MIT",
- "optional": true,
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/glob-base/node_modules/is-glob": {
- "version": "2.0.1",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "is-extglob": "^1.0.0"
- },
- "engines": {
- "node": ">=0.10.0"
- }
- },
"node_modules/glob-parent": {
"version": "5.1.2",
"license": "ISC",
@@ -20129,9 +21435,29 @@
"node": ">= 6"
}
},
+ "node_modules/glob-promise": {
+ "version": "6.0.2",
+ "resolved": "https://registry.npmjs.org/glob-promise/-/glob-promise-6.0.2.tgz",
+ "integrity": "sha512-Ni2aDyD1ekD6x8/+K4hDriRDbzzfuK4yKpqSymJ4P7IxbtARiOOuU+k40kbHM0sLIlbf1Qh0qdMkAHMZYE6XJQ==",
+ "optional": true,
+ "dependencies": {
+ "@types/glob": "^8.0.0"
+ },
+ "engines": {
+ "node": ">=16"
+ },
+ "funding": {
+ "type": "individual",
+ "url": "https://github.com/sponsors/ahmadnassri"
+ },
+ "peerDependencies": {
+ "glob": "^8.0.3"
+ }
+ },
"node_modules/glob-to-regexp": {
- "version": "0.3.0",
- "license": "BSD",
+ "version": "0.4.1",
+ "resolved": "https://registry.npmjs.org/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz",
+ "integrity": "sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==",
"optional": true
},
"node_modules/glob/node_modules/minimatch": {
@@ -20145,15 +21471,6 @@
"node": "*"
}
},
- "node_modules/global": {
- "version": "4.4.0",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "min-document": "^2.19.0",
- "process": "^0.11.10"
- }
- },
"node_modules/global-dirs": {
"version": "3.0.0",
"license": "MIT",
@@ -20174,30 +21491,6 @@
"node": ">=10"
}
},
- "node_modules/global-modules": {
- "version": "2.0.0",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "global-prefix": "^3.0.0"
- },
- "engines": {
- "node": ">=6"
- }
- },
- "node_modules/global-prefix": {
- "version": "3.0.0",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "ini": "^1.3.5",
- "kind-of": "^6.0.2",
- "which": "^1.3.1"
- },
- "engines": {
- "node": ">=6"
- }
- },
"node_modules/globals": {
"version": "11.12.0",
"devOptional": true,
@@ -20206,23 +21499,9 @@
"node": ">=4"
}
},
- "node_modules/globalthis": {
- "version": "1.0.2",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "define-properties": "^1.1.3"
- },
- "engines": {
- "node": ">= 0.4"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
"node_modules/globby": {
"version": "11.0.3",
- "dev": true,
+ "devOptional": true,
"license": "MIT",
"dependencies": {
"array-union": "^2.1.0",
@@ -20239,17 +21518,9 @@
"url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/good-listener": {
- "version": "1.2.2",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "delegate": "^3.1.2"
- }
- },
"node_modules/got": {
"version": "11.8.2",
- "dev": true,
+ "devOptional": true,
"license": "MIT",
"dependencies": {
"@sindresorhus/is": "^4.0.0",
@@ -20279,7 +21550,7 @@
"version": "1.0.4",
"resolved": "https://registry.npmjs.org/grapheme-splitter/-/grapheme-splitter-1.0.4.tgz",
"integrity": "sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ==",
- "dev": true
+ "devOptional": true
},
"node_modules/graphiql": {
"version": "2.2.0",
@@ -20393,46 +21664,6 @@
"node": ">=10"
}
},
- "node_modules/graphql-config/node_modules/import-fresh": {
- "version": "3.3.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "parent-module": "^1.0.0",
- "resolve-from": "^4.0.0"
- },
- "engines": {
- "node": ">=6"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/graphql-config/node_modules/parse-json": {
- "version": "5.2.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/code-frame": "^7.0.0",
- "error-ex": "^1.3.1",
- "json-parse-even-better-errors": "^2.3.0",
- "lines-and-columns": "^1.1.6"
- },
- "engines": {
- "node": ">=8"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/graphql-config/node_modules/resolve-from": {
- "version": "4.0.0",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=4"
- }
- },
"node_modules/graphql-config/node_modules/ts-node": {
"version": "9.1.1",
"dev": true,
@@ -20539,28 +21770,28 @@
"graphql": ">=0.11 <=15"
}
},
- "node_modules/gud": {
- "version": "1.0.0",
- "license": "MIT",
- "optional": true
- },
- "node_modules/gzip-size": {
- "version": "5.1.1",
- "license": "MIT",
+ "node_modules/gunzip-maybe": {
+ "version": "1.4.2",
+ "resolved": "https://registry.npmjs.org/gunzip-maybe/-/gunzip-maybe-1.4.2.tgz",
+ "integrity": "sha512-4haO1M4mLO91PW57BMsDFf75UmwoRX0GkdD+Faw+Lr+r/OZrOCS0pIBwOL1xCKQqnQzbNFGgK2V2CpBUPeFNTw==",
"optional": true,
"dependencies": {
- "duplexer": "^0.1.1",
- "pify": "^4.0.1"
+ "browserify-zlib": "^0.1.4",
+ "is-deflate": "^1.0.0",
+ "is-gzip": "^1.0.0",
+ "peek-stream": "^1.1.0",
+ "pumpify": "^1.3.3",
+ "through2": "^2.0.3"
},
- "engines": {
- "node": ">=6"
+ "bin": {
+ "gunzip-maybe": "bin.js"
}
},
"node_modules/handlebars": {
"version": "4.7.7",
"resolved": "https://registry.npmjs.org/handlebars/-/handlebars-4.7.7.tgz",
"integrity": "sha512-aAcXm5OAfE/8IXkcZvCepKU3VzW1/39Fb5ZuqMtgI/hT8X2YgoMvBY5dLhq/cpOvw7Lk1nK/UF71aLG/ZnVYRA==",
- "dev": true,
+ "devOptional": true,
"dependencies": {
"minimist": "^1.2.5",
"neo-async": "^2.6.0",
@@ -20581,7 +21812,7 @@
"version": "0.6.1",
"resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
"integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
- "dev": true,
+ "devOptional": true,
"engines": {
"node": ">=0.10.0"
}
@@ -20612,7 +21843,7 @@
},
"node_modules/has-ansi": {
"version": "2.0.0",
- "devOptional": true,
+ "dev": true,
"license": "MIT",
"dependencies": {
"ansi-regex": "^2.0.0"
@@ -20623,7 +21854,7 @@
},
"node_modules/has-ansi/node_modules/ansi-regex": {
"version": "2.1.1",
- "devOptional": true,
+ "dev": true,
"license": "MIT",
"engines": {
"node": ">=0.10.0"
@@ -20681,12 +21912,13 @@
},
"node_modules/has-unicode": {
"version": "2.0.1",
- "license": "ISC",
+ "resolved": "https://registry.npmjs.org/has-unicode/-/has-unicode-2.0.1.tgz",
+ "integrity": "sha512-8Rf9Y83NBReMnx0gFzA8JImQACstCYWUplepDa9xprwwtmgEZUF0h/i5xSA625zB/I37EtrswSST6OXxwaaIJQ==",
"optional": true
},
"node_modules/has-value": {
"version": "1.0.0",
- "devOptional": true,
+ "dev": true,
"license": "MIT",
"dependencies": {
"get-value": "^2.0.6",
@@ -20699,7 +21931,7 @@
},
"node_modules/has-values": {
"version": "1.0.0",
- "devOptional": true,
+ "dev": true,
"license": "MIT",
"dependencies": {
"is-number": "^3.0.0",
@@ -20711,7 +21943,7 @@
},
"node_modules/has-values/node_modules/is-number": {
"version": "3.0.0",
- "devOptional": true,
+ "dev": true,
"license": "MIT",
"dependencies": {
"kind-of": "^3.0.2"
@@ -20722,7 +21954,7 @@
},
"node_modules/has-values/node_modules/is-number/node_modules/kind-of": {
"version": "3.2.2",
- "devOptional": true,
+ "dev": true,
"license": "MIT",
"dependencies": {
"is-buffer": "^1.1.5"
@@ -20733,7 +21965,7 @@
},
"node_modules/has-values/node_modules/kind-of": {
"version": "4.0.0",
- "devOptional": true,
+ "dev": true,
"license": "MIT",
"dependencies": {
"is-buffer": "^1.1.5"
@@ -20749,68 +21981,9 @@
"node": ">=8"
}
},
- "node_modules/hash-base": {
- "version": "3.1.0",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "inherits": "^2.0.4",
- "readable-stream": "^3.6.0",
- "safe-buffer": "^5.2.0"
- },
- "engines": {
- "node": ">=4"
- }
- },
- "node_modules/hash-base/node_modules/readable-stream": {
- "version": "3.6.0",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "inherits": "^2.0.3",
- "string_decoder": "^1.1.1",
- "util-deprecate": "^1.0.1"
- },
- "engines": {
- "node": ">= 6"
- }
- },
- "node_modules/hash.js": {
- "version": "1.1.7",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "inherits": "^2.0.3",
- "minimalistic-assert": "^1.0.1"
- }
- },
- "node_modules/hast-util-parse-selector": {
- "version": "2.2.5",
- "license": "MIT",
- "optional": true,
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/unified"
- }
- },
- "node_modules/hastscript": {
- "version": "5.1.2",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "comma-separated-tokens": "^1.0.0",
- "hast-util-parse-selector": "^2.0.0",
- "property-information": "^5.0.0",
- "space-separated-tokens": "^1.0.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/unified"
- }
- },
"node_modules/he": {
"version": "1.2.0",
- "devOptional": true,
+ "dev": true,
"license": "MIT",
"bin": {
"he": "bin/he"
@@ -20825,14 +21998,6 @@
"tslib": "^2.0.3"
}
},
- "node_modules/highlight.js": {
- "version": "9.13.1",
- "license": "BSD-3-Clause",
- "optional": true,
- "engines": {
- "node": "*"
- }
- },
"node_modules/history": {
"version": "4.10.1",
"license": "MIT",
@@ -20845,16 +22010,6 @@
"value-equal": "^1.0.1"
}
},
- "node_modules/hmac-drbg": {
- "version": "1.0.1",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "hash.js": "^1.0.3",
- "minimalistic-assert": "^1.0.0",
- "minimalistic-crypto-utils": "^1.0.1"
- }
- },
"node_modules/hoist-non-react-statics": {
"version": "3.3.2",
"license": "BSD-3-Clause",
@@ -20886,52 +22041,21 @@
"node": ">=10"
}
},
- "node_modules/html-entities": {
- "version": "1.4.0",
- "license": "MIT",
- "optional": true
- },
"node_modules/html-escaper": {
"version": "2.0.2",
"license": "MIT",
"optional": true
},
- "node_modules/html-minifier-terser": {
- "version": "5.1.1",
- "license": "MIT",
+ "node_modules/html-tags": {
+ "version": "3.3.1",
+ "resolved": "https://registry.npmjs.org/html-tags/-/html-tags-3.3.1.tgz",
+ "integrity": "sha512-ztqyC3kLto0e9WbNp0aeP+M3kTt+nbaIveGmUxAtZa+8iFgKLUOD4YKM5j+f3QD89bra7UeumolZHKuOXnTmeQ==",
"optional": true,
- "dependencies": {
- "camel-case": "^4.1.1",
- "clean-css": "^4.2.3",
- "commander": "^4.1.1",
- "he": "^1.2.0",
- "param-case": "^3.0.3",
- "relateurl": "^0.2.7",
- "terser": "^4.6.3"
- },
- "bin": {
- "html-minifier-terser": "cli.js"
- },
"engines": {
- "node": ">=6"
- }
- },
- "node_modules/html-minifier-terser/node_modules/camel-case": {
- "version": "4.1.2",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "pascal-case": "^3.1.2",
- "tslib": "^2.0.3"
- }
- },
- "node_modules/html-minifier-terser/node_modules/param-case": {
- "version": "3.0.4",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "dot-case": "^3.0.4",
- "tslib": "^2.0.3"
+ "node": ">=8"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
}
},
"node_modules/html-to-react": {
@@ -20992,11 +22116,6 @@
"node": ">=4.0.0"
}
},
- "node_modules/http-parser-js": {
- "version": "0.5.3",
- "license": "MIT",
- "optional": true
- },
"node_modules/http-proxy-agent": {
"version": "4.0.1",
"devOptional": true,
@@ -21012,7 +22131,7 @@
},
"node_modules/http2-wrapper": {
"version": "1.0.3",
- "dev": true,
+ "devOptional": true,
"license": "MIT",
"dependencies": {
"quick-lru": "^5.1.1",
@@ -21022,11 +22141,6 @@
"node": ">=10.19.0"
}
},
- "node_modules/https-browserify": {
- "version": "1.0.0",
- "license": "MIT",
- "optional": true
- },
"node_modules/https-proxy-agent": {
"version": "5.0.0",
"devOptional": true,
@@ -21089,17 +22203,6 @@
"node": ">=0.10.0"
}
},
- "node_modules/icss-utils": {
- "version": "4.1.1",
- "license": "ISC",
- "optional": true,
- "dependencies": {
- "postcss": "^7.0.14"
- },
- "engines": {
- "node": ">= 6"
- }
- },
"node_modules/idb": {
"version": "7.1.1",
"dev": true,
@@ -21135,11 +22238,6 @@
],
"license": "BSD-3-Clause"
},
- "node_modules/iferr": {
- "version": "0.1.5",
- "license": "MIT",
- "optional": true
- },
"node_modules/ignore": {
"version": "5.2.4",
"resolved": "https://registry.npmjs.org/ignore/-/ignore-5.2.4.tgz",
@@ -21171,11 +22269,6 @@
"node": ">=14.0.0"
}
},
- "node_modules/immer": {
- "version": "1.10.0",
- "license": "MIT",
- "optional": true
- },
"node_modules/immutable": {
"version": "3.7.6",
"dev": true,
@@ -21184,36 +22277,25 @@
"node": ">=0.8.0"
}
},
- "node_modules/import-cwd": {
- "version": "2.1.0",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "import-from": "^2.1.0"
- },
- "engines": {
- "node": ">=4"
- }
- },
"node_modules/import-fresh": {
- "version": "2.0.0",
- "license": "MIT",
- "optional": true,
+ "version": "3.3.0",
+ "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz",
+ "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==",
"dependencies": {
- "caller-path": "^2.0.0",
- "resolve-from": "^3.0.0"
+ "parent-module": "^1.0.0",
+ "resolve-from": "^4.0.0"
},
"engines": {
- "node": ">=4"
+ "node": ">=6"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/import-from": {
- "version": "2.1.0",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "resolve-from": "^3.0.0"
- },
+ "node_modules/import-fresh/node_modules/resolve-from": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz",
+ "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==",
"engines": {
"node": ">=4"
}
@@ -21318,16 +22400,6 @@
"node": ">=8"
}
},
- "node_modules/indexes-of": {
- "version": "1.0.1",
- "license": "MIT",
- "optional": true
- },
- "node_modules/infer-owner": {
- "version": "1.0.4",
- "license": "ISC",
- "optional": true
- },
"node_modules/inflight": {
"version": "1.0.6",
"devOptional": true,
@@ -21347,7 +22419,7 @@
},
"node_modules/inquirer": {
"version": "7.3.3",
- "devOptional": true,
+ "dev": true,
"license": "MIT",
"dependencies": {
"ansi-escapes": "^4.2.1",
@@ -21370,7 +22442,7 @@
},
"node_modules/inquirer/node_modules/chalk": {
"version": "4.1.0",
- "devOptional": true,
+ "dev": true,
"license": "MIT",
"dependencies": {
"ansi-styles": "^4.1.0",
@@ -21385,7 +22457,7 @@
},
"node_modules/inquirer/node_modules/cli-cursor": {
"version": "3.1.0",
- "devOptional": true,
+ "dev": true,
"license": "MIT",
"dependencies": {
"restore-cursor": "^3.1.0"
@@ -21396,7 +22468,7 @@
},
"node_modules/inquirer/node_modules/figures": {
"version": "3.2.0",
- "devOptional": true,
+ "dev": true,
"license": "MIT",
"dependencies": {
"escape-string-regexp": "^1.0.5"
@@ -21410,7 +22482,7 @@
},
"node_modules/inquirer/node_modules/has-flag": {
"version": "4.0.0",
- "devOptional": true,
+ "dev": true,
"license": "MIT",
"engines": {
"node": ">=8"
@@ -21418,7 +22490,7 @@
},
"node_modules/inquirer/node_modules/restore-cursor": {
"version": "3.1.0",
- "devOptional": true,
+ "dev": true,
"license": "MIT",
"dependencies": {
"onetime": "^5.1.0",
@@ -21430,7 +22502,7 @@
},
"node_modules/inquirer/node_modules/strip-ansi": {
"version": "6.0.0",
- "devOptional": true,
+ "dev": true,
"license": "MIT",
"dependencies": {
"ansi-regex": "^5.0.0"
@@ -21441,7 +22513,7 @@
},
"node_modules/inquirer/node_modules/supports-color": {
"version": "7.2.0",
- "devOptional": true,
+ "dev": true,
"license": "MIT",
"dependencies": {
"has-flag": "^4.0.0"
@@ -21489,8 +22561,9 @@
}
},
"node_modules/ip": {
- "version": "1.1.5",
- "license": "MIT",
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/ip/-/ip-2.0.0.tgz",
+ "integrity": "sha512-WKa+XuLG1A1R0UWhl2+1XQSi+fZWMsYKffMZTTYsiZaUD8k2yDAj5atimTUD2TZkyCkNEeYE5NhFZmupOGtjYQ==",
"optional": true
},
"node_modules/ipaddr.js": {
@@ -21502,6 +22575,15 @@
"node": ">= 0.10"
}
},
+ "node_modules/is": {
+ "version": "3.3.0",
+ "resolved": "https://registry.npmjs.org/is/-/is-3.3.0.tgz",
+ "integrity": "sha512-nW24QBoPcFGGHJGUwnfpI7Yc5CdqWNdsyHQszVE/z2pKHXzh7FZ5GWhJqSyaQ9wMkQnsTx+kAI8bHlCX4tKdbg==",
+ "optional": true,
+ "engines": {
+ "node": "*"
+ }
+ },
"node_modules/is-absolute": {
"version": "1.0.0",
"dev": true,
@@ -21516,7 +22598,7 @@
},
"node_modules/is-absolute-url": {
"version": "3.0.3",
- "dev": true,
+ "devOptional": true,
"license": "MIT",
"engines": {
"node": ">=8"
@@ -21524,7 +22606,7 @@
},
"node_modules/is-accessor-descriptor": {
"version": "0.1.6",
- "devOptional": true,
+ "dev": true,
"license": "MIT",
"dependencies": {
"kind-of": "^3.0.2"
@@ -21535,7 +22617,7 @@
},
"node_modules/is-accessor-descriptor/node_modules/kind-of": {
"version": "3.2.2",
- "devOptional": true,
+ "dev": true,
"license": "MIT",
"dependencies": {
"is-buffer": "^1.1.5"
@@ -21590,17 +22672,6 @@
"url": "https://github.com/sponsors/ljharb"
}
},
- "node_modules/is-binary-path": {
- "version": "1.0.1",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "binary-extensions": "^1.0.0"
- },
- "engines": {
- "node": ">=0.10.0"
- }
- },
"node_modules/is-boolean-object": {
"version": "1.1.0",
"devOptional": true,
@@ -21653,7 +22724,7 @@
},
"node_modules/is-data-descriptor": {
"version": "0.1.4",
- "devOptional": true,
+ "dev": true,
"license": "MIT",
"dependencies": {
"kind-of": "^3.0.2"
@@ -21664,7 +22735,7 @@
},
"node_modules/is-data-descriptor/node_modules/kind-of": {
"version": "3.2.2",
- "devOptional": true,
+ "dev": true,
"license": "MIT",
"dependencies": {
"is-buffer": "^1.1.5"
@@ -21692,9 +22763,15 @@
"url": "https://github.com/sponsors/wooorm"
}
},
+ "node_modules/is-deflate": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/is-deflate/-/is-deflate-1.0.0.tgz",
+ "integrity": "sha512-YDoFpuZWu1VRXlsnlYMzKyVRITXj7Ej/V9gXQ2/pAe7X1J7M/RNOqaIYi6qUn+B7nGyB9pDXrv02dsB58d2ZAQ==",
+ "optional": true
+ },
"node_modules/is-descriptor": {
"version": "0.1.6",
- "devOptional": true,
+ "dev": true,
"license": "MIT",
"dependencies": {
"is-accessor-descriptor": "^0.1.6",
@@ -21707,23 +22784,16 @@
},
"node_modules/is-descriptor/node_modules/kind-of": {
"version": "5.1.0",
- "devOptional": true,
+ "dev": true,
"license": "MIT",
"engines": {
"node": ">=0.10.0"
}
},
- "node_modules/is-directory": {
- "version": "0.3.1",
- "license": "MIT",
- "optional": true,
- "engines": {
- "node": ">=0.10.0"
- }
- },
"node_modules/is-docker": {
"version": "2.2.1",
- "license": "MIT",
+ "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-2.2.1.tgz",
+ "integrity": "sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==",
"optional": true,
"bin": {
"is-docker": "cli.js"
@@ -21737,7 +22807,7 @@
},
"node_modules/is-extendable": {
"version": "0.1.1",
- "devOptional": true,
+ "dev": true,
"license": "MIT",
"engines": {
"node": ">=0.10.0"
@@ -21757,11 +22827,6 @@
"node": ">=8"
}
},
- "node_modules/is-function": {
- "version": "1.0.2",
- "license": "MIT",
- "optional": true
- },
"node_modules/is-generator-fn": {
"version": "2.1.0",
"license": "MIT",
@@ -21770,6 +22835,21 @@
"node": ">=6"
}
},
+ "node_modules/is-generator-function": {
+ "version": "1.0.10",
+ "resolved": "https://registry.npmjs.org/is-generator-function/-/is-generator-function-1.0.10.tgz",
+ "integrity": "sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A==",
+ "optional": true,
+ "dependencies": {
+ "has-tostringtag": "^1.0.0"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
"node_modules/is-glob": {
"version": "4.0.1",
"license": "MIT",
@@ -21780,6 +22860,15 @@
"node": ">=0.10.0"
}
},
+ "node_modules/is-gzip": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/is-gzip/-/is-gzip-1.0.0.tgz",
+ "integrity": "sha512-rcfALRIb1YewtnksfRIHGcIY93QnK8BIQ/2c9yDYcG/Y6+vRoJuTWBmmSEbyLLYtXm7q35pHOHbZFQBaLrhlWQ==",
+ "optional": true,
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
"node_modules/is-hexadecimal": {
"version": "1.0.4",
"license": "MIT",
@@ -21835,6 +22924,22 @@
"dev": true,
"license": "MIT"
},
+ "node_modules/is-nan": {
+ "version": "1.3.2",
+ "resolved": "https://registry.npmjs.org/is-nan/-/is-nan-1.3.2.tgz",
+ "integrity": "sha512-E+zBKpQ2t6MEo1VsonYmluk9NxGrbzpeeLC2xIViuO2EjU2xsXsBPwTr3Ykv9l08UYEVEdWeRZNouaZqF6RN0w==",
+ "optional": true,
+ "dependencies": {
+ "call-bind": "^1.0.0",
+ "define-properties": "^1.1.3"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
"node_modules/is-negative-zero": {
"version": "2.0.2",
"devOptional": true,
@@ -21893,6 +22998,15 @@
"node": ">=4"
}
},
+ "node_modules/is-path-cwd": {
+ "version": "2.2.0",
+ "resolved": "https://registry.npmjs.org/is-path-cwd/-/is-path-cwd-2.2.0.tgz",
+ "integrity": "sha512-w942bTcih8fdJPJmQHFzkS76NEP8Kzzvmw92cXsazb8intwLqPibPPdXf4ANdKV3rYMuuQYGIWtvz9JilB3NFQ==",
+ "optional": true,
+ "engines": {
+ "node": ">=6"
+ }
+ },
"node_modules/is-path-inside": {
"version": "3.0.3",
"license": "MIT",
@@ -21961,14 +23075,6 @@
"node": ">=0.10.0"
}
},
- "node_modules/is-root": {
- "version": "2.1.0",
- "license": "MIT",
- "optional": true,
- "engines": {
- "node": ">=6"
- }
- },
"node_modules/is-set": {
"version": "2.0.2",
"license": "MIT",
@@ -22141,7 +23247,7 @@
},
"node_modules/is-windows": {
"version": "1.0.2",
- "devOptional": true,
+ "dev": true,
"license": "MIT",
"engines": {
"node": ">=0.10.0"
@@ -22157,7 +23263,8 @@
},
"node_modules/is-wsl": {
"version": "2.2.0",
- "license": "MIT",
+ "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz",
+ "integrity": "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==",
"optional": true,
"dependencies": {
"is-docker": "^2.0.0"
@@ -22195,6 +23302,16 @@
"whatwg-fetch": "^3.4.1"
}
},
+ "node_modules/isomorphic-unfetch": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/isomorphic-unfetch/-/isomorphic-unfetch-3.1.0.tgz",
+ "integrity": "sha512-geDJjpoZ8N0kWexiwkX8F9NkTsXhetLPVbZFQ+JTW239QNOwvB0gniuR1Wc6f0AMTn7/mFGyXvHTifrCp/GH8Q==",
+ "optional": true,
+ "dependencies": {
+ "node-fetch": "^2.6.1",
+ "unfetch": "^4.2.0"
+ }
+ },
"node_modules/isomorphic-ws": {
"version": "4.0.1",
"dev": true,
@@ -22331,26 +23448,9 @@
"dev": true,
"license": "MIT"
},
- "node_modules/iterate-iterator": {
- "version": "1.0.1",
- "license": "MIT",
- "optional": true
- },
- "node_modules/iterate-value": {
- "version": "1.0.2",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "es-get-iterator": "^1.0.2",
- "iterate-iterator": "^1.0.1"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
"node_modules/jake": {
"version": "10.8.5",
- "dev": true,
+ "devOptional": true,
"license": "Apache-2.0",
"dependencies": {
"async": "^3.2.3",
@@ -22367,7 +23467,7 @@
},
"node_modules/jake/node_modules/chalk": {
"version": "4.1.2",
- "dev": true,
+ "devOptional": true,
"license": "MIT",
"dependencies": {
"ansi-styles": "^4.1.0",
@@ -22382,7 +23482,7 @@
},
"node_modules/jake/node_modules/has-flag": {
"version": "4.0.0",
- "dev": true,
+ "devOptional": true,
"license": "MIT",
"engines": {
"node": ">=8"
@@ -22390,7 +23490,7 @@
},
"node_modules/jake/node_modules/supports-color": {
"version": "7.2.0",
- "dev": true,
+ "devOptional": true,
"license": "MIT",
"dependencies": {
"has-flag": "^4.0.0"
@@ -22445,19 +23545,6 @@
"node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0"
}
},
- "node_modules/jest-changed-files/node_modules/cross-spawn": {
- "version": "7.0.3",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "path-key": "^3.1.0",
- "shebang-command": "^2.0.0",
- "which": "^2.0.1"
- },
- "engines": {
- "node": ">= 8"
- }
- },
"node_modules/jest-changed-files/node_modules/execa": {
"version": "5.1.1",
"license": "MIT",
@@ -22499,47 +23586,6 @@
"node": ">=10.17.0"
}
},
- "node_modules/jest-changed-files/node_modules/path-key": {
- "version": "3.1.1",
- "license": "MIT",
- "optional": true,
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/jest-changed-files/node_modules/shebang-command": {
- "version": "2.0.0",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "shebang-regex": "^3.0.0"
- },
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/jest-changed-files/node_modules/shebang-regex": {
- "version": "3.0.0",
- "license": "MIT",
- "optional": true,
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/jest-changed-files/node_modules/which": {
- "version": "2.0.2",
- "license": "ISC",
- "optional": true,
- "dependencies": {
- "isexe": "^2.0.0"
- },
- "bin": {
- "node-which": "bin/node-which"
- },
- "engines": {
- "node": ">= 8"
- }
- },
"node_modules/jest-circus": {
"version": "27.5.1",
"license": "MIT",
@@ -22789,23 +23835,6 @@
"node": ">=8"
}
},
- "node_modules/jest-config/node_modules/parse-json": {
- "version": "5.2.0",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "@babel/code-frame": "^7.0.0",
- "error-ex": "^1.3.1",
- "json-parse-even-better-errors": "^2.3.0",
- "lines-and-columns": "^1.1.6"
- },
- "engines": {
- "node": ">=8"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
"node_modules/jest-config/node_modules/supports-color": {
"version": "7.2.0",
"license": "MIT",
@@ -22996,18 +24025,6 @@
"fsevents": "^2.3.2"
}
},
- "node_modules/jest-haste-map/node_modules/anymatch": {
- "version": "3.1.3",
- "devOptional": true,
- "license": "ISC",
- "dependencies": {
- "normalize-path": "^3.0.0",
- "picomatch": "^2.0.4"
- },
- "engines": {
- "node": ">= 8"
- }
- },
"node_modules/jest-haste-map/node_modules/fsevents": {
"version": "2.3.2",
"license": "MIT",
@@ -23417,19 +24434,6 @@
"url": "https://github.com/chalk/chalk?sponsor=1"
}
},
- "node_modules/jest-runtime/node_modules/cross-spawn": {
- "version": "7.0.3",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "path-key": "^3.1.0",
- "shebang-command": "^2.0.0",
- "which": "^2.0.1"
- },
- "engines": {
- "node": ">= 8"
- }
- },
"node_modules/jest-runtime/node_modules/execa": {
"version": "5.1.1",
"license": "MIT",
@@ -23479,33 +24483,6 @@
"node": ">=10.17.0"
}
},
- "node_modules/jest-runtime/node_modules/path-key": {
- "version": "3.1.1",
- "license": "MIT",
- "optional": true,
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/jest-runtime/node_modules/shebang-command": {
- "version": "2.0.0",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "shebang-regex": "^3.0.0"
- },
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/jest-runtime/node_modules/shebang-regex": {
- "version": "3.0.0",
- "license": "MIT",
- "optional": true,
- "engines": {
- "node": ">=8"
- }
- },
"node_modules/jest-runtime/node_modules/strip-bom": {
"version": "4.0.0",
"license": "MIT",
@@ -23525,20 +24502,6 @@
"node": ">=8"
}
},
- "node_modules/jest-runtime/node_modules/which": {
- "version": "2.0.2",
- "license": "ISC",
- "optional": true,
- "dependencies": {
- "isexe": "^2.0.0"
- },
- "bin": {
- "node-which": "bin/node-which"
- },
- "engines": {
- "node": ">= 8"
- }
- },
"node_modules/jest-serializer": {
"version": "27.5.1",
"devOptional": true,
@@ -23895,261 +24858,6 @@
"@babel/preset-env": "^7.1.6"
}
},
- "node_modules/jscodeshift/node_modules/@babel/code-frame": {
- "version": "7.16.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/highlight": "^7.16.0"
- },
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/jscodeshift/node_modules/@babel/compat-data": {
- "version": "7.16.4",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/jscodeshift/node_modules/@babel/core": {
- "version": "7.16.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/code-frame": "^7.16.0",
- "@babel/generator": "^7.16.0",
- "@babel/helper-compilation-targets": "^7.16.0",
- "@babel/helper-module-transforms": "^7.16.0",
- "@babel/helpers": "^7.16.0",
- "@babel/parser": "^7.16.0",
- "@babel/template": "^7.16.0",
- "@babel/traverse": "^7.16.0",
- "@babel/types": "^7.16.0",
- "convert-source-map": "^1.7.0",
- "debug": "^4.1.0",
- "gensync": "^1.0.0-beta.2",
- "json5": "^2.1.2",
- "semver": "^6.3.0",
- "source-map": "^0.5.0"
- },
- "engines": {
- "node": ">=6.9.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/babel"
- }
- },
- "node_modules/jscodeshift/node_modules/@babel/generator": {
- "version": "7.16.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/types": "^7.16.0",
- "jsesc": "^2.5.1",
- "source-map": "^0.5.0"
- },
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/jscodeshift/node_modules/@babel/helper-compilation-targets": {
- "version": "7.16.3",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/compat-data": "^7.16.0",
- "@babel/helper-validator-option": "^7.14.5",
- "browserslist": "^4.17.5",
- "semver": "^6.3.0"
- },
- "engines": {
- "node": ">=6.9.0"
- },
- "peerDependencies": {
- "@babel/core": "^7.0.0"
- }
- },
- "node_modules/jscodeshift/node_modules/@babel/helper-function-name": {
- "version": "7.16.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/helper-get-function-arity": "^7.16.0",
- "@babel/template": "^7.16.0",
- "@babel/types": "^7.16.0"
- },
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/jscodeshift/node_modules/@babel/helper-get-function-arity": {
- "version": "7.16.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/types": "^7.16.0"
- },
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/jscodeshift/node_modules/@babel/helper-hoist-variables": {
- "version": "7.16.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/types": "^7.16.0"
- },
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/jscodeshift/node_modules/@babel/helper-member-expression-to-functions": {
- "version": "7.16.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/types": "^7.16.0"
- },
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/jscodeshift/node_modules/@babel/helper-module-transforms": {
- "version": "7.16.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/helper-module-imports": "^7.16.0",
- "@babel/helper-replace-supers": "^7.16.0",
- "@babel/helper-simple-access": "^7.16.0",
- "@babel/helper-split-export-declaration": "^7.16.0",
- "@babel/helper-validator-identifier": "^7.15.7",
- "@babel/template": "^7.16.0",
- "@babel/traverse": "^7.16.0",
- "@babel/types": "^7.16.0"
- },
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/jscodeshift/node_modules/@babel/helper-optimise-call-expression": {
- "version": "7.16.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/types": "^7.16.0"
- },
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/jscodeshift/node_modules/@babel/helper-replace-supers": {
- "version": "7.16.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/helper-member-expression-to-functions": "^7.16.0",
- "@babel/helper-optimise-call-expression": "^7.16.0",
- "@babel/traverse": "^7.16.0",
- "@babel/types": "^7.16.0"
- },
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/jscodeshift/node_modules/@babel/helper-simple-access": {
- "version": "7.16.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/types": "^7.16.0"
- },
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/jscodeshift/node_modules/@babel/helper-split-export-declaration": {
- "version": "7.16.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/types": "^7.16.0"
- },
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/jscodeshift/node_modules/@babel/helper-validator-option": {
- "version": "7.14.5",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/jscodeshift/node_modules/@babel/helpers": {
- "version": "7.16.3",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/template": "^7.16.0",
- "@babel/traverse": "^7.16.3",
- "@babel/types": "^7.16.0"
- },
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/jscodeshift/node_modules/@babel/highlight": {
- "version": "7.16.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/helper-validator-identifier": "^7.15.7",
- "chalk": "^2.0.0",
- "js-tokens": "^4.0.0"
- },
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/jscodeshift/node_modules/@babel/template": {
- "version": "7.16.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/code-frame": "^7.16.0",
- "@babel/parser": "^7.16.0",
- "@babel/types": "^7.16.0"
- },
- "engines": {
- "node": ">=6.9.0"
- }
- },
- "node_modules/jscodeshift/node_modules/@babel/traverse": {
- "version": "7.16.3",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/code-frame": "^7.16.0",
- "@babel/generator": "^7.16.0",
- "@babel/helper-function-name": "^7.16.0",
- "@babel/helper-hoist-variables": "^7.16.0",
- "@babel/helper-split-export-declaration": "^7.16.0",
- "@babel/parser": "^7.16.3",
- "@babel/types": "^7.16.0",
- "debug": "^4.1.0",
- "globals": "^11.1.0"
- },
- "engines": {
- "node": ">=6.9.0"
- }
- },
"node_modules/jscodeshift/node_modules/braces": {
"version": "2.3.2",
"dev": true,
@@ -24181,42 +24889,6 @@
"node": ">=0.10.0"
}
},
- "node_modules/jscodeshift/node_modules/browserslist": {
- "version": "4.18.1",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "caniuse-lite": "^1.0.30001280",
- "electron-to-chromium": "^1.3.896",
- "escalade": "^3.1.1",
- "node-releases": "^2.0.1",
- "picocolors": "^1.0.0"
- },
- "bin": {
- "browserslist": "cli.js"
- },
- "engines": {
- "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/browserslist"
- }
- },
- "node_modules/jscodeshift/node_modules/caniuse-lite": {
- "version": "1.0.30001282",
- "dev": true,
- "license": "CC-BY-4.0",
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/browserslist"
- }
- },
- "node_modules/jscodeshift/node_modules/electron-to-chromium": {
- "version": "1.3.906",
- "dev": true,
- "license": "ISC"
- },
"node_modules/jscodeshift/node_modules/fill-range": {
"version": "4.0.0",
"dev": true,
@@ -24287,19 +24959,6 @@
"node": ">=0.10.0"
}
},
- "node_modules/jscodeshift/node_modules/node-releases": {
- "version": "2.0.1",
- "dev": true,
- "license": "MIT"
- },
- "node_modules/jscodeshift/node_modules/semver": {
- "version": "6.3.0",
- "dev": true,
- "license": "ISC",
- "bin": {
- "semver": "bin/semver.js"
- }
- },
"node_modules/jscodeshift/node_modules/to-regex-range": {
"version": "2.1.1",
"dev": true,
@@ -24424,13 +25083,24 @@
},
"node_modules/json-buffer": {
"version": "3.0.1",
- "dev": true,
+ "devOptional": true,
"license": "MIT"
},
- "node_modules/json-parse-better-errors": {
- "version": "1.0.2",
- "license": "MIT",
- "optional": true
+ "node_modules/json-file-plus": {
+ "version": "3.3.1",
+ "resolved": "https://registry.npmjs.org/json-file-plus/-/json-file-plus-3.3.1.tgz",
+ "integrity": "sha512-wo0q1UuiV5NsDPQDup1Km8IwEeqe+olr8tkWxeJq9Bjtcp7DZ0l+yrg28fSC3DEtrE311mhTZ54QGS6oiqnZEA==",
+ "optional": true,
+ "dependencies": {
+ "is": "^3.2.1",
+ "node.extend": "^2.0.0",
+ "object.assign": "^4.1.0",
+ "promiseback": "^2.0.2",
+ "safer-buffer": "^2.0.2"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ }
},
"node_modules/json-parse-even-better-errors": {
"version": "2.3.1",
@@ -24476,11 +25146,6 @@
"node": ">= 0.2.0"
}
},
- "node_modules/json3": {
- "version": "3.3.3",
- "license": "MIT",
- "optional": true
- },
"node_modules/json5": {
"version": "2.2.3",
"resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz",
@@ -24972,7 +25637,7 @@
},
"node_modules/keyv": {
"version": "4.0.3",
- "dev": true,
+ "devOptional": true,
"license": "MIT",
"dependencies": {
"json-buffer": "3.0.1"
@@ -24986,14 +25651,6 @@
"node": ">=0.10.0"
}
},
- "node_modules/klaw": {
- "version": "1.3.1",
- "license": "MIT",
- "optional": true,
- "optionalDependencies": {
- "graceful-fs": "^4.1.9"
- }
- },
"node_modules/kleur": {
"version": "3.0.3",
"devOptional": true,
@@ -25020,37 +25677,27 @@
"node": "> 0.8"
}
},
- "node_modules/lazy-cache": {
- "version": "1.0.4",
- "license": "MIT",
- "optional": true,
- "engines": {
- "node": ">=0.10.0"
- }
- },
"node_modules/lazy-universal-dotenv": {
- "version": "3.0.1",
- "license": "Apache-2.0",
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/lazy-universal-dotenv/-/lazy-universal-dotenv-4.0.0.tgz",
+ "integrity": "sha512-aXpZJRnTkpK6gQ/z4nk+ZBLd/Qdp118cvPruLSIQzQNRhKwEcdXCOzXuF55VDqIiuAaY3UGZ10DJtvZzDcvsxg==",
"optional": true,
"dependencies": {
- "@babel/runtime": "^7.5.0",
"app-root-dir": "^1.0.2",
- "core-js": "^3.0.4",
- "dotenv": "^8.0.0",
- "dotenv-expand": "^5.1.0"
+ "dotenv": "^16.0.0",
+ "dotenv-expand": "^10.0.0"
},
"engines": {
- "node": ">=6.0.0",
- "npm": ">=6.0.0",
- "yarn": ">=1.0.0"
+ "node": ">=14.0.0"
}
},
"node_modules/lazy-universal-dotenv/node_modules/dotenv": {
- "version": "8.6.0",
- "license": "BSD-2-Clause",
+ "version": "16.0.3",
+ "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-16.0.3.tgz",
+ "integrity": "sha512-7GO6HghkA5fYG9TYnNxi14/7K9f5occMlp3zXAuSxn7CKCxt9xbNWG7yF8hTCSUchlfWSe3uLmlPfigevRItzQ==",
"optional": true,
"engines": {
- "node": ">=10"
+ "node": ">=12"
}
},
"node_modules/leven": {
@@ -25158,21 +25805,6 @@
"node": ">= 6"
}
},
- "node_modules/lint-staged/node_modules/cosmiconfig": {
- "version": "7.0.0",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "@types/parse-json": "^4.0.0",
- "import-fresh": "^3.2.1",
- "parse-json": "^5.0.0",
- "path-type": "^4.0.0",
- "yaml": "^1.10.0"
- },
- "engines": {
- "node": ">=10"
- }
- },
"node_modules/lint-staged/node_modules/has-flag": {
"version": "4.0.0",
"license": "MIT",
@@ -25181,21 +25813,6 @@
"node": ">=8"
}
},
- "node_modules/lint-staged/node_modules/import-fresh": {
- "version": "3.3.0",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "parent-module": "^1.0.0",
- "resolve-from": "^4.0.0"
- },
- "engines": {
- "node": ">=6"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
"node_modules/lint-staged/node_modules/log-symbols": {
"version": "4.1.0",
"license": "MIT",
@@ -25211,31 +25828,6 @@
"url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/lint-staged/node_modules/parse-json": {
- "version": "5.2.0",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "@babel/code-frame": "^7.0.0",
- "error-ex": "^1.3.1",
- "json-parse-even-better-errors": "^2.3.0",
- "lines-and-columns": "^1.1.6"
- },
- "engines": {
- "node": ">=8"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/lint-staged/node_modules/resolve-from": {
- "version": "4.0.0",
- "license": "MIT",
- "optional": true,
- "engines": {
- "node": ">=4"
- }
- },
"node_modules/lint-staged/node_modules/slice-ansi": {
"version": "3.0.0",
"license": "MIT",
@@ -25614,38 +26206,6 @@
"node": ">=6"
}
},
- "node_modules/loader-runner": {
- "version": "2.4.0",
- "license": "MIT",
- "optional": true,
- "engines": {
- "node": ">=4.3.0 <5.0.0 || >=5.10"
- }
- },
- "node_modules/loader-utils": {
- "version": "1.4.0",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "big.js": "^5.2.2",
- "emojis-list": "^3.0.0",
- "json5": "^1.0.1"
- },
- "engines": {
- "node": ">=4.0.0"
- }
- },
- "node_modules/loader-utils/node_modules/json5": {
- "version": "1.0.1",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "minimist": "^1.2.0"
- },
- "bin": {
- "json5": "lib/cli.js"
- }
- },
"node_modules/locate-path": {
"version": "3.0.0",
"devOptional": true,
@@ -25675,16 +26235,59 @@
"dev": true,
"license": "MIT"
},
+ "node_modules/lodash.clone": {
+ "version": "4.5.0",
+ "resolved": "https://registry.npmjs.org/lodash.clone/-/lodash.clone-4.5.0.tgz",
+ "integrity": "sha512-GhrVeweiTD6uTmmn5hV/lzgCQhccwReIVRLHp7LT4SopOjqEZ5BbX8b5WWEtAKasjmy8hR7ZPwsYlxRCku5odg==",
+ "optional": true
+ },
+ "node_modules/lodash.clonedeep": {
+ "version": "4.5.0",
+ "resolved": "https://registry.npmjs.org/lodash.clonedeep/-/lodash.clonedeep-4.5.0.tgz",
+ "integrity": "sha512-H5ZhCF25riFd9uB5UCkVKo61m3S/xZk1x4wA6yp/L3RFP6Z/eHH1ymQcGLo7J3GMPfm0V/7m1tryHuGVxpqEBQ==",
+ "optional": true
+ },
+ "node_modules/lodash.constant": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/lodash.constant/-/lodash.constant-3.0.0.tgz",
+ "integrity": "sha512-X5XMrB+SdI1mFa81162NSTo/YNd23SLdLOLzcXTwS4inDZ5YCL8X67UFzZJAH4CqIa6R8cr56CShfA5K5MFiYQ==",
+ "optional": true
+ },
"node_modules/lodash.debounce": {
"version": "4.0.8",
- "devOptional": true,
- "license": "MIT"
+ "resolved": "https://registry.npmjs.org/lodash.debounce/-/lodash.debounce-4.0.8.tgz",
+ "integrity": "sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==",
+ "devOptional": true
+ },
+ "node_modules/lodash.filter": {
+ "version": "4.6.0",
+ "resolved": "https://registry.npmjs.org/lodash.filter/-/lodash.filter-4.6.0.tgz",
+ "integrity": "sha512-pXYUy7PR8BCLwX5mgJ/aNtyOvuJTdZAo9EQFUvMIYugqmJxnrYaANvTbgndOzHSCSR0wnlBBfRXJL5SbWxo3FQ==",
+ "optional": true
+ },
+ "node_modules/lodash.flatmap": {
+ "version": "4.5.0",
+ "resolved": "https://registry.npmjs.org/lodash.flatmap/-/lodash.flatmap-4.5.0.tgz",
+ "integrity": "sha512-/OcpcAGWlrZyoHGeHh3cAoa6nGdX6QYtmzNP84Jqol6UEQQ2gIaU3H+0eICcjcKGl0/XF8LWOujNn9lffsnaOg==",
+ "optional": true
+ },
+ "node_modules/lodash.foreach": {
+ "version": "4.5.0",
+ "resolved": "https://registry.npmjs.org/lodash.foreach/-/lodash.foreach-4.5.0.tgz",
+ "integrity": "sha512-aEXTF4d+m05rVOAUG3z4vZZ4xVexLKZGF0lIxuHZ1Hplpk/3B6Z1+/ICICYRLm7c41Z2xiejbkCkJoTlypoXhQ==",
+ "optional": true
},
"node_modules/lodash.get": {
"version": "4.4.2",
"dev": true,
"license": "MIT"
},
+ "node_modules/lodash.has": {
+ "version": "4.5.2",
+ "resolved": "https://registry.npmjs.org/lodash.has/-/lodash.has-4.5.2.tgz",
+ "integrity": "sha512-rnYUdIo6xRCJnQmbVFEwcxF144erlD+M3YcJUVesflU9paQaE8p+fJDcIQrlMYbxoANFL+AB9hZrzSBBk5PL+g==",
+ "optional": true
+ },
"node_modules/lodash.includes": {
"version": "4.3.0",
"dev": true,
@@ -25734,6 +26337,24 @@
"devOptional": true,
"license": "MIT"
},
+ "node_modules/lodash.isundefined": {
+ "version": "3.0.1",
+ "resolved": "https://registry.npmjs.org/lodash.isundefined/-/lodash.isundefined-3.0.1.tgz",
+ "integrity": "sha512-MXB1is3s899/cD8jheYYE2V9qTHwKvt+npCwpD+1Sxm3Q3cECXCiYHjeHWXNwr6Q0SOBPrYUDxendrO6goVTEA==",
+ "optional": true
+ },
+ "node_modules/lodash.keys": {
+ "version": "4.2.0",
+ "resolved": "https://registry.npmjs.org/lodash.keys/-/lodash.keys-4.2.0.tgz",
+ "integrity": "sha512-J79MkJcp7Df5mizHiVNpjoHXLi4HLjh9VLS/M7lQSGoQ+0oQ+lWEigREkqKyizPB1IawvQLLKY8mzEcm1tkyxQ==",
+ "optional": true
+ },
+ "node_modules/lodash.map": {
+ "version": "4.6.0",
+ "resolved": "https://registry.npmjs.org/lodash.map/-/lodash.map-4.6.0.tgz",
+ "integrity": "sha512-worNHGKLDetmcEYDvh2stPCrrQRkP20E4l0iIS7F8EvzMqBBi7ltvFN5m1HvTf1P7Jk1txKhvFcmYsCr8O2F1Q==",
+ "optional": true
+ },
"node_modules/lodash.memoize": {
"version": "4.1.2",
"license": "MIT",
@@ -25749,11 +26370,23 @@
"devOptional": true,
"license": "MIT"
},
+ "node_modules/lodash.reduce": {
+ "version": "4.6.0",
+ "resolved": "https://registry.npmjs.org/lodash.reduce/-/lodash.reduce-4.6.0.tgz",
+ "integrity": "sha512-6raRe2vxCYBhpBu+B+TtNGUzah+hQjVdu3E17wfusjyrXBka2nBS8OH/gjVZ5PvHOhWmIZTYri09Z6n/QfnNMw==",
+ "optional": true
+ },
"node_modules/lodash.set": {
"version": "4.3.2",
"dev": true,
"license": "MIT"
},
+ "node_modules/lodash.size": {
+ "version": "4.2.0",
+ "resolved": "https://registry.npmjs.org/lodash.size/-/lodash.size-4.2.0.tgz",
+ "integrity": "sha512-wbu3SF1XC5ijqm0piNxw59yCbuUf2kaShumYBLWUrcCvwh6C8odz6SY/wGVzCWTQTFL/1Ygbvqg2eLtspUVVAQ==",
+ "optional": true
+ },
"node_modules/lodash.sortby": {
"version": "4.7.0",
"dev": true,
@@ -25769,11 +26402,35 @@
"version": "4.1.1",
"license": "MIT"
},
+ "node_modules/lodash.topairs": {
+ "version": "4.3.0",
+ "resolved": "https://registry.npmjs.org/lodash.topairs/-/lodash.topairs-4.3.0.tgz",
+ "integrity": "sha512-qrRMbykBSEGdOgQLJJqVSdPWMD7Q+GJJ5jMRfQYb+LTLsw3tYVIabnCzRqTJb2WTo17PG5gNzXuFaZgYH/9SAQ==",
+ "optional": true
+ },
+ "node_modules/lodash.transform": {
+ "version": "4.6.0",
+ "resolved": "https://registry.npmjs.org/lodash.transform/-/lodash.transform-4.6.0.tgz",
+ "integrity": "sha512-LO37ZnhmBVx0GvOU/caQuipEh4GN82TcWv3yHlebGDgOxbxiwwzW5Pcx2AcvpIv2WmvmSMoC492yQFNhy/l/UQ==",
+ "optional": true
+ },
"node_modules/lodash.truncate": {
"version": "4.4.2",
"license": "MIT",
"optional": true
},
+ "node_modules/lodash.union": {
+ "version": "4.6.0",
+ "resolved": "https://registry.npmjs.org/lodash.union/-/lodash.union-4.6.0.tgz",
+ "integrity": "sha512-c4pB2CdGrGdjMKYLA+XiRDO7Y0PRQbm/Gzg8qMj+QH+pFVAoTp5sBpO0odL3FjoPCGjK96p6qsP+yQoiLoOBcw==",
+ "optional": true
+ },
+ "node_modules/lodash.values": {
+ "version": "4.3.0",
+ "resolved": "https://registry.npmjs.org/lodash.values/-/lodash.values-4.3.0.tgz",
+ "integrity": "sha512-r0RwvdCv8id9TUblb/O7rYPwVy6lerCbcawrfdo9iC/1t1wsNMJknO79WNBgwkH0hIeJ08jmvvESbFpNb4jH0Q==",
+ "optional": true
+ },
"node_modules/log-symbols": {
"version": "1.0.2",
"dev": true,
@@ -25931,7 +26588,7 @@
},
"node_modules/lower-case": {
"version": "2.0.2",
- "devOptional": true,
+ "dev": true,
"license": "MIT",
"dependencies": {
"tslib": "^2.0.3"
@@ -25947,21 +26604,12 @@
},
"node_modules/lowercase-keys": {
"version": "2.0.0",
- "dev": true,
+ "devOptional": true,
"license": "MIT",
"engines": {
"node": ">=8"
}
},
- "node_modules/lowlight": {
- "version": "1.11.0",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "fault": "^1.0.2",
- "highlight.js": "~9.13.0"
- }
- },
"node_modules/lru-cache": {
"version": "6.0.0",
"license": "ISC",
@@ -26033,7 +26681,7 @@
},
"node_modules/map-cache": {
"version": "0.2.2",
- "devOptional": true,
+ "dev": true,
"license": "MIT",
"engines": {
"node": ">=0.10.0"
@@ -26053,7 +26701,8 @@
},
"node_modules/map-or-similar": {
"version": "1.5.0",
- "license": "MIT",
+ "resolved": "https://registry.npmjs.org/map-or-similar/-/map-or-similar-1.5.0.tgz",
+ "integrity": "sha512-0aF7ZmVon1igznGI4VS30yugpduQW3y3GkcgGJOp7d8x8QrizhigUxjI/m2UojsXXto+jLAH3KSz+xOJTiORjg==",
"optional": true
},
"node_modules/map-stream": {
@@ -26062,7 +26711,7 @@
},
"node_modules/map-visit": {
"version": "1.0.0",
- "devOptional": true,
+ "dev": true,
"license": "MIT",
"dependencies": {
"object-visit": "^1.0.0"
@@ -26105,15 +26754,12 @@
}
},
"node_modules/markdown-to-jsx": {
- "version": "6.11.4",
- "license": "MIT",
+ "version": "7.2.0",
+ "resolved": "https://registry.npmjs.org/markdown-to-jsx/-/markdown-to-jsx-7.2.0.tgz",
+ "integrity": "sha512-3l4/Bigjm4bEqjCR6Xr+d4DtM1X6vvtGsMGSjJYyep8RjjIvcWtrXBS8Wbfe1/P+atKNMccpsraESIaWVplzVg==",
"optional": true,
- "dependencies": {
- "prop-types": "^15.6.2",
- "unquote": "^1.1.0"
- },
"engines": {
- "node": ">= 4"
+ "node": ">= 10"
},
"peerDependencies": {
"react": ">= 0.14.0"
@@ -26139,16 +26785,6 @@
"is-buffer": "~1.1.6"
}
},
- "node_modules/md5.js": {
- "version": "1.3.5",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "hash-base": "^3.0.0",
- "inherits": "^2.0.1",
- "safe-buffer": "^5.1.2"
- }
- },
"node_modules/mdast-add-list-metadata": {
"version": "1.0.1",
"license": "MIT",
@@ -26156,10 +26792,67 @@
"unist-util-visit-parents": "1.1.2"
}
},
- "node_modules/mdn-data": {
- "version": "2.0.4",
- "license": "CC0-1.0",
- "optional": true
+ "node_modules/mdast-util-definitions": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/mdast-util-definitions/-/mdast-util-definitions-4.0.0.tgz",
+ "integrity": "sha512-k8AJ6aNnUkB7IE+5azR9h81O5EQ/cTDXtWdMq9Kk5KcEW/8ritU5CeLg/9HhOC++nALHBlaogJ5jz0Ybk3kPMQ==",
+ "optional": true,
+ "dependencies": {
+ "unist-util-visit": "^2.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/mdast-util-definitions/node_modules/unist-util-is": {
+ "version": "4.1.0",
+ "resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-4.1.0.tgz",
+ "integrity": "sha512-ZOQSsnce92GrxSqlnEEseX0gi7GH9zTJZ0p9dtu87WRb/37mMPO2Ilx1s/t9vBHrFhbgweUwb+t7cIn5dxPhZg==",
+ "optional": true,
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/mdast-util-definitions/node_modules/unist-util-visit": {
+ "version": "2.0.3",
+ "resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-2.0.3.tgz",
+ "integrity": "sha512-iJ4/RczbJMkD0712mGktuGpm/U4By4FfDonL7N/9tATGIF4imikjOuagyMY53tnZq3NP6BcmlrHhEKAfGWjh7Q==",
+ "optional": true,
+ "dependencies": {
+ "@types/unist": "^2.0.0",
+ "unist-util-is": "^4.0.0",
+ "unist-util-visit-parents": "^3.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/mdast-util-definitions/node_modules/unist-util-visit-parents": {
+ "version": "3.1.1",
+ "resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-3.1.1.tgz",
+ "integrity": "sha512-1KROIZWo6bcMrZEwiH2UrXDyalAa0uqzWCxCJj6lPOvTve2WkfgCytoDTPaMnodXh1WrXOq0haVYHj99ynJlsg==",
+ "optional": true,
+ "dependencies": {
+ "@types/unist": "^2.0.0",
+ "unist-util-is": "^4.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/mdast-util-to-string": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/mdast-util-to-string/-/mdast-util-to-string-1.1.0.tgz",
+ "integrity": "sha512-jVU0Nr2B9X3MU4tSK7JP1CMkSvOj7X5l/GboG1tKRw52lLF1x2Ju92Ms9tNetCcbfX3hzlM73zYo2NKkWSfF/A==",
+ "optional": true,
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
},
"node_modules/mdurl": {
"version": "1.0.1",
@@ -26180,21 +26873,13 @@
},
"node_modules/memoizerific": {
"version": "1.11.3",
- "license": "MIT",
+ "resolved": "https://registry.npmjs.org/memoizerific/-/memoizerific-1.11.3.tgz",
+ "integrity": "sha512-/EuHYwAPdLtXwAwSZkh/Gutery6pD2KYd44oQLhAvQp/50mpyduZh8Q7PYHXTCJ+wuXxt7oij2LXyIJOOYFPog==",
"optional": true,
"dependencies": {
"map-or-similar": "^1.5.0"
}
},
- "node_modules/memory-fs": {
- "version": "0.4.1",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "errno": "^0.1.3",
- "readable-stream": "^2.0.1"
- }
- },
"node_modules/meow": {
"version": "6.1.1",
"resolved": "https://registry.npmjs.org/meow/-/meow-6.1.1.tgz",
@@ -26245,30 +26930,6 @@
"node": ">=6"
}
},
- "node_modules/merge-deep": {
- "version": "3.0.3",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "arr-union": "^3.1.0",
- "clone-deep": "^0.2.4",
- "kind-of": "^3.0.2"
- },
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/merge-deep/node_modules/kind-of": {
- "version": "3.2.2",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "is-buffer": "^1.1.5"
- },
- "engines": {
- "node": ">=0.10.0"
- }
- },
"node_modules/merge-descriptors": {
"version": "1.0.1",
"devOptional": true,
@@ -26309,11 +26970,6 @@
"node": ">= 0.6"
}
},
- "node_modules/microevent.ts": {
- "version": "0.1.1",
- "devOptional": true,
- "license": "MIT"
- },
"node_modules/micromatch": {
"version": "4.0.5",
"license": "MIT",
@@ -26325,23 +26981,6 @@
"node": ">=8.6"
}
},
- "node_modules/miller-rabin": {
- "version": "4.0.1",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "bn.js": "^4.0.0",
- "brorand": "^1.0.1"
- },
- "bin": {
- "miller-rabin": "bin/miller-rabin"
- }
- },
- "node_modules/miller-rabin/node_modules/bn.js": {
- "version": "4.12.0",
- "license": "MIT",
- "optional": true
- },
"node_modules/mime": {
"version": "1.6.0",
"resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz",
@@ -26390,13 +27029,6 @@
"node": ">=4"
}
},
- "node_modules/min-document": {
- "version": "2.19.0",
- "optional": true,
- "dependencies": {
- "dom-walk": "^0.1.0"
- }
- },
"node_modules/min-indent": {
"version": "1.0.1",
"devOptional": true,
@@ -26417,67 +27049,6 @@
"react": "^0.14.0 || ^15.0.0 || ^16.0.0 || ^17.0.0"
}
},
- "node_modules/mini-css-extract-plugin": {
- "version": "0.7.0",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "loader-utils": "^1.1.0",
- "normalize-url": "1.9.1",
- "schema-utils": "^1.0.0",
- "webpack-sources": "^1.1.0"
- },
- "engines": {
- "node": ">= 6.9.0"
- },
- "peerDependencies": {
- "webpack": "^4.4.0"
- }
- },
- "node_modules/mini-css-extract-plugin/node_modules/normalize-url": {
- "version": "1.9.1",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "object-assign": "^4.0.1",
- "prepend-http": "^1.0.0",
- "query-string": "^4.1.0",
- "sort-keys": "^1.0.0"
- },
- "engines": {
- "node": ">=4"
- }
- },
- "node_modules/mini-css-extract-plugin/node_modules/query-string": {
- "version": "4.3.4",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "object-assign": "^4.1.0",
- "strict-uri-encode": "^1.0.0"
- },
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/mini-css-extract-plugin/node_modules/strict-uri-encode": {
- "version": "1.1.0",
- "license": "MIT",
- "optional": true,
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/minimalistic-assert": {
- "version": "1.0.1",
- "license": "ISC",
- "optional": true
- },
- "node_modules/minimalistic-crypto-utils": {
- "version": "1.0.1",
- "license": "MIT",
- "optional": true
- },
"node_modules/minimatch": {
"version": "3.0.4",
"devOptional": true,
@@ -26512,8 +27083,31 @@
}
},
"node_modules/minipass": {
- "version": "3.1.3",
- "license": "ISC",
+ "version": "5.0.0",
+ "resolved": "https://registry.npmjs.org/minipass/-/minipass-5.0.0.tgz",
+ "integrity": "sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==",
+ "optional": true,
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/minizlib": {
+ "version": "2.1.2",
+ "resolved": "https://registry.npmjs.org/minizlib/-/minizlib-2.1.2.tgz",
+ "integrity": "sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==",
+ "optional": true,
+ "dependencies": {
+ "minipass": "^3.0.0",
+ "yallist": "^4.0.0"
+ },
+ "engines": {
+ "node": ">= 8"
+ }
+ },
+ "node_modules/minizlib/node_modules/minipass": {
+ "version": "3.3.6",
+ "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz",
+ "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==",
"optional": true,
"dependencies": {
"yallist": "^4.0.0"
@@ -26522,62 +27116,9 @@
"node": ">=8"
}
},
- "node_modules/minipass-collect": {
- "version": "1.0.2",
- "license": "ISC",
- "optional": true,
- "dependencies": {
- "minipass": "^3.0.0"
- },
- "engines": {
- "node": ">= 8"
- }
- },
- "node_modules/minipass-flush": {
- "version": "1.0.5",
- "license": "ISC",
- "optional": true,
- "dependencies": {
- "minipass": "^3.0.0"
- },
- "engines": {
- "node": ">= 8"
- }
- },
- "node_modules/minipass-pipeline": {
- "version": "1.2.4",
- "license": "ISC",
- "optional": true,
- "dependencies": {
- "minipass": "^3.0.0"
- },
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/mississippi": {
- "version": "3.0.0",
- "license": "BSD-2-Clause",
- "optional": true,
- "dependencies": {
- "concat-stream": "^1.5.0",
- "duplexify": "^3.4.2",
- "end-of-stream": "^1.1.0",
- "flush-write-stream": "^1.0.0",
- "from2": "^2.1.0",
- "parallel-transform": "^1.1.0",
- "pump": "^3.0.0",
- "pumpify": "^1.3.3",
- "stream-each": "^1.1.0",
- "through2": "^2.0.0"
- },
- "engines": {
- "node": ">=4.0.0"
- }
- },
"node_modules/mixin-deep": {
"version": "1.3.2",
- "devOptional": true,
+ "dev": true,
"license": "MIT",
"dependencies": {
"for-in": "^1.0.2",
@@ -26589,7 +27130,7 @@
},
"node_modules/mixin-deep/node_modules/is-extendable": {
"version": "1.0.1",
- "devOptional": true,
+ "dev": true,
"license": "MIT",
"dependencies": {
"is-plain-object": "^2.0.4"
@@ -26598,26 +27139,6 @@
"node": ">=0.10.0"
}
},
- "node_modules/mixin-object": {
- "version": "2.0.1",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "for-in": "^0.1.3",
- "is-extendable": "^0.1.1"
- },
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/mixin-object/node_modules/for-in": {
- "version": "0.1.8",
- "license": "MIT",
- "optional": true,
- "engines": {
- "node": ">=0.10.0"
- }
- },
"node_modules/mixme": {
"version": "0.5.5",
"resolved": "https://registry.npmjs.org/mixme/-/mixme-0.5.5.tgz",
@@ -26638,6 +27159,12 @@
"mkdirp": "bin/cmd.js"
}
},
+ "node_modules/mkdirp-classic": {
+ "version": "0.5.3",
+ "resolved": "https://registry.npmjs.org/mkdirp-classic/-/mkdirp-classic-0.5.3.tgz",
+ "integrity": "sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A==",
+ "optional": true
+ },
"node_modules/mocha-junit-reporter": {
"version": "2.0.2",
"license": "MIT",
@@ -27194,28 +27721,13 @@
"dev": true,
"license": "MIT"
},
- "node_modules/move-concurrently": {
- "version": "1.0.1",
- "license": "ISC",
+ "node_modules/mri": {
+ "version": "1.2.0",
+ "resolved": "https://registry.npmjs.org/mri/-/mri-1.2.0.tgz",
+ "integrity": "sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA==",
"optional": true,
- "dependencies": {
- "aproba": "^1.1.1",
- "copy-concurrently": "^1.0.0",
- "fs-write-stream-atomic": "^1.0.8",
- "mkdirp": "^0.5.1",
- "rimraf": "^2.5.4",
- "run-queue": "^1.0.3"
- }
- },
- "node_modules/move-concurrently/node_modules/rimraf": {
- "version": "2.7.1",
- "license": "ISC",
- "optional": true,
- "dependencies": {
- "glob": "^7.1.3"
- },
- "bin": {
- "rimraf": "bin.js"
+ "engines": {
+ "node": ">=4"
}
},
"node_modules/ms": {
@@ -27224,7 +27736,7 @@
},
"node_modules/mute-stream": {
"version": "0.0.8",
- "devOptional": true,
+ "dev": true,
"license": "ISC"
},
"node_modules/nan": {
@@ -27244,7 +27756,7 @@
},
"node_modules/nanomatch": {
"version": "1.2.13",
- "devOptional": true,
+ "dev": true,
"license": "MIT",
"dependencies": {
"arr-diff": "^4.0.0",
@@ -27282,11 +27794,6 @@
"devOptional": true,
"license": "MIT"
},
- "node_modules/nice-try": {
- "version": "1.0.5",
- "license": "MIT",
- "optional": true
- },
"node_modules/nocache": {
"version": "2.1.0",
"dev": true,
@@ -27327,6 +27834,12 @@
"node": "4.x || >=6.0.0"
}
},
+ "node_modules/node-fetch-native": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/node-fetch-native/-/node-fetch-native-1.1.0.tgz",
+ "integrity": "sha512-nl5goFCig93JZ9FIV8GHT9xpNqXbxQUzkOmKIMKmncsBH9jhg7qKex8hirpymkBFmNQ114chEEG5lS4wgK2I+Q==",
+ "optional": true
+ },
"node_modules/node-html-parser": {
"version": "5.4.2",
"dev": true,
@@ -27392,46 +27905,25 @@
"devOptional": true,
"license": "MIT"
},
- "node_modules/node-libs-browser": {
- "version": "2.2.1",
- "license": "MIT",
+ "node_modules/node-releases": {
+ "version": "2.0.10",
+ "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.10.tgz",
+ "integrity": "sha512-5GFldHPXVG/YZmFzJvKK2zDSzPKhEp0+ZR5SVaoSag9fsL5YgHbUHDfnG5494ISANDcK4KwPXAx2xqVEydmd7w==",
+ "devOptional": true
+ },
+ "node_modules/node.extend": {
+ "version": "2.0.2",
+ "resolved": "https://registry.npmjs.org/node.extend/-/node.extend-2.0.2.tgz",
+ "integrity": "sha512-pDT4Dchl94/+kkgdwyS2PauDFjZG0Hk0IcHIB+LkW27HLDtdoeMxHTxZh39DYbPP8UflWXWj9JcdDozF+YDOpQ==",
"optional": true,
"dependencies": {
- "assert": "^1.1.1",
- "browserify-zlib": "^0.2.0",
- "buffer": "^4.3.0",
- "console-browserify": "^1.1.0",
- "constants-browserify": "^1.0.0",
- "crypto-browserify": "^3.11.0",
- "domain-browser": "^1.1.1",
- "events": "^3.0.0",
- "https-browserify": "^1.0.0",
- "os-browserify": "^0.3.0",
- "path-browserify": "0.0.1",
- "process": "^0.11.10",
- "punycode": "^1.2.4",
- "querystring-es3": "^0.2.0",
- "readable-stream": "^2.3.3",
- "stream-browserify": "^2.0.1",
- "stream-http": "^2.7.2",
- "string_decoder": "^1.0.0",
- "timers-browserify": "^2.0.4",
- "tty-browserify": "0.0.0",
- "url": "^0.11.0",
- "util": "^0.11.0",
- "vm-browserify": "^1.0.1"
+ "has": "^1.0.3",
+ "is": "^3.2.1"
+ },
+ "engines": {
+ "node": ">=0.4.0"
}
},
- "node_modules/node-libs-browser/node_modules/punycode": {
- "version": "1.4.1",
- "license": "MIT",
- "optional": true
- },
- "node_modules/node-releases": {
- "version": "1.1.71",
- "devOptional": true,
- "license": "MIT"
- },
"node_modules/normalize-package-data": {
"version": "2.5.0",
"devOptional": true,
@@ -27459,14 +27951,6 @@
"node": ">=0.10.0"
}
},
- "node_modules/normalize-range": {
- "version": "0.1.2",
- "license": "MIT",
- "optional": true,
- "engines": {
- "node": ">=0.10.0"
- }
- },
"node_modules/npm-run-path": {
"version": "4.0.1",
"devOptional": true,
@@ -27478,31 +27962,16 @@
"node": ">=8"
}
},
- "node_modules/npm-run-path/node_modules/path-key": {
- "version": "3.1.1",
- "devOptional": true,
- "license": "MIT",
- "engines": {
- "node": ">=8"
- }
- },
"node_modules/npmlog": {
- "version": "4.1.2",
- "license": "ISC",
+ "version": "5.0.1",
+ "resolved": "https://registry.npmjs.org/npmlog/-/npmlog-5.0.1.tgz",
+ "integrity": "sha512-AqZtDUWOMKs1G/8lwylVjrdYgqA4d9nu8hc+0gzRxlDb1I10+FHBGMXs6aiQHFdCUUlqH99MUMuLfzWDNDtfxw==",
"optional": true,
"dependencies": {
- "are-we-there-yet": "~1.1.2",
- "console-control-strings": "~1.1.0",
- "gauge": "~2.7.3",
- "set-blocking": "~2.0.0"
- }
- },
- "node_modules/nth-check": {
- "version": "1.0.2",
- "license": "BSD-2-Clause",
- "optional": true,
- "dependencies": {
- "boolbase": "~1.0.0"
+ "are-we-there-yet": "^2.0.0",
+ "console-control-strings": "^1.1.0",
+ "gauge": "^3.0.0",
+ "set-blocking": "^2.0.0"
}
},
"node_modules/nub": {
@@ -27513,14 +27982,9 @@
"version": "1.1.1",
"license": "MIT"
},
- "node_modules/num2fraction": {
- "version": "1.2.2",
- "license": "MIT",
- "optional": true
- },
"node_modules/number-is-nan": {
"version": "1.0.1",
- "devOptional": true,
+ "dev": true,
"license": "MIT",
"engines": {
"node": ">=0.10.0"
@@ -27540,7 +28004,7 @@
},
"node_modules/object-copy": {
"version": "0.1.0",
- "devOptional": true,
+ "dev": true,
"license": "MIT",
"dependencies": {
"copy-descriptor": "^0.1.0",
@@ -27553,7 +28017,7 @@
},
"node_modules/object-copy/node_modules/define-property": {
"version": "0.2.5",
- "devOptional": true,
+ "dev": true,
"license": "MIT",
"dependencies": {
"is-descriptor": "^0.1.0"
@@ -27564,7 +28028,7 @@
},
"node_modules/object-copy/node_modules/kind-of": {
"version": "3.2.2",
- "devOptional": true,
+ "dev": true,
"license": "MIT",
"dependencies": {
"is-buffer": "^1.1.5"
@@ -27573,6 +28037,15 @@
"node": ">=0.10.0"
}
},
+ "node_modules/object-hash": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/object-hash/-/object-hash-3.0.0.tgz",
+ "integrity": "sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==",
+ "optional": true,
+ "engines": {
+ "node": ">= 6"
+ }
+ },
"node_modules/object-inspect": {
"version": "1.12.2",
"license": "MIT",
@@ -27605,7 +28078,7 @@
},
"node_modules/object-visit": {
"version": "1.0.1",
- "devOptional": true,
+ "dev": true,
"license": "MIT",
"dependencies": {
"isobject": "^3.0.0"
@@ -27631,56 +28104,9 @@
"url": "https://github.com/sponsors/ljharb"
}
},
- "node_modules/object.entries": {
- "version": "1.1.3",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "call-bind": "^1.0.0",
- "define-properties": "^1.1.3",
- "es-abstract": "^1.18.0-next.1",
- "has": "^1.0.3"
- },
- "engines": {
- "node": ">= 0.4"
- }
- },
- "node_modules/object.fromentries": {
- "version": "2.0.4",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "call-bind": "^1.0.2",
- "define-properties": "^1.1.3",
- "es-abstract": "^1.18.0-next.2",
- "has": "^1.0.3"
- },
- "engines": {
- "node": ">= 0.4"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/object.getownpropertydescriptors": {
- "version": "2.1.2",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "call-bind": "^1.0.2",
- "define-properties": "^1.1.3",
- "es-abstract": "^1.18.0-next.2"
- },
- "engines": {
- "node": ">= 0.8"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
"node_modules/object.pick": {
"version": "1.3.0",
- "devOptional": true,
+ "dev": true,
"license": "MIT",
"dependencies": {
"isobject": "^3.0.1"
@@ -27719,7 +28145,7 @@
},
"node_modules/on-headers": {
"version": "1.0.2",
- "dev": true,
+ "devOptional": true,
"license": "MIT",
"engines": {
"node": ">= 0.8"
@@ -27747,15 +28173,17 @@
}
},
"node_modules/open": {
- "version": "7.4.2",
- "license": "MIT",
+ "version": "8.4.2",
+ "resolved": "https://registry.npmjs.org/open/-/open-8.4.2.tgz",
+ "integrity": "sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ==",
"optional": true,
"dependencies": {
- "is-docker": "^2.0.0",
- "is-wsl": "^2.1.1"
+ "define-lazy-prop": "^2.0.0",
+ "is-docker": "^2.1.1",
+ "is-wsl": "^2.2.0"
},
"engines": {
- "node": ">=8"
+ "node": ">=12"
},
"funding": {
"url": "https://github.com/sponsors/sindresorhus"
@@ -27903,19 +28331,6 @@
"resolved": "https://registry.npmjs.org/orderedmap/-/orderedmap-1.1.8.tgz",
"integrity": "sha512-eWEYOAggZZpZbJ9CTsqAKOTxlbBHdHZ8pzcfEvNTxGrjQ/m+Q25nSWUiMlT9MTbgpB6FOiBDKqsgJ2FlLDVNaw=="
},
- "node_modules/original": {
- "version": "1.0.2",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "url-parse": "^1.4.3"
- }
- },
- "node_modules/os-browserify": {
- "version": "0.3.0",
- "license": "MIT",
- "optional": true
- },
"node_modules/os-name": {
"version": "4.0.0",
"dev": true,
@@ -27933,7 +28348,7 @@
},
"node_modules/os-tmpdir": {
"version": "1.0.2",
- "devOptional": true,
+ "dev": true,
"license": "MIT",
"engines": {
"node": ">=0.10.0"
@@ -27952,7 +28367,7 @@
},
"node_modules/p-cancelable": {
"version": "2.1.0",
- "dev": true,
+ "devOptional": true,
"license": "MIT",
"engines": {
"node": ">=8"
@@ -28167,20 +28582,17 @@
"semver": "bin/semver.js"
}
},
- "node_modules/pako": {
- "version": "1.0.11",
- "license": "(MIT AND Zlib)",
+ "node_modules/packageurl-js": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/packageurl-js/-/packageurl-js-1.0.2.tgz",
+ "integrity": "sha512-fWC4ZPxo80qlh3xN5FxfIoQD3phVY4+EyzTIqyksjhKNDmaicdpxSvkWwIrYTtv9C1/RcUN6pxaTwGmj2NzS6A==",
"optional": true
},
- "node_modules/parallel-transform": {
- "version": "1.2.0",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "cyclist": "^1.0.1",
- "inherits": "^2.0.3",
- "readable-stream": "^2.1.5"
- }
+ "node_modules/pako": {
+ "version": "0.2.9",
+ "resolved": "https://registry.npmjs.org/pako/-/pako-0.2.9.tgz",
+ "integrity": "sha512-NUcwaKxUxWrZLpDG+z/xZaCgQITkA/Dv4V/T6bw7VON6l1Xz/VnrBqrYjZQ12TamKHzITTfOEIYUj48y2KXImA==",
+ "optional": true
},
"node_modules/parent-module": {
"version": "1.0.1",
@@ -28199,18 +28611,6 @@
"node": ">=6"
}
},
- "node_modules/parse-asn1": {
- "version": "5.1.6",
- "license": "ISC",
- "optional": true,
- "dependencies": {
- "asn1.js": "^5.2.0",
- "browserify-aes": "^1.0.0",
- "evp_bytestokey": "^1.0.0",
- "pbkdf2": "^3.0.3",
- "safe-buffer": "^5.1.1"
- }
- },
"node_modules/parse-entities": {
"version": "1.2.2",
"license": "MIT",
@@ -28237,15 +28637,20 @@
}
},
"node_modules/parse-json": {
- "version": "4.0.0",
- "license": "MIT",
- "optional": true,
+ "version": "5.2.0",
+ "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz",
+ "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==",
"dependencies": {
+ "@babel/code-frame": "^7.0.0",
"error-ex": "^1.3.1",
- "json-parse-better-errors": "^1.0.1"
+ "json-parse-even-better-errors": "^2.3.0",
+ "lines-and-columns": "^1.1.6"
},
"engines": {
- "node": ">=4"
+ "node": ">=8"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
}
},
"node_modules/parse-path": {
@@ -28318,7 +28723,7 @@
},
"node_modules/pascal-case": {
"version": "3.1.2",
- "devOptional": true,
+ "dev": true,
"license": "MIT",
"dependencies": {
"no-case": "^3.0.4",
@@ -28327,7 +28732,7 @@
},
"node_modules/pascal-case/node_modules/no-case": {
"version": "3.0.4",
- "devOptional": true,
+ "dev": true,
"license": "MIT",
"dependencies": {
"lower-case": "^2.0.2",
@@ -28336,17 +28741,12 @@
},
"node_modules/pascalcase": {
"version": "0.1.1",
- "devOptional": true,
+ "dev": true,
"license": "MIT",
"engines": {
"node": ">=0.10.0"
}
},
- "node_modules/path-browserify": {
- "version": "0.0.1",
- "license": "MIT",
- "optional": true
- },
"node_modules/path-case": {
"version": "3.0.4",
"dev": true,
@@ -28356,11 +28756,6 @@
"tslib": "^2.0.3"
}
},
- "node_modules/path-dirname": {
- "version": "1.0.2",
- "license": "MIT",
- "optional": true
- },
"node_modules/path-exists": {
"version": "3.0.0",
"devOptional": true,
@@ -28378,11 +28773,12 @@
}
},
"node_modules/path-key": {
- "version": "2.0.1",
- "license": "MIT",
- "optional": true,
+ "version": "3.1.1",
+ "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz",
+ "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==",
+ "devOptional": true,
"engines": {
- "node": ">=4"
+ "node": ">=8"
}
},
"node_modules/path-parse": {
@@ -28438,19 +28834,15 @@
"through": "~2.3"
}
},
- "node_modules/pbkdf2": {
- "version": "3.1.1",
- "license": "MIT",
+ "node_modules/peek-stream": {
+ "version": "1.1.3",
+ "resolved": "https://registry.npmjs.org/peek-stream/-/peek-stream-1.1.3.tgz",
+ "integrity": "sha512-FhJ+YbOSBb9/rIl2ZeE/QHEsWn7PqNYt8ARAY3kIgNGOk13g9FGyIY6JIl/xB/3TFRVoTv5as0l11weORrTekA==",
"optional": true,
"dependencies": {
- "create-hash": "^1.1.2",
- "create-hmac": "^1.1.4",
- "ripemd160": "^2.0.1",
- "safe-buffer": "^5.0.1",
- "sha.js": "^2.4.8"
- },
- "engines": {
- "node": ">=0.12"
+ "buffer-from": "^1.0.0",
+ "duplexify": "^3.5.0",
+ "through2": "^2.0.3"
}
},
"node_modules/pend": {
@@ -28464,7 +28856,7 @@
},
"node_modules/picocolors": {
"version": "1.0.0",
- "dev": true,
+ "devOptional": true,
"license": "ISC"
},
"node_modules/picomatch": {
@@ -28515,70 +28907,6 @@
"node": ">=6"
}
},
- "node_modules/pkg-up": {
- "version": "2.0.0",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "find-up": "^2.1.0"
- },
- "engines": {
- "node": ">=4"
- }
- },
- "node_modules/pkg-up/node_modules/find-up": {
- "version": "2.1.0",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "locate-path": "^2.0.0"
- },
- "engines": {
- "node": ">=4"
- }
- },
- "node_modules/pkg-up/node_modules/locate-path": {
- "version": "2.0.0",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "p-locate": "^2.0.0",
- "path-exists": "^3.0.0"
- },
- "engines": {
- "node": ">=4"
- }
- },
- "node_modules/pkg-up/node_modules/p-limit": {
- "version": "1.3.0",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "p-try": "^1.0.0"
- },
- "engines": {
- "node": ">=4"
- }
- },
- "node_modules/pkg-up/node_modules/p-locate": {
- "version": "2.0.0",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "p-limit": "^1.1.0"
- },
- "engines": {
- "node": ">=4"
- }
- },
- "node_modules/pkg-up/node_modules/p-try": {
- "version": "1.0.0",
- "license": "MIT",
- "optional": true,
- "engines": {
- "node": ">=4"
- }
- },
"node_modules/please-upgrade-node": {
"version": "3.2.0",
"license": "MIT",
@@ -28587,6 +28915,15 @@
"semver-compare": "^1.0.0"
}
},
+ "node_modules/pluralize": {
+ "version": "7.0.0",
+ "resolved": "https://registry.npmjs.org/pluralize/-/pluralize-7.0.0.tgz",
+ "integrity": "sha512-ARhBOdzS3e41FbkW/XWrTEtukqqLoK5+Z/4UeDaLuSW+39JPeFgs4gCGqsrJHVZX0fUrx//4OF0K1CUGwlIFow==",
+ "optional": true,
+ "engines": {
+ "node": ">=4"
+ }
+ },
"node_modules/pngjs": {
"version": "6.0.0",
"resolved": "https://registry.npmjs.org/pngjs/-/pngjs-6.0.0.tgz",
@@ -28595,23 +28932,13 @@
"node": ">=12.13.0"
}
},
- "node_modules/pnp-webpack-plugin": {
- "version": "1.5.0",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "ts-pnp": "^1.1.2"
- },
- "engines": {
- "node": ">=6"
- }
- },
"node_modules/polished": {
- "version": "3.7.1",
- "license": "MIT",
+ "version": "4.2.2",
+ "resolved": "https://registry.npmjs.org/polished/-/polished-4.2.2.tgz",
+ "integrity": "sha512-Sz2Lkdxz6F2Pgnpi9U5Ng/WdWAUZxmHrNPoVlm3aAemxoy2Qy7LGjQg4uf8qKelDAUW94F4np3iH2YPf2qefcQ==",
"optional": true,
"dependencies": {
- "@babel/runtime": "^7.12.5"
+ "@babel/runtime": "^7.17.8"
},
"engines": {
"node": ">=10"
@@ -28623,144 +28950,12 @@
},
"node_modules/posix-character-classes": {
"version": "0.1.1",
- "devOptional": true,
+ "dev": true,
"license": "MIT",
"engines": {
"node": ">=0.10.0"
}
},
- "node_modules/postcss": {
- "version": "7.0.39",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "picocolors": "^0.2.1",
- "source-map": "^0.6.1"
- },
- "engines": {
- "node": ">=6.0.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/postcss/"
- }
- },
- "node_modules/postcss-flexbugs-fixes": {
- "version": "4.2.1",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "postcss": "^7.0.26"
- }
- },
- "node_modules/postcss-load-config": {
- "version": "2.1.2",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "cosmiconfig": "^5.0.0",
- "import-cwd": "^2.0.0"
- },
- "engines": {
- "node": ">= 4"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/postcss/"
- }
- },
- "node_modules/postcss-loader": {
- "version": "3.0.0",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "loader-utils": "^1.1.0",
- "postcss": "^7.0.0",
- "postcss-load-config": "^2.0.0",
- "schema-utils": "^1.0.0"
- },
- "engines": {
- "node": ">= 6"
- }
- },
- "node_modules/postcss-modules-extract-imports": {
- "version": "2.0.0",
- "license": "ISC",
- "optional": true,
- "dependencies": {
- "postcss": "^7.0.5"
- },
- "engines": {
- "node": ">= 6"
- }
- },
- "node_modules/postcss-modules-local-by-default": {
- "version": "3.0.3",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "icss-utils": "^4.1.1",
- "postcss": "^7.0.32",
- "postcss-selector-parser": "^6.0.2",
- "postcss-value-parser": "^4.1.0"
- },
- "engines": {
- "node": ">= 6"
- }
- },
- "node_modules/postcss-modules-scope": {
- "version": "2.2.0",
- "license": "ISC",
- "optional": true,
- "dependencies": {
- "postcss": "^7.0.6",
- "postcss-selector-parser": "^6.0.0"
- },
- "engines": {
- "node": ">= 6"
- }
- },
- "node_modules/postcss-modules-values": {
- "version": "3.0.0",
- "license": "ISC",
- "optional": true,
- "dependencies": {
- "icss-utils": "^4.0.0",
- "postcss": "^7.0.6"
- }
- },
- "node_modules/postcss-selector-parser": {
- "version": "6.0.4",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "cssesc": "^3.0.0",
- "indexes-of": "^1.0.1",
- "uniq": "^1.0.1",
- "util-deprecate": "^1.0.2"
- },
- "engines": {
- "node": ">=4"
- }
- },
- "node_modules/postcss-value-parser": {
- "version": "4.1.0",
- "license": "MIT",
- "optional": true
- },
- "node_modules/postcss/node_modules/picocolors": {
- "version": "0.2.1",
- "license": "ISC",
- "optional": true
- },
- "node_modules/postcss/node_modules/source-map": {
- "version": "0.6.1",
- "license": "BSD-3-Clause",
- "optional": true,
- "engines": {
- "node": ">=0.10.0"
- }
- },
"node_modules/preferred-pm": {
"version": "3.0.3",
"resolved": "https://registry.npmjs.org/preferred-pm/-/preferred-pm-3.0.3.tgz",
@@ -28853,14 +29048,6 @@
"node": ">= 0.8.0"
}
},
- "node_modules/prepend-http": {
- "version": "1.0.4",
- "license": "MIT",
- "optional": true,
- "engines": {
- "node": ">=0.10.0"
- }
- },
"node_modules/prettier": {
"version": "2.8.7",
"resolved": "https://registry.npmjs.org/prettier/-/prettier-2.8.7.tgz",
@@ -28887,15 +29074,6 @@
"url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/pretty-error": {
- "version": "2.1.2",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "lodash": "^4.17.20",
- "renderkid": "^2.0.4"
- }
- },
"node_modules/pretty-format": {
"version": "27.5.1",
"license": "MIT",
@@ -28922,23 +29100,17 @@
},
"node_modules/pretty-hrtime": {
"version": "1.0.3",
- "license": "MIT",
+ "resolved": "https://registry.npmjs.org/pretty-hrtime/-/pretty-hrtime-1.0.3.tgz",
+ "integrity": "sha512-66hKPCr+72mlfiSjlEB1+45IjXSqvVAIy6mocupoww4tBFE9R9IhwwUGoI4G++Tc9Aq+2rxOt0RFU6gPcrte0A==",
"optional": true,
"engines": {
"node": ">= 0.8"
}
},
- "node_modules/prismjs": {
- "version": "1.23.0",
- "license": "MIT",
- "optional": true,
- "optionalDependencies": {
- "clipboard": "^2.0.0"
- }
- },
"node_modules/process": {
"version": "0.11.10",
- "license": "MIT",
+ "resolved": "https://registry.npmjs.org/process/-/process-0.11.10.tgz",
+ "integrity": "sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==",
"optional": true,
"engines": {
"node": ">= 0.6.0"
@@ -28946,7 +29118,8 @@
},
"node_modules/process-nextick-args": {
"version": "2.0.1",
- "license": "MIT",
+ "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz",
+ "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==",
"optional": true
},
"node_modules/progress": {
@@ -28959,28 +29132,19 @@
},
"node_modules/promise": {
"version": "7.3.1",
- "dev": true,
+ "devOptional": true,
"license": "MIT",
"dependencies": {
"asap": "~2.0.3"
}
},
- "node_modules/promise-inflight": {
- "version": "1.0.1",
- "license": "ISC",
- "optional": true
- },
- "node_modules/promise.allsettled": {
- "version": "1.0.4",
- "license": "MIT",
+ "node_modules/promise-deferred": {
+ "version": "2.0.3",
+ "resolved": "https://registry.npmjs.org/promise-deferred/-/promise-deferred-2.0.3.tgz",
+ "integrity": "sha512-n10XaoznCzLfyPFOlEE8iurezHpxrYzyjgq/1eW9Wk1gJwur/N7BdBmjJYJpqMeMcXK4wEbzo2EvZQcqjYcKUQ==",
"optional": true,
"dependencies": {
- "array.prototype.map": "^1.0.3",
- "call-bind": "^1.0.2",
- "define-properties": "^1.1.3",
- "es-abstract": "^1.18.0-next.2",
- "get-intrinsic": "^1.0.2",
- "iterate-value": "^1.0.2"
+ "promise": "^7.3.1"
},
"engines": {
"node": ">= 0.4"
@@ -28989,14 +29153,14 @@
"url": "https://github.com/sponsors/ljharb"
}
},
- "node_modules/promise.prototype.finally": {
- "version": "3.1.2",
- "license": "MIT",
+ "node_modules/promiseback": {
+ "version": "2.0.3",
+ "resolved": "https://registry.npmjs.org/promiseback/-/promiseback-2.0.3.tgz",
+ "integrity": "sha512-VZXdCwS0ppVNTIRfNsCvVwJAaP2b+pxQF7lM8DMWfmpNWyTxB6O5YNbzs+8z0ki/KIBHKHk308NTIl4kJUem3w==",
"optional": true,
"dependencies": {
- "define-properties": "^1.1.3",
- "es-abstract": "^1.17.0-next.0",
- "function-bind": "^1.1.1"
+ "is-callable": "^1.1.5",
+ "promise-deferred": "^2.0.3"
},
"engines": {
"node": ">= 0.4"
@@ -29038,18 +29202,6 @@
"node": ">= 8"
}
},
- "node_modules/property-information": {
- "version": "5.6.0",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "xtend": "^4.0.0"
- },
- "funding": {
- "type": "github",
- "url": "https://github.com/sponsors/wooorm"
- }
- },
"node_modules/prosemirror-commands": {
"version": "1.1.12",
"resolved": "https://registry.npmjs.org/prosemirror-commands/-/prosemirror-commands-1.1.12.tgz",
@@ -29143,14 +29295,9 @@
},
"node_modules/proxy-from-env": {
"version": "1.1.0",
- "dev": true,
+ "devOptional": true,
"license": "MIT"
},
- "node_modules/prr": {
- "version": "1.0.1",
- "license": "MIT",
- "optional": true
- },
"node_modules/ps-tree": {
"version": "1.2.0",
"dev": true,
@@ -29176,24 +29323,6 @@
"license": "MIT",
"optional": true
},
- "node_modules/public-encrypt": {
- "version": "4.0.3",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "bn.js": "^4.1.0",
- "browserify-rsa": "^4.0.0",
- "create-hash": "^1.1.0",
- "parse-asn1": "^5.0.0",
- "randombytes": "^2.0.1",
- "safe-buffer": "^5.1.2"
- }
- },
- "node_modules/public-encrypt/node_modules/bn.js": {
- "version": "4.12.0",
- "license": "MIT",
- "optional": true
- },
"node_modules/pump": {
"version": "3.0.0",
"license": "MIT",
@@ -29204,7 +29333,8 @@
},
"node_modules/pumpify": {
"version": "1.5.1",
- "license": "MIT",
+ "resolved": "https://registry.npmjs.org/pumpify/-/pumpify-1.5.1.tgz",
+ "integrity": "sha512-oClZI37HvuUJJxSKKrC17bZ9Cu0ZYhEAGPsPUy9KlMUmv9dKX2o77RUmq7f3XjIxbwyGwYzbzQ1L2Ks8sIradQ==",
"optional": true,
"dependencies": {
"duplexify": "^3.6.0",
@@ -29214,7 +29344,8 @@
},
"node_modules/pumpify/node_modules/pump": {
"version": "2.0.1",
- "license": "MIT",
+ "resolved": "https://registry.npmjs.org/pump/-/pump-2.0.1.tgz",
+ "integrity": "sha512-ruPMNRkN3MHP1cWJc9OWr+T/xDP0jhXYCLfJcBuX54hhfIBnaQmAUMfDcG4DM5UMWByBbJY69QSphm3jtDKIkA==",
"optional": true,
"dependencies": {
"end-of-stream": "^1.1.0",
@@ -29239,13 +29370,110 @@
"node": ">=8"
}
},
- "node_modules/q": {
- "version": "1.5.1",
- "license": "MIT",
+ "node_modules/puppeteer-core": {
+ "version": "2.1.1",
+ "resolved": "https://registry.npmjs.org/puppeteer-core/-/puppeteer-core-2.1.1.tgz",
+ "integrity": "sha512-n13AWriBMPYxnpbb6bnaY5YoY6rGj8vPLrz6CZF3o0qJNEwlcfJVxBzYZ0NJsQ21UbdJoijPCDrM++SUVEz7+w==",
+ "optional": true,
+ "dependencies": {
+ "@types/mime-types": "^2.1.0",
+ "debug": "^4.1.0",
+ "extract-zip": "^1.6.6",
+ "https-proxy-agent": "^4.0.0",
+ "mime": "^2.0.3",
+ "mime-types": "^2.1.25",
+ "progress": "^2.0.1",
+ "proxy-from-env": "^1.0.0",
+ "rimraf": "^2.6.1",
+ "ws": "^6.1.0"
+ },
+ "engines": {
+ "node": ">=8.16.0"
+ }
+ },
+ "node_modules/puppeteer-core/node_modules/agent-base": {
+ "version": "5.1.1",
+ "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-5.1.1.tgz",
+ "integrity": "sha512-TMeqbNl2fMW0nMjTEPOwe3J/PRFP4vqeoNuQMG0HlMrtm5QxKqdvAkZ1pRBQ/ulIyDD5Yq0nJ7YbdD8ey0TO3g==",
"optional": true,
"engines": {
- "node": ">=0.6.0",
- "teleport": ">=0.2.0"
+ "node": ">= 6.0.0"
+ }
+ },
+ "node_modules/puppeteer-core/node_modules/extract-zip": {
+ "version": "1.7.0",
+ "resolved": "https://registry.npmjs.org/extract-zip/-/extract-zip-1.7.0.tgz",
+ "integrity": "sha512-xoh5G1W/PB0/27lXgMQyIhP5DSY/LhoCsOyZgb+6iMmRtCwVBo55uKaMoEYrDCKQhWvqEip5ZPKAc6eFNyf/MA==",
+ "optional": true,
+ "dependencies": {
+ "concat-stream": "^1.6.2",
+ "debug": "^2.6.9",
+ "mkdirp": "^0.5.4",
+ "yauzl": "^2.10.0"
+ },
+ "bin": {
+ "extract-zip": "cli.js"
+ }
+ },
+ "node_modules/puppeteer-core/node_modules/extract-zip/node_modules/debug": {
+ "version": "2.6.9",
+ "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
+ "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
+ "optional": true,
+ "dependencies": {
+ "ms": "2.0.0"
+ }
+ },
+ "node_modules/puppeteer-core/node_modules/https-proxy-agent": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-4.0.0.tgz",
+ "integrity": "sha512-zoDhWrkR3of1l9QAL8/scJZyLu8j/gBkcwcaQOZh7Gyh/+uJQzGVETdgT30akuwkpL8HTRfssqI3BZuV18teDg==",
+ "optional": true,
+ "dependencies": {
+ "agent-base": "5",
+ "debug": "4"
+ },
+ "engines": {
+ "node": ">= 6.0.0"
+ }
+ },
+ "node_modules/puppeteer-core/node_modules/mime": {
+ "version": "2.6.0",
+ "resolved": "https://registry.npmjs.org/mime/-/mime-2.6.0.tgz",
+ "integrity": "sha512-USPkMeET31rOMiarsBNIHZKLGgvKc/LrjofAnBlOttf5ajRvqiRA8QsenbcooctK6d6Ts6aqZXBA+XbkKthiQg==",
+ "optional": true,
+ "bin": {
+ "mime": "cli.js"
+ },
+ "engines": {
+ "node": ">=4.0.0"
+ }
+ },
+ "node_modules/puppeteer-core/node_modules/ms": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
+ "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==",
+ "optional": true
+ },
+ "node_modules/puppeteer-core/node_modules/rimraf": {
+ "version": "2.7.1",
+ "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz",
+ "integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==",
+ "optional": true,
+ "dependencies": {
+ "glob": "^7.1.3"
+ },
+ "bin": {
+ "rimraf": "bin.js"
+ }
+ },
+ "node_modules/puppeteer-core/node_modules/ws": {
+ "version": "6.2.2",
+ "resolved": "https://registry.npmjs.org/ws/-/ws-6.2.2.tgz",
+ "integrity": "sha512-zmhltoSR8u1cnDsD43TX59mzoMZsLKqUweyYBAIvTngR3shc0W6aOZylZmq/7hqyVxPdi+5Ud2QInblgyE72fw==",
+ "optional": true,
+ "dependencies": {
+ "async-limiter": "~1.0.0"
}
},
"node_modules/qs": {
@@ -29262,20 +29490,6 @@
"url": "https://github.com/sponsors/ljharb"
}
},
- "node_modules/querystring": {
- "version": "0.2.0",
- "optional": true,
- "engines": {
- "node": ">=0.4.x"
- }
- },
- "node_modules/querystring-es3": {
- "version": "0.2.1",
- "optional": true,
- "engines": {
- "node": ">=0.4.x"
- }
- },
"node_modules/querystringify": {
"version": "2.2.0",
"devOptional": true,
@@ -29310,7 +29524,7 @@
},
"node_modules/quick-lru": {
"version": "5.1.1",
- "dev": true,
+ "devOptional": true,
"license": "MIT",
"engines": {
"node": ">=10"
@@ -29332,21 +29546,12 @@
},
"node_modules/randombytes": {
"version": "2.1.0",
- "devOptional": true,
+ "dev": true,
"license": "MIT",
"dependencies": {
"safe-buffer": "^5.1.0"
}
},
- "node_modules/randomfill": {
- "version": "1.0.4",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "randombytes": "^2.0.5",
- "safe-buffer": "^5.1.0"
- }
- },
"node_modules/range-parser": {
"version": "1.2.1",
"devOptional": true,
@@ -29370,38 +29575,6 @@
"node": ">= 0.8"
}
},
- "node_modules/raw-loader": {
- "version": "3.1.0",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "loader-utils": "^1.1.0",
- "schema-utils": "^2.0.1"
- },
- "engines": {
- "node": ">= 8.9.0"
- },
- "peerDependencies": {
- "webpack": "^4.3.0"
- }
- },
- "node_modules/raw-loader/node_modules/schema-utils": {
- "version": "2.7.1",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "@types/json-schema": "^7.0.5",
- "ajv": "^6.12.4",
- "ajv-keywords": "^3.5.2"
- },
- "engines": {
- "node": ">= 8.9.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/webpack"
- }
- },
"node_modules/rc": {
"version": "1.2.8",
"license": "(BSD-2-Clause OR MIT OR Apache-2.0)",
@@ -29443,528 +29616,14 @@
"react": "^15.3.0 || ^16.0.0 || ^17.0.0 || ^18.0.0"
}
},
- "node_modules/react-dev-utils": {
- "version": "9.1.0",
- "license": "MIT",
+ "node_modules/react-colorful": {
+ "version": "5.6.1",
+ "resolved": "https://registry.npmjs.org/react-colorful/-/react-colorful-5.6.1.tgz",
+ "integrity": "sha512-1exovf0uGTGyq5mXQT0zgQ80uvj2PCwvF8zY1RN9/vbJVSjSo3fsB/4L3ObbF7u70NduSiK4xu4Y6q1MHoUGEw==",
"optional": true,
- "dependencies": {
- "@babel/code-frame": "7.5.5",
- "address": "1.1.2",
- "browserslist": "4.7.0",
- "chalk": "2.4.2",
- "cross-spawn": "6.0.5",
- "detect-port-alt": "1.1.6",
- "escape-string-regexp": "1.0.5",
- "filesize": "3.6.1",
- "find-up": "3.0.0",
- "fork-ts-checker-webpack-plugin": "1.5.0",
- "global-modules": "2.0.0",
- "globby": "8.0.2",
- "gzip-size": "5.1.1",
- "immer": "1.10.0",
- "inquirer": "6.5.0",
- "is-root": "2.1.0",
- "loader-utils": "1.2.3",
- "open": "^6.3.0",
- "pkg-up": "2.0.0",
- "react-error-overlay": "^6.0.3",
- "recursive-readdir": "2.2.2",
- "shell-quote": "1.7.2",
- "sockjs-client": "1.4.0",
- "strip-ansi": "5.2.0",
- "text-table": "0.2.0"
- },
- "engines": {
- "node": ">=8.10"
- }
- },
- "node_modules/react-dev-utils/node_modules/@babel/code-frame": {
- "version": "7.5.5",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "@babel/highlight": "^7.0.0"
- }
- },
- "node_modules/react-dev-utils/node_modules/@nodelib/fs.stat": {
- "version": "1.1.3",
- "license": "MIT",
- "optional": true,
- "engines": {
- "node": ">= 6"
- }
- },
- "node_modules/react-dev-utils/node_modules/ansi-escapes": {
- "version": "3.2.0",
- "license": "MIT",
- "optional": true,
- "engines": {
- "node": ">=4"
- }
- },
- "node_modules/react-dev-utils/node_modules/ansi-regex": {
- "version": "3.0.0",
- "license": "MIT",
- "optional": true,
- "engines": {
- "node": ">=4"
- }
- },
- "node_modules/react-dev-utils/node_modules/array-union": {
- "version": "1.0.2",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "array-uniq": "^1.0.1"
- },
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/react-dev-utils/node_modules/braces": {
- "version": "2.3.2",
- "license": "MIT",
- "optional": true,
- "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.2",
- "snapdragon": "^0.8.1",
- "snapdragon-node": "^2.0.1",
- "split-string": "^3.0.2",
- "to-regex": "^3.0.1"
- },
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/react-dev-utils/node_modules/browserslist": {
- "version": "4.7.0",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "caniuse-lite": "^1.0.30000989",
- "electron-to-chromium": "^1.3.247",
- "node-releases": "^1.1.29"
- },
- "bin": {
- "browserslist": "cli.js"
- }
- },
- "node_modules/react-dev-utils/node_modules/chokidar": {
- "version": "2.1.8",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "anymatch": "^2.0.0",
- "async-each": "^1.0.1",
- "braces": "^2.3.2",
- "glob-parent": "^3.1.0",
- "inherits": "^2.0.3",
- "is-binary-path": "^1.0.0",
- "is-glob": "^4.0.0",
- "normalize-path": "^3.0.0",
- "path-is-absolute": "^1.0.0",
- "readdirp": "^2.2.1",
- "upath": "^1.1.1"
- },
- "optionalDependencies": {
- "fsevents": "^1.2.7"
- }
- },
- "node_modules/react-dev-utils/node_modules/cli-width": {
- "version": "2.2.1",
- "license": "ISC",
- "optional": true
- },
- "node_modules/react-dev-utils/node_modules/debug": {
- "version": "2.6.9",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "ms": "2.0.0"
- }
- },
- "node_modules/react-dev-utils/node_modules/detect-port-alt": {
- "version": "1.1.6",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "address": "^1.0.1",
- "debug": "^2.6.0"
- },
- "bin": {
- "detect": "bin/detect-port",
- "detect-port": "bin/detect-port"
- },
- "engines": {
- "node": ">= 4.2.1"
- }
- },
- "node_modules/react-dev-utils/node_modules/dir-glob": {
- "version": "2.0.0",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "arrify": "^1.0.1",
- "path-type": "^3.0.0"
- },
- "engines": {
- "node": ">=4"
- }
- },
- "node_modules/react-dev-utils/node_modules/emojis-list": {
- "version": "2.1.0",
- "license": "MIT",
- "optional": true,
- "engines": {
- "node": ">= 0.10"
- }
- },
- "node_modules/react-dev-utils/node_modules/extend-shallow": {
- "version": "2.0.1",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "is-extendable": "^0.1.0"
- },
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/react-dev-utils/node_modules/fast-glob": {
- "version": "2.2.7",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "@mrmlnc/readdir-enhanced": "^2.2.1",
- "@nodelib/fs.stat": "^1.1.2",
- "glob-parent": "^3.1.0",
- "is-glob": "^4.0.0",
- "merge2": "^1.2.3",
- "micromatch": "^3.1.10"
- },
- "engines": {
- "node": ">=4.0.0"
- }
- },
- "node_modules/react-dev-utils/node_modules/figures": {
- "version": "2.0.0",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "escape-string-regexp": "^1.0.5"
- },
- "engines": {
- "node": ">=4"
- }
- },
- "node_modules/react-dev-utils/node_modules/fill-range": {
- "version": "4.0.0",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "extend-shallow": "^2.0.1",
- "is-number": "^3.0.0",
- "repeat-string": "^1.6.1",
- "to-regex-range": "^2.1.0"
- },
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/react-dev-utils/node_modules/fork-ts-checker-webpack-plugin": {
- "version": "1.5.0",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "babel-code-frame": "^6.22.0",
- "chalk": "^2.4.1",
- "chokidar": "^2.0.4",
- "micromatch": "^3.1.10",
- "minimatch": "^3.0.4",
- "semver": "^5.6.0",
- "tapable": "^1.0.0",
- "worker-rpc": "^0.1.0"
- },
- "engines": {
- "node": ">=6.11.5",
- "yarn": ">=1.0.0"
- }
- },
- "node_modules/react-dev-utils/node_modules/glob-parent": {
- "version": "3.1.0",
- "license": "ISC",
- "optional": true,
- "dependencies": {
- "is-glob": "^3.1.0",
- "path-dirname": "^1.0.0"
- }
- },
- "node_modules/react-dev-utils/node_modules/glob-parent/node_modules/is-glob": {
- "version": "3.1.0",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "is-extglob": "^2.1.0"
- },
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/react-dev-utils/node_modules/globby": {
- "version": "8.0.2",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "array-union": "^1.0.1",
- "dir-glob": "2.0.0",
- "fast-glob": "^2.0.2",
- "glob": "^7.1.2",
- "ignore": "^3.3.5",
- "pify": "^3.0.0",
- "slash": "^1.0.0"
- },
- "engines": {
- "node": ">=4"
- }
- },
- "node_modules/react-dev-utils/node_modules/ignore": {
- "version": "3.3.10",
- "license": "MIT",
- "optional": true
- },
- "node_modules/react-dev-utils/node_modules/inquirer": {
- "version": "6.5.0",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "ansi-escapes": "^3.2.0",
- "chalk": "^2.4.2",
- "cli-cursor": "^2.1.0",
- "cli-width": "^2.0.0",
- "external-editor": "^3.0.3",
- "figures": "^2.0.0",
- "lodash": "^4.17.12",
- "mute-stream": "0.0.7",
- "run-async": "^2.2.0",
- "rxjs": "^6.4.0",
- "string-width": "^2.1.0",
- "strip-ansi": "^5.1.0",
- "through": "^2.3.6"
- },
- "engines": {
- "node": ">=6.0.0"
- }
- },
- "node_modules/react-dev-utils/node_modules/is-fullwidth-code-point": {
- "version": "2.0.0",
- "license": "MIT",
- "optional": true,
- "engines": {
- "node": ">=4"
- }
- },
- "node_modules/react-dev-utils/node_modules/is-number": {
- "version": "3.0.0",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "kind-of": "^3.0.2"
- },
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/react-dev-utils/node_modules/is-wsl": {
- "version": "1.1.0",
- "license": "MIT",
- "optional": true,
- "engines": {
- "node": ">=4"
- }
- },
- "node_modules/react-dev-utils/node_modules/json5": {
- "version": "1.0.1",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "minimist": "^1.2.0"
- },
- "bin": {
- "json5": "lib/cli.js"
- }
- },
- "node_modules/react-dev-utils/node_modules/kind-of": {
- "version": "3.2.2",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "is-buffer": "^1.1.5"
- },
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/react-dev-utils/node_modules/loader-utils": {
- "version": "1.2.3",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "big.js": "^5.2.2",
- "emojis-list": "^2.0.0",
- "json5": "^1.0.1"
- },
- "engines": {
- "node": ">=4.0.0"
- }
- },
- "node_modules/react-dev-utils/node_modules/micromatch": {
- "version": "3.1.10",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "arr-diff": "^4.0.0",
- "array-unique": "^0.3.2",
- "braces": "^2.3.1",
- "define-property": "^2.0.2",
- "extend-shallow": "^3.0.2",
- "extglob": "^2.0.4",
- "fragment-cache": "^0.2.1",
- "kind-of": "^6.0.2",
- "nanomatch": "^1.2.9",
- "object.pick": "^1.3.0",
- "regex-not": "^1.0.0",
- "snapdragon": "^0.8.1",
- "to-regex": "^3.0.2"
- },
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/react-dev-utils/node_modules/micromatch/node_modules/extend-shallow": {
- "version": "3.0.2",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "assign-symbols": "^1.0.0",
- "is-extendable": "^1.0.1"
- },
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/react-dev-utils/node_modules/micromatch/node_modules/is-extendable": {
- "version": "1.0.1",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "is-plain-object": "^2.0.4"
- },
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/react-dev-utils/node_modules/micromatch/node_modules/kind-of": {
- "version": "6.0.3",
- "license": "MIT",
- "optional": true,
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/react-dev-utils/node_modules/ms": {
- "version": "2.0.0",
- "license": "MIT",
- "optional": true
- },
- "node_modules/react-dev-utils/node_modules/mute-stream": {
- "version": "0.0.7",
- "license": "ISC",
- "optional": true
- },
- "node_modules/react-dev-utils/node_modules/open": {
- "version": "6.4.0",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "is-wsl": "^1.1.0"
- },
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/react-dev-utils/node_modules/path-type": {
- "version": "3.0.0",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "pify": "^3.0.0"
- },
- "engines": {
- "node": ">=4"
- }
- },
- "node_modules/react-dev-utils/node_modules/pify": {
- "version": "3.0.0",
- "license": "MIT",
- "optional": true,
- "engines": {
- "node": ">=4"
- }
- },
- "node_modules/react-dev-utils/node_modules/semver": {
- "version": "5.7.1",
- "license": "ISC",
- "optional": true,
- "bin": {
- "semver": "bin/semver"
- }
- },
- "node_modules/react-dev-utils/node_modules/slash": {
- "version": "1.0.0",
- "license": "MIT",
- "optional": true,
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/react-dev-utils/node_modules/string-width": {
- "version": "2.1.1",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "is-fullwidth-code-point": "^2.0.0",
- "strip-ansi": "^4.0.0"
- },
- "engines": {
- "node": ">=4"
- }
- },
- "node_modules/react-dev-utils/node_modules/string-width/node_modules/strip-ansi": {
- "version": "4.0.0",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "ansi-regex": "^3.0.0"
- },
- "engines": {
- "node": ">=4"
- }
- },
- "node_modules/react-dev-utils/node_modules/to-regex-range": {
- "version": "2.1.1",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "is-number": "^3.0.0",
- "repeat-string": "^1.6.1"
- },
- "engines": {
- "node": ">=0.10.0"
+ "peerDependencies": {
+ "react": ">=16.8.0",
+ "react-dom": ">=16.8.0"
}
},
"node_modules/react-display-name": {
@@ -29993,29 +29652,42 @@
}
},
"node_modules/react-docgen": {
- "version": "5.3.1",
- "license": "MIT",
+ "version": "6.0.0-alpha.3",
+ "resolved": "https://registry.npmjs.org/react-docgen/-/react-docgen-6.0.0-alpha.3.tgz",
+ "integrity": "sha512-DDLvB5EV9As1/zoUsct6Iz2Cupw9FObEGD3DMcIs3EDFIoSKyz8FZtoWj3Wj+oodrU4/NfidN0BL5yrapIcTSA==",
"optional": true,
"dependencies": {
"@babel/core": "^7.7.5",
- "@babel/runtime": "^7.7.6",
+ "@babel/generator": "^7.12.11",
"ast-types": "^0.14.2",
"commander": "^2.19.0",
"doctrine": "^3.0.0",
+ "estree-to-babel": "^3.1.0",
"neo-async": "^2.6.1",
"node-dir": "^0.1.10",
+ "resolve": "^1.17.0",
"strip-indent": "^3.0.0"
},
"bin": {
"react-docgen": "bin/react-docgen.js"
},
"engines": {
- "node": ">=8.10.0"
+ "node": ">=12.0.0"
+ }
+ },
+ "node_modules/react-docgen-typescript": {
+ "version": "2.2.2",
+ "resolved": "https://registry.npmjs.org/react-docgen-typescript/-/react-docgen-typescript-2.2.2.tgz",
+ "integrity": "sha512-tvg2ZtOpOi6QDwsb3GZhOjDkkX0h8Z2gipvTg6OVMUyoYoURhEiRNePT8NZItTVCDh39JJHnLdfCOkzoLbFnTg==",
+ "optional": true,
+ "peerDependencies": {
+ "typescript": ">= 4.3.x"
}
},
"node_modules/react-docgen/node_modules/commander": {
"version": "2.20.3",
- "license": "MIT",
+ "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz",
+ "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==",
"optional": true
},
"node_modules/react-dom": {
@@ -30099,6 +29771,36 @@
"@react-editor-js/server": "2.0.6"
}
},
+ "node_modules/react-element-to-jsx-string": {
+ "version": "15.0.0",
+ "resolved": "https://registry.npmjs.org/react-element-to-jsx-string/-/react-element-to-jsx-string-15.0.0.tgz",
+ "integrity": "sha512-UDg4lXB6BzlobN60P8fHWVPX3Kyw8ORrTeBtClmIlGdkOOE+GYQSFvmEU5iLLpwp/6v42DINwNcwOhOLfQ//FQ==",
+ "optional": true,
+ "dependencies": {
+ "@base2/pretty-print-object": "1.0.1",
+ "is-plain-object": "5.0.0",
+ "react-is": "18.1.0"
+ },
+ "peerDependencies": {
+ "react": "^0.14.8 || ^15.0.1 || ^16.0.0 || ^17.0.1 || ^18.0.0",
+ "react-dom": "^0.14.8 || ^15.0.1 || ^16.0.0 || ^17.0.1 || ^18.0.0"
+ }
+ },
+ "node_modules/react-element-to-jsx-string/node_modules/is-plain-object": {
+ "version": "5.0.0",
+ "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-5.0.0.tgz",
+ "integrity": "sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q==",
+ "optional": true,
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/react-element-to-jsx-string/node_modules/react-is": {
+ "version": "18.1.0",
+ "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.1.0.tgz",
+ "integrity": "sha512-Fl7FuabXsJnV5Q1qIOQwx/sagGF18kogb4gpfcG4gjLBWO0WDiiz1ko/ExayuxE7InyQkBLkxRFG5oxY6Uu3Kg==",
+ "optional": true
+ },
"node_modules/react-error-boundary": {
"version": "3.1.4",
"license": "MIT",
@@ -30113,11 +29815,6 @@
"react": ">=16.13.1"
}
},
- "node_modules/react-error-overlay": {
- "version": "6.0.9",
- "license": "MIT",
- "optional": true
- },
"node_modules/react-focus-lock": {
"version": "2.9.2",
"license": "MIT",
@@ -30173,27 +29870,6 @@
"react": ">=16.3.0"
}
},
- "node_modules/react-helmet-async": {
- "version": "1.0.9",
- "license": "Apache-2.0",
- "optional": true,
- "dependencies": {
- "@babel/runtime": "^7.12.5",
- "invariant": "^2.2.4",
- "prop-types": "^15.7.2",
- "react-fast-compare": "^3.2.0",
- "shallowequal": "^1.1.0"
- },
- "peerDependencies": {
- "react": "^16.6.0 || ^17.0.0",
- "react-dom": "^16.6.0 || ^17.0.0"
- }
- },
- "node_modules/react-helmet-async/node_modules/react-fast-compare": {
- "version": "3.2.0",
- "license": "MIT",
- "optional": true
- },
"node_modules/react-helmet/node_modules/react-fast-compare": {
"version": "3.2.0",
"license": "MIT"
@@ -30205,17 +29881,6 @@
"react": "^16.3.0 || ^17.0.0"
}
},
- "node_modules/react-hotkeys": {
- "version": "2.0.0",
- "license": "ISC",
- "optional": true,
- "dependencies": {
- "prop-types": "^15.6.1"
- },
- "peerDependencies": {
- "react": ">= 0.14.0"
- }
- },
"node_modules/react-infinite-scroll-component": {
"version": "6.1.0",
"license": "MIT",
@@ -30238,6 +29903,15 @@
"react": "^16.8.0 || ^17.0.0 || ^18.0.0"
}
},
+ "node_modules/react-inspector": {
+ "version": "6.0.1",
+ "resolved": "https://registry.npmjs.org/react-inspector/-/react-inspector-6.0.1.tgz",
+ "integrity": "sha512-cxKSeFTf7jpSSVddm66sKdolG90qURAX3g1roTeaN6x0YEbtWc8JpmFN9+yIqLNH2uEkYerWLtJZIXRIFuBKrg==",
+ "optional": true,
+ "peerDependencies": {
+ "react": "^16.8.4 || ^17.0.0 || ^18.0.0"
+ }
+ },
"node_modules/react-intl": {
"version": "5.24.8",
"license": "BSD-3-Clause",
@@ -30352,51 +30026,13 @@
"react-dom": "^0.14 || ^15.0.0 || ^16.0.0 || ^17.0.0 || ^18.0.0 || ^18.0.0"
}
},
- "node_modules/react-popper": {
- "version": "1.3.11",
- "license": "MIT",
+ "node_modules/react-refresh": {
+ "version": "0.14.0",
+ "resolved": "https://registry.npmjs.org/react-refresh/-/react-refresh-0.14.0.tgz",
+ "integrity": "sha512-wViHqhAd8OHeLS/IRMJjTSDHF3U9eWi62F/MledQGPdJGDhodXJ9PBLNGr6WWL7qlH12Mt3TyTpbS+hGXMjCzQ==",
"optional": true,
- "dependencies": {
- "@babel/runtime": "^7.1.2",
- "@hypnosphi/create-react-context": "^0.3.1",
- "deep-equal": "^1.1.1",
- "popper.js": "^1.14.4",
- "prop-types": "^15.6.1",
- "typed-styles": "^0.0.7",
- "warning": "^4.0.2"
- },
- "peerDependencies": {
- "react": "0.14.x || ^15.0.0 || ^16.0.0 || ^17.0.0"
- }
- },
- "node_modules/react-popper-tooltip": {
- "version": "2.11.1",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "@babel/runtime": "^7.9.2",
- "react-popper": "^1.3.7"
- },
- "peerDependencies": {
- "react": "^16.6.0",
- "react-dom": "^16.6.0"
- }
- },
- "node_modules/react-popper/node_modules/popper.js": {
- "version": "1.16.1",
- "license": "MIT",
- "optional": true,
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/popperjs"
- }
- },
- "node_modules/react-popper/node_modules/warning": {
- "version": "4.0.3",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "loose-envify": "^1.0.0"
+ "engines": {
+ "node": ">=0.10.0"
}
},
"node_modules/react-remove-scroll": {
@@ -30555,21 +30191,6 @@
"@floating-ui/core": "^1.2.2"
}
},
- "node_modules/react-sizeme": {
- "version": "2.6.12",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "element-resize-detector": "^1.2.1",
- "invariant": "^2.2.4",
- "shallowequal": "^1.1.0",
- "throttle-debounce": "^2.1.0"
- },
- "peerDependencies": {
- "react": "^0.14.0 || ^15.0.0-0 || ^16.0.0",
- "react-dom": "^0.14.0 || ^15.0.0-0 || ^16.0.0"
- }
- },
"node_modules/react-sortable-hoc": {
"version": "1.11.0",
"license": "MIT",
@@ -30623,33 +30244,6 @@
}
}
},
- "node_modules/react-syntax-highlighter": {
- "version": "11.0.2",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "@babel/runtime": "^7.3.1",
- "highlight.js": "~9.13.0",
- "lowlight": "~1.11.0",
- "prismjs": "^1.8.4",
- "refractor": "^2.4.1"
- },
- "peerDependencies": {
- "react": ">= 0.14.0"
- }
- },
- "node_modules/react-textarea-autosize": {
- "version": "7.1.2",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "@babel/runtime": "^7.1.2",
- "prop-types": "^15.6.0"
- },
- "peerDependencies": {
- "react": ">=0.14.0 <17.0.0"
- }
- },
"node_modules/react-transition-group": {
"version": "4.4.1",
"license": "BSD-3-Clause",
@@ -30684,7 +30278,7 @@
"version": "5.2.0",
"resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-5.2.0.tgz",
"integrity": "sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==",
- "dev": true,
+ "devOptional": true,
"dependencies": {
"@types/normalize-package-data": "^2.4.0",
"normalize-package-data": "^2.5.0",
@@ -30699,7 +30293,7 @@
"version": "7.0.1",
"resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-7.0.1.tgz",
"integrity": "sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg==",
- "dev": true,
+ "devOptional": true,
"dependencies": {
"find-up": "^4.1.0",
"read-pkg": "^5.2.0",
@@ -30716,7 +30310,7 @@
"version": "4.1.0",
"resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz",
"integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==",
- "dev": true,
+ "devOptional": true,
"dependencies": {
"locate-path": "^5.0.0",
"path-exists": "^4.0.0"
@@ -30729,7 +30323,7 @@
"version": "5.0.0",
"resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz",
"integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==",
- "dev": true,
+ "devOptional": true,
"dependencies": {
"p-locate": "^4.1.0"
},
@@ -30741,7 +30335,7 @@
"version": "4.1.0",
"resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz",
"integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==",
- "dev": true,
+ "devOptional": true,
"dependencies": {
"p-limit": "^2.2.0"
},
@@ -30753,7 +30347,7 @@
"version": "4.0.0",
"resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz",
"integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==",
- "dev": true,
+ "devOptional": true,
"engines": {
"node": ">=8"
}
@@ -30762,34 +30356,16 @@
"version": "0.8.1",
"resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.8.1.tgz",
"integrity": "sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==",
- "dev": true,
+ "devOptional": true,
"engines": {
"node": ">=8"
}
},
- "node_modules/read-pkg/node_modules/parse-json": {
- "version": "5.2.0",
- "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz",
- "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==",
- "dev": true,
- "dependencies": {
- "@babel/code-frame": "^7.0.0",
- "error-ex": "^1.3.1",
- "json-parse-even-better-errors": "^2.3.0",
- "lines-and-columns": "^1.1.6"
- },
- "engines": {
- "node": ">=8"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
"node_modules/read-pkg/node_modules/type-fest": {
"version": "0.6.0",
"resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.6.0.tgz",
"integrity": "sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==",
- "dev": true,
+ "devOptional": true,
"engines": {
"node": ">=8"
}
@@ -30810,153 +30386,29 @@
}
},
"node_modules/readable-stream": {
- "version": "2.3.7",
- "license": "MIT",
- "optional": true,
+ "version": "3.6.2",
+ "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz",
+ "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==",
+ "devOptional": true,
"dependencies": {
- "core-util-is": "~1.0.0",
- "inherits": "~2.0.3",
- "isarray": "~1.0.0",
- "process-nextick-args": "~2.0.0",
- "safe-buffer": "~5.1.1",
- "string_decoder": "~1.1.1",
- "util-deprecate": "~1.0.1"
+ "inherits": "^2.0.3",
+ "string_decoder": "^1.1.1",
+ "util-deprecate": "^1.0.1"
+ },
+ "engines": {
+ "node": ">= 6"
}
},
- "node_modules/readable-stream/node_modules/isarray": {
- "version": "1.0.0",
- "license": "MIT",
- "optional": true
- },
- "node_modules/readable-stream/node_modules/safe-buffer": {
- "version": "5.1.2",
- "license": "MIT",
- "optional": true
- },
"node_modules/readdirp": {
- "version": "2.2.1",
- "license": "MIT",
- "optional": true,
+ "version": "3.6.0",
+ "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz",
+ "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==",
+ "devOptional": true,
"dependencies": {
- "graceful-fs": "^4.1.11",
- "micromatch": "^3.1.10",
- "readable-stream": "^2.0.2"
+ "picomatch": "^2.2.1"
},
"engines": {
- "node": ">=0.10"
- }
- },
- "node_modules/readdirp/node_modules/braces": {
- "version": "2.3.2",
- "license": "MIT",
- "optional": true,
- "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.2",
- "snapdragon": "^0.8.1",
- "snapdragon-node": "^2.0.1",
- "split-string": "^3.0.2",
- "to-regex": "^3.0.1"
- },
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/readdirp/node_modules/braces/node_modules/extend-shallow": {
- "version": "2.0.1",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "is-extendable": "^0.1.0"
- },
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/readdirp/node_modules/fill-range": {
- "version": "4.0.0",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "extend-shallow": "^2.0.1",
- "is-number": "^3.0.0",
- "repeat-string": "^1.6.1",
- "to-regex-range": "^2.1.0"
- },
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/readdirp/node_modules/fill-range/node_modules/extend-shallow": {
- "version": "2.0.1",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "is-extendable": "^0.1.0"
- },
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/readdirp/node_modules/is-number": {
- "version": "3.0.0",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "kind-of": "^3.0.2"
- },
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/readdirp/node_modules/is-number/node_modules/kind-of": {
- "version": "3.2.2",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "is-buffer": "^1.1.5"
- },
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/readdirp/node_modules/micromatch": {
- "version": "3.1.10",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "arr-diff": "^4.0.0",
- "array-unique": "^0.3.2",
- "braces": "^2.3.1",
- "define-property": "^2.0.2",
- "extend-shallow": "^3.0.2",
- "extglob": "^2.0.4",
- "fragment-cache": "^0.2.1",
- "kind-of": "^6.0.2",
- "nanomatch": "^1.2.9",
- "object.pick": "^1.3.0",
- "regex-not": "^1.0.0",
- "snapdragon": "^0.8.1",
- "to-regex": "^3.0.2"
- },
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/readdirp/node_modules/to-regex-range": {
- "version": "2.1.1",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "is-number": "^3.0.0",
- "repeat-string": "^1.6.1"
- },
- "engines": {
- "node": ">=0.10.0"
+ "node": ">=8.10.0"
}
},
"node_modules/recast": {
@@ -30991,17 +30443,6 @@
"node": ">= 0.10"
}
},
- "node_modules/recursive-readdir": {
- "version": "2.2.2",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "minimatch": "3.0.4"
- },
- "engines": {
- "node": ">=0.10.0"
- }
- },
"node_modules/redent": {
"version": "3.0.0",
"devOptional": true,
@@ -31022,39 +30463,19 @@
"symbol-observable": "^1.2.0"
}
},
- "node_modules/refractor": {
- "version": "2.10.1",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "hastscript": "^5.0.0",
- "parse-entities": "^1.1.2",
- "prismjs": "~1.17.0"
- },
- "funding": {
- "type": "github",
- "url": "https://github.com/sponsors/wooorm"
- }
- },
- "node_modules/refractor/node_modules/prismjs": {
- "version": "1.17.1",
- "license": "MIT",
- "optional": true,
- "optionalDependencies": {
- "clipboard": "^2.0.0"
- }
- },
"node_modules/regenerate": {
"version": "1.4.2",
- "devOptional": true,
- "license": "MIT"
+ "resolved": "https://registry.npmjs.org/regenerate/-/regenerate-1.4.2.tgz",
+ "integrity": "sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==",
+ "devOptional": true
},
"node_modules/regenerate-unicode-properties": {
- "version": "8.2.0",
+ "version": "10.1.0",
+ "resolved": "https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-10.1.0.tgz",
+ "integrity": "sha512-d1VudCLoIGitcU/hEg2QqvyGZQmdC0Lf8BqdOMXGFSvJP4bNV1+XqbPQeHHLD51Jh4QJJ225dlIFvY4Ly6MXmQ==",
"devOptional": true,
- "license": "MIT",
"dependencies": {
- "regenerate": "^1.4.0"
+ "regenerate": "^1.4.2"
},
"engines": {
"node": ">=4"
@@ -31066,16 +30487,17 @@
"license": "MIT"
},
"node_modules/regenerator-transform": {
- "version": "0.14.5",
+ "version": "0.15.1",
+ "resolved": "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.15.1.tgz",
+ "integrity": "sha512-knzmNAcuyxV+gQCufkYcvOqX/qIIfHLv0u5x79kRxuGojfYVky1f15TzZEu2Avte8QGepvUNTnLskf8E6X6Vyg==",
"devOptional": true,
- "license": "MIT",
"dependencies": {
"@babel/runtime": "^7.8.4"
}
},
"node_modules/regex-not": {
"version": "1.0.2",
- "devOptional": true,
+ "dev": true,
"license": "MIT",
"dependencies": {
"extend-shallow": "^3.0.2",
@@ -31122,16 +30544,17 @@
}
},
"node_modules/regexpu-core": {
- "version": "4.7.1",
+ "version": "5.3.2",
+ "resolved": "https://registry.npmjs.org/regexpu-core/-/regexpu-core-5.3.2.tgz",
+ "integrity": "sha512-RAM5FlZz+Lhmo7db9L298p2vHP5ZywrVXmVXpmAD9GuL5MPH6t9ROw1iA/wfHkQ76Qe7AaPF0nGuim96/IrQMQ==",
"devOptional": true,
- "license": "MIT",
"dependencies": {
- "regenerate": "^1.4.0",
- "regenerate-unicode-properties": "^8.2.0",
- "regjsgen": "^0.5.1",
- "regjsparser": "^0.6.4",
- "unicode-match-property-ecmascript": "^1.0.4",
- "unicode-match-property-value-ecmascript": "^1.2.0"
+ "@babel/regjsgen": "^0.8.0",
+ "regenerate": "^1.4.2",
+ "regenerate-unicode-properties": "^10.1.0",
+ "regjsparser": "^0.9.1",
+ "unicode-match-property-ecmascript": "^2.0.0",
+ "unicode-match-property-value-ecmascript": "^2.1.0"
},
"engines": {
"node": ">=4"
@@ -31162,15 +30585,11 @@
"node": ">=8"
}
},
- "node_modules/regjsgen": {
- "version": "0.5.2",
- "devOptional": true,
- "license": "MIT"
- },
"node_modules/regjsparser": {
- "version": "0.6.9",
+ "version": "0.9.1",
+ "resolved": "https://registry.npmjs.org/regjsparser/-/regjsparser-0.9.1.tgz",
+ "integrity": "sha512-dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ==",
"devOptional": true,
- "license": "BSD-2-Clause",
"dependencies": {
"jsesc": "~0.5.0"
},
@@ -31180,6 +30599,8 @@
},
"node_modules/regjsparser/node_modules/jsesc": {
"version": "0.5.0",
+ "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-0.5.0.tgz",
+ "integrity": "sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==",
"devOptional": true,
"bin": {
"jsesc": "bin/jsesc"
@@ -31187,7 +30608,7 @@
},
"node_modules/relateurl": {
"version": "0.2.7",
- "devOptional": true,
+ "dev": true,
"license": "MIT",
"engines": {
"node": ">= 0.10"
@@ -31458,19 +30879,6 @@
"node": ">=10"
}
},
- "node_modules/release-it/node_modules/cross-spawn": {
- "version": "7.0.3",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "path-key": "^3.1.0",
- "shebang-command": "^2.0.0",
- "which": "^2.0.1"
- },
- "engines": {
- "node": ">= 8"
- }
- },
"node_modules/release-it/node_modules/debug": {
"version": "4.3.1",
"resolved": "https://registry.npmjs.org/debug/-/debug-4.3.1.tgz",
@@ -31598,21 +31006,6 @@
"node": ">=8"
}
},
- "node_modules/release-it/node_modules/import-fresh": {
- "version": "3.3.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "parent-module": "^1.0.0",
- "resolve-from": "^4.0.0"
- },
- "engines": {
- "node": ">=6"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
"node_modules/release-it/node_modules/import-from": {
"version": "3.0.0",
"dev": true,
@@ -31727,23 +31120,6 @@
"url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/release-it/node_modules/parse-json": {
- "version": "5.2.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/code-frame": "^7.0.0",
- "error-ex": "^1.3.1",
- "json-parse-even-better-errors": "^2.3.0",
- "lines-and-columns": "^1.1.6"
- },
- "engines": {
- "node": ">=8"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
"node_modules/release-it/node_modules/path-exists": {
"version": "4.0.0",
"dev": true,
@@ -31752,22 +31128,6 @@
"node": ">=8"
}
},
- "node_modules/release-it/node_modules/path-key": {
- "version": "3.1.1",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/release-it/node_modules/resolve-from": {
- "version": "4.0.0",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=4"
- }
- },
"node_modules/release-it/node_modules/restore-cursor": {
"version": "3.1.0",
"dev": true,
@@ -31780,25 +31140,6 @@
"node": ">=8"
}
},
- "node_modules/release-it/node_modules/shebang-command": {
- "version": "2.0.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "shebang-regex": "^3.0.0"
- },
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/release-it/node_modules/shebang-regex": {
- "version": "3.0.0",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=8"
- }
- },
"node_modules/release-it/node_modules/strip-ansi": {
"version": "6.0.0",
"dev": true,
@@ -31829,20 +31170,6 @@
"uuid": "dist/bin/uuid"
}
},
- "node_modules/release-it/node_modules/which": {
- "version": "2.0.2",
- "dev": true,
- "license": "ISC",
- "dependencies": {
- "isexe": "^2.0.0"
- },
- "bin": {
- "node-which": "bin/node-which"
- },
- "engines": {
- "node": ">= 8"
- }
- },
"node_modules/release-it/node_modules/yargs-parser": {
"version": "20.2.7",
"dev": true,
@@ -31851,6 +31178,62 @@
"node": ">=10"
}
},
+ "node_modules/remark-external-links": {
+ "version": "8.0.0",
+ "resolved": "https://registry.npmjs.org/remark-external-links/-/remark-external-links-8.0.0.tgz",
+ "integrity": "sha512-5vPSX0kHoSsqtdftSHhIYofVINC8qmp0nctkeU9YoJwV3YfiBRiI6cbFRJ0oI/1F9xS+bopXG0m2KS8VFscuKA==",
+ "optional": true,
+ "dependencies": {
+ "extend": "^3.0.0",
+ "is-absolute-url": "^3.0.0",
+ "mdast-util-definitions": "^4.0.0",
+ "space-separated-tokens": "^1.0.0",
+ "unist-util-visit": "^2.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/remark-external-links/node_modules/unist-util-is": {
+ "version": "4.1.0",
+ "resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-4.1.0.tgz",
+ "integrity": "sha512-ZOQSsnce92GrxSqlnEEseX0gi7GH9zTJZ0p9dtu87WRb/37mMPO2Ilx1s/t9vBHrFhbgweUwb+t7cIn5dxPhZg==",
+ "optional": true,
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/remark-external-links/node_modules/unist-util-visit": {
+ "version": "2.0.3",
+ "resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-2.0.3.tgz",
+ "integrity": "sha512-iJ4/RczbJMkD0712mGktuGpm/U4By4FfDonL7N/9tATGIF4imikjOuagyMY53tnZq3NP6BcmlrHhEKAfGWjh7Q==",
+ "optional": true,
+ "dependencies": {
+ "@types/unist": "^2.0.0",
+ "unist-util-is": "^4.0.0",
+ "unist-util-visit-parents": "^3.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/remark-external-links/node_modules/unist-util-visit-parents": {
+ "version": "3.1.1",
+ "resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-3.1.1.tgz",
+ "integrity": "sha512-1KROIZWo6bcMrZEwiH2UrXDyalAa0uqzWCxCJj6lPOvTve2WkfgCytoDTPaMnodXh1WrXOq0haVYHj99ynJlsg==",
+ "optional": true,
+ "dependencies": {
+ "@types/unist": "^2.0.0",
+ "unist-util-is": "^4.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
"node_modules/remark-parse": {
"version": "5.0.0",
"license": "MIT",
@@ -31872,6 +31255,60 @@
"xtend": "^4.0.1"
}
},
+ "node_modules/remark-slug": {
+ "version": "6.1.0",
+ "resolved": "https://registry.npmjs.org/remark-slug/-/remark-slug-6.1.0.tgz",
+ "integrity": "sha512-oGCxDF9deA8phWvxFuyr3oSJsdyUAxMFbA0mZ7Y1Sas+emILtO+e5WutF9564gDsEN4IXaQXm5pFo6MLH+YmwQ==",
+ "optional": true,
+ "dependencies": {
+ "github-slugger": "^1.0.0",
+ "mdast-util-to-string": "^1.0.0",
+ "unist-util-visit": "^2.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/remark-slug/node_modules/unist-util-is": {
+ "version": "4.1.0",
+ "resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-4.1.0.tgz",
+ "integrity": "sha512-ZOQSsnce92GrxSqlnEEseX0gi7GH9zTJZ0p9dtu87WRb/37mMPO2Ilx1s/t9vBHrFhbgweUwb+t7cIn5dxPhZg==",
+ "optional": true,
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/remark-slug/node_modules/unist-util-visit": {
+ "version": "2.0.3",
+ "resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-2.0.3.tgz",
+ "integrity": "sha512-iJ4/RczbJMkD0712mGktuGpm/U4By4FfDonL7N/9tATGIF4imikjOuagyMY53tnZq3NP6BcmlrHhEKAfGWjh7Q==",
+ "optional": true,
+ "dependencies": {
+ "@types/unist": "^2.0.0",
+ "unist-util-is": "^4.0.0",
+ "unist-util-visit-parents": "^3.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
+ "node_modules/remark-slug/node_modules/unist-util-visit-parents": {
+ "version": "3.1.1",
+ "resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-3.1.1.tgz",
+ "integrity": "sha512-1KROIZWo6bcMrZEwiH2UrXDyalAa0uqzWCxCJj6lPOvTve2WkfgCytoDTPaMnodXh1WrXOq0haVYHj99ynJlsg==",
+ "optional": true,
+ "dependencies": {
+ "@types/unist": "^2.0.0",
+ "unist-util-is": "^4.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/unified"
+ }
+ },
"node_modules/remedial": {
"version": "1.0.8",
"dev": true,
@@ -31882,7 +31319,7 @@
},
"node_modules/remove-trailing-separator": {
"version": "1.1.0",
- "devOptional": true,
+ "dev": true,
"license": "ISC"
},
"node_modules/remove-trailing-spaces": {
@@ -31890,121 +31327,9 @@
"dev": true,
"license": "MIT"
},
- "node_modules/renderkid": {
- "version": "2.0.5",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "css-select": "^2.0.2",
- "dom-converter": "^0.2",
- "htmlparser2": "^3.10.1",
- "lodash": "^4.17.20",
- "strip-ansi": "^3.0.0"
- }
- },
- "node_modules/renderkid/node_modules/ansi-regex": {
- "version": "2.1.1",
- "license": "MIT",
- "optional": true,
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/renderkid/node_modules/dom-serializer": {
- "version": "0.2.2",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "domelementtype": "^2.0.1",
- "entities": "^2.0.0"
- }
- },
- "node_modules/renderkid/node_modules/dom-serializer/node_modules/domelementtype": {
- "version": "2.2.0",
- "funding": [
- {
- "type": "github",
- "url": "https://github.com/sponsors/fb55"
- }
- ],
- "license": "BSD-2-Clause",
- "optional": true
- },
- "node_modules/renderkid/node_modules/dom-serializer/node_modules/entities": {
- "version": "2.2.0",
- "license": "BSD-2-Clause",
- "optional": true,
- "funding": {
- "url": "https://github.com/fb55/entities?sponsor=1"
- }
- },
- "node_modules/renderkid/node_modules/domelementtype": {
- "version": "1.3.1",
- "license": "BSD-2-Clause",
- "optional": true
- },
- "node_modules/renderkid/node_modules/domhandler": {
- "version": "2.4.2",
- "license": "BSD-2-Clause",
- "optional": true,
- "dependencies": {
- "domelementtype": "1"
- }
- },
- "node_modules/renderkid/node_modules/domutils": {
- "version": "1.7.0",
- "license": "BSD-2-Clause",
- "optional": true,
- "dependencies": {
- "dom-serializer": "0",
- "domelementtype": "1"
- }
- },
- "node_modules/renderkid/node_modules/entities": {
- "version": "1.1.2",
- "license": "BSD-2-Clause",
- "optional": true
- },
- "node_modules/renderkid/node_modules/htmlparser2": {
- "version": "3.10.1",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "domelementtype": "^1.3.1",
- "domhandler": "^2.3.0",
- "domutils": "^1.5.1",
- "entities": "^1.1.1",
- "inherits": "^2.0.1",
- "readable-stream": "^3.1.1"
- }
- },
- "node_modules/renderkid/node_modules/readable-stream": {
- "version": "3.6.0",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "inherits": "^2.0.3",
- "string_decoder": "^1.1.1",
- "util-deprecate": "^1.0.1"
- },
- "engines": {
- "node": ">= 6"
- }
- },
- "node_modules/renderkid/node_modules/strip-ansi": {
- "version": "3.0.1",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "ansi-regex": "^2.0.0"
- },
- "engines": {
- "node": ">=0.10.0"
- }
- },
"node_modules/repeat-element": {
"version": "1.1.4",
- "devOptional": true,
+ "dev": true,
"license": "MIT",
"engines": {
"node": ">=0.10.0"
@@ -32076,11 +31401,6 @@
"devOptional": true,
"license": "MIT"
},
- "node_modules/resize-observer-polyfill": {
- "version": "1.5.1",
- "license": "MIT",
- "optional": true
- },
"node_modules/resolve": {
"version": "1.20.0",
"license": "MIT",
@@ -32094,7 +31414,7 @@
},
"node_modules/resolve-alpn": {
"version": "1.0.0",
- "dev": true,
+ "devOptional": true,
"license": "MIT"
},
"node_modules/resolve-cwd": {
@@ -32108,29 +31428,22 @@
"node": ">=8"
}
},
- "node_modules/resolve-cwd/node_modules/resolve-from": {
+ "node_modules/resolve-from": {
"version": "5.0.0",
- "license": "MIT",
- "optional": true,
+ "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz",
+ "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==",
+ "devOptional": true,
"engines": {
"node": ">=8"
}
},
- "node_modules/resolve-from": {
- "version": "3.0.0",
- "license": "MIT",
- "optional": true,
- "engines": {
- "node": ">=4"
- }
- },
"node_modules/resolve-pathname": {
"version": "3.0.0",
"license": "MIT"
},
"node_modules/resolve-url": {
"version": "0.2.1",
- "devOptional": true,
+ "dev": true,
"license": "MIT"
},
"node_modules/resolve.exports": {
@@ -32152,7 +31465,7 @@
},
"node_modules/responselike": {
"version": "2.0.0",
- "dev": true,
+ "devOptional": true,
"license": "MIT",
"dependencies": {
"lowercase-keys": "^2.0.0"
@@ -32160,7 +31473,7 @@
},
"node_modules/restore-cursor": {
"version": "2.0.0",
- "devOptional": true,
+ "dev": true,
"license": "MIT",
"dependencies": {
"onetime": "^2.0.0",
@@ -32172,7 +31485,7 @@
},
"node_modules/restore-cursor/node_modules/mimic-fn": {
"version": "1.2.0",
- "devOptional": true,
+ "dev": true,
"license": "MIT",
"engines": {
"node": ">=4"
@@ -32180,7 +31493,7 @@
},
"node_modules/restore-cursor/node_modules/onetime": {
"version": "2.0.1",
- "devOptional": true,
+ "dev": true,
"license": "MIT",
"dependencies": {
"mimic-fn": "^1.0.0"
@@ -32191,7 +31504,7 @@
},
"node_modules/ret": {
"version": "0.1.15",
- "devOptional": true,
+ "dev": true,
"license": "MIT",
"engines": {
"node": ">=0.12"
@@ -32241,18 +31554,9 @@
"url": "https://github.com/sponsors/isaacs"
}
},
- "node_modules/ripemd160": {
- "version": "2.0.2",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "hash-base": "^3.0.0",
- "inherits": "^2.0.1"
- }
- },
"node_modules/rollup": {
"version": "2.79.1",
- "dev": true,
+ "devOptional": true,
"license": "MIT",
"bin": {
"rollup": "dist/bin/rollup"
@@ -32356,7 +31660,6 @@
},
"node_modules/rollup/node_modules/fsevents": {
"version": "2.3.2",
- "dev": true,
"license": "MIT",
"optional": true,
"os": [
@@ -32378,7 +31681,7 @@
},
"node_modules/run-async": {
"version": "2.4.1",
- "devOptional": true,
+ "dev": true,
"license": "MIT",
"engines": {
"node": ">=0.12.0"
@@ -32405,14 +31708,6 @@
"queue-microtask": "^1.2.2"
}
},
- "node_modules/run-queue": {
- "version": "1.0.3",
- "license": "ISC",
- "optional": true,
- "dependencies": {
- "aproba": "^1.1.1"
- }
- },
"node_modules/rxjs": {
"version": "6.6.7",
"devOptional": true,
@@ -32451,7 +31746,7 @@
},
"node_modules/safe-regex": {
"version": "1.1.0",
- "devOptional": true,
+ "dev": true,
"license": "MIT",
"dependencies": {
"ret": "~0.1.10"
@@ -32475,11 +31770,6 @@
"devOptional": true,
"license": "MIT"
},
- "node_modules/sax": {
- "version": "1.2.4",
- "license": "ISC",
- "optional": true
- },
"node_modules/saxes": {
"version": "5.0.1",
"license": "ISC",
@@ -32499,29 +31789,11 @@
"object-assign": "^4.1.1"
}
},
- "node_modules/schema-utils": {
- "version": "1.0.0",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "ajv": "^6.1.0",
- "ajv-errors": "^1.0.0",
- "ajv-keywords": "^3.1.0"
- },
- "engines": {
- "node": ">= 4"
- }
- },
"node_modules/scuid": {
"version": "1.1.0",
"dev": true,
"license": "MIT"
},
- "node_modules/select": {
- "version": "1.1.2",
- "license": "MIT",
- "optional": true
- },
"node_modules/semver": {
"version": "7.3.5",
"license": "ISC",
@@ -32662,7 +31934,7 @@
},
"node_modules/serialize-javascript": {
"version": "4.0.0",
- "devOptional": true,
+ "dev": true,
"license": "BSD-3-Clause",
"dependencies": {
"randombytes": "^2.1.0"
@@ -32670,7 +31942,8 @@
},
"node_modules/serve-favicon": {
"version": "2.5.0",
- "license": "MIT",
+ "resolved": "https://registry.npmjs.org/serve-favicon/-/serve-favicon-2.5.0.tgz",
+ "integrity": "sha512-FMW2RvqNr03x+C0WxTyu6sOv21oOjkq5j8tjquWccwa6ScNyGFOGJVpuS1NmTVGBAHS07xnSKotgf2ehQmf9iA==",
"optional": true,
"dependencies": {
"etag": "~1.8.1",
@@ -32685,12 +31958,14 @@
},
"node_modules/serve-favicon/node_modules/ms": {
"version": "2.1.1",
- "license": "MIT",
+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.1.tgz",
+ "integrity": "sha512-tgp+dl5cGk28utYktBsrFqA7HKgrhgPsg6Z/EfhWI4gl1Hwq8B/GmY/0oXZ6nF8hDVesS/FpnYaD/kOWhYQvyg==",
"optional": true
},
"node_modules/serve-favicon/node_modules/safe-buffer": {
"version": "5.1.1",
- "license": "MIT",
+ "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.1.tgz",
+ "integrity": "sha512-kKvNJn6Mm93gAczWVJg7wH+wGYWNrDHdWvpUmHyEsgCtIwwo3bqPtV4tR5tuPaUhTOo/kvhVwd8XwwOllGYkbg==",
"optional": true
},
"node_modules/serve-static": {
@@ -32720,7 +31995,7 @@
},
"node_modules/set-value": {
"version": "2.0.1",
- "devOptional": true,
+ "dev": true,
"license": "MIT",
"dependencies": {
"extend-shallow": "^2.0.1",
@@ -32734,7 +32009,7 @@
},
"node_modules/set-value/node_modules/extend-shallow": {
"version": "2.0.1",
- "devOptional": true,
+ "dev": true,
"license": "MIT",
"dependencies": {
"is-extendable": "^0.1.0"
@@ -32745,7 +32020,7 @@
},
"node_modules/setimmediate": {
"version": "1.0.5",
- "devOptional": true,
+ "dev": true,
"license": "MIT"
},
"node_modules/setprototypeof": {
@@ -32762,63 +32037,13 @@
"@pollyjs/core": "*"
}
},
- "node_modules/sha.js": {
- "version": "2.4.11",
- "license": "(MIT AND BSD-3-Clause)",
- "optional": true,
- "dependencies": {
- "inherits": "^2.0.1",
- "safe-buffer": "^5.0.1"
- },
- "bin": {
- "sha.js": "bin.js"
- }
- },
- "node_modules/shallow-clone": {
- "version": "0.1.2",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "is-extendable": "^0.1.1",
- "kind-of": "^2.0.1",
- "lazy-cache": "^0.2.3",
- "mixin-object": "^2.0.1"
- },
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/shallow-clone/node_modules/kind-of": {
- "version": "2.0.1",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "is-buffer": "^1.0.2"
- },
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/shallow-clone/node_modules/lazy-cache": {
- "version": "0.2.7",
- "license": "MIT",
- "optional": true,
- "engines": {
- "node": ">=0.10.0"
- }
- },
"node_modules/shallow-equal": {
"version": "1.2.1",
"license": "MIT"
},
- "node_modules/shallowequal": {
- "version": "1.1.0",
- "license": "MIT",
- "optional": true
- },
"node_modules/shebang-command": {
"version": "1.2.0",
- "devOptional": true,
+ "dev": true,
"license": "MIT",
"dependencies": {
"shebang-regex": "^1.0.0"
@@ -32829,20 +32054,15 @@
},
"node_modules/shebang-regex": {
"version": "1.0.0",
- "devOptional": true,
+ "dev": true,
"license": "MIT",
"engines": {
"node": ">=0.10.0"
}
},
- "node_modules/shell-quote": {
- "version": "1.7.2",
- "license": "MIT",
- "optional": true
- },
"node_modules/shelljs": {
"version": "0.8.4",
- "devOptional": true,
+ "dev": true,
"license": "BSD-3-Clause",
"dependencies": {
"glob": "^7.0.0",
@@ -32869,8 +32089,9 @@
}
},
"node_modules/signal-exit": {
- "version": "3.0.3",
- "license": "ISC"
+ "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/signedsource": {
"version": "1.0.0",
@@ -32893,30 +32114,25 @@
"ms": "^2.1.1"
}
},
- "node_modules/simplebar": {
- "version": "4.2.3",
- "license": "MIT",
+ "node_modules/simple-update-notifier": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/simple-update-notifier/-/simple-update-notifier-1.1.0.tgz",
+ "integrity": "sha512-VpsrsJSUcJEseSbMHkrsrAVSdvVS5I96Qo1QAQ4FxQ9wXFcB+pjj7FB7/us9+GcgfW4ziHtYMc1J0PLczb55mg==",
"optional": true,
"dependencies": {
- "can-use-dom": "^0.1.0",
- "core-js": "^3.0.1",
- "lodash.debounce": "^4.0.8",
- "lodash.memoize": "^4.1.2",
- "lodash.throttle": "^4.1.1",
- "resize-observer-polyfill": "^1.5.1"
+ "semver": "~7.0.0"
+ },
+ "engines": {
+ "node": ">=8.10.0"
}
},
- "node_modules/simplebar-react": {
- "version": "1.2.3",
- "license": "MIT",
+ "node_modules/simple-update-notifier/node_modules/semver": {
+ "version": "7.0.0",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-7.0.0.tgz",
+ "integrity": "sha512-+GB6zVA9LWh6zovYQLALHwv5rb2PHGlJi3lfiqIHxR0uuwCgefcOJc59v9fv1w8GbStwxuuqqAjI9NMAOOgq1A==",
"optional": true,
- "dependencies": {
- "prop-types": "^15.6.1",
- "simplebar": "^4.2.3"
- },
- "peerDependencies": {
- "react": "^0.14.9 || ^15.3.0 || ^16.0.0-rc || ^16.0",
- "react-dom": "^0.14.9 || ^15.3.0 || ^16.0.0-rc || ^16.0"
+ "bin": {
+ "semver": "bin/semver.js"
}
},
"node_modules/sisteransi": {
@@ -33095,7 +32311,7 @@
},
"node_modules/snapdragon": {
"version": "0.8.2",
- "devOptional": true,
+ "dev": true,
"license": "MIT",
"dependencies": {
"base": "^0.11.1",
@@ -33113,7 +32329,7 @@
},
"node_modules/snapdragon-node": {
"version": "2.1.1",
- "devOptional": true,
+ "dev": true,
"license": "MIT",
"dependencies": {
"define-property": "^1.0.0",
@@ -33126,7 +32342,7 @@
},
"node_modules/snapdragon-node/node_modules/define-property": {
"version": "1.0.0",
- "devOptional": true,
+ "dev": true,
"license": "MIT",
"dependencies": {
"is-descriptor": "^1.0.0"
@@ -33137,7 +32353,7 @@
},
"node_modules/snapdragon-node/node_modules/is-accessor-descriptor": {
"version": "1.0.0",
- "devOptional": true,
+ "dev": true,
"license": "MIT",
"dependencies": {
"kind-of": "^6.0.0"
@@ -33148,7 +32364,7 @@
},
"node_modules/snapdragon-node/node_modules/is-data-descriptor": {
"version": "1.0.0",
- "devOptional": true,
+ "dev": true,
"license": "MIT",
"dependencies": {
"kind-of": "^6.0.0"
@@ -33159,7 +32375,7 @@
},
"node_modules/snapdragon-node/node_modules/is-descriptor": {
"version": "1.0.2",
- "devOptional": true,
+ "dev": true,
"license": "MIT",
"dependencies": {
"is-accessor-descriptor": "^1.0.0",
@@ -33172,7 +32388,7 @@
},
"node_modules/snapdragon-util": {
"version": "3.0.1",
- "devOptional": true,
+ "dev": true,
"license": "MIT",
"dependencies": {
"kind-of": "^3.2.0"
@@ -33183,7 +32399,7 @@
},
"node_modules/snapdragon-util/node_modules/kind-of": {
"version": "3.2.2",
- "devOptional": true,
+ "dev": true,
"license": "MIT",
"dependencies": {
"is-buffer": "^1.1.5"
@@ -33194,7 +32410,7 @@
},
"node_modules/snapdragon/node_modules/debug": {
"version": "2.6.9",
- "devOptional": true,
+ "dev": true,
"license": "MIT",
"dependencies": {
"ms": "2.0.0"
@@ -33202,7 +32418,7 @@
},
"node_modules/snapdragon/node_modules/define-property": {
"version": "0.2.5",
- "devOptional": true,
+ "dev": true,
"license": "MIT",
"dependencies": {
"is-descriptor": "^0.1.0"
@@ -33213,7 +32429,7 @@
},
"node_modules/snapdragon/node_modules/extend-shallow": {
"version": "2.0.1",
- "devOptional": true,
+ "dev": true,
"license": "MIT",
"dependencies": {
"is-extendable": "^0.1.0"
@@ -33224,44 +32440,102 @@
},
"node_modules/snapdragon/node_modules/ms": {
"version": "2.0.0",
- "devOptional": true,
+ "dev": true,
"license": "MIT"
},
- "node_modules/sockjs-client": {
- "version": "1.4.0",
- "license": "MIT",
+ "node_modules/snyk-config": {
+ "version": "5.1.0",
+ "resolved": "https://registry.npmjs.org/snyk-config/-/snyk-config-5.1.0.tgz",
+ "integrity": "sha512-wqVMxUGqjjHX+MJrz0WHa/pJTDWU17aRv6cnI/6i7cq93J3TkkJZ8sjgvwCgP8cWX5wTHIlRuMV+IAd59K4X/g==",
"optional": true,
"dependencies": {
- "debug": "^3.2.5",
- "eventsource": "^1.0.7",
- "faye-websocket": "~0.11.1",
- "inherits": "^2.0.3",
- "json3": "^3.3.2",
- "url-parse": "^1.4.3"
+ "async": "^3.2.0",
+ "debug": "^4.1.1",
+ "lodash.merge": "^4.6.2",
+ "minimist": "^1.2.5"
}
},
- "node_modules/sockjs-client/node_modules/debug": {
- "version": "3.2.7",
- "license": "MIT",
+ "node_modules/snyk-nodejs-lockfile-parser": {
+ "version": "1.49.0",
+ "resolved": "https://registry.npmjs.org/snyk-nodejs-lockfile-parser/-/snyk-nodejs-lockfile-parser-1.49.0.tgz",
+ "integrity": "sha512-73iqwHB8YSWex/PTx+TRUwtNPyKn5wP4n/kxEPbX9EfN3uSIcw6mSKiLm8gSKl5gtf8hcP0R0f1tBFjjdzQvRQ==",
"optional": true,
"dependencies": {
- "ms": "^2.1.1"
- }
- },
- "node_modules/sort-keys": {
- "version": "1.1.2",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "is-plain-obj": "^1.0.0"
+ "@snyk/dep-graph": "^2.3.0",
+ "@snyk/graphlib": "2.1.9-patch.3",
+ "@yarnpkg/core": "^2.4.0",
+ "@yarnpkg/lockfile": "^1.1.0",
+ "event-loop-spinner": "^2.0.0",
+ "js-yaml": "^4.1.0",
+ "lodash.clonedeep": "^4.5.0",
+ "lodash.flatmap": "^4.5.0",
+ "lodash.isempty": "^4.4.0",
+ "lodash.topairs": "^4.3.0",
+ "micromatch": "^4.0.5",
+ "p-map": "^4.0.0",
+ "semver": "^7.3.5",
+ "snyk-config": "^5.0.0",
+ "tslib": "^1.9.3",
+ "uuid": "^8.3.0"
+ },
+ "bin": {
+ "parse-nodejs-lockfile": "bin/index.js"
},
"engines": {
- "node": ">=0.10.0"
+ "node": ">=10"
+ }
+ },
+ "node_modules/snyk-nodejs-lockfile-parser/node_modules/argparse": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz",
+ "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==",
+ "optional": true
+ },
+ "node_modules/snyk-nodejs-lockfile-parser/node_modules/js-yaml": {
+ "version": "4.1.0",
+ "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz",
+ "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==",
+ "optional": true,
+ "dependencies": {
+ "argparse": "^2.0.1"
+ },
+ "bin": {
+ "js-yaml": "bin/js-yaml.js"
+ }
+ },
+ "node_modules/snyk-nodejs-lockfile-parser/node_modules/p-map": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/p-map/-/p-map-4.0.0.tgz",
+ "integrity": "sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==",
+ "optional": true,
+ "dependencies": {
+ "aggregate-error": "^3.0.0"
+ },
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/snyk-nodejs-lockfile-parser/node_modules/tslib": {
+ "version": "1.14.1",
+ "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz",
+ "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==",
+ "optional": true
+ },
+ "node_modules/snyk-nodejs-lockfile-parser/node_modules/uuid": {
+ "version": "8.3.2",
+ "resolved": "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz",
+ "integrity": "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==",
+ "optional": true,
+ "bin": {
+ "uuid": "dist/bin/uuid"
}
},
"node_modules/source-list-map": {
"version": "2.0.1",
- "devOptional": true,
+ "dev": true,
"license": "MIT"
},
"node_modules/source-map": {
@@ -33281,7 +32555,7 @@
},
"node_modules/source-map-resolve": {
"version": "0.5.3",
- "devOptional": true,
+ "dev": true,
"license": "MIT",
"dependencies": {
"atob": "^2.1.2",
@@ -33310,7 +32584,7 @@
},
"node_modules/source-map-url": {
"version": "0.4.1",
- "devOptional": true,
+ "dev": true,
"license": "MIT"
},
"node_modules/sourcemap-codec": {
@@ -33320,7 +32594,8 @@
},
"node_modules/space-separated-tokens": {
"version": "1.1.5",
- "license": "MIT",
+ "resolved": "https://registry.npmjs.org/space-separated-tokens/-/space-separated-tokens-1.1.5.tgz",
+ "integrity": "sha512-q/JSVd1Lptzhf5bkYm4ob4iWPjx0KiRe3sRFBNrVqbJkFaBm5vbbowy1mymoPNLRa52+oadOhJ+K49wsSeSjTA==",
"optional": true,
"funding": {
"type": "github",
@@ -33413,7 +32688,7 @@
},
"node_modules/split-string": {
"version": "3.1.0",
- "devOptional": true,
+ "dev": true,
"license": "MIT",
"dependencies": {
"extend-shallow": "^3.0.0"
@@ -33458,19 +32733,6 @@
"node": ">=0.10.0"
}
},
- "node_modules/ssri": {
- "version": "6.0.2",
- "license": "ISC",
- "optional": true,
- "dependencies": {
- "figgy-pudding": "^3.5.1"
- }
- },
- "node_modules/stable": {
- "version": "0.1.8",
- "license": "MIT",
- "optional": true
- },
"node_modules/stack-utils": {
"version": "2.0.6",
"license": "MIT",
@@ -33512,19 +32774,6 @@
"node": ">=6"
}
},
- "node_modules/start-server-and-test/node_modules/cross-spawn": {
- "version": "7.0.3",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "path-key": "^3.1.0",
- "shebang-command": "^2.0.0",
- "which": "^2.0.1"
- },
- "engines": {
- "node": ">= 8"
- }
- },
"node_modules/start-server-and-test/node_modules/debug": {
"version": "4.3.1",
"resolved": "https://registry.npmjs.org/debug/-/debug-4.3.1.tgz",
@@ -33570,47 +32819,6 @@
"node": ">=8"
}
},
- "node_modules/start-server-and-test/node_modules/path-key": {
- "version": "3.1.1",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/start-server-and-test/node_modules/shebang-command": {
- "version": "2.0.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "shebang-regex": "^3.0.0"
- },
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/start-server-and-test/node_modules/shebang-regex": {
- "version": "3.0.0",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/start-server-and-test/node_modules/which": {
- "version": "2.0.2",
- "dev": true,
- "license": "ISC",
- "dependencies": {
- "isexe": "^2.0.0"
- },
- "bin": {
- "node-which": "bin/node-which"
- },
- "engines": {
- "node": ">= 8"
- }
- },
"node_modules/state-toggle": {
"version": "1.0.3",
"license": "MIT",
@@ -33621,7 +32829,7 @@
},
"node_modules/static-extend": {
"version": "0.1.2",
- "devOptional": true,
+ "dev": true,
"license": "MIT",
"dependencies": {
"define-property": "^0.2.5",
@@ -33633,7 +32841,7 @@
},
"node_modules/static-extend/node_modules/define-property": {
"version": "0.2.5",
- "devOptional": true,
+ "dev": true,
"license": "MIT",
"dependencies": {
"is-descriptor": "^0.1.0"
@@ -33652,17 +32860,35 @@
}
},
"node_modules/store2": {
- "version": "2.12.0",
- "license": "(MIT OR GPL-3.0)",
+ "version": "2.14.2",
+ "resolved": "https://registry.npmjs.org/store2/-/store2-2.14.2.tgz",
+ "integrity": "sha512-siT1RiqlfQnGqgT/YzXVUNsom9S0H1OX+dpdGN1xkyYATo4I6sep5NmsRD/40s3IIOvlCq6akxkqG82urIZW1w==",
"optional": true
},
- "node_modules/stream-browserify": {
- "version": "2.0.2",
- "license": "MIT",
+ "node_modules/storybook": {
+ "version": "7.0.8",
+ "resolved": "https://registry.npmjs.org/storybook/-/storybook-7.0.8.tgz",
+ "integrity": "sha512-2SY6r7nwb5uh2HXXcTttwaZcKhGhy0kHE8mfaWD4Ros5vnt6Se12sanCCWTTxNeV1spAtg4aa9lelRI0VyGvsg==",
"optional": true,
"dependencies": {
- "inherits": "~2.0.1",
- "readable-stream": "^2.0.2"
+ "@storybook/cli": "7.0.8"
+ },
+ "bin": {
+ "sb": "index.js",
+ "storybook": "index.js"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/storybook"
+ }
+ },
+ "node_modules/stream-buffers": {
+ "version": "3.0.2",
+ "resolved": "https://registry.npmjs.org/stream-buffers/-/stream-buffers-3.0.2.tgz",
+ "integrity": "sha512-DQi1h8VEBA/lURbSwFtEHnSTb9s2/pwLEaFuNhXwy1Dx3Sa0lOuYT2yNUr4/j2fs8oCAMANtrZ5OrPZtyVs3MQ==",
+ "optional": true,
+ "engines": {
+ "node": ">= 0.10.0"
}
},
"node_modules/stream-combiner": {
@@ -33673,15 +32899,6 @@
"duplexer": "~0.1.1"
}
},
- "node_modules/stream-each": {
- "version": "1.2.3",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "end-of-stream": "^1.1.0",
- "stream-shift": "^1.0.0"
- }
- },
"node_modules/stream-events": {
"version": "1.0.5",
"dev": true,
@@ -33690,23 +32907,50 @@
"stubs": "^3.0.0"
}
},
- "node_modules/stream-http": {
- "version": "2.8.3",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "builtin-status-codes": "^3.0.0",
- "inherits": "^2.0.1",
- "readable-stream": "^2.3.6",
- "to-arraybuffer": "^1.0.0",
- "xtend": "^4.0.0"
- }
- },
"node_modules/stream-shift": {
"version": "1.0.1",
- "license": "MIT",
+ "resolved": "https://registry.npmjs.org/stream-shift/-/stream-shift-1.0.1.tgz",
+ "integrity": "sha512-AiisoFqQ0vbGcZgQPY1cdP2I76glaVA/RauYR4G4thNFgkTqr90yXTo4LYX60Jl+sIlPNHHdGSwo01AvbKUSVQ==",
"optional": true
},
+ "node_modules/stream-to-array": {
+ "version": "2.3.0",
+ "resolved": "https://registry.npmjs.org/stream-to-array/-/stream-to-array-2.3.0.tgz",
+ "integrity": "sha512-UsZtOYEn4tWU2RGLOXr/o/xjRBftZRlG3dEWoaHr8j4GuypJ3isitGbVyjQKAuMu+xbiop8q224TjiZWc4XTZA==",
+ "optional": true,
+ "dependencies": {
+ "any-promise": "^1.1.0"
+ }
+ },
+ "node_modules/stream-to-promise": {
+ "version": "2.2.0",
+ "resolved": "https://registry.npmjs.org/stream-to-promise/-/stream-to-promise-2.2.0.tgz",
+ "integrity": "sha512-HAGUASw8NT0k8JvIVutB2Y/9iBk7gpgEyAudXwNJmZERdMITGdajOa4VJfD/kNiA3TppQpTP4J+CtcHwdzKBAw==",
+ "optional": true,
+ "dependencies": {
+ "any-promise": "~1.3.0",
+ "end-of-stream": "~1.1.0",
+ "stream-to-array": "~2.3.0"
+ }
+ },
+ "node_modules/stream-to-promise/node_modules/end-of-stream": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.1.0.tgz",
+ "integrity": "sha512-EoulkdKF/1xa92q25PbjuDcgJ9RDHYU2Rs3SCIvs2/dSQ3BpmxneNHmA/M7fe60M3PrV7nNGTTNbkK62l6vXiQ==",
+ "optional": true,
+ "dependencies": {
+ "once": "~1.3.0"
+ }
+ },
+ "node_modules/stream-to-promise/node_modules/once": {
+ "version": "1.3.3",
+ "resolved": "https://registry.npmjs.org/once/-/once-1.3.3.tgz",
+ "integrity": "sha512-6vaNInhu+CHxtONf3zw3vq4SP2DOQhjBvIa3rNcG0+P7eKWlYH6Peu7rHizSloRU2EwMz6GraLieis9Ac9+p1w==",
+ "optional": true,
+ "dependencies": {
+ "wrappy": "1"
+ }
+ },
"node_modules/stream-transform": {
"version": "2.1.3",
"resolved": "https://registry.npmjs.org/stream-transform/-/stream-transform-2.1.3.tgz",
@@ -33798,7 +33042,7 @@
},
"node_modules/string.prototype.matchall": {
"version": "4.0.8",
- "devOptional": true,
+ "dev": true,
"license": "MIT",
"dependencies": {
"call-bind": "^1.0.2",
@@ -33814,38 +33058,6 @@
"url": "https://github.com/sponsors/ljharb"
}
},
- "node_modules/string.prototype.padend": {
- "version": "3.1.2",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "call-bind": "^1.0.2",
- "define-properties": "^1.1.3",
- "es-abstract": "^1.18.0-next.2"
- },
- "engines": {
- "node": ">= 0.4"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
- "node_modules/string.prototype.padstart": {
- "version": "3.1.2",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "call-bind": "^1.0.2",
- "define-properties": "^1.1.3",
- "es-abstract": "^1.18.0-next.2"
- },
- "engines": {
- "node": ">= 0.4"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
"node_modules/string.prototype.trimend": {
"version": "1.0.6",
"devOptional": true,
@@ -33953,55 +33165,6 @@
"dev": true,
"license": "MIT"
},
- "node_modules/style-loader": {
- "version": "1.3.0",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "loader-utils": "^2.0.0",
- "schema-utils": "^2.7.0"
- },
- "engines": {
- "node": ">= 8.9.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/webpack"
- },
- "peerDependencies": {
- "webpack": "^4.0.0 || ^5.0.0"
- }
- },
- "node_modules/style-loader/node_modules/loader-utils": {
- "version": "2.0.0",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "big.js": "^5.2.2",
- "emojis-list": "^3.0.0",
- "json5": "^2.1.2"
- },
- "engines": {
- "node": ">=8.9.0"
- }
- },
- "node_modules/style-loader/node_modules/schema-utils": {
- "version": "2.7.1",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "@types/json-schema": "^7.0.5",
- "ajv": "^6.12.4",
- "ajv-keywords": "^3.5.2"
- },
- "engines": {
- "node": ">= 8.9.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/webpack"
- }
- },
"node_modules/stylis": {
"version": "4.1.3",
"resolved": "https://registry.npmjs.org/stylis/-/stylis-4.1.3.tgz",
@@ -34068,51 +33231,6 @@
"node": ">=8"
}
},
- "node_modules/svg-parser": {
- "version": "2.0.4",
- "license": "MIT",
- "optional": true
- },
- "node_modules/svgo": {
- "version": "1.3.2",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "chalk": "^2.4.1",
- "coa": "^2.0.2",
- "css-select": "^2.0.0",
- "css-select-base-adapter": "^0.1.1",
- "css-tree": "1.0.0-alpha.37",
- "csso": "^4.0.2",
- "js-yaml": "^3.13.1",
- "mkdirp": "~0.5.1",
- "object.values": "^1.1.0",
- "sax": "~1.2.4",
- "stable": "^0.1.8",
- "unquote": "~1.1.1",
- "util.promisify": "~1.0.0"
- },
- "bin": {
- "svgo": "bin/svgo"
- },
- "engines": {
- "node": ">=4.0.0"
- }
- },
- "node_modules/svgo/node_modules/util.promisify": {
- "version": "1.0.1",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "define-properties": "^1.1.3",
- "es-abstract": "^1.17.2",
- "has-symbols": "^1.0.1",
- "object.getownpropertydescriptors": "^2.1.0"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
"node_modules/swap-case": {
"version": "2.0.2",
"dev": true,
@@ -34133,23 +33251,6 @@
"license": "MIT",
"optional": true
},
- "node_modules/symbol.prototype.description": {
- "version": "1.0.4",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "call-bind": "^1.0.2",
- "es-abstract": "^1.18.0-next.2",
- "has-symbols": "^1.0.1",
- "object.getownpropertydescriptors": "^2.1.2"
- },
- "engines": {
- "node": ">= 0.11.15"
- },
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- }
- },
"node_modules/sync-fetch": {
"version": "0.3.0",
"dev": true,
@@ -34185,6 +33286,12 @@
"ieee754": "^1.1.13"
}
},
+ "node_modules/synchronous-promise": {
+ "version": "2.0.17",
+ "resolved": "https://registry.npmjs.org/synchronous-promise/-/synchronous-promise-2.0.17.tgz",
+ "integrity": "sha512-AsS729u2RHUfEra9xJrE39peJcc2stq2+poBXX8bcM08Y6g9j/i/PUzwNQqkaJde7Ntg1TO7bSREbR5sdosQ+g==",
+ "optional": true
+ },
"node_modules/tabbable": {
"version": "4.0.0",
"license": "MIT"
@@ -34259,14 +33366,69 @@
"node": ">=8"
}
},
- "node_modules/tapable": {
- "version": "1.1.3",
- "devOptional": true,
- "license": "MIT",
+ "node_modules/tar": {
+ "version": "6.1.14",
+ "resolved": "https://registry.npmjs.org/tar/-/tar-6.1.14.tgz",
+ "integrity": "sha512-piERznXu0U7/pW7cdSn7hjqySIVTYT6F76icmFk7ptU7dDYlXTm5r9A6K04R2vU3olYgoKeo1Cg3eeu5nhftAw==",
+ "optional": true,
+ "dependencies": {
+ "chownr": "^2.0.0",
+ "fs-minipass": "^2.0.0",
+ "minipass": "^5.0.0",
+ "minizlib": "^2.1.1",
+ "mkdirp": "^1.0.3",
+ "yallist": "^4.0.0"
+ },
+ "engines": {
+ "node": ">=10"
+ }
+ },
+ "node_modules/tar-fs": {
+ "version": "2.1.1",
+ "resolved": "https://registry.npmjs.org/tar-fs/-/tar-fs-2.1.1.tgz",
+ "integrity": "sha512-V0r2Y9scmbDRLCNex/+hYzvp/zyYjvFbHPNgVTKfQvVrb6guiE/fxP+XblDNR011utopbkex2nM4dHNV6GDsng==",
+ "optional": true,
+ "dependencies": {
+ "chownr": "^1.1.1",
+ "mkdirp-classic": "^0.5.2",
+ "pump": "^3.0.0",
+ "tar-stream": "^2.1.4"
+ }
+ },
+ "node_modules/tar-fs/node_modules/chownr": {
+ "version": "1.1.4",
+ "resolved": "https://registry.npmjs.org/chownr/-/chownr-1.1.4.tgz",
+ "integrity": "sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==",
+ "optional": true
+ },
+ "node_modules/tar-stream": {
+ "version": "2.2.0",
+ "resolved": "https://registry.npmjs.org/tar-stream/-/tar-stream-2.2.0.tgz",
+ "integrity": "sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==",
+ "optional": true,
+ "dependencies": {
+ "bl": "^4.0.3",
+ "end-of-stream": "^1.4.1",
+ "fs-constants": "^1.0.0",
+ "inherits": "^2.0.3",
+ "readable-stream": "^3.1.1"
+ },
"engines": {
"node": ">=6"
}
},
+ "node_modules/tar/node_modules/mkdirp": {
+ "version": "1.0.4",
+ "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz",
+ "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==",
+ "optional": true,
+ "bin": {
+ "mkdirp": "bin/cmd.js"
+ },
+ "engines": {
+ "node": ">=10"
+ }
+ },
"node_modules/tcomb": {
"version": "3.2.29",
"license": "MIT",
@@ -34319,31 +33481,17 @@
}
},
"node_modules/telejson": {
- "version": "3.3.0",
- "license": "MIT",
+ "version": "7.1.0",
+ "resolved": "https://registry.npmjs.org/telejson/-/telejson-7.1.0.tgz",
+ "integrity": "sha512-jFJO4P5gPebZAERPkJsqMAQ0IMA1Hi0AoSfxpnUaV6j6R2SZqlpkbS20U6dEUtA3RUYt2Ak/mTlkQzHH9Rv/hA==",
"optional": true,
"dependencies": {
- "@types/is-function": "^1.0.0",
- "global": "^4.4.0",
- "is-function": "^1.0.1",
- "is-regex": "^1.0.4",
- "is-symbol": "^1.0.3",
- "isobject": "^4.0.0",
- "lodash": "^4.17.15",
"memoizerific": "^1.11.3"
}
},
- "node_modules/telejson/node_modules/isobject": {
- "version": "4.0.0",
- "license": "MIT",
- "optional": true,
- "engines": {
- "node": ">=0.10.0"
- }
- },
"node_modules/temp": {
"version": "0.8.4",
- "dev": true,
+ "devOptional": true,
"license": "MIT",
"dependencies": {
"rimraf": "~2.6.2"
@@ -34354,7 +33502,7 @@
},
"node_modules/temp-dir": {
"version": "2.0.0",
- "dev": true,
+ "devOptional": true,
"license": "MIT",
"engines": {
"node": ">=8"
@@ -34362,7 +33510,7 @@
},
"node_modules/temp/node_modules/rimraf": {
"version": "2.6.3",
- "dev": true,
+ "devOptional": true,
"license": "ISC",
"dependencies": {
"glob": "^7.1.3"
@@ -34401,7 +33549,7 @@
},
"node_modules/term-size": {
"version": "2.2.1",
- "devOptional": true,
+ "dev": true,
"license": "MIT",
"engines": {
"node": ">=8"
@@ -34425,192 +33573,6 @@
"url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/terser": {
- "version": "4.8.0",
- "license": "BSD-2-Clause",
- "optional": true,
- "dependencies": {
- "commander": "^2.20.0",
- "source-map": "~0.6.1",
- "source-map-support": "~0.5.12"
- },
- "bin": {
- "terser": "bin/terser"
- },
- "engines": {
- "node": ">=6.0.0"
- }
- },
- "node_modules/terser-webpack-plugin": {
- "version": "2.3.8",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "cacache": "^13.0.1",
- "find-cache-dir": "^3.3.1",
- "jest-worker": "^25.4.0",
- "p-limit": "^2.3.0",
- "schema-utils": "^2.6.6",
- "serialize-javascript": "^4.0.0",
- "source-map": "^0.6.1",
- "terser": "^4.6.12",
- "webpack-sources": "^1.4.3"
- },
- "engines": {
- "node": ">= 8.9.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/webpack"
- },
- "peerDependencies": {
- "webpack": "^4.0.0 || ^5.0.0"
- }
- },
- "node_modules/terser-webpack-plugin/node_modules/cacache": {
- "version": "13.0.1",
- "license": "ISC",
- "optional": true,
- "dependencies": {
- "chownr": "^1.1.2",
- "figgy-pudding": "^3.5.1",
- "fs-minipass": "^2.0.0",
- "glob": "^7.1.4",
- "graceful-fs": "^4.2.2",
- "infer-owner": "^1.0.4",
- "lru-cache": "^5.1.1",
- "minipass": "^3.0.0",
- "minipass-collect": "^1.0.2",
- "minipass-flush": "^1.0.5",
- "minipass-pipeline": "^1.2.2",
- "mkdirp": "^0.5.1",
- "move-concurrently": "^1.0.1",
- "p-map": "^3.0.0",
- "promise-inflight": "^1.0.1",
- "rimraf": "^2.7.1",
- "ssri": "^7.0.0",
- "unique-filename": "^1.1.1"
- },
- "engines": {
- "node": ">= 8"
- }
- },
- "node_modules/terser-webpack-plugin/node_modules/has-flag": {
- "version": "4.0.0",
- "license": "MIT",
- "optional": true,
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/terser-webpack-plugin/node_modules/jest-worker": {
- "version": "25.5.0",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "merge-stream": "^2.0.0",
- "supports-color": "^7.0.0"
- },
- "engines": {
- "node": ">= 8.3"
- }
- },
- "node_modules/terser-webpack-plugin/node_modules/lru-cache": {
- "version": "5.1.1",
- "license": "ISC",
- "optional": true,
- "dependencies": {
- "yallist": "^3.0.2"
- }
- },
- "node_modules/terser-webpack-plugin/node_modules/p-map": {
- "version": "3.0.0",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "aggregate-error": "^3.0.0"
- },
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/terser-webpack-plugin/node_modules/rimraf": {
- "version": "2.7.1",
- "license": "ISC",
- "optional": true,
- "dependencies": {
- "glob": "^7.1.3"
- },
- "bin": {
- "rimraf": "bin.js"
- }
- },
- "node_modules/terser-webpack-plugin/node_modules/schema-utils": {
- "version": "2.7.1",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "@types/json-schema": "^7.0.5",
- "ajv": "^6.12.4",
- "ajv-keywords": "^3.5.2"
- },
- "engines": {
- "node": ">= 8.9.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/webpack"
- }
- },
- "node_modules/terser-webpack-plugin/node_modules/source-map": {
- "version": "0.6.1",
- "license": "BSD-3-Clause",
- "optional": true,
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/terser-webpack-plugin/node_modules/ssri": {
- "version": "7.1.0",
- "license": "ISC",
- "optional": true,
- "dependencies": {
- "figgy-pudding": "^3.5.1",
- "minipass": "^3.1.1"
- },
- "engines": {
- "node": ">= 8"
- }
- },
- "node_modules/terser-webpack-plugin/node_modules/supports-color": {
- "version": "7.2.0",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "has-flag": "^4.0.0"
- },
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/terser-webpack-plugin/node_modules/yallist": {
- "version": "3.1.1",
- "license": "ISC",
- "optional": true
- },
- "node_modules/terser/node_modules/commander": {
- "version": "2.20.3",
- "license": "MIT",
- "optional": true
- },
- "node_modules/terser/node_modules/source-map": {
- "version": "0.6.1",
- "license": "BSD-3-Clause",
- "optional": true,
- "engines": {
- "node": ">=0.10.0"
- }
- },
"node_modules/test-exclude": {
"version": "6.0.0",
"devOptional": true,
@@ -34669,27 +33631,39 @@
},
"node_modules/through2": {
"version": "2.0.5",
- "license": "MIT",
+ "resolved": "https://registry.npmjs.org/through2/-/through2-2.0.5.tgz",
+ "integrity": "sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==",
"optional": true,
"dependencies": {
"readable-stream": "~2.3.6",
"xtend": "~4.0.1"
}
},
- "node_modules/timers-browserify": {
- "version": "2.0.12",
- "license": "MIT",
+ "node_modules/through2/node_modules/isarray": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz",
+ "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==",
+ "optional": true
+ },
+ "node_modules/through2/node_modules/readable-stream": {
+ "version": "2.3.8",
+ "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz",
+ "integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==",
"optional": true,
"dependencies": {
- "setimmediate": "^1.0.4"
- },
- "engines": {
- "node": ">=0.6.0"
+ "core-util-is": "~1.0.0",
+ "inherits": "~2.0.3",
+ "isarray": "~1.0.0",
+ "process-nextick-args": "~2.0.0",
+ "safe-buffer": "~5.1.1",
+ "string_decoder": "~1.1.1",
+ "util-deprecate": "~1.0.1"
}
},
- "node_modules/tiny-emitter": {
- "version": "2.1.0",
- "license": "MIT",
+ "node_modules/through2/node_modules/safe-buffer": {
+ "version": "5.1.2",
+ "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz",
+ "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==",
"optional": true
},
"node_modules/tiny-invariant": {
@@ -34710,7 +33684,7 @@
},
"node_modules/tmp": {
"version": "0.0.33",
- "devOptional": true,
+ "dev": true,
"license": "MIT",
"dependencies": {
"os-tmpdir": "~1.0.2"
@@ -34724,11 +33698,6 @@
"devOptional": true,
"license": "BSD-3-Clause"
},
- "node_modules/to-arraybuffer": {
- "version": "1.0.1",
- "license": "MIT",
- "optional": true
- },
"node_modules/to-fast-properties": {
"version": "2.0.0",
"license": "MIT",
@@ -34738,7 +33707,7 @@
},
"node_modules/to-object-path": {
"version": "0.3.0",
- "devOptional": true,
+ "dev": true,
"license": "MIT",
"dependencies": {
"kind-of": "^3.0.2"
@@ -34749,7 +33718,7 @@
},
"node_modules/to-object-path/node_modules/kind-of": {
"version": "3.2.2",
- "devOptional": true,
+ "dev": true,
"license": "MIT",
"dependencies": {
"is-buffer": "^1.1.5"
@@ -34767,7 +33736,7 @@
},
"node_modules/to-regex": {
"version": "3.0.2",
- "devOptional": true,
+ "dev": true,
"license": "MIT",
"dependencies": {
"define-property": "^2.0.2",
@@ -34822,6 +33791,15 @@
"punycode": "^2.1.0"
}
},
+ "node_modules/treeify": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/treeify/-/treeify-1.1.0.tgz",
+ "integrity": "sha512-1m4RA7xVAJrSGrrXGs0L3YTwyvBs2S8PbRHaLZAkFw7JR8oIFwYtysxlBZhYIa7xSyiYJKZ3iGrrk55cGA3i9A==",
+ "optional": true,
+ "engines": {
+ "node": ">=0.6"
+ }
+ },
"node_modules/trim": {
"version": "0.0.1"
},
@@ -34851,8 +33829,9 @@
}
},
"node_modules/ts-dedent": {
- "version": "1.2.0",
- "license": "MIT",
+ "version": "2.2.0",
+ "resolved": "https://registry.npmjs.org/ts-dedent/-/ts-dedent-2.2.0.tgz",
+ "integrity": "sha512-q5W7tVM71e2xjHZTlgfTDoPF/SmqKG5hddq9SzR49CH2hayqRKJtQ4mtRlSxKaJlR/+9rEM+mnBHf7I2/BQcpQ==",
"optional": true,
"engines": {
"node": ">=6.10"
@@ -34923,23 +33902,10 @@
"dev": true,
"license": "MIT"
},
- "node_modules/ts-pnp": {
- "version": "1.2.0",
- "license": "MIT",
- "optional": true,
- "engines": {
- "node": ">=6"
- },
- "peerDependenciesMeta": {
- "typescript": {
- "optional": true
- }
- }
- },
"node_modules/tsconfig-paths": {
"version": "3.9.0",
- "devOptional": true,
"license": "MIT",
+ "optional": true,
"dependencies": {
"@types/json5": "^0.0.29",
"json5": "^1.0.1",
@@ -34947,74 +33913,10 @@
"strip-bom": "^3.0.0"
}
},
- "node_modules/tsconfig-paths-webpack-plugin": {
- "version": "3.5.1",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "chalk": "^4.1.0",
- "enhanced-resolve": "^5.7.0",
- "tsconfig-paths": "^3.9.0"
- }
- },
- "node_modules/tsconfig-paths-webpack-plugin/node_modules/chalk": {
- "version": "4.1.0",
- "dev": true,
- "license": "MIT",
- "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/tsconfig-paths-webpack-plugin/node_modules/enhanced-resolve": {
- "version": "5.7.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "graceful-fs": "^4.2.4",
- "tapable": "^2.2.0"
- },
- "engines": {
- "node": ">=10.13.0"
- }
- },
- "node_modules/tsconfig-paths-webpack-plugin/node_modules/has-flag": {
- "version": "4.0.0",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/tsconfig-paths-webpack-plugin/node_modules/supports-color": {
- "version": "7.2.0",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "has-flag": "^4.0.0"
- },
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/tsconfig-paths-webpack-plugin/node_modules/tapable": {
- "version": "2.2.0",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=6"
- }
- },
"node_modules/tsconfig-paths/node_modules/json5": {
"version": "1.0.1",
- "devOptional": true,
"license": "MIT",
+ "optional": true,
"dependencies": {
"minimist": "^1.2.0"
},
@@ -35047,11 +33949,6 @@
"integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==",
"devOptional": true
},
- "node_modules/tty-browserify": {
- "version": "0.0.0",
- "license": "MIT",
- "optional": true
- },
"node_modules/tty-table": {
"version": "4.1.6",
"resolved": "https://registry.npmjs.org/tty-table/-/tty-table-4.1.6.tgz",
@@ -35181,6 +34078,15 @@
"node": ">=12"
}
},
+ "node_modules/tunnel": {
+ "version": "0.0.6",
+ "resolved": "https://registry.npmjs.org/tunnel/-/tunnel-0.0.6.tgz",
+ "integrity": "sha512-1h/Lnq9yajKY2PEbBadPXj3VxsDDu844OnaAo52UVmIzIvwwtBPIuNvkjuzBlTWpfJyUbG3ez0KSBibQkj4ojg==",
+ "optional": true,
+ "engines": {
+ "node": ">=0.6.11 <=0.7.0 || >=0.7.3"
+ }
+ },
"node_modules/tunnel-agent": {
"version": "0.6.0",
"license": "Apache-2.0",
@@ -35239,14 +34145,10 @@
"node": ">= 0.6"
}
},
- "node_modules/typed-styles": {
- "version": "0.0.7",
- "license": "MIT",
- "optional": true
- },
"node_modules/typedarray": {
"version": "0.0.6",
- "license": "MIT",
+ "resolved": "https://registry.npmjs.org/typedarray/-/typedarray-0.0.6.tgz",
+ "integrity": "sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA==",
"optional": true
},
"node_modules/typedarray-to-buffer": {
@@ -35296,7 +34198,6 @@
"version": "3.17.4",
"resolved": "https://registry.npmjs.org/uglify-js/-/uglify-js-3.17.4.tgz",
"integrity": "sha512-T9q82TJI9e/C1TAxYvfb16xO120tMVFZrGA3f9/P4424DNu6ypK103y0GPFVa17yotwSyZW5iYXgjYHkGrJW/g==",
- "dev": true,
"optional": true,
"bin": {
"uglifyjs": "bin/uglifyjs"
@@ -35329,7 +34230,8 @@
},
"node_modules/unfetch": {
"version": "4.2.0",
- "license": "MIT",
+ "resolved": "https://registry.npmjs.org/unfetch/-/unfetch-4.2.0.tgz",
+ "integrity": "sha512-F9p7yYCn6cIW9El1zi0HI6vqpeIvBsr3dSuRO6Xuppb1u5rXpCPmMvLSyECLhybr9isec8Ohl0hPekMVrEinDA==",
"optional": true
},
"node_modules/unherit": {
@@ -35345,37 +34247,41 @@
}
},
"node_modules/unicode-canonical-property-names-ecmascript": {
- "version": "1.0.4",
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-2.0.0.tgz",
+ "integrity": "sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ==",
"devOptional": true,
- "license": "MIT",
"engines": {
"node": ">=4"
}
},
"node_modules/unicode-match-property-ecmascript": {
- "version": "1.0.4",
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-2.0.0.tgz",
+ "integrity": "sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==",
"devOptional": true,
- "license": "MIT",
"dependencies": {
- "unicode-canonical-property-names-ecmascript": "^1.0.4",
- "unicode-property-aliases-ecmascript": "^1.0.4"
+ "unicode-canonical-property-names-ecmascript": "^2.0.0",
+ "unicode-property-aliases-ecmascript": "^2.0.0"
},
"engines": {
"node": ">=4"
}
},
"node_modules/unicode-match-property-value-ecmascript": {
- "version": "1.2.0",
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.1.0.tgz",
+ "integrity": "sha512-qxkjQt6qjg/mYscYMC0XKRn3Rh0wFPlfxB0xkt9CfyTvpX1Ra0+rAmdX2QyAobptSEvuy4RtpPRui6XkV+8wjA==",
"devOptional": true,
- "license": "MIT",
"engines": {
"node": ">=4"
}
},
"node_modules/unicode-property-aliases-ecmascript": {
- "version": "1.1.0",
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-2.1.0.tgz",
+ "integrity": "sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w==",
"devOptional": true,
- "license": "MIT",
"engines": {
"node": ">=4"
}
@@ -35394,7 +34300,7 @@
},
"node_modules/union-value": {
"version": "1.0.1",
- "devOptional": true,
+ "dev": true,
"license": "MIT",
"dependencies": {
"arr-union": "^3.1.0",
@@ -35406,27 +34312,6 @@
"node": ">=0.10.0"
}
},
- "node_modules/uniq": {
- "version": "1.0.1",
- "license": "MIT",
- "optional": true
- },
- "node_modules/unique-filename": {
- "version": "1.1.1",
- "license": "ISC",
- "optional": true,
- "dependencies": {
- "unique-slug": "^2.0.0"
- }
- },
- "node_modules/unique-slug": {
- "version": "2.0.2",
- "license": "ISC",
- "optional": true,
- "dependencies": {
- "imurmurhash": "^0.1.4"
- }
- },
"node_modules/unique-string": {
"version": "2.0.0",
"license": "MIT",
@@ -35517,14 +34402,33 @@
"node": ">= 0.8"
}
},
- "node_modules/unquote": {
- "version": "1.1.1",
- "license": "MIT",
- "optional": true
+ "node_modules/unplugin": {
+ "version": "0.10.2",
+ "resolved": "https://registry.npmjs.org/unplugin/-/unplugin-0.10.2.tgz",
+ "integrity": "sha512-6rk7GUa4ICYjae5PrAllvcDeuT8pA9+j5J5EkxbMFaV+SalHhxZ7X2dohMzu6C3XzsMT+6jwR/+pwPNR3uK9MA==",
+ "optional": true,
+ "dependencies": {
+ "acorn": "^8.8.0",
+ "chokidar": "^3.5.3",
+ "webpack-sources": "^3.2.3",
+ "webpack-virtual-modules": "^0.4.5"
+ }
+ },
+ "node_modules/unplugin/node_modules/acorn": {
+ "version": "8.8.2",
+ "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.8.2.tgz",
+ "integrity": "sha512-xjIYgE8HBrkpd/sJqOGNspf8uHG+NOHGOw6a/Urj8taM2EXfdNAH2oFcPeIFfsv3+kz/mJrS5VuMqbNLjCa2vw==",
+ "optional": true,
+ "bin": {
+ "acorn": "bin/acorn"
+ },
+ "engines": {
+ "node": ">=0.4.0"
+ }
},
"node_modules/unset-value": {
"version": "1.0.0",
- "devOptional": true,
+ "dev": true,
"license": "MIT",
"dependencies": {
"has-value": "^0.3.1",
@@ -35536,7 +34440,7 @@
},
"node_modules/unset-value/node_modules/has-value": {
"version": "0.3.1",
- "devOptional": true,
+ "dev": true,
"license": "MIT",
"dependencies": {
"get-value": "^2.0.3",
@@ -35549,7 +34453,7 @@
},
"node_modules/unset-value/node_modules/has-value/node_modules/isobject": {
"version": "2.1.0",
- "devOptional": true,
+ "dev": true,
"license": "MIT",
"dependencies": {
"isarray": "1.0.0"
@@ -35560,7 +34464,7 @@
},
"node_modules/unset-value/node_modules/has-values": {
"version": "0.1.4",
- "devOptional": true,
+ "dev": true,
"license": "MIT",
"engines": {
"node": ">=0.10.0"
@@ -35568,7 +34472,7 @@
},
"node_modules/unset-value/node_modules/isarray": {
"version": "1.0.0",
- "devOptional": true,
+ "dev": true,
"license": "MIT"
},
"node_modules/untildify": {
@@ -35581,13 +34485,43 @@
},
"node_modules/upath": {
"version": "1.2.0",
- "devOptional": true,
+ "dev": true,
"license": "MIT",
"engines": {
"node": ">=4",
"yarn": "*"
}
},
+ "node_modules/update-browserslist-db": {
+ "version": "1.0.11",
+ "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.11.tgz",
+ "integrity": "sha512-dCwEFf0/oT85M1fHBg4F0jtLwJrutGoHSQXCh7u4o2t1drG+c0a9Flnqww6XUKSfQMPpJBRjU8d4RXB09qtvaA==",
+ "devOptional": true,
+ "funding": [
+ {
+ "type": "opencollective",
+ "url": "https://opencollective.com/browserslist"
+ },
+ {
+ "type": "tidelift",
+ "url": "https://tidelift.com/funding/github/npm/browserslist"
+ },
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/ai"
+ }
+ ],
+ "dependencies": {
+ "escalade": "^3.1.1",
+ "picocolors": "^1.0.0"
+ },
+ "bin": {
+ "update-browserslist-db": "cli.js"
+ },
+ "peerDependencies": {
+ "browserslist": ">= 4.21.0"
+ }
+ },
"node_modules/update-notifier": {
"version": "5.1.0",
"license": "BSD-2-Clause",
@@ -35614,36 +34548,6 @@
"url": "https://github.com/yeoman/update-notifier?sponsor=1"
}
},
- "node_modules/update-notifier/node_modules/boxen": {
- "version": "5.0.1",
- "license": "MIT",
- "dependencies": {
- "ansi-align": "^3.0.0",
- "camelcase": "^6.2.0",
- "chalk": "^4.1.0",
- "cli-boxes": "^2.2.1",
- "string-width": "^4.2.0",
- "type-fest": "^0.20.2",
- "widest-line": "^3.1.0",
- "wrap-ansi": "^7.0.0"
- },
- "engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/update-notifier/node_modules/camelcase": {
- "version": "6.2.0",
- "license": "MIT",
- "engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
"node_modules/update-notifier/node_modules/chalk": {
"version": "4.1.0",
"license": "MIT",
@@ -35689,16 +34593,6 @@
"node": ">=8"
}
},
- "node_modules/update-notifier/node_modules/type-fest": {
- "version": "0.20.2",
- "license": "(MIT OR CC0-1.0)",
- "engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
"node_modules/upper-case": {
"version": "2.0.2",
"dev": true,
@@ -35725,72 +34619,13 @@
},
"node_modules/urix": {
"version": "0.1.0",
- "devOptional": true,
+ "dev": true,
"license": "MIT"
},
- "node_modules/url": {
- "version": "0.11.0",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "punycode": "1.3.2",
- "querystring": "0.2.0"
- }
- },
"node_modules/url-join": {
"version": "4.0.1",
"license": "MIT"
},
- "node_modules/url-loader": {
- "version": "2.3.0",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "loader-utils": "^1.2.3",
- "mime": "^2.4.4",
- "schema-utils": "^2.5.0"
- },
- "engines": {
- "node": ">= 8.9.0"
- },
- "peerDependencies": {
- "file-loader": "*",
- "webpack": "^4.0.0"
- },
- "peerDependenciesMeta": {
- "file-loader": {
- "optional": true
- }
- }
- },
- "node_modules/url-loader/node_modules/mime": {
- "version": "2.5.2",
- "license": "MIT",
- "optional": true,
- "bin": {
- "mime": "cli.js"
- },
- "engines": {
- "node": ">=4.0.0"
- }
- },
- "node_modules/url-loader/node_modules/schema-utils": {
- "version": "2.7.1",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "@types/json-schema": "^7.0.5",
- "ajv": "^6.12.4",
- "ajv-keywords": "^3.5.2"
- },
- "engines": {
- "node": ">= 8.9.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/webpack"
- }
- },
"node_modules/url-parse": {
"version": "1.5.3",
"devOptional": true,
@@ -35817,11 +34652,6 @@
"node": ">=4"
}
},
- "node_modules/url/node_modules/punycode": {
- "version": "1.3.2",
- "license": "MIT",
- "optional": true
- },
"node_modules/urlgrey": {
"version": "0.4.4",
"dev": true,
@@ -35829,7 +34659,7 @@
},
"node_modules/use": {
"version": "3.1.1",
- "devOptional": true,
+ "dev": true,
"license": "MIT",
"engines": {
"node": ">=0.10.0"
@@ -35882,6 +34712,19 @@
"react-router": "^5.0.0"
}
},
+ "node_modules/use-resize-observer": {
+ "version": "9.1.0",
+ "resolved": "https://registry.npmjs.org/use-resize-observer/-/use-resize-observer-9.1.0.tgz",
+ "integrity": "sha512-R25VqO9Wb3asSD4eqtcxk8sJalvIOYBqS8MNZlpDSQ4l4xMQxC/J7Id9HoTqPq8FwULIn0PVW+OAqF2dyYbjow==",
+ "optional": true,
+ "dependencies": {
+ "@juggle/resize-observer": "^3.3.1"
+ },
+ "peerDependencies": {
+ "react": "16.8.0 - 18",
+ "react-dom": "16.8.0 - 18"
+ }
+ },
"node_modules/use-sidecar": {
"version": "1.1.2",
"license": "MIT",
@@ -35908,11 +34751,16 @@
"license": "WTFPL"
},
"node_modules/util": {
- "version": "0.11.1",
- "license": "MIT",
+ "version": "0.12.5",
+ "resolved": "https://registry.npmjs.org/util/-/util-0.12.5.tgz",
+ "integrity": "sha512-kZf/K6hEIrWHI6XqOFUiiMa+79wE/D8Q+NCNAWclkyg3b4d2k7s0QGepNjiABc+aR3N1PAyHL7p6UcLY6LmrnA==",
"optional": true,
"dependencies": {
- "inherits": "2.0.3"
+ "inherits": "^2.0.3",
+ "is-arguments": "^1.0.4",
+ "is-generator-function": "^1.0.7",
+ "is-typed-array": "^1.1.3",
+ "which-typed-array": "^1.1.2"
}
},
"node_modules/util-deprecate": {
@@ -35920,16 +34768,6 @@
"devOptional": true,
"license": "MIT"
},
- "node_modules/util/node_modules/inherits": {
- "version": "2.0.3",
- "license": "ISC",
- "optional": true
- },
- "node_modules/utila": {
- "version": "0.4.0",
- "license": "MIT",
- "optional": true
- },
"node_modules/utils-merge": {
"version": "1.0.1",
"devOptional": true,
@@ -35940,7 +34778,7 @@
},
"node_modules/uuid": {
"version": "3.4.0",
- "devOptional": true,
+ "dev": true,
"license": "MIT",
"bin": {
"uuid": "bin/uuid"
@@ -36164,11 +35002,6 @@
"node": ">= 10.0"
}
},
- "node_modules/vite-plugin-html/node_modules/colorette": {
- "version": "2.0.19",
- "dev": true,
- "license": "MIT"
- },
"node_modules/vite-plugin-html/node_modules/commander": {
"version": "8.3.0",
"dev": true,
@@ -36193,20 +35026,6 @@
"node": ">=12"
}
},
- "node_modules/vite-plugin-html/node_modules/ejs": {
- "version": "3.1.8",
- "dev": true,
- "license": "Apache-2.0",
- "dependencies": {
- "jake": "^10.8.5"
- },
- "bin": {
- "ejs": "bin/cli.js"
- },
- "engines": {
- "node": ">=0.10.0"
- }
- },
"node_modules/vite-plugin-html/node_modules/estree-walker": {
"version": "2.0.2",
"dev": true,
@@ -36350,6 +35169,38 @@
"vite": "^2.6.0 || ^3.0.0 || ^4.0.0"
}
},
+ "node_modules/vite/node_modules/@esbuild/android-arm": {
+ "version": "0.15.15",
+ "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.15.15.tgz",
+ "integrity": "sha512-JJjZjJi2eBL01QJuWjfCdZxcIgot+VoK6Fq7eKF9w4YHm9hwl7nhBR1o2Wnt/WcANk5l9SkpvrldW1PLuXxcbw==",
+ "cpu": [
+ "arm"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "android"
+ ],
+ "engines": {
+ "node": ">=12"
+ }
+ },
+ "node_modules/vite/node_modules/@esbuild/linux-loong64": {
+ "version": "0.15.15",
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.15.15.tgz",
+ "integrity": "sha512-lhz6UNPMDXUhtXSulw8XlFAtSYO26WmHQnCi2Lg2p+/TMiJKNLtZCYUxV4wG6rZMzXmr8InGpNwk+DLT2Hm0PA==",
+ "cpu": [
+ "loong64"
+ ],
+ "dev": true,
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">=12"
+ }
+ },
"node_modules/vite/node_modules/esbuild": {
"version": "0.15.15",
"dev": true,
@@ -36436,11 +35287,6 @@
"node": "^10 || ^12 || >=14"
}
},
- "node_modules/vm-browserify": {
- "version": "1.1.2",
- "license": "MIT",
- "optional": true
- },
"node_modules/vscode-languageserver-types": {
"version": "3.17.2",
"license": "MIT"
@@ -36515,144 +35361,16 @@
}
},
"node_modules/watchpack": {
- "version": "1.7.5",
- "license": "MIT",
+ "version": "2.4.0",
+ "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-2.4.0.tgz",
+ "integrity": "sha512-Lcvm7MGST/4fup+ifyKi2hjyIAwcdI4HRgtvTpIUxBRhB+RFtUh8XtDOxUfctVCnhVi+QQj49i91OyvzkJl6cg==",
"optional": true,
"dependencies": {
- "graceful-fs": "^4.1.2",
- "neo-async": "^2.5.0"
- },
- "optionalDependencies": {
- "chokidar": "^3.4.1",
- "watchpack-chokidar2": "^2.0.1"
- }
- },
- "node_modules/watchpack-chokidar2": {
- "version": "2.0.1",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "chokidar": "^2.1.8"
- }
- },
- "node_modules/watchpack-chokidar2/node_modules/braces": {
- "version": "2.3.2",
- "license": "MIT",
- "optional": true,
- "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.2",
- "snapdragon": "^0.8.1",
- "snapdragon-node": "^2.0.1",
- "split-string": "^3.0.2",
- "to-regex": "^3.0.1"
+ "glob-to-regexp": "^0.4.1",
+ "graceful-fs": "^4.1.2"
},
"engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/watchpack-chokidar2/node_modules/chokidar": {
- "version": "2.1.8",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "anymatch": "^2.0.0",
- "async-each": "^1.0.1",
- "braces": "^2.3.2",
- "glob-parent": "^3.1.0",
- "inherits": "^2.0.3",
- "is-binary-path": "^1.0.0",
- "is-glob": "^4.0.0",
- "normalize-path": "^3.0.0",
- "path-is-absolute": "^1.0.0",
- "readdirp": "^2.2.1",
- "upath": "^1.1.1"
- },
- "optionalDependencies": {
- "fsevents": "^1.2.7"
- }
- },
- "node_modules/watchpack-chokidar2/node_modules/extend-shallow": {
- "version": "2.0.1",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "is-extendable": "^0.1.0"
- },
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/watchpack-chokidar2/node_modules/fill-range": {
- "version": "4.0.0",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "extend-shallow": "^2.0.1",
- "is-number": "^3.0.0",
- "repeat-string": "^1.6.1",
- "to-regex-range": "^2.1.0"
- },
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/watchpack-chokidar2/node_modules/glob-parent": {
- "version": "3.1.0",
- "license": "ISC",
- "optional": true,
- "dependencies": {
- "is-glob": "^3.1.0",
- "path-dirname": "^1.0.0"
- }
- },
- "node_modules/watchpack-chokidar2/node_modules/glob-parent/node_modules/is-glob": {
- "version": "3.1.0",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "is-extglob": "^2.1.0"
- },
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/watchpack-chokidar2/node_modules/is-number": {
- "version": "3.0.0",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "kind-of": "^3.0.2"
- },
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/watchpack-chokidar2/node_modules/kind-of": {
- "version": "3.2.2",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "is-buffer": "^1.1.5"
- },
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/watchpack-chokidar2/node_modules/to-regex-range": {
- "version": "2.1.1",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "is-number": "^3.0.0",
- "repeat-string": "^1.6.1"
- },
- "engines": {
- "node": ">=0.10.0"
+ "node": ">=10.13.0"
}
},
"node_modules/watskeburt": {
@@ -36692,342 +35410,20 @@
"dev": true,
"license": "BSD-2-Clause"
},
- "node_modules/webpack": {
- "version": "4.46.0",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "@webassemblyjs/ast": "1.9.0",
- "@webassemblyjs/helper-module-context": "1.9.0",
- "@webassemblyjs/wasm-edit": "1.9.0",
- "@webassemblyjs/wasm-parser": "1.9.0",
- "acorn": "^6.4.1",
- "ajv": "^6.10.2",
- "ajv-keywords": "^3.4.1",
- "chrome-trace-event": "^1.0.2",
- "enhanced-resolve": "^4.5.0",
- "eslint-scope": "^4.0.3",
- "json-parse-better-errors": "^1.0.2",
- "loader-runner": "^2.4.0",
- "loader-utils": "^1.2.3",
- "memory-fs": "^0.4.1",
- "micromatch": "^3.1.10",
- "mkdirp": "^0.5.3",
- "neo-async": "^2.6.1",
- "node-libs-browser": "^2.2.1",
- "schema-utils": "^1.0.0",
- "tapable": "^1.1.3",
- "terser-webpack-plugin": "^1.4.3",
- "watchpack": "^1.7.4",
- "webpack-sources": "^1.4.1"
- },
- "bin": {
- "webpack": "bin/webpack.js"
- },
- "engines": {
- "node": ">=6.11.5"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/webpack"
- },
- "peerDependenciesMeta": {
- "webpack-cli": {
- "optional": true
- },
- "webpack-command": {
- "optional": true
- }
- }
- },
- "node_modules/webpack-dev-middleware": {
- "version": "3.7.3",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "memory-fs": "^0.4.1",
- "mime": "^2.4.4",
- "mkdirp": "^0.5.1",
- "range-parser": "^1.2.1",
- "webpack-log": "^2.0.0"
- },
- "engines": {
- "node": ">= 6"
- },
- "peerDependencies": {
- "webpack": "^4.0.0 || ^5.0.0"
- }
- },
- "node_modules/webpack-dev-middleware/node_modules/mime": {
- "version": "2.5.2",
- "license": "MIT",
- "optional": true,
- "bin": {
- "mime": "cli.js"
- },
- "engines": {
- "node": ">=4.0.0"
- }
- },
- "node_modules/webpack-hot-middleware": {
- "version": "2.25.0",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "ansi-html": "0.0.7",
- "html-entities": "^1.2.0",
- "querystring": "^0.2.0",
- "strip-ansi": "^3.0.0"
- }
- },
- "node_modules/webpack-hot-middleware/node_modules/ansi-regex": {
- "version": "2.1.1",
- "license": "MIT",
- "optional": true,
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/webpack-hot-middleware/node_modules/strip-ansi": {
- "version": "3.0.1",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "ansi-regex": "^2.0.0"
- },
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/webpack-log": {
- "version": "2.0.0",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "ansi-colors": "^3.0.0",
- "uuid": "^3.3.2"
- },
- "engines": {
- "node": ">= 6"
- }
- },
"node_modules/webpack-sources": {
- "version": "1.4.3",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "source-list-map": "^2.0.0",
- "source-map": "~0.6.1"
- }
- },
- "node_modules/webpack-sources/node_modules/source-map": {
- "version": "0.6.1",
- "license": "BSD-3-Clause",
+ "version": "3.2.3",
+ "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-3.2.3.tgz",
+ "integrity": "sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==",
"optional": true,
"engines": {
- "node": ">=0.10.0"
+ "node": ">=10.13.0"
}
},
"node_modules/webpack-virtual-modules": {
- "version": "0.2.2",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "debug": "^3.0.0"
- }
- },
- "node_modules/webpack-virtual-modules/node_modules/debug": {
- "version": "3.2.7",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "ms": "^2.1.1"
- }
- },
- "node_modules/webpack/node_modules/braces": {
- "version": "2.3.2",
- "license": "MIT",
- "optional": true,
- "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.2",
- "snapdragon": "^0.8.1",
- "snapdragon-node": "^2.0.1",
- "split-string": "^3.0.2",
- "to-regex": "^3.0.1"
- },
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/webpack/node_modules/braces/node_modules/extend-shallow": {
- "version": "2.0.1",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "is-extendable": "^0.1.0"
- },
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/webpack/node_modules/fill-range": {
- "version": "4.0.0",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "extend-shallow": "^2.0.1",
- "is-number": "^3.0.0",
- "repeat-string": "^1.6.1",
- "to-regex-range": "^2.1.0"
- },
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/webpack/node_modules/fill-range/node_modules/extend-shallow": {
- "version": "2.0.1",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "is-extendable": "^0.1.0"
- },
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/webpack/node_modules/find-cache-dir": {
- "version": "2.1.0",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "commondir": "^1.0.1",
- "make-dir": "^2.0.0",
- "pkg-dir": "^3.0.0"
- },
- "engines": {
- "node": ">=6"
- }
- },
- "node_modules/webpack/node_modules/is-number": {
- "version": "3.0.0",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "kind-of": "^3.0.2"
- },
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/webpack/node_modules/is-number/node_modules/kind-of": {
- "version": "3.2.2",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "is-buffer": "^1.1.5"
- },
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/webpack/node_modules/is-wsl": {
- "version": "1.1.0",
- "license": "MIT",
- "optional": true,
- "engines": {
- "node": ">=4"
- }
- },
- "node_modules/webpack/node_modules/micromatch": {
- "version": "3.1.10",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "arr-diff": "^4.0.0",
- "array-unique": "^0.3.2",
- "braces": "^2.3.1",
- "define-property": "^2.0.2",
- "extend-shallow": "^3.0.2",
- "extglob": "^2.0.4",
- "fragment-cache": "^0.2.1",
- "kind-of": "^6.0.2",
- "nanomatch": "^1.2.9",
- "object.pick": "^1.3.0",
- "regex-not": "^1.0.0",
- "snapdragon": "^0.8.1",
- "to-regex": "^3.0.2"
- },
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/webpack/node_modules/source-map": {
- "version": "0.6.1",
- "license": "BSD-3-Clause",
- "optional": true,
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/webpack/node_modules/terser-webpack-plugin": {
- "version": "1.4.5",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "cacache": "^12.0.2",
- "find-cache-dir": "^2.1.0",
- "is-wsl": "^1.1.0",
- "schema-utils": "^1.0.0",
- "serialize-javascript": "^4.0.0",
- "source-map": "^0.6.1",
- "terser": "^4.1.2",
- "webpack-sources": "^1.4.0",
- "worker-farm": "^1.7.0"
- },
- "engines": {
- "node": ">= 6.9.0"
- },
- "peerDependencies": {
- "webpack": "^4.0.0"
- }
- },
- "node_modules/webpack/node_modules/to-regex-range": {
- "version": "2.1.1",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "is-number": "^3.0.0",
- "repeat-string": "^1.6.1"
- },
- "engines": {
- "node": ">=0.10.0"
- }
- },
- "node_modules/websocket-driver": {
- "version": "0.7.4",
- "license": "Apache-2.0",
- "optional": true,
- "dependencies": {
- "http-parser-js": ">=0.5.1",
- "safe-buffer": ">=5.1.0",
- "websocket-extensions": ">=0.1.1"
- },
- "engines": {
- "node": ">=0.8.0"
- }
- },
- "node_modules/websocket-extensions": {
- "version": "0.1.4",
- "license": "Apache-2.0",
- "optional": true,
- "engines": {
- "node": ">=0.8.0"
- }
+ "version": "0.4.6",
+ "resolved": "https://registry.npmjs.org/webpack-virtual-modules/-/webpack-virtual-modules-0.4.6.tgz",
+ "integrity": "sha512-5tyDlKLqPfMqjT3Q9TAqf2YqjwmnUleZwzJi1A5qXnlBCdj2AtOJ6wAWdglTIDOPgOiOrXeBeFcsQ8+aGQ6QbA==",
+ "optional": true
},
"node_modules/whatwg-encoding": {
"version": "1.0.5",
@@ -37081,7 +35477,7 @@
},
"node_modules/which": {
"version": "1.3.1",
- "devOptional": true,
+ "dev": true,
"license": "ISC",
"dependencies": {
"isexe": "^2.0.0"
@@ -37166,50 +35562,12 @@
}
},
"node_modules/wide-align": {
- "version": "1.1.3",
- "license": "ISC",
+ "version": "1.1.5",
+ "resolved": "https://registry.npmjs.org/wide-align/-/wide-align-1.1.5.tgz",
+ "integrity": "sha512-eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg==",
"optional": true,
"dependencies": {
- "string-width": "^1.0.2 || 2"
- }
- },
- "node_modules/wide-align/node_modules/ansi-regex": {
- "version": "3.0.0",
- "license": "MIT",
- "optional": true,
- "engines": {
- "node": ">=4"
- }
- },
- "node_modules/wide-align/node_modules/is-fullwidth-code-point": {
- "version": "2.0.0",
- "license": "MIT",
- "optional": true,
- "engines": {
- "node": ">=4"
- }
- },
- "node_modules/wide-align/node_modules/string-width": {
- "version": "2.1.1",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "is-fullwidth-code-point": "^2.0.0",
- "strip-ansi": "^4.0.0"
- },
- "engines": {
- "node": ">=4"
- }
- },
- "node_modules/wide-align/node_modules/strip-ansi": {
- "version": "4.0.0",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "ansi-regex": "^3.0.0"
- },
- "engines": {
- "node": ">=4"
+ "string-width": "^1.0.2 || 2 || 3 || 4"
}
},
"node_modules/widest-line": {
@@ -37247,7 +35605,7 @@
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-1.0.0.tgz",
"integrity": "sha512-gvVzJFlPycKc5dZN4yPkP8w7Dc37BtP1yczEneOb4uq34pXZcvrtRTmWV8W+Ume+XCxKgbjM+nevkyFPMybd4Q==",
- "dev": true
+ "devOptional": true
},
"node_modules/workbox-background-sync": {
"version": "6.5.4",
@@ -37510,22 +35868,6 @@
"workbox-core": "6.5.4"
}
},
- "node_modules/worker-farm": {
- "version": "1.7.0",
- "license": "MIT",
- "optional": true,
- "dependencies": {
- "errno": "~0.1.7"
- }
- },
- "node_modules/worker-rpc": {
- "version": "0.1.1",
- "devOptional": true,
- "license": "MIT",
- "dependencies": {
- "microevent.ts": "~0.1.1"
- }
- },
"node_modules/wrap-ansi": {
"version": "7.0.0",
"license": "MIT",
@@ -37557,7 +35899,7 @@
},
"node_modules/write-file-atomic": {
"version": "2.4.1",
- "dev": true,
+ "devOptional": true,
"license": "ISC",
"dependencies": {
"graceful-fs": "^4.1.11",
@@ -37734,7 +36076,7 @@
},
"node_modules/yocto-queue": {
"version": "0.1.0",
- "dev": true,
+ "devOptional": true,
"license": "MIT",
"engines": {
"node": ">=10"
@@ -37769,6 +36111,16 @@
"version": "4.0.1",
"optional": true
},
+ "@ampproject/remapping": {
+ "version": "2.2.1",
+ "resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.2.1.tgz",
+ "integrity": "sha512-lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg==",
+ "devOptional": true,
+ "requires": {
+ "@jridgewell/gen-mapping": "^0.3.0",
+ "@jridgewell/trace-mapping": "^0.3.9"
+ }
+ },
"@apideck/better-ajv-errors": {
"version": "0.3.6",
"dev": true,
@@ -37802,10 +36154,28 @@
}
}
},
+ "@arcanis/slice-ansi": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/@arcanis/slice-ansi/-/slice-ansi-1.1.1.tgz",
+ "integrity": "sha512-xguP2WR2Dv0gQ7Ykbdb7BNCnPnIPB94uTi0Z2NvkRBEnhbwjOQ7QyQKJXrVQg4qDpiD9hA5l5cCwy/z2OXgc3w==",
+ "optional": true,
+ "requires": {
+ "grapheme-splitter": "^1.0.4"
+ }
+ },
"@ardatan/fetch-event-source": {
"version": "2.0.2",
"dev": true
},
+ "@aw-web-design/x-default-browser": {
+ "version": "1.4.88",
+ "resolved": "https://registry.npmjs.org/@aw-web-design/x-default-browser/-/x-default-browser-1.4.88.tgz",
+ "integrity": "sha512-AkEmF0wcwYC2QkhK703Y83fxWARttIWXDmQN8+cof8FmFZ5BRhnNXGymeb1S73bOCLfWjYELxtujL56idCN/XA==",
+ "optional": true,
+ "requires": {
+ "default-browser-id": "3.0.0"
+ }
+ },
"@babel/cli": {
"version": "7.17.6",
"dev": true,
@@ -37829,82 +36199,39 @@
}
},
"@babel/code-frame": {
- "version": "7.12.13",
+ "version": "7.21.4",
+ "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.21.4.tgz",
+ "integrity": "sha512-LYvhNKfwWSPpocw8GI7gpK2nq3HSDuEPC/uSYaALSJu9xjsalaaYFOq0Pwt5KmVqwEbZlDu81aLXwBOmD/Fv9g==",
"requires": {
- "@babel/highlight": "^7.12.13"
+ "@babel/highlight": "^7.18.6"
}
},
"@babel/compat-data": {
- "version": "7.13.12",
+ "version": "7.21.7",
+ "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.21.7.tgz",
+ "integrity": "sha512-KYMqFYTaenzMK4yUtf4EW9wc4N9ef80FsbMtkwool5zpwl4YrT1SdWYSTRcT94KO4hannogdS+LxY7L+arP3gA==",
"devOptional": true
},
"@babel/core": {
- "version": "7.13.14",
+ "version": "7.21.8",
+ "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.21.8.tgz",
+ "integrity": "sha512-YeM22Sondbo523Sz0+CirSPnbj9bG3P0CdHcBZdqUuaeOaYEFbOLoGU7lebvGP6P5J/WE9wOn7u7C4J9HvS1xQ==",
"devOptional": true,
"requires": {
- "@babel/code-frame": "^7.12.13",
- "@babel/generator": "^7.13.9",
- "@babel/helper-compilation-targets": "^7.13.13",
- "@babel/helper-module-transforms": "^7.13.14",
- "@babel/helpers": "^7.13.10",
- "@babel/parser": "^7.13.13",
- "@babel/template": "^7.12.13",
- "@babel/traverse": "^7.13.13",
- "@babel/types": "^7.13.14",
+ "@ampproject/remapping": "^2.2.0",
+ "@babel/code-frame": "^7.21.4",
+ "@babel/generator": "^7.21.5",
+ "@babel/helper-compilation-targets": "^7.21.5",
+ "@babel/helper-module-transforms": "^7.21.5",
+ "@babel/helpers": "^7.21.5",
+ "@babel/parser": "^7.21.8",
+ "@babel/template": "^7.20.7",
+ "@babel/traverse": "^7.21.5",
+ "@babel/types": "^7.21.5",
"convert-source-map": "^1.7.0",
"debug": "^4.1.0",
"gensync": "^1.0.0-beta.2",
- "json5": "^2.1.2",
- "semver": "^6.3.0",
- "source-map": "^0.5.0"
- },
- "dependencies": {
- "@babel/generator": {
- "version": "7.13.9",
- "devOptional": true,
- "requires": {
- "@babel/types": "^7.13.0",
- "jsesc": "^2.5.1",
- "source-map": "^0.5.0"
- }
- },
- "semver": {
- "version": "6.3.0",
- "devOptional": true
- }
- }
- },
- "@babel/generator": {
- "version": "7.12.11",
- "devOptional": true,
- "requires": {
- "@babel/types": "^7.12.11",
- "jsesc": "^2.5.1",
- "source-map": "^0.5.0"
- }
- },
- "@babel/helper-annotate-as-pure": {
- "version": "7.12.13",
- "devOptional": true,
- "requires": {
- "@babel/types": "^7.12.13"
- }
- },
- "@babel/helper-builder-binary-assignment-operator-visitor": {
- "version": "7.12.13",
- "devOptional": true,
- "requires": {
- "@babel/helper-explode-assignable-expression": "^7.12.13",
- "@babel/types": "^7.12.13"
- }
- },
- "@babel/helper-compilation-targets": {
- "version": "7.13.13",
- "devOptional": true,
- "requires": {
- "@babel/compat-data": "^7.13.12",
- "@babel/helper-validator-option": "^7.12.17",
- "browserslist": "^4.14.5",
+ "json5": "^2.2.2",
"semver": "^6.3.0"
},
"dependencies": {
@@ -37914,33 +36241,122 @@
}
}
},
- "@babel/helper-create-class-features-plugin": {
- "version": "7.13.11",
+ "@babel/generator": {
+ "version": "7.21.5",
+ "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.21.5.tgz",
+ "integrity": "sha512-SrKK/sRv8GesIW1bDagf9cCG38IOMYZusoe1dfg0D8aiUe3Amvoj1QtjTPAWcfrZFvIwlleLb0gxzQidL9w14w==",
"devOptional": true,
"requires": {
- "@babel/helper-function-name": "^7.12.13",
- "@babel/helper-member-expression-to-functions": "^7.13.0",
- "@babel/helper-optimise-call-expression": "^7.12.13",
- "@babel/helper-replace-supers": "^7.13.0",
- "@babel/helper-split-export-declaration": "^7.12.13"
+ "@babel/types": "^7.21.5",
+ "@jridgewell/gen-mapping": "^0.3.2",
+ "@jridgewell/trace-mapping": "^0.3.17",
+ "jsesc": "^2.5.1"
+ }
+ },
+ "@babel/helper-annotate-as-pure": {
+ "version": "7.18.6",
+ "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.18.6.tgz",
+ "integrity": "sha512-duORpUiYrEpzKIop6iNbjnwKLAKnJ47csTyRACyEmWj0QdUrm5aqNJGHSSEQSUAvNW0ojX0dOmK9dZduvkfeXA==",
+ "devOptional": true,
+ "requires": {
+ "@babel/types": "^7.18.6"
+ }
+ },
+ "@babel/helper-builder-binary-assignment-operator-visitor": {
+ "version": "7.21.5",
+ "resolved": "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.21.5.tgz",
+ "integrity": "sha512-uNrjKztPLkUk7bpCNC0jEKDJzzkvel/W+HguzbN8krA+LPfC1CEobJEvAvGka2A/M+ViOqXdcRL0GqPUJSjx9g==",
+ "devOptional": true,
+ "requires": {
+ "@babel/types": "^7.21.5"
+ }
+ },
+ "@babel/helper-compilation-targets": {
+ "version": "7.21.5",
+ "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.21.5.tgz",
+ "integrity": "sha512-1RkbFGUKex4lvsB9yhIfWltJM5cZKUftB2eNajaDv3dCMEp49iBG0K14uH8NnX9IPux2+mK7JGEOB0jn48/J6w==",
+ "devOptional": true,
+ "requires": {
+ "@babel/compat-data": "^7.21.5",
+ "@babel/helper-validator-option": "^7.21.0",
+ "browserslist": "^4.21.3",
+ "lru-cache": "^5.1.1",
+ "semver": "^6.3.0"
+ },
+ "dependencies": {
+ "lru-cache": {
+ "version": "5.1.1",
+ "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz",
+ "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==",
+ "devOptional": true,
+ "requires": {
+ "yallist": "^3.0.2"
+ }
+ },
+ "semver": {
+ "version": "6.3.0",
+ "devOptional": true
+ },
+ "yallist": {
+ "version": "3.1.1",
+ "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz",
+ "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==",
+ "devOptional": true
+ }
+ }
+ },
+ "@babel/helper-create-class-features-plugin": {
+ "version": "7.21.8",
+ "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.21.8.tgz",
+ "integrity": "sha512-+THiN8MqiH2AczyuZrnrKL6cAxFRRQDKW9h1YkBvbgKmAm6mwiacig1qT73DHIWMGo40GRnsEfN3LA+E6NtmSw==",
+ "devOptional": true,
+ "requires": {
+ "@babel/helper-annotate-as-pure": "^7.18.6",
+ "@babel/helper-environment-visitor": "^7.21.5",
+ "@babel/helper-function-name": "^7.21.0",
+ "@babel/helper-member-expression-to-functions": "^7.21.5",
+ "@babel/helper-optimise-call-expression": "^7.18.6",
+ "@babel/helper-replace-supers": "^7.21.5",
+ "@babel/helper-skip-transparent-expression-wrappers": "^7.20.0",
+ "@babel/helper-split-export-declaration": "^7.18.6",
+ "semver": "^6.3.0"
+ },
+ "dependencies": {
+ "semver": {
+ "version": "6.3.0",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz",
+ "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==",
+ "devOptional": true
+ }
}
},
"@babel/helper-create-regexp-features-plugin": {
- "version": "7.12.17",
+ "version": "7.21.8",
+ "resolved": "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.21.8.tgz",
+ "integrity": "sha512-zGuSdedkFtsFHGbexAvNuipg1hbtitDLo2XE8/uf6Y9sOQV1xsYX/2pNbtedp/X0eU1pIt+kGvaqHCowkRbS5g==",
"devOptional": true,
"requires": {
- "@babel/helper-annotate-as-pure": "^7.12.13",
- "regexpu-core": "^4.7.1"
+ "@babel/helper-annotate-as-pure": "^7.18.6",
+ "regexpu-core": "^5.3.1",
+ "semver": "^6.3.0"
+ },
+ "dependencies": {
+ "semver": {
+ "version": "6.3.0",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz",
+ "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==",
+ "devOptional": true
+ }
}
},
"@babel/helper-define-polyfill-provider": {
- "version": "0.1.5",
+ "version": "0.3.3",
+ "resolved": "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.3.3.tgz",
+ "integrity": "sha512-z5aQKU4IzbqCC1XH0nAqfsFLMVSo22SBKUc0BxGrLkolTdPTructy0ToNnlO2zA4j9Q/7pjMZf0DSY+DSTYzww==",
"devOptional": true,
"requires": {
- "@babel/helper-compilation-targets": "^7.13.0",
- "@babel/helper-module-imports": "^7.12.13",
- "@babel/helper-plugin-utils": "^7.13.0",
- "@babel/traverse": "^7.13.0",
+ "@babel/helper-compilation-targets": "^7.17.7",
+ "@babel/helper-plugin-utils": "^7.16.7",
"debug": "^4.1.1",
"lodash.debounce": "^4.0.8",
"resolve": "1.20.0",
@@ -37949,132 +36365,142 @@
"dependencies": {
"semver": {
"version": "6.3.0",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz",
+ "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==",
"devOptional": true
}
}
},
"@babel/helper-environment-visitor": {
- "version": "7.16.7",
- "dev": true,
- "requires": {
- "@babel/types": "^7.16.7"
- }
- },
- "@babel/helper-explode-assignable-expression": {
- "version": "7.13.0",
- "devOptional": true,
- "requires": {
- "@babel/types": "^7.13.0"
- }
+ "version": "7.21.5",
+ "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.21.5.tgz",
+ "integrity": "sha512-IYl4gZ3ETsWocUWgsFZLM5i1BYx9SoemminVEXadgLBa9TdeorzgLKm8wWLA6J1N/kT3Kch8XIk1laNzYoHKvQ==",
+ "devOptional": true
},
"@babel/helper-function-name": {
- "version": "7.12.13",
+ "version": "7.21.0",
+ "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.21.0.tgz",
+ "integrity": "sha512-HfK1aMRanKHpxemaY2gqBmL04iAPOPRj7DxtNbiDOrJK+gdwkiNRVpCpUJYbUT+aZyemKN8brqTOxzCaG6ExRg==",
"devOptional": true,
"requires": {
- "@babel/helper-get-function-arity": "^7.12.13",
- "@babel/template": "^7.12.13",
- "@babel/types": "^7.12.13"
- }
- },
- "@babel/helper-get-function-arity": {
- "version": "7.12.13",
- "devOptional": true,
- "requires": {
- "@babel/types": "^7.12.13"
+ "@babel/template": "^7.20.7",
+ "@babel/types": "^7.21.0"
}
},
"@babel/helper-hoist-variables": {
- "version": "7.13.0",
- "devOptional": true,
- "requires": {
- "@babel/traverse": "^7.13.0",
- "@babel/types": "^7.13.0"
- }
- },
- "@babel/helper-member-expression-to-functions": {
- "version": "7.13.12",
- "devOptional": true,
- "requires": {
- "@babel/types": "^7.13.12"
- }
- },
- "@babel/helper-module-imports": {
"version": "7.18.6",
- "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.18.6.tgz",
- "integrity": "sha512-0NFvs3VkuSYbFi1x2Vd6tKrywq+z/cLeYC/RJNFrIX/30Bf5aiGYbtvGXolEktzJH8o5E5KJ3tT+nkxuuZFVlA==",
+ "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.18.6.tgz",
+ "integrity": "sha512-UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q==",
+ "devOptional": true,
"requires": {
"@babel/types": "^7.18.6"
}
},
- "@babel/helper-module-transforms": {
- "version": "7.13.14",
+ "@babel/helper-member-expression-to-functions": {
+ "version": "7.21.5",
+ "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.21.5.tgz",
+ "integrity": "sha512-nIcGfgwpH2u4n9GG1HpStW5Ogx7x7ekiFHbjjFRKXbn5zUvqO9ZgotCO4x1aNbKn/x/xOUaXEhyNHCwtFCpxWg==",
"devOptional": true,
"requires": {
- "@babel/helper-module-imports": "^7.13.12",
- "@babel/helper-replace-supers": "^7.13.12",
- "@babel/helper-simple-access": "^7.13.12",
- "@babel/helper-split-export-declaration": "^7.12.13",
- "@babel/helper-validator-identifier": "^7.12.11",
- "@babel/template": "^7.12.13",
- "@babel/traverse": "^7.13.13",
- "@babel/types": "^7.13.14"
+ "@babel/types": "^7.21.5"
+ }
+ },
+ "@babel/helper-module-imports": {
+ "version": "7.21.4",
+ "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.21.4.tgz",
+ "integrity": "sha512-orajc5T2PsRYUN3ZryCEFeMDYwyw09c/pZeaQEZPH0MpKzSvn3e0uXsDBu3k03VI+9DBiRo+l22BfKTpKwa/Wg==",
+ "requires": {
+ "@babel/types": "^7.21.4"
+ }
+ },
+ "@babel/helper-module-transforms": {
+ "version": "7.21.5",
+ "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.21.5.tgz",
+ "integrity": "sha512-bI2Z9zBGY2q5yMHoBvJ2a9iX3ZOAzJPm7Q8Yz6YeoUjU/Cvhmi2G4QyTNyPBqqXSgTjUxRg3L0xV45HvkNWWBw==",
+ "devOptional": true,
+ "requires": {
+ "@babel/helper-environment-visitor": "^7.21.5",
+ "@babel/helper-module-imports": "^7.21.4",
+ "@babel/helper-simple-access": "^7.21.5",
+ "@babel/helper-split-export-declaration": "^7.18.6",
+ "@babel/helper-validator-identifier": "^7.19.1",
+ "@babel/template": "^7.20.7",
+ "@babel/traverse": "^7.21.5",
+ "@babel/types": "^7.21.5"
}
},
"@babel/helper-optimise-call-expression": {
- "version": "7.12.13",
+ "version": "7.18.6",
+ "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.18.6.tgz",
+ "integrity": "sha512-HP59oD9/fEHQkdcbgFCnbmgH5vIQTJbxh2yf+CdM89/glUNnuzr87Q8GIjGEnOktTROemO0Pe0iPAYbqZuOUiA==",
"devOptional": true,
"requires": {
- "@babel/types": "^7.12.13"
+ "@babel/types": "^7.18.6"
}
},
"@babel/helper-plugin-utils": {
- "version": "7.13.0",
+ "version": "7.21.5",
+ "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.21.5.tgz",
+ "integrity": "sha512-0WDaIlXKOX/3KfBK/dwP1oQGiPh6rjMkT7HIRv7i5RR2VUMwrx5ZL0dwBkKx7+SW1zwNdgjHd34IMk5ZjTeHVg==",
"devOptional": true
},
"@babel/helper-remap-async-to-generator": {
- "version": "7.13.0",
+ "version": "7.18.9",
+ "resolved": "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.18.9.tgz",
+ "integrity": "sha512-dI7q50YKd8BAv3VEfgg7PS7yD3Rtbi2J1XMXaalXO0W0164hYLnh8zpjRS0mte9MfVp/tltvr/cfdXPvJr1opA==",
"devOptional": true,
"requires": {
- "@babel/helper-annotate-as-pure": "^7.12.13",
- "@babel/helper-wrap-function": "^7.13.0",
- "@babel/types": "^7.13.0"
+ "@babel/helper-annotate-as-pure": "^7.18.6",
+ "@babel/helper-environment-visitor": "^7.18.9",
+ "@babel/helper-wrap-function": "^7.18.9",
+ "@babel/types": "^7.18.9"
}
},
"@babel/helper-replace-supers": {
- "version": "7.13.12",
+ "version": "7.21.5",
+ "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.21.5.tgz",
+ "integrity": "sha512-/y7vBgsr9Idu4M6MprbOVUfH3vs7tsIfnVWv/Ml2xgwvyH6LTngdfbf5AdsKwkJy4zgy1X/kuNrEKvhhK28Yrg==",
"devOptional": true,
"requires": {
- "@babel/helper-member-expression-to-functions": "^7.13.12",
- "@babel/helper-optimise-call-expression": "^7.12.13",
- "@babel/traverse": "^7.13.0",
- "@babel/types": "^7.13.12"
+ "@babel/helper-environment-visitor": "^7.21.5",
+ "@babel/helper-member-expression-to-functions": "^7.21.5",
+ "@babel/helper-optimise-call-expression": "^7.18.6",
+ "@babel/template": "^7.20.7",
+ "@babel/traverse": "^7.21.5",
+ "@babel/types": "^7.21.5"
}
},
"@babel/helper-simple-access": {
- "version": "7.13.12",
+ "version": "7.21.5",
+ "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.21.5.tgz",
+ "integrity": "sha512-ENPDAMC1wAjR0uaCUwliBdiSl1KBJAVnMTzXqi64c2MG8MPR6ii4qf7bSXDqSFbr4W6W028/rf5ivoHop5/mkg==",
"devOptional": true,
"requires": {
- "@babel/types": "^7.13.12"
+ "@babel/types": "^7.21.5"
}
},
"@babel/helper-skip-transparent-expression-wrappers": {
- "version": "7.12.1",
+ "version": "7.20.0",
+ "resolved": "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.20.0.tgz",
+ "integrity": "sha512-5y1JYeNKfvnT8sZcK9DVRtpTbGiomYIHviSP3OQWmDPU3DeH4a1ZlT/N2lyQ5P8egjcRaT/Y9aNqUxK0WsnIIg==",
"devOptional": true,
"requires": {
- "@babel/types": "^7.12.1"
+ "@babel/types": "^7.20.0"
}
},
"@babel/helper-split-export-declaration": {
- "version": "7.12.13",
+ "version": "7.18.6",
+ "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.18.6.tgz",
+ "integrity": "sha512-bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA==",
"devOptional": true,
"requires": {
- "@babel/types": "^7.12.13"
+ "@babel/types": "^7.18.6"
}
},
"@babel/helper-string-parser": {
- "version": "7.19.4",
- "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.19.4.tgz",
- "integrity": "sha512-nHtDoQcuqFmwYNYPz3Rah5ph2p8PFeFCsZk9A/48dPc/rGocJ5J3hAAZ7pb76VWX3fZKu+uEr/FhH5jLx7umrw=="
+ "version": "7.21.5",
+ "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.21.5.tgz",
+ "integrity": "sha512-5pTUx3hAJaZIdW99sJ6ZUUgWq/Y+Hja7TowEnLNMm1VivRgZQL3vpBY3qUACVsvw+yQU6+YgfBVmcbLaZtrA1w=="
},
"@babel/helper-validator-identifier": {
"version": "7.19.1",
@@ -38082,63 +36508,100 @@
"integrity": "sha512-awrNfaMtnHUr653GgGEs++LlAvW6w+DcPrOliSMXWCKo597CwL5Acf/wWdNkf/tfEQE3mjkeD1YOVZOUV/od1w=="
},
"@babel/helper-validator-option": {
- "version": "7.12.17",
+ "version": "7.21.0",
+ "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.21.0.tgz",
+ "integrity": "sha512-rmL/B8/f0mKS2baE9ZpyTcTavvEuWhTTW8amjzXNvYG4AwBsqTLikfXsEofsJEfKHf+HQVQbFOHy6o+4cnC/fQ==",
"devOptional": true
},
"@babel/helper-wrap-function": {
- "version": "7.13.0",
+ "version": "7.20.5",
+ "resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.20.5.tgz",
+ "integrity": "sha512-bYMxIWK5mh+TgXGVqAtnu5Yn1un+v8DDZtqyzKRLUzrh70Eal2O3aZ7aPYiMADO4uKlkzOiRiZ6GX5q3qxvW9Q==",
"devOptional": true,
"requires": {
- "@babel/helper-function-name": "^7.12.13",
- "@babel/template": "^7.12.13",
- "@babel/traverse": "^7.13.0",
- "@babel/types": "^7.13.0"
+ "@babel/helper-function-name": "^7.19.0",
+ "@babel/template": "^7.18.10",
+ "@babel/traverse": "^7.20.5",
+ "@babel/types": "^7.20.5"
}
},
"@babel/helpers": {
- "version": "7.13.10",
+ "version": "7.21.5",
+ "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.21.5.tgz",
+ "integrity": "sha512-BSY+JSlHxOmGsPTydUkPf1MdMQ3M81x5xGCOVgWM3G8XH77sJ292Y2oqcp0CbbgxhqBuI46iUz1tT7hqP7EfgA==",
"devOptional": true,
"requires": {
- "@babel/template": "^7.12.13",
- "@babel/traverse": "^7.13.0",
- "@babel/types": "^7.13.0"
+ "@babel/template": "^7.20.7",
+ "@babel/traverse": "^7.21.5",
+ "@babel/types": "^7.21.5"
}
},
"@babel/highlight": {
- "version": "7.13.10",
+ "version": "7.18.6",
+ "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.18.6.tgz",
+ "integrity": "sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g==",
"requires": {
- "@babel/helper-validator-identifier": "^7.12.11",
+ "@babel/helper-validator-identifier": "^7.18.6",
"chalk": "^2.0.0",
"js-tokens": "^4.0.0"
}
},
"@babel/parser": {
- "version": "7.20.5"
+ "version": "7.21.8",
+ "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.21.8.tgz",
+ "integrity": "sha512-6zavDGdzG3gUqAdWvlLFfk+36RilI+Pwyuuh7HItyeScCWP3k6i8vKclAQ0bM/0y/Kz/xiwvxhMv9MgTJP5gmA=="
},
- "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": {
- "version": "7.13.12",
+ "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": {
+ "version": "7.18.6",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.18.6.tgz",
+ "integrity": "sha512-Dgxsyg54Fx1d4Nge8UnvTrED63vrwOdPmyvPzlNN/boaliRP54pm3pGzZD1SJUwrBA+Cs/xdG8kXX6Mn/RfISQ==",
"devOptional": true,
"requires": {
- "@babel/helper-plugin-utils": "^7.13.0",
- "@babel/helper-skip-transparent-expression-wrappers": "^7.12.1",
- "@babel/plugin-proposal-optional-chaining": "^7.13.12"
+ "@babel/helper-plugin-utils": "^7.18.6"
+ }
+ },
+ "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": {
+ "version": "7.20.7",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.20.7.tgz",
+ "integrity": "sha512-sbr9+wNE5aXMBBFBICk01tt7sBf2Oc9ikRFEcem/ZORup9IMUdNhW7/wVLEbbtlWOsEubJet46mHAL2C8+2jKQ==",
+ "devOptional": true,
+ "requires": {
+ "@babel/helper-plugin-utils": "^7.20.2",
+ "@babel/helper-skip-transparent-expression-wrappers": "^7.20.0",
+ "@babel/plugin-proposal-optional-chaining": "^7.20.7"
}
},
"@babel/plugin-proposal-async-generator-functions": {
- "version": "7.13.8",
+ "version": "7.20.7",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.20.7.tgz",
+ "integrity": "sha512-xMbiLsn/8RK7Wq7VeVytytS2L6qE69bXPB10YCmMdDZbKF4okCqY74pI/jJQ/8U0b/F6NrT2+14b8/P9/3AMGA==",
"devOptional": true,
"requires": {
- "@babel/helper-plugin-utils": "^7.13.0",
- "@babel/helper-remap-async-to-generator": "^7.13.0",
+ "@babel/helper-environment-visitor": "^7.18.9",
+ "@babel/helper-plugin-utils": "^7.20.2",
+ "@babel/helper-remap-async-to-generator": "^7.18.9",
"@babel/plugin-syntax-async-generators": "^7.8.4"
}
},
"@babel/plugin-proposal-class-properties": {
- "version": "7.13.0",
+ "version": "7.18.6",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.18.6.tgz",
+ "integrity": "sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==",
"devOptional": true,
"requires": {
- "@babel/helper-create-class-features-plugin": "^7.13.0",
- "@babel/helper-plugin-utils": "^7.13.0"
+ "@babel/helper-create-class-features-plugin": "^7.18.6",
+ "@babel/helper-plugin-utils": "^7.18.6"
+ }
+ },
+ "@babel/plugin-proposal-class-static-block": {
+ "version": "7.21.0",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-class-static-block/-/plugin-proposal-class-static-block-7.21.0.tgz",
+ "integrity": "sha512-XP5G9MWNUskFuP30IfFSEFB0Z6HzLIUcjYM4bYOPHXl7eiJ9HFv8tWj6TXTN5QODiEhDZAeI4hLok2iHFFV4hw==",
+ "devOptional": true,
+ "requires": {
+ "@babel/helper-create-class-features-plugin": "^7.21.0",
+ "@babel/helper-plugin-utils": "^7.20.2",
+ "@babel/plugin-syntax-class-static-block": "^7.14.5"
}
},
"@babel/plugin-proposal-decorators": {
@@ -38151,221 +36614,132 @@
"@babel/helper-split-export-declaration": "^7.16.7",
"@babel/plugin-syntax-decorators": "^7.17.0",
"charcodes": "^0.2.0"
- },
- "dependencies": {
- "@babel/code-frame": {
- "version": "7.16.7",
- "dev": true,
- "requires": {
- "@babel/highlight": "^7.16.7"
- }
- },
- "@babel/generator": {
- "version": "7.17.9",
- "dev": true,
- "requires": {
- "@babel/types": "^7.17.0",
- "jsesc": "^2.5.1",
- "source-map": "^0.5.0"
- }
- },
- "@babel/helper-annotate-as-pure": {
- "version": "7.16.7",
- "dev": true,
- "requires": {
- "@babel/types": "^7.16.7"
- }
- },
- "@babel/helper-create-class-features-plugin": {
- "version": "7.17.9",
- "dev": true,
- "requires": {
- "@babel/helper-annotate-as-pure": "^7.16.7",
- "@babel/helper-environment-visitor": "^7.16.7",
- "@babel/helper-function-name": "^7.17.9",
- "@babel/helper-member-expression-to-functions": "^7.17.7",
- "@babel/helper-optimise-call-expression": "^7.16.7",
- "@babel/helper-replace-supers": "^7.16.7",
- "@babel/helper-split-export-declaration": "^7.16.7"
- }
- },
- "@babel/helper-function-name": {
- "version": "7.17.9",
- "dev": true,
- "requires": {
- "@babel/template": "^7.16.7",
- "@babel/types": "^7.17.0"
- }
- },
- "@babel/helper-hoist-variables": {
- "version": "7.16.7",
- "dev": true,
- "requires": {
- "@babel/types": "^7.16.7"
- }
- },
- "@babel/helper-member-expression-to-functions": {
- "version": "7.17.7",
- "dev": true,
- "requires": {
- "@babel/types": "^7.17.0"
- }
- },
- "@babel/helper-optimise-call-expression": {
- "version": "7.16.7",
- "dev": true,
- "requires": {
- "@babel/types": "^7.16.7"
- }
- },
- "@babel/helper-plugin-utils": {
- "version": "7.16.7",
- "dev": true
- },
- "@babel/helper-replace-supers": {
- "version": "7.16.7",
- "dev": true,
- "requires": {
- "@babel/helper-environment-visitor": "^7.16.7",
- "@babel/helper-member-expression-to-functions": "^7.16.7",
- "@babel/helper-optimise-call-expression": "^7.16.7",
- "@babel/traverse": "^7.16.7",
- "@babel/types": "^7.16.7"
- }
- },
- "@babel/helper-split-export-declaration": {
- "version": "7.16.7",
- "dev": true,
- "requires": {
- "@babel/types": "^7.16.7"
- }
- },
- "@babel/highlight": {
- "version": "7.17.9",
- "dev": true,
- "requires": {
- "@babel/helper-validator-identifier": "^7.16.7",
- "chalk": "^2.0.0",
- "js-tokens": "^4.0.0"
- }
- },
- "@babel/template": {
- "version": "7.16.7",
- "dev": true,
- "requires": {
- "@babel/code-frame": "^7.16.7",
- "@babel/parser": "^7.16.7",
- "@babel/types": "^7.16.7"
- }
- },
- "@babel/traverse": {
- "version": "7.17.9",
- "dev": true,
- "requires": {
- "@babel/code-frame": "^7.16.7",
- "@babel/generator": "^7.17.9",
- "@babel/helper-environment-visitor": "^7.16.7",
- "@babel/helper-function-name": "^7.17.9",
- "@babel/helper-hoist-variables": "^7.16.7",
- "@babel/helper-split-export-declaration": "^7.16.7",
- "@babel/parser": "^7.17.9",
- "@babel/types": "^7.17.0",
- "debug": "^4.1.0",
- "globals": "^11.1.0"
- }
- }
}
},
"@babel/plugin-proposal-dynamic-import": {
- "version": "7.13.8",
+ "version": "7.18.6",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.18.6.tgz",
+ "integrity": "sha512-1auuwmK+Rz13SJj36R+jqFPMJWyKEDd7lLSdOj4oJK0UTgGueSAtkrCvz9ewmgyU/P941Rv2fQwZJN8s6QruXw==",
"devOptional": true,
"requires": {
- "@babel/helper-plugin-utils": "^7.13.0",
+ "@babel/helper-plugin-utils": "^7.18.6",
"@babel/plugin-syntax-dynamic-import": "^7.8.3"
}
},
"@babel/plugin-proposal-export-namespace-from": {
- "version": "7.12.13",
+ "version": "7.18.9",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.18.9.tgz",
+ "integrity": "sha512-k1NtHyOMvlDDFeb9G5PhUXuGj8m/wiwojgQVEhJ/fsVsMCpLyOP4h0uGEjYJKrRI+EVPlb5Jk+Gt9P97lOGwtA==",
"devOptional": true,
"requires": {
- "@babel/helper-plugin-utils": "^7.12.13",
+ "@babel/helper-plugin-utils": "^7.18.9",
"@babel/plugin-syntax-export-namespace-from": "^7.8.3"
}
},
"@babel/plugin-proposal-json-strings": {
- "version": "7.13.8",
+ "version": "7.18.6",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.18.6.tgz",
+ "integrity": "sha512-lr1peyn9kOdbYc0xr0OdHTZ5FMqS6Di+H0Fz2I/JwMzGmzJETNeOFq2pBySw6X/KFL5EWDjlJuMsUGRFb8fQgQ==",
"devOptional": true,
"requires": {
- "@babel/helper-plugin-utils": "^7.13.0",
+ "@babel/helper-plugin-utils": "^7.18.6",
"@babel/plugin-syntax-json-strings": "^7.8.3"
}
},
"@babel/plugin-proposal-logical-assignment-operators": {
- "version": "7.13.8",
+ "version": "7.20.7",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.20.7.tgz",
+ "integrity": "sha512-y7C7cZgpMIjWlKE5T7eJwp+tnRYM89HmRvWM5EQuB5BoHEONjmQ8lSNmBUwOyy/GFRsohJED51YBF79hE1djug==",
"devOptional": true,
"requires": {
- "@babel/helper-plugin-utils": "^7.13.0",
+ "@babel/helper-plugin-utils": "^7.20.2",
"@babel/plugin-syntax-logical-assignment-operators": "^7.10.4"
}
},
"@babel/plugin-proposal-nullish-coalescing-operator": {
- "version": "7.13.8",
+ "version": "7.18.6",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.18.6.tgz",
+ "integrity": "sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==",
"devOptional": true,
"requires": {
- "@babel/helper-plugin-utils": "^7.13.0",
+ "@babel/helper-plugin-utils": "^7.18.6",
"@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3"
}
},
"@babel/plugin-proposal-numeric-separator": {
- "version": "7.12.13",
+ "version": "7.18.6",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.18.6.tgz",
+ "integrity": "sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q==",
"devOptional": true,
"requires": {
- "@babel/helper-plugin-utils": "^7.12.13",
+ "@babel/helper-plugin-utils": "^7.18.6",
"@babel/plugin-syntax-numeric-separator": "^7.10.4"
}
},
"@babel/plugin-proposal-object-rest-spread": {
- "version": "7.13.8",
+ "version": "7.20.7",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.20.7.tgz",
+ "integrity": "sha512-d2S98yCiLxDVmBmE8UjGcfPvNEUbA1U5q5WxaWFUGRzJSVAZqm5W6MbPct0jxnegUZ0niLeNX+IOzEs7wYg9Dg==",
"devOptional": true,
"requires": {
- "@babel/compat-data": "^7.13.8",
- "@babel/helper-compilation-targets": "^7.13.8",
- "@babel/helper-plugin-utils": "^7.13.0",
+ "@babel/compat-data": "^7.20.5",
+ "@babel/helper-compilation-targets": "^7.20.7",
+ "@babel/helper-plugin-utils": "^7.20.2",
"@babel/plugin-syntax-object-rest-spread": "^7.8.3",
- "@babel/plugin-transform-parameters": "^7.13.0"
+ "@babel/plugin-transform-parameters": "^7.20.7"
}
},
"@babel/plugin-proposal-optional-catch-binding": {
- "version": "7.13.8",
+ "version": "7.18.6",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.18.6.tgz",
+ "integrity": "sha512-Q40HEhs9DJQyaZfUjjn6vE8Cv4GmMHCYuMGIWUnlxH6400VGxOuwWsPt4FxXxJkC/5eOzgn0z21M9gMT4MOhbw==",
"devOptional": true,
"requires": {
- "@babel/helper-plugin-utils": "^7.13.0",
+ "@babel/helper-plugin-utils": "^7.18.6",
"@babel/plugin-syntax-optional-catch-binding": "^7.8.3"
}
},
"@babel/plugin-proposal-optional-chaining": {
- "version": "7.13.12",
+ "version": "7.21.0",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.21.0.tgz",
+ "integrity": "sha512-p4zeefM72gpmEe2fkUr/OnOXpWEf8nAgk7ZYVqqfFiyIG7oFfVZcCrU64hWn5xp4tQ9LkV4bTIa5rD0KANpKNA==",
"devOptional": true,
"requires": {
- "@babel/helper-plugin-utils": "^7.13.0",
- "@babel/helper-skip-transparent-expression-wrappers": "^7.12.1",
+ "@babel/helper-plugin-utils": "^7.20.2",
+ "@babel/helper-skip-transparent-expression-wrappers": "^7.20.0",
"@babel/plugin-syntax-optional-chaining": "^7.8.3"
}
},
"@babel/plugin-proposal-private-methods": {
- "version": "7.13.0",
+ "version": "7.18.6",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.18.6.tgz",
+ "integrity": "sha512-nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA==",
"devOptional": true,
"requires": {
- "@babel/helper-create-class-features-plugin": "^7.13.0",
- "@babel/helper-plugin-utils": "^7.13.0"
+ "@babel/helper-create-class-features-plugin": "^7.18.6",
+ "@babel/helper-plugin-utils": "^7.18.6"
+ }
+ },
+ "@babel/plugin-proposal-private-property-in-object": {
+ "version": "7.21.0",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.21.0.tgz",
+ "integrity": "sha512-ha4zfehbJjc5MmXBlHec1igel5TJXXLDDRbuJ4+XT2TJcyD9/V1919BA8gMvsdHcNMBy4WBUBiRb3nw/EQUtBw==",
+ "devOptional": true,
+ "requires": {
+ "@babel/helper-annotate-as-pure": "^7.18.6",
+ "@babel/helper-create-class-features-plugin": "^7.21.0",
+ "@babel/helper-plugin-utils": "^7.20.2",
+ "@babel/plugin-syntax-private-property-in-object": "^7.14.5"
}
},
"@babel/plugin-proposal-unicode-property-regex": {
- "version": "7.12.13",
+ "version": "7.18.6",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.18.6.tgz",
+ "integrity": "sha512-2BShG/d5yoZyXZfVePH91urL5wTG6ASZU9M4o03lKK8u8UW1y08OMttBSOADTcJrnPMpvDXRG3G8fyLh4ovs8w==",
"devOptional": true,
"requires": {
- "@babel/helper-create-regexp-features-plugin": "^7.12.13",
- "@babel/helper-plugin-utils": "^7.12.13"
+ "@babel/helper-create-regexp-features-plugin": "^7.18.6",
+ "@babel/helper-plugin-utils": "^7.18.6"
}
},
"@babel/plugin-syntax-async-generators": {
@@ -38389,21 +36763,26 @@
"@babel/helper-plugin-utils": "^7.12.13"
}
},
+ "@babel/plugin-syntax-class-static-block": {
+ "version": "7.14.5",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-static-block/-/plugin-syntax-class-static-block-7.14.5.tgz",
+ "integrity": "sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==",
+ "devOptional": true,
+ "requires": {
+ "@babel/helper-plugin-utils": "^7.14.5"
+ }
+ },
"@babel/plugin-syntax-decorators": {
"version": "7.17.0",
"dev": true,
"requires": {
"@babel/helper-plugin-utils": "^7.16.7"
- },
- "dependencies": {
- "@babel/helper-plugin-utils": {
- "version": "7.16.7",
- "dev": true
- }
}
},
"@babel/plugin-syntax-dynamic-import": {
"version": "7.8.3",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz",
+ "integrity": "sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==",
"devOptional": true,
"requires": {
"@babel/helper-plugin-utils": "^7.8.0"
@@ -38411,6 +36790,8 @@
},
"@babel/plugin-syntax-export-namespace-from": {
"version": "7.8.3",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-export-namespace-from/-/plugin-syntax-export-namespace-from-7.8.3.tgz",
+ "integrity": "sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==",
"devOptional": true,
"requires": {
"@babel/helper-plugin-utils": "^7.8.3"
@@ -38423,6 +36804,15 @@
"@babel/helper-plugin-utils": "^7.12.13"
}
},
+ "@babel/plugin-syntax-import-assertions": {
+ "version": "7.20.0",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.20.0.tgz",
+ "integrity": "sha512-IUh1vakzNoWalR8ch/areW7qFopR2AEw03JlG7BbrDqmQ4X3q9uuipQwSGrUn7oGiemKjtSLDhNtQHzMHr1JdQ==",
+ "devOptional": true,
+ "requires": {
+ "@babel/helper-plugin-utils": "^7.19.0"
+ }
+ },
"@babel/plugin-syntax-import-meta": {
"version": "7.10.4",
"devOptional": true,
@@ -38438,10 +36828,12 @@
}
},
"@babel/plugin-syntax-jsx": {
- "version": "7.12.13",
+ "version": "7.21.4",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.21.4.tgz",
+ "integrity": "sha512-5hewiLct5OKyh6PLKEYaFclcqtIgCb6bmELouxjF6up5q3Sov7rOayW4RwhbaBL0dit8rA80GNfY+UuDp2mBbQ==",
"devOptional": true,
"requires": {
- "@babel/helper-plugin-utils": "^7.12.13"
+ "@babel/helper-plugin-utils": "^7.20.2"
}
},
"@babel/plugin-syntax-logical-assignment-operators": {
@@ -38486,11 +36878,22 @@
"@babel/helper-plugin-utils": "^7.8.0"
}
},
- "@babel/plugin-syntax-top-level-await": {
- "version": "7.12.13",
+ "@babel/plugin-syntax-private-property-in-object": {
+ "version": "7.14.5",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-private-property-in-object/-/plugin-syntax-private-property-in-object-7.14.5.tgz",
+ "integrity": "sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==",
"devOptional": true,
"requires": {
- "@babel/helper-plugin-utils": "^7.12.13"
+ "@babel/helper-plugin-utils": "^7.14.5"
+ }
+ },
+ "@babel/plugin-syntax-top-level-await": {
+ "version": "7.14.5",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz",
+ "integrity": "sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==",
+ "devOptional": true,
+ "requires": {
+ "@babel/helper-plugin-utils": "^7.14.5"
}
},
"@babel/plugin-syntax-typescript": {
@@ -38501,83 +36904,106 @@
}
},
"@babel/plugin-transform-arrow-functions": {
- "version": "7.13.0",
+ "version": "7.21.5",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.21.5.tgz",
+ "integrity": "sha512-wb1mhwGOCaXHDTcsRYMKF9e5bbMgqwxtqa2Y1ifH96dXJPwbuLX9qHy3clhrxVqgMz7nyNXs8VkxdH8UBcjKqA==",
"devOptional": true,
"requires": {
- "@babel/helper-plugin-utils": "^7.13.0"
+ "@babel/helper-plugin-utils": "^7.21.5"
}
},
"@babel/plugin-transform-async-to-generator": {
- "version": "7.13.0",
+ "version": "7.20.7",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.20.7.tgz",
+ "integrity": "sha512-Uo5gwHPT9vgnSXQxqGtpdufUiWp96gk7yiP4Mp5bm1QMkEmLXBO7PAGYbKoJ6DhAwiNkcHFBol/x5zZZkL/t0Q==",
"devOptional": true,
"requires": {
- "@babel/helper-module-imports": "^7.12.13",
- "@babel/helper-plugin-utils": "^7.13.0",
- "@babel/helper-remap-async-to-generator": "^7.13.0"
+ "@babel/helper-module-imports": "^7.18.6",
+ "@babel/helper-plugin-utils": "^7.20.2",
+ "@babel/helper-remap-async-to-generator": "^7.18.9"
}
},
"@babel/plugin-transform-block-scoped-functions": {
- "version": "7.12.13",
+ "version": "7.18.6",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.18.6.tgz",
+ "integrity": "sha512-ExUcOqpPWnliRcPqves5HJcJOvHvIIWfuS4sroBUenPuMdmW+SMHDakmtS7qOo13sVppmUijqeTv7qqGsvURpQ==",
"devOptional": true,
"requires": {
- "@babel/helper-plugin-utils": "^7.12.13"
+ "@babel/helper-plugin-utils": "^7.18.6"
}
},
"@babel/plugin-transform-block-scoping": {
- "version": "7.12.13",
+ "version": "7.21.0",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.21.0.tgz",
+ "integrity": "sha512-Mdrbunoh9SxwFZapeHVrwFmri16+oYotcZysSzhNIVDwIAb1UV+kvnxULSYq9J3/q5MDG+4X6w8QVgD1zhBXNQ==",
"devOptional": true,
"requires": {
- "@babel/helper-plugin-utils": "^7.12.13"
+ "@babel/helper-plugin-utils": "^7.20.2"
}
},
"@babel/plugin-transform-classes": {
- "version": "7.13.0",
+ "version": "7.21.0",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.21.0.tgz",
+ "integrity": "sha512-RZhbYTCEUAe6ntPehC4hlslPWosNHDox+vAs4On/mCLRLfoDVHf6hVEd7kuxr1RnHwJmxFfUM3cZiZRmPxJPXQ==",
"devOptional": true,
"requires": {
- "@babel/helper-annotate-as-pure": "^7.12.13",
- "@babel/helper-function-name": "^7.12.13",
- "@babel/helper-optimise-call-expression": "^7.12.13",
- "@babel/helper-plugin-utils": "^7.13.0",
- "@babel/helper-replace-supers": "^7.13.0",
- "@babel/helper-split-export-declaration": "^7.12.13",
+ "@babel/helper-annotate-as-pure": "^7.18.6",
+ "@babel/helper-compilation-targets": "^7.20.7",
+ "@babel/helper-environment-visitor": "^7.18.9",
+ "@babel/helper-function-name": "^7.21.0",
+ "@babel/helper-optimise-call-expression": "^7.18.6",
+ "@babel/helper-plugin-utils": "^7.20.2",
+ "@babel/helper-replace-supers": "^7.20.7",
+ "@babel/helper-split-export-declaration": "^7.18.6",
"globals": "^11.1.0"
}
},
"@babel/plugin-transform-computed-properties": {
- "version": "7.13.0",
+ "version": "7.21.5",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.21.5.tgz",
+ "integrity": "sha512-TR653Ki3pAwxBxUe8srfF3e4Pe3FTA46uaNHYyQwIoM4oWKSoOZiDNyHJ0oIoDIUPSRQbQG7jzgVBX3FPVne1Q==",
"devOptional": true,
"requires": {
- "@babel/helper-plugin-utils": "^7.13.0"
+ "@babel/helper-plugin-utils": "^7.21.5",
+ "@babel/template": "^7.20.7"
}
},
"@babel/plugin-transform-destructuring": {
- "version": "7.13.0",
+ "version": "7.21.3",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.21.3.tgz",
+ "integrity": "sha512-bp6hwMFzuiE4HqYEyoGJ/V2LeIWn+hLVKc4pnj++E5XQptwhtcGmSayM029d/j2X1bPKGTlsyPwAubuU22KhMA==",
"devOptional": true,
"requires": {
- "@babel/helper-plugin-utils": "^7.13.0"
+ "@babel/helper-plugin-utils": "^7.20.2"
}
},
"@babel/plugin-transform-dotall-regex": {
- "version": "7.12.13",
+ "version": "7.18.6",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.18.6.tgz",
+ "integrity": "sha512-6S3jpun1eEbAxq7TdjLotAsl4WpQI9DxfkycRcKrjhQYzU87qpXdknpBg/e+TdcMehqGnLFi7tnFUBR02Vq6wg==",
"devOptional": true,
"requires": {
- "@babel/helper-create-regexp-features-plugin": "^7.12.13",
- "@babel/helper-plugin-utils": "^7.12.13"
+ "@babel/helper-create-regexp-features-plugin": "^7.18.6",
+ "@babel/helper-plugin-utils": "^7.18.6"
}
},
"@babel/plugin-transform-duplicate-keys": {
- "version": "7.12.13",
+ "version": "7.18.9",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.18.9.tgz",
+ "integrity": "sha512-d2bmXCtZXYc59/0SanQKbiWINadaJXqtvIQIzd4+hNwkWBgyCd5F/2t1kXoUdvPMrxzPvhK6EMQRROxsue+mfw==",
"devOptional": true,
"requires": {
- "@babel/helper-plugin-utils": "^7.12.13"
+ "@babel/helper-plugin-utils": "^7.18.9"
}
},
"@babel/plugin-transform-exponentiation-operator": {
- "version": "7.12.13",
+ "version": "7.18.6",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.18.6.tgz",
+ "integrity": "sha512-wzEtc0+2c88FVR34aQmiz56dxEkxr2g8DQb/KfaFa1JYXOFVsbhvAonFN6PwVWj++fKmku8NP80plJ5Et4wqHw==",
"devOptional": true,
"requires": {
- "@babel/helper-builder-binary-assignment-operator-visitor": "^7.12.13",
- "@babel/helper-plugin-utils": "^7.12.13"
+ "@babel/helper-builder-binary-assignment-operator-visitor": "^7.18.6",
+ "@babel/helper-plugin-utils": "^7.18.6"
}
},
"@babel/plugin-transform-flow-strip-types": {
@@ -38589,201 +37015,254 @@
}
},
"@babel/plugin-transform-for-of": {
- "version": "7.13.0",
+ "version": "7.21.5",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.21.5.tgz",
+ "integrity": "sha512-nYWpjKW/7j/I/mZkGVgHJXh4bA1sfdFnJoOXwJuj4m3Q2EraO/8ZyrkCau9P5tbHQk01RMSt6KYLCsW7730SXQ==",
"devOptional": true,
"requires": {
- "@babel/helper-plugin-utils": "^7.13.0"
+ "@babel/helper-plugin-utils": "^7.21.5"
}
},
"@babel/plugin-transform-function-name": {
- "version": "7.12.13",
+ "version": "7.18.9",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.18.9.tgz",
+ "integrity": "sha512-WvIBoRPaJQ5yVHzcnJFor7oS5Ls0PYixlTYE63lCj2RtdQEl15M68FXQlxnG6wdraJIXRdR7KI+hQ7q/9QjrCQ==",
"devOptional": true,
"requires": {
- "@babel/helper-function-name": "^7.12.13",
- "@babel/helper-plugin-utils": "^7.12.13"
+ "@babel/helper-compilation-targets": "^7.18.9",
+ "@babel/helper-function-name": "^7.18.9",
+ "@babel/helper-plugin-utils": "^7.18.9"
}
},
"@babel/plugin-transform-literals": {
- "version": "7.12.13",
+ "version": "7.18.9",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.18.9.tgz",
+ "integrity": "sha512-IFQDSRoTPnrAIrI5zoZv73IFeZu2dhu6irxQjY9rNjTT53VmKg9fenjvoiOWOkJ6mm4jKVPtdMzBY98Fp4Z4cg==",
"devOptional": true,
"requires": {
- "@babel/helper-plugin-utils": "^7.12.13"
+ "@babel/helper-plugin-utils": "^7.18.9"
}
},
"@babel/plugin-transform-member-expression-literals": {
- "version": "7.12.13",
+ "version": "7.18.6",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.18.6.tgz",
+ "integrity": "sha512-qSF1ihLGO3q+/g48k85tUjD033C29TNTVB2paCwZPVmOsjn9pClvYYrM2VeJpBY2bcNkuny0YUyTNRyRxJ54KA==",
"devOptional": true,
"requires": {
- "@babel/helper-plugin-utils": "^7.12.13"
+ "@babel/helper-plugin-utils": "^7.18.6"
}
},
"@babel/plugin-transform-modules-amd": {
- "version": "7.13.0",
+ "version": "7.20.11",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.20.11.tgz",
+ "integrity": "sha512-NuzCt5IIYOW0O30UvqktzHYR2ud5bOWbY0yaxWZ6G+aFzOMJvrs5YHNikrbdaT15+KNO31nPOy5Fim3ku6Zb5g==",
"devOptional": true,
"requires": {
- "@babel/helper-module-transforms": "^7.13.0",
- "@babel/helper-plugin-utils": "^7.13.0",
- "babel-plugin-dynamic-import-node": "^2.3.3"
+ "@babel/helper-module-transforms": "^7.20.11",
+ "@babel/helper-plugin-utils": "^7.20.2"
}
},
"@babel/plugin-transform-modules-commonjs": {
- "version": "7.13.8",
+ "version": "7.21.5",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.21.5.tgz",
+ "integrity": "sha512-OVryBEgKUbtqMoB7eG2rs6UFexJi6Zj6FDXx+esBLPTCxCNxAY9o+8Di7IsUGJ+AVhp5ncK0fxWUBd0/1gPhrQ==",
"devOptional": true,
"requires": {
- "@babel/helper-module-transforms": "^7.13.0",
- "@babel/helper-plugin-utils": "^7.13.0",
- "@babel/helper-simple-access": "^7.12.13",
- "babel-plugin-dynamic-import-node": "^2.3.3"
+ "@babel/helper-module-transforms": "^7.21.5",
+ "@babel/helper-plugin-utils": "^7.21.5",
+ "@babel/helper-simple-access": "^7.21.5"
}
},
"@babel/plugin-transform-modules-systemjs": {
- "version": "7.13.8",
+ "version": "7.20.11",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.20.11.tgz",
+ "integrity": "sha512-vVu5g9BPQKSFEmvt2TA4Da5N+QVS66EX21d8uoOihC+OCpUoGvzVsXeqFdtAEfVa5BILAeFt+U7yVmLbQnAJmw==",
"devOptional": true,
"requires": {
- "@babel/helper-hoist-variables": "^7.13.0",
- "@babel/helper-module-transforms": "^7.13.0",
- "@babel/helper-plugin-utils": "^7.13.0",
- "@babel/helper-validator-identifier": "^7.12.11",
- "babel-plugin-dynamic-import-node": "^2.3.3"
+ "@babel/helper-hoist-variables": "^7.18.6",
+ "@babel/helper-module-transforms": "^7.20.11",
+ "@babel/helper-plugin-utils": "^7.20.2",
+ "@babel/helper-validator-identifier": "^7.19.1"
}
},
"@babel/plugin-transform-modules-umd": {
- "version": "7.13.0",
+ "version": "7.18.6",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.18.6.tgz",
+ "integrity": "sha512-dcegErExVeXcRqNtkRU/z8WlBLnvD4MRnHgNs3MytRO1Mn1sHRyhbcpYbVMGclAqOjdW+9cfkdZno9dFdfKLfQ==",
"devOptional": true,
"requires": {
- "@babel/helper-module-transforms": "^7.13.0",
- "@babel/helper-plugin-utils": "^7.13.0"
+ "@babel/helper-module-transforms": "^7.18.6",
+ "@babel/helper-plugin-utils": "^7.18.6"
}
},
"@babel/plugin-transform-named-capturing-groups-regex": {
- "version": "7.12.13",
+ "version": "7.20.5",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.20.5.tgz",
+ "integrity": "sha512-mOW4tTzi5iTLnw+78iEq3gr8Aoq4WNRGpmSlrogqaiCBoR1HFhpU4JkpQFOHfeYx3ReVIFWOQJS4aZBRvuZ6mA==",
"devOptional": true,
"requires": {
- "@babel/helper-create-regexp-features-plugin": "^7.12.13"
+ "@babel/helper-create-regexp-features-plugin": "^7.20.5",
+ "@babel/helper-plugin-utils": "^7.20.2"
}
},
"@babel/plugin-transform-new-target": {
- "version": "7.12.13",
+ "version": "7.18.6",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.18.6.tgz",
+ "integrity": "sha512-DjwFA/9Iu3Z+vrAn+8pBUGcjhxKguSMlsFqeCKbhb9BAV756v0krzVK04CRDi/4aqmk8BsHb4a/gFcaA5joXRw==",
"devOptional": true,
"requires": {
- "@babel/helper-plugin-utils": "^7.12.13"
+ "@babel/helper-plugin-utils": "^7.18.6"
}
},
"@babel/plugin-transform-object-super": {
- "version": "7.12.13",
+ "version": "7.18.6",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.18.6.tgz",
+ "integrity": "sha512-uvGz6zk+pZoS1aTZrOvrbj6Pp/kK2mp45t2B+bTDre2UgsZZ8EZLSJtUg7m/no0zOJUWgFONpB7Zv9W2tSaFlA==",
"devOptional": true,
"requires": {
- "@babel/helper-plugin-utils": "^7.12.13",
- "@babel/helper-replace-supers": "^7.12.13"
+ "@babel/helper-plugin-utils": "^7.18.6",
+ "@babel/helper-replace-supers": "^7.18.6"
}
},
"@babel/plugin-transform-parameters": {
- "version": "7.13.0",
+ "version": "7.21.3",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.21.3.tgz",
+ "integrity": "sha512-Wxc+TvppQG9xWFYatvCGPvZ6+SIUxQ2ZdiBP+PHYMIjnPXD+uThCshaz4NZOnODAtBjjcVQQ/3OKs9LW28purQ==",
"devOptional": true,
"requires": {
- "@babel/helper-plugin-utils": "^7.13.0"
+ "@babel/helper-plugin-utils": "^7.20.2"
}
},
"@babel/plugin-transform-property-literals": {
- "version": "7.12.13",
+ "version": "7.18.6",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.18.6.tgz",
+ "integrity": "sha512-cYcs6qlgafTud3PAzrrRNbQtfpQ8+y/+M5tKmksS9+M1ckbH6kzY8MrexEM9mcA6JDsukE19iIRvAyYl463sMg==",
"devOptional": true,
"requires": {
- "@babel/helper-plugin-utils": "^7.12.13"
- }
- },
- "@babel/plugin-transform-react-constant-elements": {
- "version": "7.13.13",
- "optional": true,
- "requires": {
- "@babel/helper-plugin-utils": "^7.13.0"
+ "@babel/helper-plugin-utils": "^7.18.6"
}
},
"@babel/plugin-transform-react-display-name": {
"version": "7.12.13",
- "devOptional": true,
+ "dev": true,
"requires": {
"@babel/helper-plugin-utils": "^7.12.13"
}
},
"@babel/plugin-transform-react-jsx": {
- "version": "7.13.12",
+ "version": "7.21.5",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.21.5.tgz",
+ "integrity": "sha512-ELdlq61FpoEkHO6gFRpfj0kUgSwQTGoaEU8eMRoS8Dv3v6e7BjEAj5WMtIBRdHUeAioMhKP5HyxNzNnP+heKbA==",
"devOptional": true,
"requires": {
- "@babel/helper-annotate-as-pure": "^7.12.13",
- "@babel/helper-module-imports": "^7.13.12",
- "@babel/helper-plugin-utils": "^7.13.0",
- "@babel/plugin-syntax-jsx": "^7.12.13",
- "@babel/types": "^7.13.12"
+ "@babel/helper-annotate-as-pure": "^7.18.6",
+ "@babel/helper-module-imports": "^7.21.4",
+ "@babel/helper-plugin-utils": "^7.21.5",
+ "@babel/plugin-syntax-jsx": "^7.21.4",
+ "@babel/types": "^7.21.5"
}
},
"@babel/plugin-transform-react-jsx-development": {
"version": "7.12.17",
- "devOptional": true,
+ "dev": true,
"requires": {
"@babel/plugin-transform-react-jsx": "^7.12.17"
}
},
+ "@babel/plugin-transform-react-jsx-self": {
+ "version": "7.21.0",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-self/-/plugin-transform-react-jsx-self-7.21.0.tgz",
+ "integrity": "sha512-f/Eq+79JEu+KUANFks9UZCcvydOOGMgF7jBrcwjHa5jTZD8JivnhCJYvmlhR/WTXBWonDExPoW0eO/CR4QJirA==",
+ "optional": true,
+ "requires": {
+ "@babel/helper-plugin-utils": "^7.20.2"
+ }
+ },
+ "@babel/plugin-transform-react-jsx-source": {
+ "version": "7.19.6",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-source/-/plugin-transform-react-jsx-source-7.19.6.tgz",
+ "integrity": "sha512-RpAi004QyMNisst/pvSanoRdJ4q+jMCWyk9zdw/CyLB9j8RXEahodR6l2GyttDRyEVWZtbN+TpLiHJ3t34LbsQ==",
+ "optional": true,
+ "requires": {
+ "@babel/helper-plugin-utils": "^7.19.0"
+ }
+ },
"@babel/plugin-transform-react-pure-annotations": {
"version": "7.12.1",
- "devOptional": true,
+ "dev": true,
"requires": {
"@babel/helper-annotate-as-pure": "^7.10.4",
"@babel/helper-plugin-utils": "^7.10.4"
}
},
"@babel/plugin-transform-regenerator": {
- "version": "7.12.13",
+ "version": "7.21.5",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.21.5.tgz",
+ "integrity": "sha512-ZoYBKDb6LyMi5yCsByQ5jmXsHAQDDYeexT1Szvlmui+lADvfSecr5Dxd/PkrTC3pAD182Fcju1VQkB4oCp9M+w==",
"devOptional": true,
"requires": {
- "regenerator-transform": "^0.14.2"
+ "@babel/helper-plugin-utils": "^7.21.5",
+ "regenerator-transform": "^0.15.1"
}
},
"@babel/plugin-transform-reserved-words": {
- "version": "7.12.13",
+ "version": "7.18.6",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.18.6.tgz",
+ "integrity": "sha512-oX/4MyMoypzHjFrT1CdivfKZ+XvIPMFXwwxHp/r0Ddy2Vuomt4HDFGmft1TAY2yiTKiNSsh3kjBAzcM8kSdsjA==",
"devOptional": true,
"requires": {
- "@babel/helper-plugin-utils": "^7.12.13"
+ "@babel/helper-plugin-utils": "^7.18.6"
}
},
"@babel/plugin-transform-shorthand-properties": {
- "version": "7.12.13",
+ "version": "7.18.6",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.18.6.tgz",
+ "integrity": "sha512-eCLXXJqv8okzg86ywZJbRn19YJHU4XUa55oz2wbHhaQVn/MM+XhukiT7SYqp/7o00dg52Rj51Ny+Ecw4oyoygw==",
"devOptional": true,
"requires": {
- "@babel/helper-plugin-utils": "^7.12.13"
+ "@babel/helper-plugin-utils": "^7.18.6"
}
},
"@babel/plugin-transform-spread": {
- "version": "7.13.0",
+ "version": "7.20.7",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.20.7.tgz",
+ "integrity": "sha512-ewBbHQ+1U/VnH1fxltbJqDeWBU1oNLG8Dj11uIv3xVf7nrQu0bPGe5Rf716r7K5Qz+SqtAOVswoVunoiBtGhxw==",
"devOptional": true,
"requires": {
- "@babel/helper-plugin-utils": "^7.13.0",
- "@babel/helper-skip-transparent-expression-wrappers": "^7.12.1"
+ "@babel/helper-plugin-utils": "^7.20.2",
+ "@babel/helper-skip-transparent-expression-wrappers": "^7.20.0"
}
},
"@babel/plugin-transform-sticky-regex": {
- "version": "7.12.13",
+ "version": "7.18.6",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.18.6.tgz",
+ "integrity": "sha512-kfiDrDQ+PBsQDO85yj1icueWMfGfJFKN1KCkndygtu/C9+XUfydLC8Iv5UYJqRwy4zk8EcplRxEOeLyjq1gm6Q==",
"devOptional": true,
"requires": {
- "@babel/helper-plugin-utils": "^7.12.13"
+ "@babel/helper-plugin-utils": "^7.18.6"
}
},
"@babel/plugin-transform-template-literals": {
- "version": "7.13.0",
+ "version": "7.18.9",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.18.9.tgz",
+ "integrity": "sha512-S8cOWfT82gTezpYOiVaGHrCbhlHgKhQt8XH5ES46P2XWmX92yisoZywf5km75wv5sYcXDUCLMmMxOLCtthDgMA==",
"devOptional": true,
"requires": {
- "@babel/helper-plugin-utils": "^7.13.0"
+ "@babel/helper-plugin-utils": "^7.18.9"
}
},
"@babel/plugin-transform-typeof-symbol": {
- "version": "7.12.13",
+ "version": "7.18.9",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.18.9.tgz",
+ "integrity": "sha512-SRfwTtF11G2aemAZWivL7PD+C9z52v9EvMqH9BuYbabyPuKUvSWks3oCg6041pT925L4zVFqaVBeECwsmlguEw==",
"devOptional": true,
"requires": {
- "@babel/helper-plugin-utils": "^7.12.13"
+ "@babel/helper-plugin-utils": "^7.18.9"
}
},
"@babel/plugin-transform-typescript": {
"version": "7.13.0",
- "dev": true,
+ "devOptional": true,
"requires": {
"@babel/helper-create-class-features-plugin": "^7.13.0",
"@babel/helper-plugin-utils": "^7.13.0",
@@ -38791,46 +37270,58 @@
}
},
"@babel/plugin-transform-unicode-escapes": {
- "version": "7.12.13",
+ "version": "7.21.5",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.21.5.tgz",
+ "integrity": "sha512-LYm/gTOwZqsYohlvFUe/8Tujz75LqqVC2w+2qPHLR+WyWHGCZPN1KBpJCJn+4Bk4gOkQy/IXKIge6az5MqwlOg==",
"devOptional": true,
"requires": {
- "@babel/helper-plugin-utils": "^7.12.13"
+ "@babel/helper-plugin-utils": "^7.21.5"
}
},
"@babel/plugin-transform-unicode-regex": {
- "version": "7.12.13",
+ "version": "7.18.6",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.18.6.tgz",
+ "integrity": "sha512-gE7A6Lt7YLnNOL3Pb9BNeZvi+d8l7tcRrG4+pwJjK9hD2xX4mEvjlQW60G9EEmfXVYRPv9VRQcyegIVHCql/AA==",
"devOptional": true,
"requires": {
- "@babel/helper-create-regexp-features-plugin": "^7.12.13",
- "@babel/helper-plugin-utils": "^7.12.13"
+ "@babel/helper-create-regexp-features-plugin": "^7.18.6",
+ "@babel/helper-plugin-utils": "^7.18.6"
}
},
"@babel/preset-env": {
- "version": "7.13.12",
+ "version": "7.21.5",
+ "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.21.5.tgz",
+ "integrity": "sha512-wH00QnTTldTbf/IefEVyChtRdw5RJvODT/Vb4Vcxq1AZvtXj6T0YeX0cAcXhI6/BdGuiP3GcNIL4OQbI2DVNxg==",
"devOptional": true,
"requires": {
- "@babel/compat-data": "^7.13.12",
- "@babel/helper-compilation-targets": "^7.13.10",
- "@babel/helper-plugin-utils": "^7.13.0",
- "@babel/helper-validator-option": "^7.12.17",
- "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "^7.13.12",
- "@babel/plugin-proposal-async-generator-functions": "^7.13.8",
- "@babel/plugin-proposal-class-properties": "^7.13.0",
- "@babel/plugin-proposal-dynamic-import": "^7.13.8",
- "@babel/plugin-proposal-export-namespace-from": "^7.12.13",
- "@babel/plugin-proposal-json-strings": "^7.13.8",
- "@babel/plugin-proposal-logical-assignment-operators": "^7.13.8",
- "@babel/plugin-proposal-nullish-coalescing-operator": "^7.13.8",
- "@babel/plugin-proposal-numeric-separator": "^7.12.13",
- "@babel/plugin-proposal-object-rest-spread": "^7.13.8",
- "@babel/plugin-proposal-optional-catch-binding": "^7.13.8",
- "@babel/plugin-proposal-optional-chaining": "^7.13.12",
- "@babel/plugin-proposal-private-methods": "^7.13.0",
- "@babel/plugin-proposal-unicode-property-regex": "^7.12.13",
+ "@babel/compat-data": "^7.21.5",
+ "@babel/helper-compilation-targets": "^7.21.5",
+ "@babel/helper-plugin-utils": "^7.21.5",
+ "@babel/helper-validator-option": "^7.21.0",
+ "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": "^7.18.6",
+ "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "^7.20.7",
+ "@babel/plugin-proposal-async-generator-functions": "^7.20.7",
+ "@babel/plugin-proposal-class-properties": "^7.18.6",
+ "@babel/plugin-proposal-class-static-block": "^7.21.0",
+ "@babel/plugin-proposal-dynamic-import": "^7.18.6",
+ "@babel/plugin-proposal-export-namespace-from": "^7.18.9",
+ "@babel/plugin-proposal-json-strings": "^7.18.6",
+ "@babel/plugin-proposal-logical-assignment-operators": "^7.20.7",
+ "@babel/plugin-proposal-nullish-coalescing-operator": "^7.18.6",
+ "@babel/plugin-proposal-numeric-separator": "^7.18.6",
+ "@babel/plugin-proposal-object-rest-spread": "^7.20.7",
+ "@babel/plugin-proposal-optional-catch-binding": "^7.18.6",
+ "@babel/plugin-proposal-optional-chaining": "^7.21.0",
+ "@babel/plugin-proposal-private-methods": "^7.18.6",
+ "@babel/plugin-proposal-private-property-in-object": "^7.21.0",
+ "@babel/plugin-proposal-unicode-property-regex": "^7.18.6",
"@babel/plugin-syntax-async-generators": "^7.8.4",
"@babel/plugin-syntax-class-properties": "^7.12.13",
+ "@babel/plugin-syntax-class-static-block": "^7.14.5",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-syntax-export-namespace-from": "^7.8.3",
+ "@babel/plugin-syntax-import-assertions": "^7.20.0",
+ "@babel/plugin-syntax-import-meta": "^7.10.4",
"@babel/plugin-syntax-json-strings": "^7.8.3",
"@babel/plugin-syntax-logical-assignment-operators": "^7.10.4",
"@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3",
@@ -38838,45 +37329,46 @@
"@babel/plugin-syntax-object-rest-spread": "^7.8.3",
"@babel/plugin-syntax-optional-catch-binding": "^7.8.3",
"@babel/plugin-syntax-optional-chaining": "^7.8.3",
- "@babel/plugin-syntax-top-level-await": "^7.12.13",
- "@babel/plugin-transform-arrow-functions": "^7.13.0",
- "@babel/plugin-transform-async-to-generator": "^7.13.0",
- "@babel/plugin-transform-block-scoped-functions": "^7.12.13",
- "@babel/plugin-transform-block-scoping": "^7.12.13",
- "@babel/plugin-transform-classes": "^7.13.0",
- "@babel/plugin-transform-computed-properties": "^7.13.0",
- "@babel/plugin-transform-destructuring": "^7.13.0",
- "@babel/plugin-transform-dotall-regex": "^7.12.13",
- "@babel/plugin-transform-duplicate-keys": "^7.12.13",
- "@babel/plugin-transform-exponentiation-operator": "^7.12.13",
- "@babel/plugin-transform-for-of": "^7.13.0",
- "@babel/plugin-transform-function-name": "^7.12.13",
- "@babel/plugin-transform-literals": "^7.12.13",
- "@babel/plugin-transform-member-expression-literals": "^7.12.13",
- "@babel/plugin-transform-modules-amd": "^7.13.0",
- "@babel/plugin-transform-modules-commonjs": "^7.13.8",
- "@babel/plugin-transform-modules-systemjs": "^7.13.8",
- "@babel/plugin-transform-modules-umd": "^7.13.0",
- "@babel/plugin-transform-named-capturing-groups-regex": "^7.12.13",
- "@babel/plugin-transform-new-target": "^7.12.13",
- "@babel/plugin-transform-object-super": "^7.12.13",
- "@babel/plugin-transform-parameters": "^7.13.0",
- "@babel/plugin-transform-property-literals": "^7.12.13",
- "@babel/plugin-transform-regenerator": "^7.12.13",
- "@babel/plugin-transform-reserved-words": "^7.12.13",
- "@babel/plugin-transform-shorthand-properties": "^7.12.13",
- "@babel/plugin-transform-spread": "^7.13.0",
- "@babel/plugin-transform-sticky-regex": "^7.12.13",
- "@babel/plugin-transform-template-literals": "^7.13.0",
- "@babel/plugin-transform-typeof-symbol": "^7.12.13",
- "@babel/plugin-transform-unicode-escapes": "^7.12.13",
- "@babel/plugin-transform-unicode-regex": "^7.12.13",
- "@babel/preset-modules": "^0.1.4",
- "@babel/types": "^7.13.12",
- "babel-plugin-polyfill-corejs2": "^0.1.4",
- "babel-plugin-polyfill-corejs3": "^0.1.3",
- "babel-plugin-polyfill-regenerator": "^0.1.2",
- "core-js-compat": "^3.9.0",
+ "@babel/plugin-syntax-private-property-in-object": "^7.14.5",
+ "@babel/plugin-syntax-top-level-await": "^7.14.5",
+ "@babel/plugin-transform-arrow-functions": "^7.21.5",
+ "@babel/plugin-transform-async-to-generator": "^7.20.7",
+ "@babel/plugin-transform-block-scoped-functions": "^7.18.6",
+ "@babel/plugin-transform-block-scoping": "^7.21.0",
+ "@babel/plugin-transform-classes": "^7.21.0",
+ "@babel/plugin-transform-computed-properties": "^7.21.5",
+ "@babel/plugin-transform-destructuring": "^7.21.3",
+ "@babel/plugin-transform-dotall-regex": "^7.18.6",
+ "@babel/plugin-transform-duplicate-keys": "^7.18.9",
+ "@babel/plugin-transform-exponentiation-operator": "^7.18.6",
+ "@babel/plugin-transform-for-of": "^7.21.5",
+ "@babel/plugin-transform-function-name": "^7.18.9",
+ "@babel/plugin-transform-literals": "^7.18.9",
+ "@babel/plugin-transform-member-expression-literals": "^7.18.6",
+ "@babel/plugin-transform-modules-amd": "^7.20.11",
+ "@babel/plugin-transform-modules-commonjs": "^7.21.5",
+ "@babel/plugin-transform-modules-systemjs": "^7.20.11",
+ "@babel/plugin-transform-modules-umd": "^7.18.6",
+ "@babel/plugin-transform-named-capturing-groups-regex": "^7.20.5",
+ "@babel/plugin-transform-new-target": "^7.18.6",
+ "@babel/plugin-transform-object-super": "^7.18.6",
+ "@babel/plugin-transform-parameters": "^7.21.3",
+ "@babel/plugin-transform-property-literals": "^7.18.6",
+ "@babel/plugin-transform-regenerator": "^7.21.5",
+ "@babel/plugin-transform-reserved-words": "^7.18.6",
+ "@babel/plugin-transform-shorthand-properties": "^7.18.6",
+ "@babel/plugin-transform-spread": "^7.20.7",
+ "@babel/plugin-transform-sticky-regex": "^7.18.6",
+ "@babel/plugin-transform-template-literals": "^7.18.9",
+ "@babel/plugin-transform-typeof-symbol": "^7.18.9",
+ "@babel/plugin-transform-unicode-escapes": "^7.21.5",
+ "@babel/plugin-transform-unicode-regex": "^7.18.6",
+ "@babel/preset-modules": "^0.1.5",
+ "@babel/types": "^7.21.5",
+ "babel-plugin-polyfill-corejs2": "^0.3.3",
+ "babel-plugin-polyfill-corejs3": "^0.6.0",
+ "babel-plugin-polyfill-regenerator": "^0.4.1",
+ "core-js-compat": "^3.25.1",
"semver": "^6.3.0"
},
"dependencies": {
@@ -38896,7 +37388,9 @@
}
},
"@babel/preset-modules": {
- "version": "0.1.4",
+ "version": "0.1.5",
+ "resolved": "https://registry.npmjs.org/@babel/preset-modules/-/preset-modules-0.1.5.tgz",
+ "integrity": "sha512-A57th6YRG7oR3cq/yt/Y84MvGgE0eJG2F1JLhKuyG+jFxEgrd/HAMJatiFtmOiZurz+0DkrvbheCLaV5f2JfjA==",
"devOptional": true,
"requires": {
"@babel/helper-plugin-utils": "^7.0.0",
@@ -38908,7 +37402,7 @@
},
"@babel/preset-react": {
"version": "7.13.13",
- "devOptional": true,
+ "dev": true,
"requires": {
"@babel/helper-plugin-utils": "^7.13.0",
"@babel/helper-validator-option": "^7.12.17",
@@ -38920,7 +37414,7 @@
},
"@babel/preset-typescript": {
"version": "7.13.0",
- "dev": true,
+ "devOptional": true,
"requires": {
"@babel/helper-plugin-utils": "^7.13.0",
"@babel/helper-validator-option": "^7.12.17",
@@ -38929,7 +37423,7 @@
},
"@babel/register": {
"version": "7.16.0",
- "dev": true,
+ "devOptional": true,
"requires": {
"clone-deep": "^4.0.1",
"find-cache-dir": "^2.0.0",
@@ -38940,7 +37434,7 @@
"dependencies": {
"clone-deep": {
"version": "4.0.1",
- "dev": true,
+ "devOptional": true,
"requires": {
"is-plain-object": "^2.0.4",
"kind-of": "^6.0.2",
@@ -38949,7 +37443,7 @@
},
"find-cache-dir": {
"version": "2.1.0",
- "dev": true,
+ "devOptional": true,
"requires": {
"commondir": "^1.0.1",
"make-dir": "^2.0.0",
@@ -38958,13 +37452,19 @@
},
"shallow-clone": {
"version": "3.0.1",
- "dev": true,
+ "devOptional": true,
"requires": {
"kind-of": "^6.0.2"
}
}
}
},
+ "@babel/regjsgen": {
+ "version": "0.8.0",
+ "resolved": "https://registry.npmjs.org/@babel/regjsgen/-/regjsgen-0.8.0.tgz",
+ "integrity": "sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA==",
+ "devOptional": true
+ },
"@babel/runtime": {
"version": "7.21.0",
"resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.21.0.tgz",
@@ -38981,49 +37481,50 @@
}
},
"@babel/template": {
- "version": "7.12.13",
+ "version": "7.20.7",
+ "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.20.7.tgz",
+ "integrity": "sha512-8SegXApWe6VoNw0r9JHpSteLKTpTiLZ4rMlGIm9JQ18KiCtyQiAMEazujAHrUS5flrcqYZa75ukev3P6QmUwUw==",
"devOptional": true,
"requires": {
- "@babel/code-frame": "^7.12.13",
- "@babel/parser": "^7.12.13",
- "@babel/types": "^7.12.13"
+ "@babel/code-frame": "^7.18.6",
+ "@babel/parser": "^7.20.7",
+ "@babel/types": "^7.20.7"
}
},
"@babel/traverse": {
- "version": "7.13.13",
+ "version": "7.21.5",
+ "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.21.5.tgz",
+ "integrity": "sha512-AhQoI3YjWi6u/y/ntv7k48mcrCXmus0t79J9qPNlk/lAsFlCiJ047RmbfMOawySTHtywXhbXgpx/8nXMYd+oFw==",
"devOptional": true,
"requires": {
- "@babel/code-frame": "^7.12.13",
- "@babel/generator": "^7.13.9",
- "@babel/helper-function-name": "^7.12.13",
- "@babel/helper-split-export-declaration": "^7.12.13",
- "@babel/parser": "^7.13.13",
- "@babel/types": "^7.13.13",
+ "@babel/code-frame": "^7.21.4",
+ "@babel/generator": "^7.21.5",
+ "@babel/helper-environment-visitor": "^7.21.5",
+ "@babel/helper-function-name": "^7.21.0",
+ "@babel/helper-hoist-variables": "^7.18.6",
+ "@babel/helper-split-export-declaration": "^7.18.6",
+ "@babel/parser": "^7.21.5",
+ "@babel/types": "^7.21.5",
"debug": "^4.1.0",
"globals": "^11.1.0"
- },
- "dependencies": {
- "@babel/generator": {
- "version": "7.13.9",
- "devOptional": true,
- "requires": {
- "@babel/types": "^7.13.0",
- "jsesc": "^2.5.1",
- "source-map": "^0.5.0"
- }
- }
}
},
"@babel/types": {
- "version": "7.21.2",
- "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.21.2.tgz",
- "integrity": "sha512-3wRZSs7jiFaB8AjxiiD+VqN5DTG2iRvJGQ+qYFrs/654lg6kGTQWIOFjlBo5RaXuAZjBmP3+OQH4dmhqiiyYxw==",
+ "version": "7.21.5",
+ "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.21.5.tgz",
+ "integrity": "sha512-m4AfNvVF2mVC/F7fDEdH2El3HzUg9It/XsCxZiOTTA3m3qYfcSVSbTfM6Q9xG+hYDniZssYhlXKKUMD5m8tF4Q==",
"requires": {
- "@babel/helper-string-parser": "^7.19.4",
+ "@babel/helper-string-parser": "^7.21.5",
"@babel/helper-validator-identifier": "^7.19.1",
"to-fast-properties": "^2.0.0"
}
},
+ "@base2/pretty-print-object": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/@base2/pretty-print-object/-/pretty-print-object-1.0.1.tgz",
+ "integrity": "sha512-4iri8i1AqYHJE2DstZYkyEprg6Pq6sKx3xn5FpySk9sNhH7qN2LLlHJCfDTZRILNwQNPD7mATWM0TBui7uC1pA==",
+ "optional": true
+ },
"@bcoe/v8-coverage": {
"version": "0.2.3",
"optional": true
@@ -39060,12 +37561,6 @@
"universalify": "^0.1.0"
}
},
- "resolve-from": {
- "version": "5.0.0",
- "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz",
- "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==",
- "dev": true
- },
"semver": {
"version": "5.7.1",
"resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz",
@@ -39169,12 +37664,6 @@
"universalify": "^0.1.0"
}
},
- "resolve-from": {
- "version": "5.0.0",
- "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz",
- "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==",
- "dev": true
- },
"semver": {
"version": "5.7.1",
"resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz",
@@ -39481,6 +37970,12 @@
"@dessert-box/core": "^0.2.0"
}
},
+ "@discoveryjs/json-ext": {
+ "version": "0.5.7",
+ "resolved": "https://registry.npmjs.org/@discoveryjs/json-ext/-/json-ext-0.5.7.tgz",
+ "integrity": "sha512-dBVuXR082gk3jsFp7Rd/JI4kytwGHecnCoTtXFb7DB6CNHp4rg5k1bhg0nWdLGLnOV71lmDzGQaLMy8iPLY0pw==",
+ "optional": true
+ },
"@editorjs/editorjs": {
"version": "2.24.3",
"requires": {
@@ -39560,28 +38055,6 @@
"resolved": "https://registry.npmjs.org/@emotion/utils/-/utils-1.2.0.tgz",
"integrity": "sha512-sn3WH53Kzpw8oQ5mgMmIzzyAaH2ZqFEbozVVBSYp538E06OSE6ytOp7pRAjNQR+Q/orwqdQYJSe2m3hCOeznkw=="
},
- "babel-plugin-macros": {
- "version": "3.1.0",
- "resolved": "https://registry.npmjs.org/babel-plugin-macros/-/babel-plugin-macros-3.1.0.tgz",
- "integrity": "sha512-Cg7TFGpIr01vOQNODXOOaGz2NpCU5gl8x1qJFbb6hbZxR7XrcE2vtbAsTAbJ7/xwJtUuJEw8K8Zr/AE0LHlesg==",
- "requires": {
- "@babel/runtime": "^7.12.5",
- "cosmiconfig": "^7.0.0",
- "resolve": "1.20.0"
- }
- },
- "cosmiconfig": {
- "version": "7.1.0",
- "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.1.0.tgz",
- "integrity": "sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==",
- "requires": {
- "@types/parse-json": "^4.0.0",
- "import-fresh": "^3.2.1",
- "parse-json": "^5.0.0",
- "path-type": "^4.0.0",
- "yaml": "^1.10.0"
- }
- },
"csstype": {
"version": "3.1.1",
"resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.1.tgz",
@@ -39591,65 +38064,9 @@
"version": "4.0.0",
"resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz",
"integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA=="
- },
- "import-fresh": {
- "version": "3.3.0",
- "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz",
- "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==",
- "requires": {
- "parent-module": "^1.0.0",
- "resolve-from": "^4.0.0"
- }
- },
- "parse-json": {
- "version": "5.2.0",
- "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz",
- "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==",
- "requires": {
- "@babel/code-frame": "^7.0.0",
- "error-ex": "^1.3.1",
- "json-parse-even-better-errors": "^2.3.0",
- "lines-and-columns": "^1.1.6"
- }
- },
- "resolve-from": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz",
- "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g=="
}
}
},
- "@emotion/cache": {
- "version": "10.0.29",
- "optional": true,
- "requires": {
- "@emotion/sheet": "0.9.4",
- "@emotion/stylis": "0.8.5",
- "@emotion/utils": "0.11.3",
- "@emotion/weak-memoize": "0.2.5"
- }
- },
- "@emotion/core": {
- "version": "10.1.1",
- "optional": true,
- "requires": {
- "@babel/runtime": "^7.5.5",
- "@emotion/cache": "^10.0.27",
- "@emotion/css": "^10.0.27",
- "@emotion/serialize": "^0.11.15",
- "@emotion/sheet": "0.9.4",
- "@emotion/utils": "0.11.3"
- }
- },
- "@emotion/css": {
- "version": "10.0.27",
- "optional": true,
- "requires": {
- "@emotion/serialize": "^0.11.15",
- "@emotion/utils": "0.11.3",
- "babel-plugin-emotion": "^10.0.27"
- }
- },
"@emotion/hash": {
"version": "0.8.0"
},
@@ -39738,83 +38155,147 @@
}
}
},
- "@emotion/serialize": {
- "version": "0.11.16",
- "optional": true,
- "requires": {
- "@emotion/hash": "0.8.0",
- "@emotion/memoize": "0.7.4",
- "@emotion/unitless": "0.7.5",
- "@emotion/utils": "0.11.3",
- "csstype": "^2.5.7"
- },
- "dependencies": {
- "@emotion/memoize": {
- "version": "0.7.4",
- "optional": true
- }
- }
- },
- "@emotion/sheet": {
- "version": "0.9.4",
- "optional": true
- },
- "@emotion/styled": {
- "version": "10.0.27",
- "optional": true,
- "requires": {
- "@emotion/styled-base": "^10.0.27",
- "babel-plugin-emotion": "^10.0.27"
- }
- },
- "@emotion/styled-base": {
- "version": "10.0.31",
- "optional": true,
- "requires": {
- "@babel/runtime": "^7.5.5",
- "@emotion/is-prop-valid": "0.8.8",
- "@emotion/serialize": "^0.11.15",
- "@emotion/utils": "0.11.3"
- },
- "dependencies": {
- "@emotion/is-prop-valid": {
- "version": "0.8.8",
- "optional": true,
- "requires": {
- "@emotion/memoize": "0.7.4"
- }
- },
- "@emotion/memoize": {
- "version": "0.7.4",
- "optional": true
- }
- }
- },
- "@emotion/stylis": {
- "version": "0.8.5",
- "optional": true
- },
- "@emotion/unitless": {
- "version": "0.7.5",
- "optional": true
- },
"@emotion/use-insertion-effect-with-fallbacks": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/@emotion/use-insertion-effect-with-fallbacks/-/use-insertion-effect-with-fallbacks-1.0.0.tgz",
"integrity": "sha512-1eEgUGmkaljiBnRMTdksDV1W4kUnmwgp7X9G8B++9GYwl1lUdqSndSriIrTJ0N7LQaoauY9JJ2yhiOYK5+NI4A=="
},
- "@emotion/utils": {
- "version": "0.11.3",
- "optional": true
- },
- "@emotion/weak-memoize": {
- "version": "0.2.5",
- "optional": true
- },
"@esbuild-plugins/node-globals-polyfill": {
"version": "0.1.1",
"dev": true
},
+ "@esbuild/android-arm": {
+ "version": "0.17.18",
+ "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.17.18.tgz",
+ "integrity": "sha512-EmwL+vUBZJ7mhFCs5lA4ZimpUH3WMAoqvOIYhVQwdIgSpHC8ImHdsRyhHAVxpDYUSm0lWvd63z0XH1IlImS2Qw==",
+ "optional": true
+ },
+ "@esbuild/android-arm64": {
+ "version": "0.17.18",
+ "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.17.18.tgz",
+ "integrity": "sha512-/iq0aK0eeHgSC3z55ucMAHO05OIqmQehiGay8eP5l/5l+iEr4EIbh4/MI8xD9qRFjqzgkc0JkX0LculNC9mXBw==",
+ "optional": true
+ },
+ "@esbuild/android-x64": {
+ "version": "0.17.18",
+ "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.17.18.tgz",
+ "integrity": "sha512-x+0efYNBF3NPW2Xc5bFOSFW7tTXdAcpfEg2nXmxegm4mJuVeS+i109m/7HMiOQ6M12aVGGFlqJX3RhNdYM2lWg==",
+ "optional": true
+ },
+ "@esbuild/darwin-arm64": {
+ "version": "0.17.18",
+ "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.17.18.tgz",
+ "integrity": "sha512-6tY+djEAdF48M1ONWnQb1C+6LiXrKjmqjzPNPWXhu/GzOHTHX2nh8Mo2ZAmBFg0kIodHhciEgUBtcYCAIjGbjQ==",
+ "optional": true
+ },
+ "@esbuild/darwin-x64": {
+ "version": "0.17.18",
+ "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.17.18.tgz",
+ "integrity": "sha512-Qq84ykvLvya3dO49wVC9FFCNUfSrQJLbxhoQk/TE1r6MjHo3sFF2tlJCwMjhkBVq3/ahUisj7+EpRSz0/+8+9A==",
+ "optional": true
+ },
+ "@esbuild/freebsd-arm64": {
+ "version": "0.17.18",
+ "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.17.18.tgz",
+ "integrity": "sha512-fw/ZfxfAzuHfaQeMDhbzxp9mc+mHn1Y94VDHFHjGvt2Uxl10mT4CDavHm+/L9KG441t1QdABqkVYwakMUeyLRA==",
+ "optional": true
+ },
+ "@esbuild/freebsd-x64": {
+ "version": "0.17.18",
+ "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.17.18.tgz",
+ "integrity": "sha512-FQFbRtTaEi8ZBi/A6kxOC0V0E9B/97vPdYjY9NdawyLd4Qk5VD5g2pbWN2VR1c0xhzcJm74HWpObPszWC+qTew==",
+ "optional": true
+ },
+ "@esbuild/linux-arm": {
+ "version": "0.17.18",
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.17.18.tgz",
+ "integrity": "sha512-jW+UCM40LzHcouIaqv3e/oRs0JM76JfhHjCavPxMUti7VAPh8CaGSlS7cmyrdpzSk7A+8f0hiedHqr/LMnfijg==",
+ "optional": true
+ },
+ "@esbuild/linux-arm64": {
+ "version": "0.17.18",
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.17.18.tgz",
+ "integrity": "sha512-R7pZvQZFOY2sxUG8P6A21eq6q+eBv7JPQYIybHVf1XkQYC+lT7nDBdC7wWKTrbvMXKRaGudp/dzZCwL/863mZQ==",
+ "optional": true
+ },
+ "@esbuild/linux-ia32": {
+ "version": "0.17.18",
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.17.18.tgz",
+ "integrity": "sha512-ygIMc3I7wxgXIxk6j3V00VlABIjq260i967Cp9BNAk5pOOpIXmd1RFQJQX9Io7KRsthDrQYrtcx7QCof4o3ZoQ==",
+ "optional": true
+ },
+ "@esbuild/linux-loong64": {
+ "version": "0.17.18",
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.17.18.tgz",
+ "integrity": "sha512-bvPG+MyFs5ZlwYclCG1D744oHk1Pv7j8psF5TfYx7otCVmcJsEXgFEhQkbhNW8otDHL1a2KDINW20cfCgnzgMQ==",
+ "optional": true
+ },
+ "@esbuild/linux-mips64el": {
+ "version": "0.17.18",
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.17.18.tgz",
+ "integrity": "sha512-oVqckATOAGuiUOa6wr8TXaVPSa+6IwVJrGidmNZS1cZVx0HqkTMkqFGD2HIx9H1RvOwFeWYdaYbdY6B89KUMxA==",
+ "optional": true
+ },
+ "@esbuild/linux-ppc64": {
+ "version": "0.17.18",
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.17.18.tgz",
+ "integrity": "sha512-3dLlQO+b/LnQNxgH4l9rqa2/IwRJVN9u/bK63FhOPB4xqiRqlQAU0qDU3JJuf0BmaH0yytTBdoSBHrb2jqc5qQ==",
+ "optional": true
+ },
+ "@esbuild/linux-riscv64": {
+ "version": "0.17.18",
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.17.18.tgz",
+ "integrity": "sha512-/x7leOyDPjZV3TcsdfrSI107zItVnsX1q2nho7hbbQoKnmoeUWjs+08rKKt4AUXju7+3aRZSsKrJtaRmsdL1xA==",
+ "optional": true
+ },
+ "@esbuild/linux-s390x": {
+ "version": "0.17.18",
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.17.18.tgz",
+ "integrity": "sha512-cX0I8Q9xQkL/6F5zWdYmVf5JSQt+ZfZD2bJudZrWD+4mnUvoZ3TDDXtDX2mUaq6upMFv9FlfIh4Gfun0tbGzuw==",
+ "optional": true
+ },
+ "@esbuild/linux-x64": {
+ "version": "0.17.18",
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.17.18.tgz",
+ "integrity": "sha512-66RmRsPlYy4jFl0vG80GcNRdirx4nVWAzJmXkevgphP1qf4dsLQCpSKGM3DUQCojwU1hnepI63gNZdrr02wHUA==",
+ "optional": true
+ },
+ "@esbuild/netbsd-x64": {
+ "version": "0.17.18",
+ "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.17.18.tgz",
+ "integrity": "sha512-95IRY7mI2yrkLlTLb1gpDxdC5WLC5mZDi+kA9dmM5XAGxCME0F8i4bYH4jZreaJ6lIZ0B8hTrweqG1fUyW7jbg==",
+ "optional": true
+ },
+ "@esbuild/openbsd-x64": {
+ "version": "0.17.18",
+ "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.17.18.tgz",
+ "integrity": "sha512-WevVOgcng+8hSZ4Q3BKL3n1xTv5H6Nb53cBrtzzEjDbbnOmucEVcZeGCsCOi9bAOcDYEeBZbD2SJNBxlfP3qiA==",
+ "optional": true
+ },
+ "@esbuild/sunos-x64": {
+ "version": "0.17.18",
+ "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.17.18.tgz",
+ "integrity": "sha512-Rzf4QfQagnwhQXVBS3BYUlxmEbcV7MY+BH5vfDZekU5eYpcffHSyjU8T0xucKVuOcdCsMo+Ur5wmgQJH2GfNrg==",
+ "optional": true
+ },
+ "@esbuild/win32-arm64": {
+ "version": "0.17.18",
+ "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.17.18.tgz",
+ "integrity": "sha512-Kb3Ko/KKaWhjeAm2YoT/cNZaHaD1Yk/pa3FTsmqo9uFh1D1Rfco7BBLIPdDOozrObj2sahslFuAQGvWbgWldAg==",
+ "optional": true
+ },
+ "@esbuild/win32-ia32": {
+ "version": "0.17.18",
+ "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.17.18.tgz",
+ "integrity": "sha512-0/xUMIdkVHwkvxfbd5+lfG7mHOf2FRrxNbPiKWg9C4fFrB8H0guClmaM3BFiRUYrznVoyxTIyC/Ou2B7QQSwmw==",
+ "optional": true
+ },
+ "@esbuild/win32-x64": {
+ "version": "0.17.18",
+ "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.17.18.tgz",
+ "integrity": "sha512-qU25Ma1I3NqTSHJUOKi9sAH1/Mzuvlke0ioMJRthLXKm7JiSKVwFghlGbDLOO2sARECGhja4xYfRAZNPAkooYg==",
+ "optional": true
+ },
"@eslint/eslintrc": {
"version": "0.4.3",
"optional": true,
@@ -39841,24 +38322,18 @@
"version": "4.0.6",
"optional": true
},
- "import-fresh": {
- "version": "3.3.0",
- "optional": true,
- "requires": {
- "parent-module": "^1.0.0",
- "resolve-from": "^4.0.0"
- }
- },
- "resolve-from": {
- "version": "4.0.0",
- "optional": true
- },
"type-fest": {
"version": "0.20.2",
"optional": true
}
}
},
+ "@fal-works/esbuild-plugin-global-externals": {
+ "version": "2.1.2",
+ "resolved": "https://registry.npmjs.org/@fal-works/esbuild-plugin-global-externals/-/esbuild-plugin-global-externals-2.1.2.tgz",
+ "integrity": "sha512-cEee/Z+I12mZcFJshKcCqC8tuX5hG3s+d+9nZ3LabqKF1vKdF41B92pJVCBggjAGORAeOzyyDDKrZwIkLffeOQ==",
+ "optional": true
+ },
"@floating-ui/core": {
"version": "0.7.3",
"resolved": "https://registry.npmjs.org/@floating-ui/core/-/core-0.7.3.tgz",
@@ -40220,18 +38695,6 @@
"yargs": "^17.0.0"
},
"dependencies": {
- "anymatch": {
- "version": "3.1.2",
- "dev": true,
- "requires": {
- "normalize-path": "^3.0.0",
- "picomatch": "^2.0.4"
- }
- },
- "binary-extensions": {
- "version": "2.2.0",
- "dev": true
- },
"chalk": {
"version": "4.1.2",
"dev": true,
@@ -40240,20 +38703,6 @@
"supports-color": "^7.1.0"
}
},
- "chokidar": {
- "version": "3.5.2",
- "dev": true,
- "requires": {
- "anymatch": "~3.1.2",
- "braces": "~3.0.2",
- "fsevents": "~2.3.2",
- "glob-parent": "~5.1.2",
- "is-binary-path": "~2.1.0",
- "is-glob": "~4.0.1",
- "normalize-path": "~3.0.0",
- "readdirp": "~3.6.0"
- }
- },
"cliui": {
"version": "7.0.4",
"dev": true,
@@ -40263,22 +38712,6 @@
"wrap-ansi": "^7.0.0"
}
},
- "cosmiconfig": {
- "version": "7.0.1",
- "dev": true,
- "requires": {
- "@types/parse-json": "^4.0.0",
- "import-fresh": "^3.2.1",
- "parse-json": "^5.0.0",
- "path-type": "^4.0.0",
- "yaml": "^1.10.0"
- }
- },
- "fsevents": {
- "version": "2.3.2",
- "dev": true,
- "optional": true
- },
"globby": {
"version": "11.0.4",
"dev": true,
@@ -40295,21 +38728,6 @@
"version": "4.0.0",
"dev": true
},
- "import-fresh": {
- "version": "3.3.0",
- "dev": true,
- "requires": {
- "parent-module": "^1.0.0",
- "resolve-from": "^4.0.0"
- }
- },
- "is-binary-path": {
- "version": "2.1.0",
- "dev": true,
- "requires": {
- "binary-extensions": "^2.0.0"
- }
- },
"log-symbols": {
"version": "4.1.0",
"dev": true,
@@ -40322,27 +38740,6 @@
"version": "1.0.4",
"dev": true
},
- "parse-json": {
- "version": "5.2.0",
- "dev": true,
- "requires": {
- "@babel/code-frame": "^7.0.0",
- "error-ex": "^1.3.1",
- "json-parse-even-better-errors": "^2.3.0",
- "lines-and-columns": "^1.1.6"
- }
- },
- "readdirp": {
- "version": "3.6.0",
- "dev": true,
- "requires": {
- "picomatch": "^2.2.1"
- }
- },
- "resolve-from": {
- "version": "4.0.0",
- "dev": true
- },
"strip-ansi": {
"version": "6.0.0",
"dev": true,
@@ -40934,74 +39331,10 @@
"tslib": "~2.3.0"
},
"dependencies": {
- "@babel/code-frame": {
- "version": "7.14.5",
- "dev": true,
- "requires": {
- "@babel/highlight": "^7.14.5"
- }
- },
- "@babel/generator": {
- "version": "7.15.0",
- "dev": true,
- "requires": {
- "@babel/types": "^7.15.0",
- "jsesc": "^2.5.1",
- "source-map": "^0.5.0"
- }
- },
- "@babel/helper-function-name": {
- "version": "7.14.5",
- "dev": true,
- "requires": {
- "@babel/helper-get-function-arity": "^7.14.5",
- "@babel/template": "^7.14.5",
- "@babel/types": "^7.14.5"
- }
- },
- "@babel/helper-get-function-arity": {
- "version": "7.14.5",
- "dev": true,
- "requires": {
- "@babel/types": "^7.14.5"
- }
- },
- "@babel/helper-hoist-variables": {
- "version": "7.14.5",
- "dev": true,
- "requires": {
- "@babel/types": "^7.14.5"
- }
- },
- "@babel/helper-split-export-declaration": {
- "version": "7.14.5",
- "dev": true,
- "requires": {
- "@babel/types": "^7.14.5"
- }
- },
- "@babel/highlight": {
- "version": "7.14.5",
- "dev": true,
- "requires": {
- "@babel/helper-validator-identifier": "^7.14.5",
- "chalk": "^2.0.0",
- "js-tokens": "^4.0.0"
- }
- },
"@babel/parser": {
"version": "7.15.3",
"dev": true
},
- "@babel/template": {
- "version": "7.14.5",
- "dev": true,
- "requires": {
- "@babel/code-frame": "^7.14.5",
- "@babel/parser": "^7.14.5",
- "@babel/types": "^7.14.5"
- }
- },
"@babel/traverse": {
"version": "7.15.0",
"dev": true,
@@ -41039,10 +39372,6 @@
"tslib": "~2.2.0"
},
"dependencies": {
- "resolve-from": {
- "version": "5.0.0",
- "dev": true
- },
"tslib": {
"version": "2.2.0",
"dev": true
@@ -41316,23 +39645,6 @@
"version": "1.2.1",
"optional": true
},
- "@hypnosphi/create-react-context": {
- "version": "0.3.1",
- "optional": true,
- "requires": {
- "gud": "^1.0.0",
- "warning": "^4.0.3"
- },
- "dependencies": {
- "warning": {
- "version": "4.0.3",
- "optional": true,
- "requires": {
- "loose-envify": "^1.0.0"
- }
- }
- }
- },
"@iarna/toml": {
"version": "2.2.5",
"dev": true
@@ -41373,10 +39685,6 @@
"path-exists": {
"version": "4.0.0",
"devOptional": true
- },
- "resolve-from": {
- "version": "5.0.0",
- "devOptional": true
}
}
},
@@ -41566,6 +39874,15 @@
}
}
},
+ "@jest/schemas": {
+ "version": "29.4.3",
+ "resolved": "https://registry.npmjs.org/@jest/schemas/-/schemas-29.4.3.tgz",
+ "integrity": "sha512-VLYKXQmtmuEz6IxJsrZwzG9NvtkQsWNnWMsKxqWNu3+CnfzJQhp0WDDKWLVV9hLKr0l3SLLFRqcYHjhtyuDVxg==",
+ "optional": true,
+ "requires": {
+ "@sinclair/typebox": "^0.25.16"
+ }
+ },
"@jest/source-map": {
"version": "27.5.1",
"optional": true,
@@ -41693,9 +40010,51 @@
}
}
},
+ "@joshwooding/vite-plugin-react-docgen-typescript": {
+ "version": "0.2.1",
+ "resolved": "https://registry.npmjs.org/@joshwooding/vite-plugin-react-docgen-typescript/-/vite-plugin-react-docgen-typescript-0.2.1.tgz",
+ "integrity": "sha512-ou4ZJSXMMWHqGS4g8uNRbC5TiTWxAgQZiVucoUrOCWuPrTbkpJbmVyIi9jU72SBry7gQtuMEDp4YR8EEXAg7VQ==",
+ "optional": true,
+ "requires": {
+ "glob": "^7.2.0",
+ "glob-promise": "^4.2.0",
+ "magic-string": "^0.27.0",
+ "react-docgen-typescript": "^2.2.2"
+ },
+ "dependencies": {
+ "@types/glob": {
+ "version": "7.2.0",
+ "resolved": "https://registry.npmjs.org/@types/glob/-/glob-7.2.0.tgz",
+ "integrity": "sha512-ZUxbzKl0IfJILTS6t7ip5fQQM/J3TJYubDm3nMbgubNNYS62eXeUpoLUC8/7fJNiFYHTrGPQn7hspDUzIHX3UA==",
+ "optional": true,
+ "requires": {
+ "@types/minimatch": "*",
+ "@types/node": "*"
+ }
+ },
+ "glob-promise": {
+ "version": "4.2.2",
+ "resolved": "https://registry.npmjs.org/glob-promise/-/glob-promise-4.2.2.tgz",
+ "integrity": "sha512-xcUzJ8NWN5bktoTIX7eOclO1Npxd/dyVqUJxlLIDasT4C7KZyqlPIwkdJ0Ypiy3p2ZKahTjK4M9uC3sNSfNMzw==",
+ "optional": true,
+ "requires": {
+ "@types/glob": "^7.1.3"
+ }
+ },
+ "magic-string": {
+ "version": "0.27.0",
+ "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.27.0.tgz",
+ "integrity": "sha512-8UnnX2PeRAPZuN12svgR9j7M1uWMovg/CEnIwIG0LFkXSJJe4PdfUGiTGl8V9bsBHFUtfVINcSyYxd7q+kx9fA==",
+ "optional": true,
+ "requires": {
+ "@jridgewell/sourcemap-codec": "^1.4.13"
+ }
+ }
+ }
+ },
"@jridgewell/gen-mapping": {
"version": "0.3.2",
- "dev": true,
+ "devOptional": true,
"requires": {
"@jridgewell/set-array": "^1.0.1",
"@jridgewell/sourcemap-codec": "^1.4.10",
@@ -41704,11 +40063,11 @@
},
"@jridgewell/resolve-uri": {
"version": "3.1.0",
- "dev": true
+ "devOptional": true
},
"@jridgewell/set-array": {
"version": "1.1.2",
- "dev": true
+ "devOptional": true
},
"@jridgewell/source-map": {
"version": "0.3.2",
@@ -41720,16 +40079,22 @@
},
"@jridgewell/sourcemap-codec": {
"version": "1.4.14",
- "dev": true
+ "devOptional": true
},
"@jridgewell/trace-mapping": {
"version": "0.3.17",
- "dev": true,
+ "devOptional": true,
"requires": {
"@jridgewell/resolve-uri": "3.1.0",
"@jridgewell/sourcemap-codec": "1.4.14"
}
},
+ "@juggle/resize-observer": {
+ "version": "3.4.0",
+ "resolved": "https://registry.npmjs.org/@juggle/resize-observer/-/resize-observer-3.4.0.tgz",
+ "integrity": "sha512-dfLbk+PwWvFzSxwk3n5ySL0hfBog779o8h68wK/7/APo/7cgyWp5jcXockbxdk5kFRkbeXWm4Fbi9FrdN381sA==",
+ "optional": true
+ },
"@manypkg/find-root": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/@manypkg/find-root/-/find-root-1.1.0.tgz",
@@ -41899,12 +40264,14 @@
"react-is": "^16.8.0 || ^17.0.0"
}
},
- "@mrmlnc/readdir-enhanced": {
- "version": "2.2.1",
+ "@mdx-js/react": {
+ "version": "2.3.0",
+ "resolved": "https://registry.npmjs.org/@mdx-js/react/-/react-2.3.0.tgz",
+ "integrity": "sha512-zQH//gdOmuu7nt2oJR29vFhDv88oGPmVw6BggmrHeMI+xgEkp1B2dX9/bMBSYtK0dyLX/aOmesKS09g222K1/g==",
"optional": true,
"requires": {
- "call-me-maybe": "^1.0.1",
- "glob-to-regexp": "^0.3.0"
+ "@types/mdx": "^2.0.0",
+ "@types/react": ">=16"
}
},
"@n1ru4l/graphql-live-query": {
@@ -41914,6 +40281,17 @@
"@n1ru4l/push-pull-async-iterable-iterator": {
"version": "3.2.0"
},
+ "@ndelangen/get-tarball": {
+ "version": "3.0.7",
+ "resolved": "https://registry.npmjs.org/@ndelangen/get-tarball/-/get-tarball-3.0.7.tgz",
+ "integrity": "sha512-NqGfTZIZpRFef1GoVaShSSRwDC3vde3ThtTeqFdcYd6ipKqnfEVhjK2hUeHjCQUcptyZr2TONqcloFXM+5QBrQ==",
+ "optional": true,
+ "requires": {
+ "gunzip-maybe": "^1.4.2",
+ "pump": "^3.0.0",
+ "tar-fs": "^2.1.1"
+ }
+ },
"@nicolo-ribaudo/chokidar-2": {
"version": "2.1.8-no-fsevents.3",
"dev": true,
@@ -42142,38 +40520,6 @@
"which": "^2.0.2"
},
"dependencies": {
- "cross-spawn": {
- "version": "7.0.3",
- "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz",
- "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==",
- "dev": true,
- "requires": {
- "path-key": "^3.1.0",
- "shebang-command": "^2.0.0",
- "which": "^2.0.1"
- }
- },
- "path-key": {
- "version": "3.1.1",
- "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz",
- "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==",
- "dev": true
- },
- "shebang-command": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz",
- "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==",
- "dev": true,
- "requires": {
- "shebang-regex": "^3.0.0"
- }
- },
- "shebang-regex": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz",
- "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==",
- "dev": true
- },
"which": {
"version": "2.0.2",
"resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz",
@@ -42248,61 +40594,12 @@
"uri-js": "^4.2.2"
}
},
- "cosmiconfig": {
- "version": "7.1.0",
- "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.1.0.tgz",
- "integrity": "sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==",
- "dev": true,
- "requires": {
- "@types/parse-json": "^4.0.0",
- "import-fresh": "^3.2.1",
- "parse-json": "^5.0.0",
- "path-type": "^4.0.0",
- "yaml": "^1.10.0"
- },
- "dependencies": {
- "yaml": {
- "version": "1.10.2",
- "resolved": "https://registry.npmjs.org/yaml/-/yaml-1.10.2.tgz",
- "integrity": "sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==",
- "dev": true
- }
- }
- },
- "import-fresh": {
- "version": "3.3.0",
- "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz",
- "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==",
- "dev": true,
- "requires": {
- "parent-module": "^1.0.0",
- "resolve-from": "^4.0.0"
- }
- },
"json-schema-traverse": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz",
"integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==",
"dev": true
},
- "parse-json": {
- "version": "5.2.0",
- "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz",
- "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==",
- "dev": true,
- "requires": {
- "@babel/code-frame": "^7.0.0",
- "error-ex": "^1.3.1",
- "json-parse-even-better-errors": "^2.3.0",
- "lines-and-columns": "^1.1.6"
- }
- },
- "resolve-from": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz",
- "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==",
- "dev": true
- },
"yaml": {
"version": "2.2.1",
"resolved": "https://registry.npmjs.org/yaml/-/yaml-2.2.1.tgz",
@@ -42332,53 +40629,12 @@
"ws": "^8.0.0"
},
"dependencies": {
- "cross-spawn": {
- "version": "7.0.3",
- "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz",
- "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==",
- "dev": true,
- "requires": {
- "path-key": "^3.1.0",
- "shebang-command": "^2.0.0",
- "which": "^2.0.1"
- }
- },
- "path-key": {
- "version": "3.1.1",
- "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz",
- "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==",
- "dev": true
- },
"path-to-regexp": {
"version": "6.2.1",
"resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-6.2.1.tgz",
"integrity": "sha512-JLyh7xT1kizaEvcaXOQwOc2/Yhw6KZOvPf1S8401UyLk86CU79LN3vl7ztXGm/pZ+YjoyAJ4rxmHwbkBXJX+yw==",
"dev": true
},
- "shebang-command": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz",
- "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==",
- "dev": true,
- "requires": {
- "shebang-regex": "^3.0.0"
- }
- },
- "shebang-regex": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz",
- "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==",
- "dev": true
- },
- "which": {
- "version": "2.0.2",
- "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz",
- "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==",
- "dev": true,
- "requires": {
- "isexe": "^2.0.0"
- }
- },
"ws": {
"version": "8.13.0",
"resolved": "https://registry.npmjs.org/ws/-/ws-8.13.0.tgz",
@@ -43181,16 +41437,6 @@
}
}
},
- "@reach/router": {
- "version": "1.3.4",
- "optional": true,
- "requires": {
- "create-react-context": "0.3.0",
- "invariant": "^2.2.3",
- "prop-types": "^15.6.1",
- "react-lifecycles-compat": "^3.0.4"
- }
- },
"@reach/tooltip": {
"version": "0.17.0",
"requires": {
@@ -43571,13 +41817,19 @@
"version": "2.0.0",
"dev": true
},
+ "@sinclair/typebox": {
+ "version": "0.25.24",
+ "resolved": "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.25.24.tgz",
+ "integrity": "sha512-XJfwUVUKDHF5ugKwIcxEgc9k8b7HbznCp6eUfWgu710hMPNIO4aw4/zB5RogDQz8nd6gyCDpU9O/m6qYEWY6yQ==",
+ "optional": true
+ },
"@sindresorhus/fnv1a": {
"version": "1.2.0",
"dev": true
},
"@sindresorhus/is": {
"version": "4.0.0",
- "dev": true
+ "devOptional": true
},
"@sinonjs/commons": {
"version": "1.8.6",
@@ -43593,398 +41845,1711 @@
"@sinonjs/commons": "^1.7.0"
}
},
- "@storybook/addons": {
- "version": "5.3.21",
+ "@snyk/dep-graph": {
+ "version": "2.6.0",
+ "resolved": "https://registry.npmjs.org/@snyk/dep-graph/-/dep-graph-2.6.0.tgz",
+ "integrity": "sha512-9NPk7cTvDNA90NyNQvh87LYKgkCoD67i+FGdRpwA0/CL59RRY7cG37RTFe++Y3ZALxpYK1sLNzU+yeB7vzVhqQ==",
"optional": true,
"requires": {
- "@storybook/api": "5.3.21",
- "@storybook/channels": "5.3.21",
- "@storybook/client-logger": "5.3.21",
- "@storybook/core-events": "5.3.21",
- "core-js": "^3.0.1",
- "global": "^4.3.2",
+ "event-loop-spinner": "^2.1.0",
+ "lodash.clone": "^4.5.0",
+ "lodash.constant": "^3.0.0",
+ "lodash.filter": "^4.6.0",
+ "lodash.foreach": "^4.5.0",
+ "lodash.isempty": "^4.4.0",
+ "lodash.isequal": "^4.5.0",
+ "lodash.isfunction": "^3.0.9",
+ "lodash.isundefined": "^3.0.1",
+ "lodash.map": "^4.6.0",
+ "lodash.reduce": "^4.6.0",
+ "lodash.size": "^4.2.0",
+ "lodash.transform": "^4.6.0",
+ "lodash.union": "^4.6.0",
+ "lodash.values": "^4.3.0",
+ "object-hash": "^3.0.0",
+ "packageurl-js": "^1.0.0",
+ "semver": "^7.0.0",
+ "tslib": "^2"
+ }
+ },
+ "@snyk/graphlib": {
+ "version": "2.1.9-patch.3",
+ "resolved": "https://registry.npmjs.org/@snyk/graphlib/-/graphlib-2.1.9-patch.3.tgz",
+ "integrity": "sha512-bBY9b9ulfLj0v2Eer0yFYa3syVeIxVKl2EpxSrsVeT4mjA0CltZyHsF0JjoaGXP27nItTdJS5uVsj1NA+3aE+Q==",
+ "optional": true,
+ "requires": {
+ "lodash.clone": "^4.5.0",
+ "lodash.constant": "^3.0.0",
+ "lodash.filter": "^4.6.0",
+ "lodash.foreach": "^4.5.0",
+ "lodash.has": "^4.5.2",
+ "lodash.isempty": "^4.4.0",
+ "lodash.isfunction": "^3.0.9",
+ "lodash.isundefined": "^3.0.1",
+ "lodash.keys": "^4.2.0",
+ "lodash.map": "^4.6.0",
+ "lodash.reduce": "^4.6.0",
+ "lodash.size": "^4.2.0",
+ "lodash.transform": "^4.6.0",
+ "lodash.union": "^4.6.0",
+ "lodash.values": "^4.3.0"
+ }
+ },
+ "@storybook/addon-actions": {
+ "version": "7.0.8",
+ "resolved": "https://registry.npmjs.org/@storybook/addon-actions/-/addon-actions-7.0.8.tgz",
+ "integrity": "sha512-9DRkofKfGvVa2xESovXP5gCjpv0rvMwZJ16IqD/o1sRPRETsCeidTBMgrSX8wJq0TtJPen663DAdIrVuVXezlA==",
+ "optional": true,
+ "requires": {
+ "@storybook/client-logger": "7.0.8",
+ "@storybook/components": "7.0.8",
+ "@storybook/core-events": "7.0.8",
+ "@storybook/global": "^5.0.0",
+ "@storybook/manager-api": "7.0.8",
+ "@storybook/preview-api": "7.0.8",
+ "@storybook/theming": "7.0.8",
+ "@storybook/types": "7.0.8",
+ "dequal": "^2.0.2",
+ "lodash": "^4.17.21",
+ "polished": "^4.2.2",
+ "prop-types": "^15.7.2",
+ "react-inspector": "^6.0.0",
+ "telejson": "^7.0.3",
+ "ts-dedent": "^2.0.0",
+ "uuid": "^9.0.0"
+ },
+ "dependencies": {
+ "uuid": {
+ "version": "9.0.0",
+ "resolved": "https://registry.npmjs.org/uuid/-/uuid-9.0.0.tgz",
+ "integrity": "sha512-MXcSTerfPa4uqyzStbRoTgt5XIe3x5+42+q1sDuy3R5MDk66URdLMOZe5aPX/SQd+kuYAh0FdP/pO28IkQyTeg==",
+ "optional": true
+ }
+ }
+ },
+ "@storybook/addon-backgrounds": {
+ "version": "7.0.8",
+ "resolved": "https://registry.npmjs.org/@storybook/addon-backgrounds/-/addon-backgrounds-7.0.8.tgz",
+ "integrity": "sha512-xDTySwXWlyROWi9SJEa12DfGyaYL8oMGADMgn/C82qzcIXGx2tpkjU4UsA/w7JvpZumLr5wEfGrZiStg2xFygA==",
+ "optional": true,
+ "requires": {
+ "@storybook/client-logger": "7.0.8",
+ "@storybook/components": "7.0.8",
+ "@storybook/core-events": "7.0.8",
+ "@storybook/global": "^5.0.0",
+ "@storybook/manager-api": "7.0.8",
+ "@storybook/preview-api": "7.0.8",
+ "@storybook/theming": "7.0.8",
+ "@storybook/types": "7.0.8",
+ "memoizerific": "^1.11.3",
+ "ts-dedent": "^2.0.0"
+ }
+ },
+ "@storybook/addon-controls": {
+ "version": "7.0.8",
+ "resolved": "https://registry.npmjs.org/@storybook/addon-controls/-/addon-controls-7.0.8.tgz",
+ "integrity": "sha512-SdCO0Y6zWMmVGp/yVmc66tBDKyPdlIrVVh3Knjk/MKBCjINKq/Bqn59UWcRH00b2lie2LzNfmbBc8LPMg6efag==",
+ "optional": true,
+ "requires": {
+ "@storybook/blocks": "7.0.8",
+ "@storybook/client-logger": "7.0.8",
+ "@storybook/components": "7.0.8",
+ "@storybook/core-common": "7.0.8",
+ "@storybook/manager-api": "7.0.8",
+ "@storybook/node-logger": "7.0.8",
+ "@storybook/preview-api": "7.0.8",
+ "@storybook/theming": "7.0.8",
+ "@storybook/types": "7.0.8",
+ "lodash": "^4.17.21",
+ "ts-dedent": "^2.0.0"
+ }
+ },
+ "@storybook/addon-docs": {
+ "version": "7.0.8",
+ "resolved": "https://registry.npmjs.org/@storybook/addon-docs/-/addon-docs-7.0.8.tgz",
+ "integrity": "sha512-X+fWWaGELyQoQna5cCegUn3swfjdicbmUNJLEiU7kV7pa2fmNyx801gdkS7x1s5wjBkxVDU/TJ3kvd8tfWPV7A==",
+ "optional": true,
+ "requires": {
+ "@babel/core": "^7.20.2",
+ "@babel/plugin-transform-react-jsx": "^7.19.0",
+ "@jest/transform": "^29.3.1",
+ "@mdx-js/react": "^2.1.5",
+ "@storybook/blocks": "7.0.8",
+ "@storybook/client-logger": "7.0.8",
+ "@storybook/components": "7.0.8",
+ "@storybook/csf-plugin": "7.0.8",
+ "@storybook/csf-tools": "7.0.8",
+ "@storybook/global": "^5.0.0",
+ "@storybook/mdx2-csf": "^1.0.0",
+ "@storybook/node-logger": "7.0.8",
+ "@storybook/postinstall": "7.0.8",
+ "@storybook/preview-api": "7.0.8",
+ "@storybook/react-dom-shim": "7.0.8",
+ "@storybook/theming": "7.0.8",
+ "@storybook/types": "7.0.8",
+ "fs-extra": "^11.1.0",
+ "remark-external-links": "^8.0.0",
+ "remark-slug": "^6.0.0",
+ "ts-dedent": "^2.0.0"
+ },
+ "dependencies": {
+ "@jest/transform": {
+ "version": "29.5.0",
+ "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-29.5.0.tgz",
+ "integrity": "sha512-8vbeZWqLJOvHaDfeMuoHITGKSz5qWc9u04lnWrQE3VyuSw604PzQM824ZeX9XSjUCeDiE3GuxZe5UKa8J61NQw==",
+ "optional": true,
+ "requires": {
+ "@babel/core": "^7.11.6",
+ "@jest/types": "^29.5.0",
+ "@jridgewell/trace-mapping": "^0.3.15",
+ "babel-plugin-istanbul": "^6.1.1",
+ "chalk": "^4.0.0",
+ "convert-source-map": "^2.0.0",
+ "fast-json-stable-stringify": "^2.1.0",
+ "graceful-fs": "^4.2.9",
+ "jest-haste-map": "^29.5.0",
+ "jest-regex-util": "^29.4.3",
+ "jest-util": "^29.5.0",
+ "micromatch": "^4.0.4",
+ "pirates": "^4.0.4",
+ "slash": "^3.0.0",
+ "write-file-atomic": "^4.0.2"
+ }
+ },
+ "@jest/types": {
+ "version": "29.5.0",
+ "resolved": "https://registry.npmjs.org/@jest/types/-/types-29.5.0.tgz",
+ "integrity": "sha512-qbu7kN6czmVRc3xWFQcAN03RAUamgppVUdXrvl1Wr3jlNF93o9mJbGcDWrwGB6ht44u7efB1qCFgVQmca24Uog==",
+ "optional": true,
+ "requires": {
+ "@jest/schemas": "^29.4.3",
+ "@types/istanbul-lib-coverage": "^2.0.0",
+ "@types/istanbul-reports": "^3.0.0",
+ "@types/node": "*",
+ "@types/yargs": "^17.0.8",
+ "chalk": "^4.0.0"
+ }
+ },
+ "@types/yargs": {
+ "version": "17.0.24",
+ "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-17.0.24.tgz",
+ "integrity": "sha512-6i0aC7jV6QzQB8ne1joVZ0eSFIstHsCrobmOtghM11yGlH0j43FKL2UhWdELkyps0zuf7qVTUVCCR+tgSlyLLw==",
+ "optional": true,
+ "requires": {
+ "@types/yargs-parser": "*"
+ }
+ },
+ "chalk": {
+ "version": "4.1.2",
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
+ "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
+ "optional": true,
+ "requires": {
+ "ansi-styles": "^4.1.0",
+ "supports-color": "^7.1.0"
+ }
+ },
+ "convert-source-map": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz",
+ "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==",
+ "optional": true
+ },
+ "fs-extra": {
+ "version": "11.1.1",
+ "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-11.1.1.tgz",
+ "integrity": "sha512-MGIE4HOvQCeUCzmlHs0vXpih4ysz4wg9qiSAu6cd42lVwPbTM1TjV7RusoyQqMmk/95gdQZX72u+YW+c3eEpFQ==",
+ "optional": true,
+ "requires": {
+ "graceful-fs": "^4.2.0",
+ "jsonfile": "^6.0.1",
+ "universalify": "^2.0.0"
+ }
+ },
+ "fsevents": {
+ "version": "2.3.2",
+ "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz",
+ "integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==",
+ "optional": true
+ },
+ "has-flag": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
+ "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
+ "optional": true
+ },
+ "jest-haste-map": {
+ "version": "29.5.0",
+ "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-29.5.0.tgz",
+ "integrity": "sha512-IspOPnnBro8YfVYSw6yDRKh/TiCdRngjxeacCps1cQ9cgVN6+10JUcuJ1EabrgYLOATsIAigxA0rLR9x/YlrSA==",
+ "optional": true,
+ "requires": {
+ "@jest/types": "^29.5.0",
+ "@types/graceful-fs": "^4.1.3",
+ "@types/node": "*",
+ "anymatch": "^3.0.3",
+ "fb-watchman": "^2.0.0",
+ "fsevents": "^2.3.2",
+ "graceful-fs": "^4.2.9",
+ "jest-regex-util": "^29.4.3",
+ "jest-util": "^29.5.0",
+ "jest-worker": "^29.5.0",
+ "micromatch": "^4.0.4",
+ "walker": "^1.0.8"
+ }
+ },
+ "jest-regex-util": {
+ "version": "29.4.3",
+ "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-29.4.3.tgz",
+ "integrity": "sha512-O4FglZaMmWXbGHSQInfXewIsd1LMn9p3ZXB/6r4FOkyhX2/iP/soMG98jGvk/A3HAN78+5VWcBGO0BJAPRh4kg==",
+ "optional": true
+ },
+ "jest-util": {
+ "version": "29.5.0",
+ "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-29.5.0.tgz",
+ "integrity": "sha512-RYMgG/MTadOr5t8KdhejfvUU82MxsCu5MF6KuDUHl+NuwzUt+Sm6jJWxTJVrDR1j5M/gJVCPKQEpWXY+yIQ6lQ==",
+ "optional": true,
+ "requires": {
+ "@jest/types": "^29.5.0",
+ "@types/node": "*",
+ "chalk": "^4.0.0",
+ "ci-info": "^3.2.0",
+ "graceful-fs": "^4.2.9",
+ "picomatch": "^2.2.3"
+ }
+ },
+ "jest-worker": {
+ "version": "29.5.0",
+ "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-29.5.0.tgz",
+ "integrity": "sha512-NcrQnevGoSp4b5kg+akIpthoAFHxPBcb5P6mYPY0fUNT+sSvmtu6jlkEle3anczUKIKEbMxFimk9oTP/tpIPgA==",
+ "optional": true,
+ "requires": {
+ "@types/node": "*",
+ "jest-util": "^29.5.0",
+ "merge-stream": "^2.0.0",
+ "supports-color": "^8.0.0"
+ },
+ "dependencies": {
+ "supports-color": {
+ "version": "8.1.1",
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz",
+ "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==",
+ "optional": true,
+ "requires": {
+ "has-flag": "^4.0.0"
+ }
+ }
+ }
+ },
+ "jsonfile": {
+ "version": "6.1.0",
+ "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz",
+ "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==",
+ "optional": true,
+ "requires": {
+ "graceful-fs": "^4.1.6",
+ "universalify": "^2.0.0"
+ }
+ },
+ "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==",
+ "optional": true,
+ "requires": {
+ "has-flag": "^4.0.0"
+ }
+ },
+ "universalify": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz",
+ "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==",
+ "optional": true
+ },
+ "write-file-atomic": {
+ "version": "4.0.2",
+ "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-4.0.2.tgz",
+ "integrity": "sha512-7KxauUdBmSdWnmpaGFg+ppNjKF8uNLry8LyzjauQDOVONfFLNKrKvQOxZ/VuTIcS/gge/YNahf5RIIQWTSarlg==",
+ "optional": true,
+ "requires": {
+ "imurmurhash": "^0.1.4",
+ "signal-exit": "^3.0.7"
+ }
+ }
+ }
+ },
+ "@storybook/addon-essentials": {
+ "version": "7.0.8",
+ "resolved": "https://registry.npmjs.org/@storybook/addon-essentials/-/addon-essentials-7.0.8.tgz",
+ "integrity": "sha512-tqZcntWkNTcV3xhBoFauw1K8ScEuzEb76qS+AlqZP8DCetGImevt08KELQGyzCU80my9T+iSvC5V68v3zXtK9Q==",
+ "optional": true,
+ "requires": {
+ "@storybook/addon-actions": "7.0.8",
+ "@storybook/addon-backgrounds": "7.0.8",
+ "@storybook/addon-controls": "7.0.8",
+ "@storybook/addon-docs": "7.0.8",
+ "@storybook/addon-highlight": "7.0.8",
+ "@storybook/addon-measure": "7.0.8",
+ "@storybook/addon-outline": "7.0.8",
+ "@storybook/addon-toolbars": "7.0.8",
+ "@storybook/addon-viewport": "7.0.8",
+ "@storybook/core-common": "7.0.8",
+ "@storybook/manager-api": "7.0.8",
+ "@storybook/node-logger": "7.0.8",
+ "@storybook/preview-api": "7.0.8",
+ "ts-dedent": "^2.0.0"
+ }
+ },
+ "@storybook/addon-highlight": {
+ "version": "7.0.8",
+ "resolved": "https://registry.npmjs.org/@storybook/addon-highlight/-/addon-highlight-7.0.8.tgz",
+ "integrity": "sha512-d26jo7/Z1PIzZH+cE5E6jZ3yKgKFOPZNfylz2Gpg8jD2gV91Nk30ursl4nEJToEsEe2JkSdae4Qm59vCXbWcNw==",
+ "optional": true,
+ "requires": {
+ "@storybook/core-events": "7.0.8",
+ "@storybook/global": "^5.0.0",
+ "@storybook/preview-api": "7.0.8"
+ }
+ },
+ "@storybook/addon-interactions": {
+ "version": "7.0.8",
+ "resolved": "https://registry.npmjs.org/@storybook/addon-interactions/-/addon-interactions-7.0.8.tgz",
+ "integrity": "sha512-fVAOJnWZ3Ce9TAnqR42xM/x0yiRK5qSnBPYGbZyg5Q2y4dg8jBvs8HRh44XMgUSs0XmtLVauAlA+Co549zKtwA==",
+ "optional": true,
+ "requires": {
+ "@storybook/client-logger": "7.0.8",
+ "@storybook/components": "7.0.8",
+ "@storybook/core-common": "7.0.8",
+ "@storybook/core-events": "7.0.8",
+ "@storybook/global": "^5.0.0",
+ "@storybook/instrumenter": "7.0.8",
+ "@storybook/manager-api": "7.0.8",
+ "@storybook/preview-api": "7.0.8",
+ "@storybook/theming": "7.0.8",
+ "@storybook/types": "7.0.8",
+ "jest-mock": "^27.0.6",
+ "polished": "^4.2.2",
+ "ts-dedent": "^2.2.0"
+ }
+ },
+ "@storybook/addon-links": {
+ "version": "7.0.8",
+ "resolved": "https://registry.npmjs.org/@storybook/addon-links/-/addon-links-7.0.8.tgz",
+ "integrity": "sha512-BhEwbrNfyJrSzbdyv+jE33QDXADA3ilBooJm2KY9NsVLu56Jk5d76dELZ+ucLLRvsg1wc+5Z8yH+knqtmUD+Hg==",
+ "optional": true,
+ "requires": {
+ "@storybook/client-logger": "7.0.8",
+ "@storybook/core-events": "7.0.8",
+ "@storybook/csf": "^0.1.0",
+ "@storybook/global": "^5.0.0",
+ "@storybook/manager-api": "7.0.8",
+ "@storybook/preview-api": "7.0.8",
+ "@storybook/router": "7.0.8",
+ "@storybook/types": "7.0.8",
+ "prop-types": "^15.7.2",
+ "ts-dedent": "^2.0.0"
+ }
+ },
+ "@storybook/addon-measure": {
+ "version": "7.0.8",
+ "resolved": "https://registry.npmjs.org/@storybook/addon-measure/-/addon-measure-7.0.8.tgz",
+ "integrity": "sha512-22q/aS8OHQZe35kAIz18iDGVb18ZF/eyQWnN6HLRQFzvQlqxxjKqVuMHyCIN0w53czYFq31kiL4YWcLd3L33/Q==",
+ "optional": true,
+ "requires": {
+ "@storybook/client-logger": "7.0.8",
+ "@storybook/components": "7.0.8",
+ "@storybook/core-events": "7.0.8",
+ "@storybook/global": "^5.0.0",
+ "@storybook/manager-api": "7.0.8",
+ "@storybook/preview-api": "7.0.8",
+ "@storybook/types": "7.0.8"
+ }
+ },
+ "@storybook/addon-outline": {
+ "version": "7.0.8",
+ "resolved": "https://registry.npmjs.org/@storybook/addon-outline/-/addon-outline-7.0.8.tgz",
+ "integrity": "sha512-NfW6/dvtni6gE/Aj7NIc8GfbjnjmgI07mm7BCCKwzsHS9s3AA1ewxyhgL1E9dsigh1DK0SQpW9PdJxUcOonbew==",
+ "optional": true,
+ "requires": {
+ "@storybook/client-logger": "7.0.8",
+ "@storybook/components": "7.0.8",
+ "@storybook/core-events": "7.0.8",
+ "@storybook/global": "^5.0.0",
+ "@storybook/manager-api": "7.0.8",
+ "@storybook/preview-api": "7.0.8",
+ "@storybook/types": "7.0.8",
+ "ts-dedent": "^2.0.0"
+ }
+ },
+ "@storybook/addon-toolbars": {
+ "version": "7.0.8",
+ "resolved": "https://registry.npmjs.org/@storybook/addon-toolbars/-/addon-toolbars-7.0.8.tgz",
+ "integrity": "sha512-BNlMia7B+tnaAZZotkPB7GPaFPV+ITngqmfGwmPeCP+4AnCY1oX9GJ9uYeSUBB3sV9m8OHrAxj/z+/SVY1l2Cw==",
+ "optional": true,
+ "requires": {
+ "@storybook/client-logger": "7.0.8",
+ "@storybook/components": "7.0.8",
+ "@storybook/manager-api": "7.0.8",
+ "@storybook/preview-api": "7.0.8",
+ "@storybook/theming": "7.0.8"
+ }
+ },
+ "@storybook/addon-viewport": {
+ "version": "7.0.8",
+ "resolved": "https://registry.npmjs.org/@storybook/addon-viewport/-/addon-viewport-7.0.8.tgz",
+ "integrity": "sha512-IwHs8e/Zwixt5rk+EINblMyKh8RxPBStsc0pzHerJ8knMwzXMUPGmlDPuWYUg1u4eg3dacjGrtQbFIxsqso0Mw==",
+ "optional": true,
+ "requires": {
+ "@storybook/client-logger": "7.0.8",
+ "@storybook/components": "7.0.8",
+ "@storybook/core-events": "7.0.8",
+ "@storybook/global": "^5.0.0",
+ "@storybook/manager-api": "7.0.8",
+ "@storybook/preview-api": "7.0.8",
+ "@storybook/theming": "7.0.8",
+ "memoizerific": "^1.11.3",
+ "prop-types": "^15.7.2"
+ }
+ },
+ "@storybook/blocks": {
+ "version": "7.0.8",
+ "resolved": "https://registry.npmjs.org/@storybook/blocks/-/blocks-7.0.8.tgz",
+ "integrity": "sha512-VAzlMf5DRm0ZX6/9W/4Izv3j9n87i4MthBmN+rnUG+cmPumBm3xtETJqZbSIAWAM4ucKHrgrKQhZPg1QX1U66w==",
+ "optional": true,
+ "requires": {
+ "@storybook/channels": "7.0.8",
+ "@storybook/client-logger": "7.0.8",
+ "@storybook/components": "7.0.8",
+ "@storybook/core-events": "7.0.8",
+ "@storybook/csf": "^0.1.0",
+ "@storybook/docs-tools": "7.0.8",
+ "@storybook/global": "^5.0.0",
+ "@storybook/manager-api": "7.0.8",
+ "@storybook/preview-api": "7.0.8",
+ "@storybook/theming": "7.0.8",
+ "@storybook/types": "7.0.8",
+ "@types/lodash": "^4.14.167",
+ "color-convert": "^2.0.1",
+ "dequal": "^2.0.2",
+ "lodash": "^4.17.21",
+ "markdown-to-jsx": "^7.1.8",
+ "memoizerific": "^1.11.3",
+ "polished": "^4.2.2",
+ "react-colorful": "^5.1.2",
+ "telejson": "^7.0.3",
+ "ts-dedent": "^2.0.0",
"util-deprecate": "^1.0.2"
}
},
- "@storybook/api": {
- "version": "5.3.21",
+ "@storybook/builder-manager": {
+ "version": "7.0.8",
+ "resolved": "https://registry.npmjs.org/@storybook/builder-manager/-/builder-manager-7.0.8.tgz",
+ "integrity": "sha512-PxFiXbxAy4o6kV5EjtEq1cg6UwJsMhV7ZvYn3HuKNkS+8qk2iZdAe0tGcA9LbvRR6k5rEeU/PxbRjcBWBjUyEA==",
"optional": true,
"requires": {
- "@reach/router": "^1.2.1",
- "@storybook/channels": "5.3.21",
- "@storybook/client-logger": "5.3.21",
- "@storybook/core-events": "5.3.21",
- "@storybook/csf": "0.0.1",
- "@storybook/router": "5.3.21",
- "@storybook/theming": "5.3.21",
- "@types/reach__router": "^1.2.3",
- "core-js": "^3.0.1",
- "fast-deep-equal": "^2.0.1",
- "global": "^4.3.2",
- "lodash": "^4.17.15",
- "memoizerific": "^1.11.3",
- "prop-types": "^15.6.2",
- "react": "^16.8.3",
- "semver": "^6.0.0",
- "shallow-equal": "^1.1.0",
- "store2": "^2.7.1",
- "telejson": "^3.2.0",
- "util-deprecate": "^1.0.2"
+ "@fal-works/esbuild-plugin-global-externals": "^2.1.2",
+ "@storybook/core-common": "7.0.8",
+ "@storybook/manager": "7.0.8",
+ "@storybook/node-logger": "7.0.8",
+ "@types/ejs": "^3.1.1",
+ "@types/find-cache-dir": "^3.2.1",
+ "@yarnpkg/esbuild-plugin-pnp": "^3.0.0-rc.10",
+ "browser-assert": "^1.2.1",
+ "ejs": "^3.1.8",
+ "esbuild": "^0.17.0",
+ "esbuild-plugin-alias": "^0.2.1",
+ "express": "^4.17.3",
+ "find-cache-dir": "^3.0.0",
+ "fs-extra": "^11.1.0",
+ "process": "^0.11.10",
+ "util": "^0.12.4"
},
"dependencies": {
- "fast-deep-equal": {
- "version": "2.0.1",
- "optional": true
- },
- "react": {
- "version": "16.14.0",
+ "esbuild": {
+ "version": "0.17.18",
+ "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.17.18.tgz",
+ "integrity": "sha512-z1lix43jBs6UKjcZVKOw2xx69ffE2aG0PygLL5qJ9OS/gy0Ewd1gW/PUQIOIQGXBHWNywSc0floSKoMFF8aK2w==",
"optional": true,
"requires": {
- "loose-envify": "^1.1.0",
- "object-assign": "^4.1.1",
- "prop-types": "^15.6.2"
+ "@esbuild/android-arm": "0.17.18",
+ "@esbuild/android-arm64": "0.17.18",
+ "@esbuild/android-x64": "0.17.18",
+ "@esbuild/darwin-arm64": "0.17.18",
+ "@esbuild/darwin-x64": "0.17.18",
+ "@esbuild/freebsd-arm64": "0.17.18",
+ "@esbuild/freebsd-x64": "0.17.18",
+ "@esbuild/linux-arm": "0.17.18",
+ "@esbuild/linux-arm64": "0.17.18",
+ "@esbuild/linux-ia32": "0.17.18",
+ "@esbuild/linux-loong64": "0.17.18",
+ "@esbuild/linux-mips64el": "0.17.18",
+ "@esbuild/linux-ppc64": "0.17.18",
+ "@esbuild/linux-riscv64": "0.17.18",
+ "@esbuild/linux-s390x": "0.17.18",
+ "@esbuild/linux-x64": "0.17.18",
+ "@esbuild/netbsd-x64": "0.17.18",
+ "@esbuild/openbsd-x64": "0.17.18",
+ "@esbuild/sunos-x64": "0.17.18",
+ "@esbuild/win32-arm64": "0.17.18",
+ "@esbuild/win32-ia32": "0.17.18",
+ "@esbuild/win32-x64": "0.17.18"
}
},
- "semver": {
- "version": "6.3.0",
+ "fs-extra": {
+ "version": "11.1.1",
+ "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-11.1.1.tgz",
+ "integrity": "sha512-MGIE4HOvQCeUCzmlHs0vXpih4ysz4wg9qiSAu6cd42lVwPbTM1TjV7RusoyQqMmk/95gdQZX72u+YW+c3eEpFQ==",
+ "optional": true,
+ "requires": {
+ "graceful-fs": "^4.2.0",
+ "jsonfile": "^6.0.1",
+ "universalify": "^2.0.0"
+ }
+ },
+ "jsonfile": {
+ "version": "6.1.0",
+ "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz",
+ "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==",
+ "optional": true,
+ "requires": {
+ "graceful-fs": "^4.1.6",
+ "universalify": "^2.0.0"
+ }
+ },
+ "universalify": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz",
+ "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==",
+ "optional": true
+ }
+ }
+ },
+ "@storybook/builder-vite": {
+ "version": "7.0.8",
+ "resolved": "https://registry.npmjs.org/@storybook/builder-vite/-/builder-vite-7.0.8.tgz",
+ "integrity": "sha512-Zj2LCObL4+y0qVkvIyFY+mV/TQl980bWX6gqvL1bYJ2dMV4jDekM1imoiYXkBs5dBN90Y76IOd+78KTjfz1hmg==",
+ "optional": true,
+ "requires": {
+ "@storybook/channel-postmessage": "7.0.8",
+ "@storybook/channel-websocket": "7.0.8",
+ "@storybook/client-logger": "7.0.8",
+ "@storybook/core-common": "7.0.8",
+ "@storybook/csf-plugin": "7.0.8",
+ "@storybook/mdx2-csf": "^1.0.0",
+ "@storybook/node-logger": "7.0.8",
+ "@storybook/preview": "7.0.8",
+ "@storybook/preview-api": "7.0.8",
+ "@storybook/types": "7.0.8",
+ "browser-assert": "^1.2.1",
+ "es-module-lexer": "^0.9.3",
+ "express": "^4.17.3",
+ "fs-extra": "^11.1.0",
+ "glob": "^8.1.0",
+ "glob-promise": "^6.0.2",
+ "magic-string": "^0.27.0",
+ "remark-external-links": "^8.0.0",
+ "remark-slug": "^6.0.0",
+ "rollup": "^2.25.0 || ^3.3.0"
+ },
+ "dependencies": {
+ "brace-expansion": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz",
+ "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==",
+ "optional": true,
+ "requires": {
+ "balanced-match": "^1.0.0"
+ }
+ },
+ "fs-extra": {
+ "version": "11.1.1",
+ "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-11.1.1.tgz",
+ "integrity": "sha512-MGIE4HOvQCeUCzmlHs0vXpih4ysz4wg9qiSAu6cd42lVwPbTM1TjV7RusoyQqMmk/95gdQZX72u+YW+c3eEpFQ==",
+ "optional": true,
+ "requires": {
+ "graceful-fs": "^4.2.0",
+ "jsonfile": "^6.0.1",
+ "universalify": "^2.0.0"
+ }
+ },
+ "glob": {
+ "version": "8.1.0",
+ "resolved": "https://registry.npmjs.org/glob/-/glob-8.1.0.tgz",
+ "integrity": "sha512-r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ==",
+ "optional": true,
+ "requires": {
+ "fs.realpath": "^1.0.0",
+ "inflight": "^1.0.4",
+ "inherits": "2",
+ "minimatch": "^5.0.1",
+ "once": "^1.3.0"
+ }
+ },
+ "jsonfile": {
+ "version": "6.1.0",
+ "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz",
+ "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==",
+ "optional": true,
+ "requires": {
+ "graceful-fs": "^4.1.6",
+ "universalify": "^2.0.0"
+ }
+ },
+ "magic-string": {
+ "version": "0.27.0",
+ "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.27.0.tgz",
+ "integrity": "sha512-8UnnX2PeRAPZuN12svgR9j7M1uWMovg/CEnIwIG0LFkXSJJe4PdfUGiTGl8V9bsBHFUtfVINcSyYxd7q+kx9fA==",
+ "optional": true,
+ "requires": {
+ "@jridgewell/sourcemap-codec": "^1.4.13"
+ }
+ },
+ "minimatch": {
+ "version": "5.1.6",
+ "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.6.tgz",
+ "integrity": "sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==",
+ "optional": true,
+ "requires": {
+ "brace-expansion": "^2.0.1"
+ }
+ },
+ "universalify": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz",
+ "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==",
"optional": true
}
}
},
"@storybook/channel-postmessage": {
- "version": "5.3.21",
+ "version": "7.0.8",
+ "resolved": "https://registry.npmjs.org/@storybook/channel-postmessage/-/channel-postmessage-7.0.8.tgz",
+ "integrity": "sha512-op/SB2Tg66bxS4DHOhrSVja7Xdp8aiWIJ47vygSq31nqpwv5auCTptOrcdzTikOjH+4dKfTGxTx6Z5g065tuiQ==",
"optional": true,
"requires": {
- "@storybook/channels": "5.3.21",
- "@storybook/client-logger": "5.3.21",
- "core-js": "^3.0.1",
- "global": "^4.3.2",
- "telejson": "^3.2.0"
+ "@storybook/channels": "7.0.8",
+ "@storybook/client-logger": "7.0.8",
+ "@storybook/core-events": "7.0.8",
+ "@storybook/global": "^5.0.0",
+ "qs": "^6.10.0",
+ "telejson": "^7.0.3"
+ }
+ },
+ "@storybook/channel-websocket": {
+ "version": "7.0.8",
+ "resolved": "https://registry.npmjs.org/@storybook/channel-websocket/-/channel-websocket-7.0.8.tgz",
+ "integrity": "sha512-qHMVc8b+zaOGDEG1i2905PCUwkGH3Ys/DqtZJAry64MaTnXrR6bPE3lI+FDRyr5a5afV53yz8rb7lTMoNaHpUg==",
+ "optional": true,
+ "requires": {
+ "@storybook/channels": "7.0.8",
+ "@storybook/client-logger": "7.0.8",
+ "@storybook/global": "^5.0.0",
+ "telejson": "^7.0.3"
}
},
"@storybook/channels": {
- "version": "5.3.21",
- "optional": true,
- "requires": {
- "core-js": "^3.0.1"
- }
+ "version": "7.0.8",
+ "resolved": "https://registry.npmjs.org/@storybook/channels/-/channels-7.0.8.tgz",
+ "integrity": "sha512-z8W4r8te/EiEDfk8qaxmjwMcKMe+x12leWEwtyz6e9XI0Q4qTk17dDtq/XZ5Ab2Ks4VSvWRu1e/QURiVpjbo2Q==",
+ "optional": true
},
- "@storybook/client-api": {
- "version": "5.3.21",
+ "@storybook/cli": {
+ "version": "7.0.8",
+ "resolved": "https://registry.npmjs.org/@storybook/cli/-/cli-7.0.8.tgz",
+ "integrity": "sha512-KvuleEXWrDz1OZC9c/ejAWSEns7YAXYCsS76BA3hx/xGnpcUQG7AZ00G8sy7viHFQjjA3G1YsMOm2p4YI0A1oA==",
"optional": true,
"requires": {
- "@storybook/addons": "5.3.21",
- "@storybook/channel-postmessage": "5.3.21",
- "@storybook/channels": "5.3.21",
- "@storybook/client-logger": "5.3.21",
- "@storybook/core-events": "5.3.21",
- "@storybook/csf": "0.0.1",
- "@types/webpack-env": "^1.15.0",
- "core-js": "^3.0.1",
- "eventemitter3": "^4.0.0",
- "global": "^4.3.2",
- "is-plain-object": "^3.0.0",
- "lodash": "^4.17.15",
- "memoizerific": "^1.11.3",
- "qs": "^6.6.0",
- "stable": "^0.1.8",
- "ts-dedent": "^1.1.0",
+ "@babel/core": "^7.20.2",
+ "@babel/preset-env": "^7.20.2",
+ "@ndelangen/get-tarball": "^3.0.7",
+ "@storybook/codemod": "7.0.8",
+ "@storybook/core-common": "7.0.8",
+ "@storybook/core-server": "7.0.8",
+ "@storybook/csf-tools": "7.0.8",
+ "@storybook/node-logger": "7.0.8",
+ "@storybook/telemetry": "7.0.8",
+ "@storybook/types": "7.0.8",
+ "@types/semver": "^7.3.4",
+ "boxen": "^5.1.2",
+ "chalk": "^4.1.0",
+ "commander": "^6.2.1",
+ "cross-spawn": "^7.0.3",
+ "detect-indent": "^6.1.0",
+ "envinfo": "^7.7.3",
+ "execa": "^5.0.0",
+ "express": "^4.17.3",
+ "find-up": "^5.0.0",
+ "fs-extra": "^11.1.0",
+ "get-npm-tarball-url": "^2.0.3",
+ "get-port": "^5.1.1",
+ "giget": "^1.0.0",
+ "globby": "^11.0.2",
+ "jscodeshift": "^0.14.0",
+ "leven": "^3.1.0",
+ "prettier": "^2.8.0",
+ "prompts": "^2.4.0",
+ "puppeteer-core": "^2.1.1",
+ "read-pkg-up": "^7.0.1",
+ "semver": "^7.3.7",
+ "shelljs": "^0.8.5",
+ "simple-update-notifier": "^1.0.0",
+ "strip-json-comments": "^3.0.1",
+ "tempy": "^1.0.1",
+ "ts-dedent": "^2.0.0",
"util-deprecate": "^1.0.2"
},
"dependencies": {
- "is-plain-object": {
- "version": "3.0.1",
+ "ast-types": {
+ "version": "0.15.2",
+ "resolved": "https://registry.npmjs.org/ast-types/-/ast-types-0.15.2.tgz",
+ "integrity": "sha512-c27loCv9QkZinsa5ProX751khO9DJl/AcB5c2KNtA6NRvHKS0PgLfcftz72KVq504vB0Gku5s2kUZzDBvQWvHg==",
+ "optional": true,
+ "requires": {
+ "tslib": "^2.0.1"
+ }
+ },
+ "chalk": {
+ "version": "4.1.2",
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
+ "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
+ "optional": true,
+ "requires": {
+ "ansi-styles": "^4.1.0",
+ "supports-color": "^7.1.0"
+ }
+ },
+ "commander": {
+ "version": "6.2.1",
+ "resolved": "https://registry.npmjs.org/commander/-/commander-6.2.1.tgz",
+ "integrity": "sha512-U7VdrJFnJgo4xjrHpTzu0yrHPGImdsmD95ZlgYSEajAn2JKzDhDTPG9kBTefmObL2w/ngeZnilk+OV9CG3d7UA==",
+ "optional": true
+ },
+ "execa": {
+ "version": "5.1.1",
+ "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz",
+ "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==",
+ "optional": true,
+ "requires": {
+ "cross-spawn": "^7.0.3",
+ "get-stream": "^6.0.0",
+ "human-signals": "^2.1.0",
+ "is-stream": "^2.0.0",
+ "merge-stream": "^2.0.0",
+ "npm-run-path": "^4.0.1",
+ "onetime": "^5.1.2",
+ "signal-exit": "^3.0.3",
+ "strip-final-newline": "^2.0.0"
+ }
+ },
+ "find-up": {
+ "version": "5.0.0",
+ "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz",
+ "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==",
+ "optional": true,
+ "requires": {
+ "locate-path": "^6.0.0",
+ "path-exists": "^4.0.0"
+ }
+ },
+ "fs-extra": {
+ "version": "11.1.1",
+ "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-11.1.1.tgz",
+ "integrity": "sha512-MGIE4HOvQCeUCzmlHs0vXpih4ysz4wg9qiSAu6cd42lVwPbTM1TjV7RusoyQqMmk/95gdQZX72u+YW+c3eEpFQ==",
+ "optional": true,
+ "requires": {
+ "graceful-fs": "^4.2.0",
+ "jsonfile": "^6.0.1",
+ "universalify": "^2.0.0"
+ }
+ },
+ "get-stream": {
+ "version": "6.0.1",
+ "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz",
+ "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==",
+ "optional": true
+ },
+ "has-flag": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
+ "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
+ "optional": true
+ },
+ "human-signals": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz",
+ "integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==",
+ "optional": true
+ },
+ "jscodeshift": {
+ "version": "0.14.0",
+ "resolved": "https://registry.npmjs.org/jscodeshift/-/jscodeshift-0.14.0.tgz",
+ "integrity": "sha512-7eCC1knD7bLUPuSCwXsMZUH51O8jIcoVyKtI6P0XM0IVzlGjckPy3FIwQlorzbN0Sg79oK+RlohN32Mqf/lrYA==",
+ "optional": true,
+ "requires": {
+ "@babel/core": "^7.13.16",
+ "@babel/parser": "^7.13.16",
+ "@babel/plugin-proposal-class-properties": "^7.13.0",
+ "@babel/plugin-proposal-nullish-coalescing-operator": "^7.13.8",
+ "@babel/plugin-proposal-optional-chaining": "^7.13.12",
+ "@babel/plugin-transform-modules-commonjs": "^7.13.8",
+ "@babel/preset-flow": "^7.13.13",
+ "@babel/preset-typescript": "^7.13.0",
+ "@babel/register": "^7.13.16",
+ "babel-core": "^7.0.0-bridge.0",
+ "chalk": "^4.1.2",
+ "flow-parser": "0.*",
+ "graceful-fs": "^4.2.4",
+ "micromatch": "^4.0.4",
+ "neo-async": "^2.5.0",
+ "node-dir": "^0.1.17",
+ "recast": "^0.21.0",
+ "temp": "^0.8.4",
+ "write-file-atomic": "^2.3.0"
+ }
+ },
+ "jsonfile": {
+ "version": "6.1.0",
+ "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz",
+ "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==",
+ "optional": true,
+ "requires": {
+ "graceful-fs": "^4.1.6",
+ "universalify": "^2.0.0"
+ }
+ },
+ "locate-path": {
+ "version": "6.0.0",
+ "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz",
+ "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==",
+ "optional": true,
+ "requires": {
+ "p-locate": "^5.0.0"
+ }
+ },
+ "p-limit": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz",
+ "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==",
+ "optional": true,
+ "requires": {
+ "yocto-queue": "^0.1.0"
+ }
+ },
+ "p-locate": {
+ "version": "5.0.0",
+ "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz",
+ "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==",
+ "optional": true,
+ "requires": {
+ "p-limit": "^3.0.2"
+ }
+ },
+ "path-exists": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz",
+ "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==",
+ "optional": true
+ },
+ "recast": {
+ "version": "0.21.5",
+ "resolved": "https://registry.npmjs.org/recast/-/recast-0.21.5.tgz",
+ "integrity": "sha512-hjMmLaUXAm1hIuTqOdeYObMslq/q+Xff6QE3Y2P+uoHAg2nmVlLBps2hzh1UJDdMtDTMXOFewK6ky51JQIeECg==",
+ "optional": true,
+ "requires": {
+ "ast-types": "0.15.2",
+ "esprima": "~4.0.0",
+ "source-map": "~0.6.1",
+ "tslib": "^2.0.1"
+ }
+ },
+ "semver": {
+ "version": "7.5.0",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.0.tgz",
+ "integrity": "sha512-+XC0AD/R7Q2mPSRuy2Id0+CGTZ98+8f+KvwirxOKIEyid+XSx6HbC63p+O4IndTHuX5Z+JxQ0TghCkO5Cg/2HA==",
+ "optional": true,
+ "requires": {
+ "lru-cache": "^6.0.0"
+ }
+ },
+ "shelljs": {
+ "version": "0.8.5",
+ "resolved": "https://registry.npmjs.org/shelljs/-/shelljs-0.8.5.tgz",
+ "integrity": "sha512-TiwcRcrkhHvbrZbnRcFYMLl30Dfov3HKqzp5tO5b4pt6G/SezKcYhmDg15zXVBswHmctSAQKznqNW2LO5tTDow==",
+ "optional": true,
+ "requires": {
+ "glob": "^7.0.0",
+ "interpret": "^1.0.0",
+ "rechoir": "^0.6.2"
+ }
+ },
+ "source-map": {
+ "version": "0.6.1",
+ "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
+ "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
+ "optional": true
+ },
+ "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==",
+ "optional": true,
+ "requires": {
+ "has-flag": "^4.0.0"
+ }
+ },
+ "tempy": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/tempy/-/tempy-1.0.1.tgz",
+ "integrity": "sha512-biM9brNqxSc04Ee71hzFbryD11nX7VPhQQY32AdDmjFvodsRFz/3ufeoTZ6uYkRFfGo188tENcASNs3vTdsM0w==",
+ "optional": true,
+ "requires": {
+ "del": "^6.0.0",
+ "is-stream": "^2.0.0",
+ "temp-dir": "^2.0.0",
+ "type-fest": "^0.16.0",
+ "unique-string": "^2.0.0"
+ }
+ },
+ "type-fest": {
+ "version": "0.16.0",
+ "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.16.0.tgz",
+ "integrity": "sha512-eaBzG6MxNzEn9kiwvtre90cXaNLkmadMWa1zQMs3XORCXNbsH/OewwbxC5ia9dCxIxnTAsSxXJaa/p5y8DlvJg==",
+ "optional": true
+ },
+ "universalify": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz",
+ "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==",
"optional": true
}
}
},
"@storybook/client-logger": {
- "version": "5.3.21",
+ "version": "7.0.8",
+ "resolved": "https://registry.npmjs.org/@storybook/client-logger/-/client-logger-7.0.8.tgz",
+ "integrity": "sha512-UuyX57Jzn8L0QOhDPBA/v9UqIGCtFKqtaS23mNNNDoc1X3u+boULNgqWGD84F2U7JWg2xNopIJvjQxhH30/Jhw==",
"optional": true,
"requires": {
- "core-js": "^3.0.1"
+ "@storybook/global": "^5.0.0"
}
},
- "@storybook/components": {
- "version": "5.3.21",
+ "@storybook/codemod": {
+ "version": "7.0.8",
+ "resolved": "https://registry.npmjs.org/@storybook/codemod/-/codemod-7.0.8.tgz",
+ "integrity": "sha512-0zEUlnHtyU6BdiqsOqKrC4QBPl/BOR8LNEoKQbprmemAqRx0SUirawyHfgxzlrlKiGvHgmsrOglCb/9tZmbY/g==",
"optional": true,
"requires": {
- "@storybook/client-logger": "5.3.21",
- "@storybook/theming": "5.3.21",
- "@types/react-syntax-highlighter": "11.0.4",
- "@types/react-textarea-autosize": "^4.3.3",
- "core-js": "^3.0.1",
- "global": "^4.3.2",
- "lodash": "^4.17.15",
- "markdown-to-jsx": "^6.11.4",
- "memoizerific": "^1.11.3",
- "polished": "^3.3.1",
- "popper.js": "^1.14.7",
- "prop-types": "^15.7.2",
- "react": "^16.8.3",
- "react-dom": "^16.8.3",
- "react-focus-lock": "^2.1.0",
- "react-helmet-async": "^1.0.2",
- "react-popper-tooltip": "^2.8.3",
- "react-syntax-highlighter": "^11.0.2",
- "react-textarea-autosize": "^7.1.0",
- "simplebar-react": "^1.0.0-alpha.6",
- "ts-dedent": "^1.1.0"
+ "@babel/core": "~7.21.0",
+ "@babel/preset-env": "~7.21.0",
+ "@babel/types": "~7.21.2",
+ "@storybook/csf": "^0.1.0",
+ "@storybook/csf-tools": "7.0.8",
+ "@storybook/node-logger": "7.0.8",
+ "@storybook/types": "7.0.8",
+ "cross-spawn": "^7.0.3",
+ "globby": "^11.0.2",
+ "jscodeshift": "^0.14.0",
+ "lodash": "^4.17.21",
+ "prettier": "^2.8.0",
+ "recast": "^0.23.1"
},
"dependencies": {
- "popper.js": {
- "version": "1.16.1",
- "optional": true
- },
- "react": {
- "version": "16.14.0",
+ "ast-types": {
+ "version": "0.16.1",
+ "resolved": "https://registry.npmjs.org/ast-types/-/ast-types-0.16.1.tgz",
+ "integrity": "sha512-6t10qk83GOG8p0vKmaCr8eiilZwO171AvbROMtvvNiwrTly62t+7XkA8RdIIVbpMhCASAsxgAzdRSwh6nw/5Dg==",
"optional": true,
"requires": {
- "loose-envify": "^1.1.0",
- "object-assign": "^4.1.1",
- "prop-types": "^15.6.2"
+ "tslib": "^2.0.1"
}
},
- "react-dom": {
- "version": "16.14.0",
- "optional": true,
- "requires": {
- "loose-envify": "^1.1.0",
- "object-assign": "^4.1.1",
- "prop-types": "^15.6.2",
- "scheduler": "^0.19.1"
- }
- }
- }
- },
- "@storybook/core": {
- "version": "5.3.21",
- "optional": true,
- "requires": {
- "@babel/plugin-proposal-class-properties": "^7.7.0",
- "@babel/plugin-proposal-object-rest-spread": "^7.6.2",
- "@babel/plugin-syntax-dynamic-import": "^7.2.0",
- "@babel/plugin-transform-react-constant-elements": "^7.2.0",
- "@babel/preset-env": "^7.4.5",
- "@storybook/addons": "5.3.21",
- "@storybook/channel-postmessage": "5.3.21",
- "@storybook/client-api": "5.3.21",
- "@storybook/client-logger": "5.3.21",
- "@storybook/core-events": "5.3.21",
- "@storybook/csf": "0.0.1",
- "@storybook/node-logger": "5.3.21",
- "@storybook/router": "5.3.21",
- "@storybook/theming": "5.3.21",
- "@storybook/ui": "5.3.21",
- "airbnb-js-shims": "^2.2.1",
- "ansi-to-html": "^0.6.11",
- "autoprefixer": "^9.7.2",
- "babel-plugin-add-react-displayname": "^0.0.5",
- "babel-plugin-emotion": "^10.0.20",
- "babel-plugin-macros": "^2.7.0",
- "babel-preset-minify": "^0.5.0 || 0.6.0-alpha.5",
- "boxen": "^4.1.0",
- "case-sensitive-paths-webpack-plugin": "^2.2.0",
- "chalk": "^3.0.0",
- "cli-table3": "0.5.1",
- "commander": "^4.0.1",
- "core-js": "^3.0.1",
- "corejs-upgrade-webpack-plugin": "^2.2.0",
- "css-loader": "^3.0.0",
- "detect-port": "^1.3.0",
- "dotenv-webpack": "^1.7.0",
- "ejs": "^2.7.4",
- "express": "^4.17.0",
- "file-loader": "^4.2.0",
- "file-system-cache": "^1.0.5",
- "find-cache-dir": "^3.0.0",
- "find-up": "^4.1.0",
- "fs-extra": "^8.0.1",
- "glob-base": "^0.3.0",
- "global": "^4.3.2",
- "html-webpack-plugin": "^4.0.0-beta.2",
- "inquirer": "^7.0.0",
- "interpret": "^2.0.0",
- "ip": "^1.1.5",
- "json5": "^2.1.1",
- "lazy-universal-dotenv": "^3.0.1",
- "micromatch": "^4.0.2",
- "node-fetch": "^2.6.0",
- "open": "^7.0.0",
- "pnp-webpack-plugin": "1.5.0",
- "postcss-flexbugs-fixes": "^4.1.0",
- "postcss-loader": "^3.0.0",
- "pretty-hrtime": "^1.0.3",
- "qs": "^6.6.0",
- "raw-loader": "^3.1.0",
- "react-dev-utils": "^9.0.0",
- "regenerator-runtime": "^0.13.3",
- "resolve": "1.20.0",
- "resolve-from": "^5.0.0",
- "semver": "^6.0.0",
- "serve-favicon": "^2.5.0",
- "shelljs": "^0.8.3",
- "style-loader": "^1.0.0",
- "terser-webpack-plugin": "^2.1.2",
- "ts-dedent": "^1.1.0",
- "unfetch": "^4.1.0",
- "url-loader": "^2.0.1",
- "util-deprecate": "^1.0.2",
- "webpack": "^4.33.0",
- "webpack-dev-middleware": "^3.7.0",
- "webpack-hot-middleware": "^2.25.0",
- "webpack-virtual-modules": "^0.2.0"
- },
- "dependencies": {
"chalk": {
- "version": "3.0.0",
+ "version": "4.1.2",
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
+ "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
"optional": true,
"requires": {
"ansi-styles": "^4.1.0",
"supports-color": "^7.1.0"
}
},
- "dotenv": {
- "version": "6.2.0",
+ "has-flag": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
+ "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
"optional": true
},
- "dotenv-defaults": {
- "version": "1.1.1",
+ "jscodeshift": {
+ "version": "0.14.0",
+ "resolved": "https://registry.npmjs.org/jscodeshift/-/jscodeshift-0.14.0.tgz",
+ "integrity": "sha512-7eCC1knD7bLUPuSCwXsMZUH51O8jIcoVyKtI6P0XM0IVzlGjckPy3FIwQlorzbN0Sg79oK+RlohN32Mqf/lrYA==",
"optional": true,
"requires": {
- "dotenv": "^6.2.0"
+ "@babel/core": "^7.13.16",
+ "@babel/parser": "^7.13.16",
+ "@babel/plugin-proposal-class-properties": "^7.13.0",
+ "@babel/plugin-proposal-nullish-coalescing-operator": "^7.13.8",
+ "@babel/plugin-proposal-optional-chaining": "^7.13.12",
+ "@babel/plugin-transform-modules-commonjs": "^7.13.8",
+ "@babel/preset-flow": "^7.13.13",
+ "@babel/preset-typescript": "^7.13.0",
+ "@babel/register": "^7.13.16",
+ "babel-core": "^7.0.0-bridge.0",
+ "chalk": "^4.1.2",
+ "flow-parser": "0.*",
+ "graceful-fs": "^4.2.4",
+ "micromatch": "^4.0.4",
+ "neo-async": "^2.5.0",
+ "node-dir": "^0.1.17",
+ "recast": "^0.21.0",
+ "temp": "^0.8.4",
+ "write-file-atomic": "^2.3.0"
+ },
+ "dependencies": {
+ "ast-types": {
+ "version": "0.15.2",
+ "resolved": "https://registry.npmjs.org/ast-types/-/ast-types-0.15.2.tgz",
+ "integrity": "sha512-c27loCv9QkZinsa5ProX751khO9DJl/AcB5c2KNtA6NRvHKS0PgLfcftz72KVq504vB0Gku5s2kUZzDBvQWvHg==",
+ "optional": true,
+ "requires": {
+ "tslib": "^2.0.1"
+ }
+ },
+ "recast": {
+ "version": "0.21.5",
+ "resolved": "https://registry.npmjs.org/recast/-/recast-0.21.5.tgz",
+ "integrity": "sha512-hjMmLaUXAm1hIuTqOdeYObMslq/q+Xff6QE3Y2P+uoHAg2nmVlLBps2hzh1UJDdMtDTMXOFewK6ky51JQIeECg==",
+ "optional": true,
+ "requires": {
+ "ast-types": "0.15.2",
+ "esprima": "~4.0.0",
+ "source-map": "~0.6.1",
+ "tslib": "^2.0.1"
+ }
+ }
}
},
- "dotenv-webpack": {
- "version": "1.8.0",
+ "recast": {
+ "version": "0.23.1",
+ "resolved": "https://registry.npmjs.org/recast/-/recast-0.23.1.tgz",
+ "integrity": "sha512-RokaBcoxSjXUDzz1TXSZmZsSW6ZpLmlA3GGqJ8uuTrQ9hZhEz+4Tpsc+gRvYRJ2BU4H+ZyUlg91eSGDw7bwy7g==",
"optional": true,
"requires": {
- "dotenv-defaults": "^1.0.2"
+ "assert": "^2.0.0",
+ "ast-types": "^0.16.1",
+ "esprima": "~4.0.0",
+ "source-map": "~0.6.1",
+ "tslib": "^2.0.1"
}
},
- "file-loader": {
- "version": "4.3.0",
+ "source-map": {
+ "version": "0.6.1",
+ "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
+ "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
+ "optional": true
+ },
+ "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==",
"optional": true,
"requires": {
- "loader-utils": "^1.2.3",
- "schema-utils": "^2.5.0"
+ "has-flag": "^4.0.0"
+ }
+ }
+ }
+ },
+ "@storybook/components": {
+ "version": "7.0.8",
+ "resolved": "https://registry.npmjs.org/@storybook/components/-/components-7.0.8.tgz",
+ "integrity": "sha512-eBY+uZE+0dHwvUTQHa/GNzAexEg1Sqhzyu+NTWx2mAzNzXBaoBQ1wz33sXQFWQZA6Bv/yritPmfo6470f8/AFg==",
+ "optional": true,
+ "requires": {
+ "@storybook/client-logger": "7.0.8",
+ "@storybook/csf": "^0.1.0",
+ "@storybook/global": "^5.0.0",
+ "@storybook/theming": "7.0.8",
+ "@storybook/types": "7.0.8",
+ "memoizerific": "^1.11.3",
+ "use-resize-observer": "^9.1.0",
+ "util-deprecate": "^1.0.2"
+ }
+ },
+ "@storybook/core-client": {
+ "version": "7.0.8",
+ "resolved": "https://registry.npmjs.org/@storybook/core-client/-/core-client-7.0.8.tgz",
+ "integrity": "sha512-JDEhoLO49wfhvwtZ532kBwI5sTGpikL1MFGgExsGpm1hOfLsOXwSm033M2NrieZBCrdIReVpiwpRiK9Mc8hL/Q==",
+ "optional": true,
+ "requires": {
+ "@storybook/client-logger": "7.0.8",
+ "@storybook/preview-api": "7.0.8"
+ }
+ },
+ "@storybook/core-common": {
+ "version": "7.0.8",
+ "resolved": "https://registry.npmjs.org/@storybook/core-common/-/core-common-7.0.8.tgz",
+ "integrity": "sha512-W0/jtHndO4GO98g9bWnkMB9rZrH+aZCefEGZcUrTpgOa+Ws/b6l8YDEoR1V1hGPROT5cn82+9zU4s5y1d462Sg==",
+ "optional": true,
+ "requires": {
+ "@storybook/node-logger": "7.0.8",
+ "@storybook/types": "7.0.8",
+ "@types/node": "^16.0.0",
+ "@types/pretty-hrtime": "^1.0.0",
+ "chalk": "^4.1.0",
+ "esbuild": "^0.17.0",
+ "esbuild-register": "^3.4.0",
+ "file-system-cache": "^2.0.0",
+ "find-up": "^5.0.0",
+ "fs-extra": "^11.1.0",
+ "glob": "^8.1.0",
+ "glob-promise": "^6.0.2",
+ "handlebars": "^4.7.7",
+ "lazy-universal-dotenv": "^4.0.0",
+ "picomatch": "^2.3.0",
+ "pkg-dir": "^5.0.0",
+ "pretty-hrtime": "^1.0.3",
+ "resolve-from": "^5.0.0",
+ "ts-dedent": "^2.0.0"
+ },
+ "dependencies": {
+ "@types/node": {
+ "version": "16.18.25",
+ "resolved": "https://registry.npmjs.org/@types/node/-/node-16.18.25.tgz",
+ "integrity": "sha512-rUDO6s9Q/El1R1I21HG4qw/LstTHCPO/oQNAwI/4b2f9EWvMnqt4d3HJwPMawfZ3UvodB8516Yg+VAq54YM+eA==",
+ "optional": true
+ },
+ "brace-expansion": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz",
+ "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==",
+ "optional": true,
+ "requires": {
+ "balanced-match": "^1.0.0"
+ }
+ },
+ "chalk": {
+ "version": "4.1.2",
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
+ "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
+ "optional": true,
+ "requires": {
+ "ansi-styles": "^4.1.0",
+ "supports-color": "^7.1.0"
+ }
+ },
+ "esbuild": {
+ "version": "0.17.18",
+ "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.17.18.tgz",
+ "integrity": "sha512-z1lix43jBs6UKjcZVKOw2xx69ffE2aG0PygLL5qJ9OS/gy0Ewd1gW/PUQIOIQGXBHWNywSc0floSKoMFF8aK2w==",
+ "optional": true,
+ "requires": {
+ "@esbuild/android-arm": "0.17.18",
+ "@esbuild/android-arm64": "0.17.18",
+ "@esbuild/android-x64": "0.17.18",
+ "@esbuild/darwin-arm64": "0.17.18",
+ "@esbuild/darwin-x64": "0.17.18",
+ "@esbuild/freebsd-arm64": "0.17.18",
+ "@esbuild/freebsd-x64": "0.17.18",
+ "@esbuild/linux-arm": "0.17.18",
+ "@esbuild/linux-arm64": "0.17.18",
+ "@esbuild/linux-ia32": "0.17.18",
+ "@esbuild/linux-loong64": "0.17.18",
+ "@esbuild/linux-mips64el": "0.17.18",
+ "@esbuild/linux-ppc64": "0.17.18",
+ "@esbuild/linux-riscv64": "0.17.18",
+ "@esbuild/linux-s390x": "0.17.18",
+ "@esbuild/linux-x64": "0.17.18",
+ "@esbuild/netbsd-x64": "0.17.18",
+ "@esbuild/openbsd-x64": "0.17.18",
+ "@esbuild/sunos-x64": "0.17.18",
+ "@esbuild/win32-arm64": "0.17.18",
+ "@esbuild/win32-ia32": "0.17.18",
+ "@esbuild/win32-x64": "0.17.18"
}
},
"find-up": {
- "version": "4.1.0",
+ "version": "5.0.0",
+ "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz",
+ "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==",
"optional": true,
"requires": {
- "locate-path": "^5.0.0",
+ "locate-path": "^6.0.0",
"path-exists": "^4.0.0"
}
},
+ "fs-extra": {
+ "version": "11.1.1",
+ "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-11.1.1.tgz",
+ "integrity": "sha512-MGIE4HOvQCeUCzmlHs0vXpih4ysz4wg9qiSAu6cd42lVwPbTM1TjV7RusoyQqMmk/95gdQZX72u+YW+c3eEpFQ==",
+ "optional": true,
+ "requires": {
+ "graceful-fs": "^4.2.0",
+ "jsonfile": "^6.0.1",
+ "universalify": "^2.0.0"
+ }
+ },
+ "glob": {
+ "version": "8.1.0",
+ "resolved": "https://registry.npmjs.org/glob/-/glob-8.1.0.tgz",
+ "integrity": "sha512-r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ==",
+ "optional": true,
+ "requires": {
+ "fs.realpath": "^1.0.0",
+ "inflight": "^1.0.4",
+ "inherits": "2",
+ "minimatch": "^5.0.1",
+ "once": "^1.3.0"
+ }
+ },
"has-flag": {
"version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
+ "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
"optional": true
},
- "html-webpack-plugin": {
- "version": "4.5.2",
+ "jsonfile": {
+ "version": "6.1.0",
+ "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz",
+ "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==",
"optional": true,
"requires": {
- "@types/html-minifier-terser": "^5.0.0",
- "@types/tapable": "^1.0.5",
- "@types/webpack": "^4.41.8",
- "html-minifier-terser": "^5.0.1",
- "loader-utils": "^1.2.3",
- "lodash": "^4.17.20",
- "pretty-error": "^2.1.1",
- "tapable": "^1.1.3",
- "util.promisify": "1.0.0"
+ "graceful-fs": "^4.1.6",
+ "universalify": "^2.0.0"
}
},
- "interpret": {
- "version": "2.2.0",
- "optional": true
- },
"locate-path": {
- "version": "5.0.0",
+ "version": "6.0.0",
+ "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz",
+ "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==",
"optional": true,
"requires": {
- "p-locate": "^4.1.0"
+ "p-locate": "^5.0.0"
+ }
+ },
+ "minimatch": {
+ "version": "5.1.6",
+ "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.6.tgz",
+ "integrity": "sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==",
+ "optional": true,
+ "requires": {
+ "brace-expansion": "^2.0.1"
+ }
+ },
+ "p-limit": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz",
+ "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==",
+ "optional": true,
+ "requires": {
+ "yocto-queue": "^0.1.0"
}
},
"p-locate": {
- "version": "4.1.0",
+ "version": "5.0.0",
+ "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz",
+ "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==",
"optional": true,
"requires": {
- "p-limit": "^2.2.0"
+ "p-limit": "^3.0.2"
}
},
"path-exists": {
"version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz",
+ "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==",
"optional": true
},
- "regenerator-runtime": {
- "version": "0.13.7",
- "optional": true
- },
- "resolve-from": {
+ "pkg-dir": {
"version": "5.0.0",
- "optional": true
- },
- "schema-utils": {
- "version": "2.7.1",
+ "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-5.0.0.tgz",
+ "integrity": "sha512-NPE8TDbzl/3YQYY7CSS228s3g2ollTFnc+Qi3tqmqJp9Vg2ovUpixcJEo2HJScN2Ez+kEaal6y70c0ehqJBJeA==",
"optional": true,
"requires": {
- "@types/json-schema": "^7.0.5",
- "ajv": "^6.12.4",
- "ajv-keywords": "^3.5.2"
+ "find-up": "^5.0.0"
}
},
- "semver": {
- "version": "6.3.0",
- "optional": true
- },
"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==",
"optional": true,
"requires": {
"has-flag": "^4.0.0"
}
},
- "util.promisify": {
- "version": "1.0.0",
- "optional": true,
- "requires": {
- "define-properties": "^1.1.2",
- "object.getownpropertydescriptors": "^2.0.3"
- }
+ "universalify": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz",
+ "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==",
+ "optional": true
}
}
},
"@storybook/core-events": {
- "version": "5.3.21",
+ "version": "7.0.8",
+ "resolved": "https://registry.npmjs.org/@storybook/core-events/-/core-events-7.0.8.tgz",
+ "integrity": "sha512-CQJs3PKQ8HJmMe7kzYy2bWz3hw5d8myAtO5LAgvPHKsVqAZ0R+rN4lXlcPNWf/x3tb8JizDJpPgTCBdOBb+tkg==",
+ "optional": true
+ },
+ "@storybook/core-server": {
+ "version": "7.0.8",
+ "resolved": "https://registry.npmjs.org/@storybook/core-server/-/core-server-7.0.8.tgz",
+ "integrity": "sha512-ONF2PYV9XKYTpUoS88ECKemSIescJuj849X71hPZMOs439g0gXJlYVnwIs0zgAj6ZcuXgjDIB81FicX8uv4+Yw==",
"optional": true,
"requires": {
- "core-js": "^3.0.1"
+ "@aw-web-design/x-default-browser": "1.4.88",
+ "@discoveryjs/json-ext": "^0.5.3",
+ "@storybook/builder-manager": "7.0.8",
+ "@storybook/core-common": "7.0.8",
+ "@storybook/core-events": "7.0.8",
+ "@storybook/csf": "^0.1.0",
+ "@storybook/csf-tools": "7.0.8",
+ "@storybook/docs-mdx": "^0.1.0",
+ "@storybook/global": "^5.0.0",
+ "@storybook/manager": "7.0.8",
+ "@storybook/node-logger": "7.0.8",
+ "@storybook/preview-api": "7.0.8",
+ "@storybook/telemetry": "7.0.8",
+ "@storybook/types": "7.0.8",
+ "@types/detect-port": "^1.3.0",
+ "@types/node": "^16.0.0",
+ "@types/node-fetch": "^2.5.7",
+ "@types/pretty-hrtime": "^1.0.0",
+ "@types/semver": "^7.3.4",
+ "better-opn": "^2.1.1",
+ "boxen": "^5.1.2",
+ "chalk": "^4.1.0",
+ "cli-table3": "^0.6.1",
+ "compression": "^1.7.4",
+ "detect-port": "^1.3.0",
+ "express": "^4.17.3",
+ "fs-extra": "^11.1.0",
+ "globby": "^11.0.2",
+ "ip": "^2.0.0",
+ "lodash": "^4.17.21",
+ "node-fetch": "^2.6.7",
+ "open": "^8.4.0",
+ "pretty-hrtime": "^1.0.3",
+ "prompts": "^2.4.0",
+ "read-pkg-up": "^7.0.1",
+ "semver": "^7.3.7",
+ "serve-favicon": "^2.5.0",
+ "telejson": "^7.0.3",
+ "ts-dedent": "^2.0.0",
+ "util-deprecate": "^1.0.2",
+ "watchpack": "^2.2.0",
+ "ws": "^8.2.3"
+ },
+ "dependencies": {
+ "@types/node": {
+ "version": "16.18.25",
+ "resolved": "https://registry.npmjs.org/@types/node/-/node-16.18.25.tgz",
+ "integrity": "sha512-rUDO6s9Q/El1R1I21HG4qw/LstTHCPO/oQNAwI/4b2f9EWvMnqt4d3HJwPMawfZ3UvodB8516Yg+VAq54YM+eA==",
+ "optional": true
+ },
+ "chalk": {
+ "version": "4.1.2",
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
+ "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
+ "optional": true,
+ "requires": {
+ "ansi-styles": "^4.1.0",
+ "supports-color": "^7.1.0"
+ }
+ },
+ "fs-extra": {
+ "version": "11.1.1",
+ "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-11.1.1.tgz",
+ "integrity": "sha512-MGIE4HOvQCeUCzmlHs0vXpih4ysz4wg9qiSAu6cd42lVwPbTM1TjV7RusoyQqMmk/95gdQZX72u+YW+c3eEpFQ==",
+ "optional": true,
+ "requires": {
+ "graceful-fs": "^4.2.0",
+ "jsonfile": "^6.0.1",
+ "universalify": "^2.0.0"
+ }
+ },
+ "has-flag": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
+ "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
+ "optional": true
+ },
+ "jsonfile": {
+ "version": "6.1.0",
+ "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz",
+ "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==",
+ "optional": true,
+ "requires": {
+ "graceful-fs": "^4.1.6",
+ "universalify": "^2.0.0"
+ }
+ },
+ "node-fetch": {
+ "version": "2.6.9",
+ "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.9.tgz",
+ "integrity": "sha512-DJm/CJkZkRjKKj4Zi4BsKVZh3ValV5IR5s7LVZnW+6YMh0W1BfNA8XSs6DLMGYlId5F3KnA70uu2qepcR08Qqg==",
+ "optional": true,
+ "requires": {
+ "whatwg-url": "^5.0.0"
+ }
+ },
+ "semver": {
+ "version": "7.5.0",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.0.tgz",
+ "integrity": "sha512-+XC0AD/R7Q2mPSRuy2Id0+CGTZ98+8f+KvwirxOKIEyid+XSx6HbC63p+O4IndTHuX5Z+JxQ0TghCkO5Cg/2HA==",
+ "optional": true,
+ "requires": {
+ "lru-cache": "^6.0.0"
+ }
+ },
+ "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==",
+ "optional": true,
+ "requires": {
+ "has-flag": "^4.0.0"
+ }
+ },
+ "tr46": {
+ "version": "0.0.3",
+ "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz",
+ "integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==",
+ "optional": true
+ },
+ "universalify": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz",
+ "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==",
+ "optional": true
+ },
+ "webidl-conversions": {
+ "version": "3.0.1",
+ "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz",
+ "integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==",
+ "optional": true
+ },
+ "whatwg-url": {
+ "version": "5.0.0",
+ "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz",
+ "integrity": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==",
+ "optional": true,
+ "requires": {
+ "tr46": "~0.0.3",
+ "webidl-conversions": "^3.0.0"
+ }
+ },
+ "ws": {
+ "version": "8.13.0",
+ "resolved": "https://registry.npmjs.org/ws/-/ws-8.13.0.tgz",
+ "integrity": "sha512-x9vcZYTrFPC7aSIbj7sRCYo7L/Xb8Iy+pW0ng0wt2vCJv7M9HOMy0UoN3rr+IFC7hb7vXoqS+P9ktyLLLhO+LA==",
+ "optional": true
+ }
}
},
"@storybook/csf": {
- "version": "0.0.1",
+ "version": "0.1.0",
+ "resolved": "https://registry.npmjs.org/@storybook/csf/-/csf-0.1.0.tgz",
+ "integrity": "sha512-uk+jMXCZ8t38jSTHk2o5btI+aV2Ksbvl6DoOv3r6VaCM1KZqeuMwtwywIQdflkA8/6q/dKT8z8L+g8hC4GC3VQ==",
"optional": true,
"requires": {
- "lodash": "^4.17.15"
+ "type-fest": "^2.19.0"
+ },
+ "dependencies": {
+ "type-fest": {
+ "version": "2.19.0",
+ "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-2.19.0.tgz",
+ "integrity": "sha512-RAH822pAdBgcNMAfWnCBU3CFZcfZ/i1eZjwFU/dsLKumyuuP3niueg2UAukXYF0E2AAoc82ZSSf9J0WQBinzHA==",
+ "optional": true
+ }
}
},
+ "@storybook/csf-plugin": {
+ "version": "7.0.8",
+ "resolved": "https://registry.npmjs.org/@storybook/csf-plugin/-/csf-plugin-7.0.8.tgz",
+ "integrity": "sha512-HDdAOmS/mstjyE8LxXebSv207lqulC+gawbeWpfZKdR0MOkfn2WmWlIxvLYRrcejkUg8irNS4SHNGBCwygde4A==",
+ "optional": true,
+ "requires": {
+ "@storybook/csf-tools": "7.0.8",
+ "unplugin": "^0.10.2"
+ }
+ },
+ "@storybook/csf-tools": {
+ "version": "7.0.8",
+ "resolved": "https://registry.npmjs.org/@storybook/csf-tools/-/csf-tools-7.0.8.tgz",
+ "integrity": "sha512-bMuljBJrZ1UL80NAHNfGgcDg7bMLnsppmuX6WVayOKMM3BcuRQVNiWC0ZLC6yrmPRinalqWdE/GDhwA/IevThg==",
+ "optional": true,
+ "requires": {
+ "@babel/generator": "~7.21.1",
+ "@babel/parser": "~7.21.2",
+ "@babel/traverse": "~7.21.2",
+ "@babel/types": "~7.21.2",
+ "@storybook/csf": "^0.1.0",
+ "@storybook/types": "7.0.8",
+ "fs-extra": "^11.1.0",
+ "recast": "^0.23.1",
+ "ts-dedent": "^2.0.0"
+ },
+ "dependencies": {
+ "ast-types": {
+ "version": "0.16.1",
+ "resolved": "https://registry.npmjs.org/ast-types/-/ast-types-0.16.1.tgz",
+ "integrity": "sha512-6t10qk83GOG8p0vKmaCr8eiilZwO171AvbROMtvvNiwrTly62t+7XkA8RdIIVbpMhCASAsxgAzdRSwh6nw/5Dg==",
+ "optional": true,
+ "requires": {
+ "tslib": "^2.0.1"
+ }
+ },
+ "fs-extra": {
+ "version": "11.1.1",
+ "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-11.1.1.tgz",
+ "integrity": "sha512-MGIE4HOvQCeUCzmlHs0vXpih4ysz4wg9qiSAu6cd42lVwPbTM1TjV7RusoyQqMmk/95gdQZX72u+YW+c3eEpFQ==",
+ "optional": true,
+ "requires": {
+ "graceful-fs": "^4.2.0",
+ "jsonfile": "^6.0.1",
+ "universalify": "^2.0.0"
+ }
+ },
+ "jsonfile": {
+ "version": "6.1.0",
+ "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz",
+ "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==",
+ "optional": true,
+ "requires": {
+ "graceful-fs": "^4.1.6",
+ "universalify": "^2.0.0"
+ }
+ },
+ "recast": {
+ "version": "0.23.1",
+ "resolved": "https://registry.npmjs.org/recast/-/recast-0.23.1.tgz",
+ "integrity": "sha512-RokaBcoxSjXUDzz1TXSZmZsSW6ZpLmlA3GGqJ8uuTrQ9hZhEz+4Tpsc+gRvYRJ2BU4H+ZyUlg91eSGDw7bwy7g==",
+ "optional": true,
+ "requires": {
+ "assert": "^2.0.0",
+ "ast-types": "^0.16.1",
+ "esprima": "~4.0.0",
+ "source-map": "~0.6.1",
+ "tslib": "^2.0.1"
+ }
+ },
+ "source-map": {
+ "version": "0.6.1",
+ "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
+ "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
+ "optional": true
+ },
+ "universalify": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz",
+ "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==",
+ "optional": true
+ }
+ }
+ },
+ "@storybook/docs-mdx": {
+ "version": "0.1.0",
+ "resolved": "https://registry.npmjs.org/@storybook/docs-mdx/-/docs-mdx-0.1.0.tgz",
+ "integrity": "sha512-JDaBR9lwVY4eSH5W8EGHrhODjygPd6QImRbwjAuJNEnY0Vw4ie3bPkeGfnacB3OBW6u/agqPv2aRlR46JcAQLg==",
+ "optional": true
+ },
+ "@storybook/docs-tools": {
+ "version": "7.0.8",
+ "resolved": "https://registry.npmjs.org/@storybook/docs-tools/-/docs-tools-7.0.8.tgz",
+ "integrity": "sha512-Lg/Cnhh3OURzCamWUNFLm0IqolzId6w+n1NCwSTEdPJ1PFKAYvuewRoul9gbaAfzg4pzWITGpltyzRmFH/G6Xw==",
+ "optional": true,
+ "requires": {
+ "@babel/core": "^7.12.10",
+ "@storybook/core-common": "7.0.8",
+ "@storybook/preview-api": "7.0.8",
+ "@storybook/types": "7.0.8",
+ "@types/doctrine": "^0.0.3",
+ "doctrine": "^3.0.0",
+ "lodash": "^4.17.21"
+ }
+ },
+ "@storybook/global": {
+ "version": "5.0.0",
+ "resolved": "https://registry.npmjs.org/@storybook/global/-/global-5.0.0.tgz",
+ "integrity": "sha512-FcOqPAXACP0I3oJ/ws6/rrPT9WGhu915Cg8D02a9YxLo0DE9zI+a9A5gRGvmQ09fiWPukqI8ZAEoQEdWUKMQdQ==",
+ "optional": true
+ },
+ "@storybook/instrumenter": {
+ "version": "7.0.8",
+ "resolved": "https://registry.npmjs.org/@storybook/instrumenter/-/instrumenter-7.0.8.tgz",
+ "integrity": "sha512-wFXSeUOOi4nyYv2+TkNic7qmSxO5VuFFt4qmTYv/MmZUAfIZKGq8S5K+McIKFUcYEnjkcvYvOWTNM6hEhlQpQw==",
+ "optional": true,
+ "requires": {
+ "@storybook/channels": "7.0.8",
+ "@storybook/client-logger": "7.0.8",
+ "@storybook/core-events": "7.0.8",
+ "@storybook/global": "^5.0.0",
+ "@storybook/preview-api": "7.0.8"
+ }
+ },
+ "@storybook/manager": {
+ "version": "7.0.8",
+ "resolved": "https://registry.npmjs.org/@storybook/manager/-/manager-7.0.8.tgz",
+ "integrity": "sha512-qdmuRb6q5yUtrIVmkkftS9QR7HoYy5+UQ15VCgS2Q1o0Fz1A2TD9fd9MuxRfqGFO2wDOnmI8ps7Uw5XkKNjD9w==",
+ "optional": true
+ },
+ "@storybook/manager-api": {
+ "version": "7.0.8",
+ "resolved": "https://registry.npmjs.org/@storybook/manager-api/-/manager-api-7.0.8.tgz",
+ "integrity": "sha512-5z5ZuijtlMhT/VHmwJnzA4y6W3xfSVQ887wn93GQG7G8xMAMADODOdJK2e10jgto8OPoT8GyDHXCBvGh2oIJzQ==",
+ "optional": true,
+ "requires": {
+ "@storybook/channels": "7.0.8",
+ "@storybook/client-logger": "7.0.8",
+ "@storybook/core-events": "7.0.8",
+ "@storybook/csf": "^0.1.0",
+ "@storybook/global": "^5.0.0",
+ "@storybook/router": "7.0.8",
+ "@storybook/theming": "7.0.8",
+ "@storybook/types": "7.0.8",
+ "dequal": "^2.0.2",
+ "lodash": "^4.17.21",
+ "memoizerific": "^1.11.3",
+ "semver": "^7.3.7",
+ "store2": "^2.14.2",
+ "telejson": "^7.0.3",
+ "ts-dedent": "^2.0.0"
+ },
+ "dependencies": {
+ "semver": {
+ "version": "7.5.0",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.0.tgz",
+ "integrity": "sha512-+XC0AD/R7Q2mPSRuy2Id0+CGTZ98+8f+KvwirxOKIEyid+XSx6HbC63p+O4IndTHuX5Z+JxQ0TghCkO5Cg/2HA==",
+ "optional": true,
+ "requires": {
+ "lru-cache": "^6.0.0"
+ }
+ }
+ }
+ },
+ "@storybook/mdx2-csf": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/@storybook/mdx2-csf/-/mdx2-csf-1.0.0.tgz",
+ "integrity": "sha512-dBAnEL4HfxxJmv7LdEYUoZlQbWj9APZNIbOaq0tgF8XkxiIbzqvgB0jhL/9UOrysSDbQWBiCRTu2wOVxedGfmw==",
+ "optional": true
+ },
"@storybook/node-logger": {
- "version": "5.3.21",
+ "version": "7.0.8",
+ "resolved": "https://registry.npmjs.org/@storybook/node-logger/-/node-logger-7.0.8.tgz",
+ "integrity": "sha512-POO1iXohTJbkQidp76GZR+HoVeFIuRBHlwWNtHZOgR1PnwocGvf43NJ/GMZLvxiwf/d2wyObXy4n1/R1jPw5Ew==",
"optional": true,
"requires": {
"@types/npmlog": "^4.1.2",
- "chalk": "^3.0.0",
- "core-js": "^3.0.1",
- "npmlog": "^4.1.2",
- "pretty-hrtime": "^1.0.3",
- "regenerator-runtime": "^0.13.3"
+ "chalk": "^4.1.0",
+ "npmlog": "^5.0.1",
+ "pretty-hrtime": "^1.0.3"
},
"dependencies": {
"chalk": {
- "version": "3.0.0",
+ "version": "4.1.2",
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
+ "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
"optional": true,
"requires": {
"ansi-styles": "^4.1.0",
@@ -43993,14 +43558,14 @@
},
"has-flag": {
"version": "4.0.0",
- "optional": true
- },
- "regenerator-runtime": {
- "version": "0.13.7",
+ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
+ "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
"optional": true
},
"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==",
"optional": true,
"requires": {
"has-flag": "^4.0.0"
@@ -44008,161 +43573,243 @@
}
}
},
- "@storybook/react": {
- "version": "5.3.21",
+ "@storybook/postinstall": {
+ "version": "7.0.8",
+ "resolved": "https://registry.npmjs.org/@storybook/postinstall/-/postinstall-7.0.8.tgz",
+ "integrity": "sha512-EVVsnSych+2DfmhWr86x4pM7FDGbhXZ3jOUzYydNboDHzl922RdAsj5LSfLeAne74gArJX3H/XzoqCBNA5V/GQ==",
+ "optional": true
+ },
+ "@storybook/preview": {
+ "version": "7.0.8",
+ "resolved": "https://registry.npmjs.org/@storybook/preview/-/preview-7.0.8.tgz",
+ "integrity": "sha512-A66yChrFaFXWmBYdmY1KlTligdK7aU2j84SlpnPQhIYFy5lDGMZW3y+1p3TWNUVlZHnOWSKKn1wCg8vH5By09w==",
+ "optional": true
+ },
+ "@storybook/preview-api": {
+ "version": "7.0.8",
+ "resolved": "https://registry.npmjs.org/@storybook/preview-api/-/preview-api-7.0.8.tgz",
+ "integrity": "sha512-+/nhvNo7ML6bPnFYJRH/+mwU/sVJbIGhxFy4r+4Omxaw4aKhs8T0eVijGE2KOahRKG3qUCYV1CaTqmnlbcXgbw==",
"optional": true,
"requires": {
- "@babel/plugin-transform-react-constant-elements": "^7.6.3",
- "@babel/preset-flow": "^7.0.0",
- "@babel/preset-react": "^7.0.0",
- "@storybook/addons": "5.3.21",
- "@storybook/core": "5.3.21",
- "@storybook/node-logger": "5.3.21",
- "@svgr/webpack": "^4.0.3",
- "@types/webpack-env": "^1.15.0",
- "babel-plugin-add-react-displayname": "^0.0.5",
- "babel-plugin-named-asset-import": "^0.3.1",
- "babel-plugin-react-docgen": "^4.0.0",
- "core-js": "^3.0.1",
- "global": "^4.3.2",
- "lodash": "^4.17.15",
- "mini-css-extract-plugin": "^0.7.0",
+ "@storybook/channel-postmessage": "7.0.8",
+ "@storybook/channels": "7.0.8",
+ "@storybook/client-logger": "7.0.8",
+ "@storybook/core-events": "7.0.8",
+ "@storybook/csf": "^0.1.0",
+ "@storybook/global": "^5.0.0",
+ "@storybook/types": "7.0.8",
+ "@types/qs": "^6.9.5",
+ "dequal": "^2.0.2",
+ "lodash": "^4.17.21",
+ "memoizerific": "^1.11.3",
+ "qs": "^6.10.0",
+ "synchronous-promise": "^2.0.15",
+ "ts-dedent": "^2.0.0",
+ "util-deprecate": "^1.0.2"
+ }
+ },
+ "@storybook/react": {
+ "version": "7.0.8",
+ "resolved": "https://registry.npmjs.org/@storybook/react/-/react-7.0.8.tgz",
+ "integrity": "sha512-X+qtGzT92exOr5iHXv3tdGhhADIwEJavYZaVBzpGffxKyR6bXh6MFjVdhWNo5b/eGiF2NSOa35xj+RFWUmp/Fw==",
+ "optional": true,
+ "requires": {
+ "@storybook/client-logger": "7.0.8",
+ "@storybook/core-client": "7.0.8",
+ "@storybook/docs-tools": "7.0.8",
+ "@storybook/global": "^5.0.0",
+ "@storybook/preview-api": "7.0.8",
+ "@storybook/react-dom-shim": "7.0.8",
+ "@storybook/types": "7.0.8",
+ "@types/escodegen": "^0.0.6",
+ "@types/estree": "^0.0.51",
+ "@types/node": "^16.0.0",
+ "acorn": "^7.4.1",
+ "acorn-jsx": "^5.3.1",
+ "acorn-walk": "^7.2.0",
+ "escodegen": "^2.0.0",
+ "html-tags": "^3.1.0",
+ "lodash": "^4.17.21",
"prop-types": "^15.7.2",
- "react-dev-utils": "^9.0.0",
- "regenerator-runtime": "^0.13.3",
- "semver": "^6.0.0",
- "ts-dedent": "^1.1.0",
- "webpack": "^4.33.0"
+ "react-element-to-jsx-string": "^15.0.0",
+ "ts-dedent": "^2.0.0",
+ "type-fest": "^2.19.0",
+ "util-deprecate": "^1.0.2"
},
"dependencies": {
- "regenerator-runtime": {
- "version": "0.13.7",
+ "@types/estree": {
+ "version": "0.0.51",
+ "resolved": "https://registry.npmjs.org/@types/estree/-/estree-0.0.51.tgz",
+ "integrity": "sha512-CuPgU6f3eT/XgKKPqKd/gLZV1Xmvf1a2R5POBOGQa6uv82xpls89HU5zKeVoyR8XzHd1RGNOlQlvUe3CFkjWNQ==",
"optional": true
},
- "semver": {
- "version": "6.3.0",
+ "@types/node": {
+ "version": "16.18.25",
+ "resolved": "https://registry.npmjs.org/@types/node/-/node-16.18.25.tgz",
+ "integrity": "sha512-rUDO6s9Q/El1R1I21HG4qw/LstTHCPO/oQNAwI/4b2f9EWvMnqt4d3HJwPMawfZ3UvodB8516Yg+VAq54YM+eA==",
"optional": true
+ },
+ "type-fest": {
+ "version": "2.19.0",
+ "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-2.19.0.tgz",
+ "integrity": "sha512-RAH822pAdBgcNMAfWnCBU3CFZcfZ/i1eZjwFU/dsLKumyuuP3niueg2UAukXYF0E2AAoc82ZSSf9J0WQBinzHA==",
+ "optional": true
+ }
+ }
+ },
+ "@storybook/react-dom-shim": {
+ "version": "7.0.8",
+ "resolved": "https://registry.npmjs.org/@storybook/react-dom-shim/-/react-dom-shim-7.0.8.tgz",
+ "integrity": "sha512-7o5eIf5t2CnGST+MZF2lMsX7MRH/y2698J/E69naVwigoX28ooSjwxBsXMdQhG5Y2XKda+NNnQgyvOsgYeH/Og==",
+ "optional": true
+ },
+ "@storybook/react-vite": {
+ "version": "7.0.8",
+ "resolved": "https://registry.npmjs.org/@storybook/react-vite/-/react-vite-7.0.8.tgz",
+ "integrity": "sha512-V1b7S3GksLFX7UNLW0A/jowl2ykRZFJghaLFP894JCaTqwVQnlvmUcoMGOPKNJ0bWt5Gkrih95lOmekcDPzfzQ==",
+ "optional": true,
+ "requires": {
+ "@joshwooding/vite-plugin-react-docgen-typescript": "0.2.1",
+ "@rollup/pluginutils": "^4.2.0",
+ "@storybook/builder-vite": "7.0.8",
+ "@storybook/react": "7.0.8",
+ "@vitejs/plugin-react": "^3.0.1",
+ "ast-types": "^0.14.2",
+ "magic-string": "^0.27.0",
+ "react-docgen": "6.0.0-alpha.3"
+ },
+ "dependencies": {
+ "@rollup/pluginutils": {
+ "version": "4.2.1",
+ "resolved": "https://registry.npmjs.org/@rollup/pluginutils/-/pluginutils-4.2.1.tgz",
+ "integrity": "sha512-iKnFXr7NkdZAIHiIWE+BX5ULi/ucVFYWD6TbAV+rZctiRTY2PL6tsIKhoIOaoskiWAkgu+VsbXgUVDNLHf+InQ==",
+ "optional": true,
+ "requires": {
+ "estree-walker": "^2.0.1",
+ "picomatch": "^2.2.2"
+ }
+ },
+ "estree-walker": {
+ "version": "2.0.2",
+ "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-2.0.2.tgz",
+ "integrity": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==",
+ "optional": true
+ },
+ "magic-string": {
+ "version": "0.27.0",
+ "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.27.0.tgz",
+ "integrity": "sha512-8UnnX2PeRAPZuN12svgR9j7M1uWMovg/CEnIwIG0LFkXSJJe4PdfUGiTGl8V9bsBHFUtfVINcSyYxd7q+kx9fA==",
+ "optional": true,
+ "requires": {
+ "@jridgewell/sourcemap-codec": "^1.4.13"
+ }
}
}
},
"@storybook/router": {
- "version": "5.3.21",
+ "version": "7.0.8",
+ "resolved": "https://registry.npmjs.org/@storybook/router/-/router-7.0.8.tgz",
+ "integrity": "sha512-aVTBGLN84tGLsHTX+SbekyZPN9In3eaf7xCtssi5PYVezpV5y1/KrOsCk9sztuhfzoTkEtB0WFBVKpKdH9jBtQ==",
"optional": true,
"requires": {
- "@reach/router": "^1.2.1",
- "@storybook/csf": "0.0.1",
- "@types/reach__router": "^1.2.3",
- "core-js": "^3.0.1",
- "global": "^4.3.2",
- "lodash": "^4.17.15",
+ "@storybook/client-logger": "7.0.8",
"memoizerific": "^1.11.3",
- "qs": "^6.6.0",
- "util-deprecate": "^1.0.2"
+ "qs": "^6.10.0"
+ }
+ },
+ "@storybook/telemetry": {
+ "version": "7.0.8",
+ "resolved": "https://registry.npmjs.org/@storybook/telemetry/-/telemetry-7.0.8.tgz",
+ "integrity": "sha512-V621AZ/f6WyPX9orqpiZa8oUbdUdHdzl1N51h0+p+lZoWJmDLvrrsmXH80ClBV7oA4c6NP/8nbZrq3jnpI7VAQ==",
+ "optional": true,
+ "requires": {
+ "@storybook/client-logger": "7.0.8",
+ "@storybook/core-common": "7.0.8",
+ "chalk": "^4.1.0",
+ "detect-package-manager": "^2.0.1",
+ "fetch-retry": "^5.0.2",
+ "fs-extra": "^11.1.0",
+ "isomorphic-unfetch": "^3.1.0",
+ "nanoid": "^3.3.1",
+ "read-pkg-up": "^7.0.1"
+ },
+ "dependencies": {
+ "chalk": {
+ "version": "4.1.2",
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
+ "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
+ "optional": true,
+ "requires": {
+ "ansi-styles": "^4.1.0",
+ "supports-color": "^7.1.0"
+ }
+ },
+ "fs-extra": {
+ "version": "11.1.1",
+ "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-11.1.1.tgz",
+ "integrity": "sha512-MGIE4HOvQCeUCzmlHs0vXpih4ysz4wg9qiSAu6cd42lVwPbTM1TjV7RusoyQqMmk/95gdQZX72u+YW+c3eEpFQ==",
+ "optional": true,
+ "requires": {
+ "graceful-fs": "^4.2.0",
+ "jsonfile": "^6.0.1",
+ "universalify": "^2.0.0"
+ }
+ },
+ "has-flag": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
+ "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
+ "optional": true
+ },
+ "jsonfile": {
+ "version": "6.1.0",
+ "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz",
+ "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==",
+ "optional": true,
+ "requires": {
+ "graceful-fs": "^4.1.6",
+ "universalify": "^2.0.0"
+ }
+ },
+ "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==",
+ "optional": true,
+ "requires": {
+ "has-flag": "^4.0.0"
+ }
+ },
+ "universalify": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz",
+ "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==",
+ "optional": true
+ }
}
},
"@storybook/theming": {
- "version": "5.3.21",
+ "version": "7.0.8",
+ "resolved": "https://registry.npmjs.org/@storybook/theming/-/theming-7.0.8.tgz",
+ "integrity": "sha512-nU4j/QrobGxPgAg34ieIswkDITC/eHFJqzMfnyc3EhA8P60YNFWjzQlDlkDA5jG/6xiakihLWH2pzLhPDdME5g==",
"optional": true,
"requires": {
- "@emotion/core": "^10.0.20",
- "@emotion/styled": "^10.0.17",
- "@storybook/client-logger": "5.3.21",
- "core-js": "^3.0.1",
- "deep-object-diff": "^1.1.0",
- "emotion-theming": "^10.0.19",
- "global": "^4.3.2",
- "memoizerific": "^1.11.3",
- "polished": "^3.3.1",
- "prop-types": "^15.7.2",
- "resolve-from": "^5.0.0",
- "ts-dedent": "^1.1.0"
- },
- "dependencies": {
- "resolve-from": {
- "version": "5.0.0",
- "optional": true
- }
+ "@emotion/use-insertion-effect-with-fallbacks": "^1.0.0",
+ "@storybook/client-logger": "7.0.8",
+ "@storybook/global": "^5.0.0",
+ "memoizerific": "^1.11.3"
}
},
- "@storybook/ui": {
- "version": "5.3.21",
+ "@storybook/types": {
+ "version": "7.0.8",
+ "resolved": "https://registry.npmjs.org/@storybook/types/-/types-7.0.8.tgz",
+ "integrity": "sha512-x83vL/TzBlv21nHuP35c+z4AUjHSY9G7NpZLTZ/5REcuXbeIfhjGOAyeUHB4lXhPXxsOlq3wHiQippB7bSJeeQ==",
"optional": true,
"requires": {
- "@emotion/core": "^10.0.20",
- "@storybook/addons": "5.3.21",
- "@storybook/api": "5.3.21",
- "@storybook/channels": "5.3.21",
- "@storybook/client-logger": "5.3.21",
- "@storybook/components": "5.3.21",
- "@storybook/core-events": "5.3.21",
- "@storybook/router": "5.3.21",
- "@storybook/theming": "5.3.21",
- "copy-to-clipboard": "^3.0.8",
- "core-js": "^3.0.1",
- "core-js-pure": "^3.0.1",
- "emotion-theming": "^10.0.19",
- "fast-deep-equal": "^2.0.1",
- "fuse.js": "^3.4.6",
- "global": "^4.3.2",
- "lodash": "^4.17.15",
- "markdown-to-jsx": "^6.11.4",
- "memoizerific": "^1.11.3",
- "polished": "^3.3.1",
- "prop-types": "^15.7.2",
- "qs": "^6.6.0",
- "react": "^16.8.3",
- "react-dom": "^16.8.3",
- "react-draggable": "^4.0.3",
- "react-helmet-async": "^1.0.2",
- "react-hotkeys": "2.0.0",
- "react-sizeme": "^2.6.7",
- "regenerator-runtime": "^0.13.2",
- "resolve-from": "^5.0.0",
- "semver": "^6.0.0",
- "store2": "^2.7.1",
- "telejson": "^3.2.0",
- "util-deprecate": "^1.0.2"
- },
- "dependencies": {
- "fast-deep-equal": {
- "version": "2.0.1",
- "optional": true
- },
- "fuse.js": {
- "version": "3.6.1",
- "optional": true
- },
- "react": {
- "version": "16.14.0",
- "optional": true,
- "requires": {
- "loose-envify": "^1.1.0",
- "object-assign": "^4.1.1",
- "prop-types": "^15.6.2"
- }
- },
- "react-dom": {
- "version": "16.14.0",
- "optional": true,
- "requires": {
- "loose-envify": "^1.1.0",
- "object-assign": "^4.1.1",
- "prop-types": "^15.6.2",
- "scheduler": "^0.19.1"
- }
- },
- "regenerator-runtime": {
- "version": "0.13.7",
- "optional": true
- },
- "resolve-from": {
- "version": "5.0.0",
- "optional": true
- },
- "semver": {
- "version": "6.3.0",
- "optional": true
- }
+ "@storybook/channels": "7.0.8",
+ "@types/babel__core": "^7.0.0",
+ "@types/express": "^4.7.0",
+ "file-system-cache": "^2.0.0"
}
},
"@surma/rollup-plugin-off-main-thread": {
@@ -44173,110 +43820,6 @@
"json5": "^2.2.0",
"magic-string": "^0.25.0",
"string.prototype.matchall": "^4.0.6"
- },
- "dependencies": {
- "ejs": {
- "version": "3.1.8",
- "dev": true,
- "requires": {
- "jake": "^10.8.5"
- }
- }
- }
- },
- "@svgr/babel-plugin-add-jsx-attribute": {
- "version": "4.2.0",
- "optional": true
- },
- "@svgr/babel-plugin-remove-jsx-attribute": {
- "version": "4.2.0",
- "optional": true
- },
- "@svgr/babel-plugin-remove-jsx-empty-expression": {
- "version": "4.2.0",
- "optional": true
- },
- "@svgr/babel-plugin-replace-jsx-attribute-value": {
- "version": "4.2.0",
- "optional": true
- },
- "@svgr/babel-plugin-svg-dynamic-title": {
- "version": "4.3.3",
- "optional": true
- },
- "@svgr/babel-plugin-svg-em-dimensions": {
- "version": "4.2.0",
- "optional": true
- },
- "@svgr/babel-plugin-transform-react-native-svg": {
- "version": "4.2.0",
- "optional": true
- },
- "@svgr/babel-plugin-transform-svg-component": {
- "version": "4.2.0",
- "optional": true
- },
- "@svgr/babel-preset": {
- "version": "4.3.3",
- "optional": true,
- "requires": {
- "@svgr/babel-plugin-add-jsx-attribute": "^4.2.0",
- "@svgr/babel-plugin-remove-jsx-attribute": "^4.2.0",
- "@svgr/babel-plugin-remove-jsx-empty-expression": "^4.2.0",
- "@svgr/babel-plugin-replace-jsx-attribute-value": "^4.2.0",
- "@svgr/babel-plugin-svg-dynamic-title": "^4.3.3",
- "@svgr/babel-plugin-svg-em-dimensions": "^4.2.0",
- "@svgr/babel-plugin-transform-react-native-svg": "^4.2.0",
- "@svgr/babel-plugin-transform-svg-component": "^4.2.0"
- }
- },
- "@svgr/core": {
- "version": "4.3.3",
- "optional": true,
- "requires": {
- "@svgr/plugin-jsx": "^4.3.3",
- "camelcase": "^5.3.1",
- "cosmiconfig": "^5.2.1"
- }
- },
- "@svgr/hast-util-to-babel-ast": {
- "version": "4.3.2",
- "optional": true,
- "requires": {
- "@babel/types": "^7.4.4"
- }
- },
- "@svgr/plugin-jsx": {
- "version": "4.3.3",
- "optional": true,
- "requires": {
- "@babel/core": "^7.4.5",
- "@svgr/babel-preset": "^4.3.3",
- "@svgr/hast-util-to-babel-ast": "^4.3.2",
- "svg-parser": "^2.0.0"
- }
- },
- "@svgr/plugin-svgo": {
- "version": "4.3.1",
- "optional": true,
- "requires": {
- "cosmiconfig": "^5.2.1",
- "merge-deep": "^3.0.2",
- "svgo": "^1.2.2"
- }
- },
- "@svgr/webpack": {
- "version": "4.3.3",
- "optional": true,
- "requires": {
- "@babel/core": "^7.4.5",
- "@babel/plugin-transform-react-constant-elements": "^7.0.0",
- "@babel/preset-env": "^7.4.5",
- "@babel/preset-react": "^7.0.0",
- "@svgr/core": "^4.3.3",
- "@svgr/plugin-jsx": "^4.3.3",
- "@svgr/plugin-svgo": "^4.3.1",
- "loader-utils": "^1.2.3"
}
},
"@swc/core": {
@@ -44359,7 +43902,7 @@
},
"@szmarczak/http-timer": {
"version": "4.0.5",
- "dev": true,
+ "devOptional": true,
"requires": {
"defer-to-connect": "^2.0.0"
}
@@ -44588,9 +44131,19 @@
"@babel/types": "^7.3.0"
}
},
+ "@types/body-parser": {
+ "version": "1.19.2",
+ "resolved": "https://registry.npmjs.org/@types/body-parser/-/body-parser-1.19.2.tgz",
+ "integrity": "sha512-ALYone6pm6QmwZoAgeyNksccT9Q4AWZQ6PvfwR37GT6r6FWUPguq6sUmNGSMV2Wr761oQoBxwGGa6DR5o1DC9g==",
+ "optional": true,
+ "requires": {
+ "@types/connect": "*",
+ "@types/node": "*"
+ }
+ },
"@types/cacheable-request": {
"version": "6.0.1",
- "dev": true,
+ "devOptional": true,
"requires": {
"@types/http-cache-semantics": "*",
"@types/keyv": "*",
@@ -44609,6 +44162,15 @@
"version": "1.1.1",
"dev": true
},
+ "@types/connect": {
+ "version": "3.4.35",
+ "resolved": "https://registry.npmjs.org/@types/connect/-/connect-3.4.35.tgz",
+ "integrity": "sha512-cdeYyv4KWoEgpBISTxWvqYsVy444DOqehiF3fM3ne10AmJ62RSyNkUnxMJXHQWRQQX2eR94m5y1IZyDwBjV9FQ==",
+ "optional": true,
+ "requires": {
+ "@types/node": "*"
+ }
+ },
"@types/debug": {
"version": "4.1.7",
"resolved": "https://registry.npmjs.org/@types/debug/-/debug-4.1.7.tgz",
@@ -44618,6 +44180,36 @@
"@types/ms": "*"
}
},
+ "@types/detect-port": {
+ "version": "1.3.2",
+ "resolved": "https://registry.npmjs.org/@types/detect-port/-/detect-port-1.3.2.tgz",
+ "integrity": "sha512-xxgAGA2SAU4111QefXPSp5eGbDm/hW6zhvYl9IeEPZEry9F4d66QAHm5qpUXjb6IsevZV/7emAEx5MhP6O192g==",
+ "optional": true
+ },
+ "@types/doctrine": {
+ "version": "0.0.3",
+ "resolved": "https://registry.npmjs.org/@types/doctrine/-/doctrine-0.0.3.tgz",
+ "integrity": "sha512-w5jZ0ee+HaPOaX25X2/2oGR/7rgAQSYII7X7pp0m9KgBfMP7uKfMfTvcpl5Dj+eDBbpxKGiqE+flqDr6XTd2RA==",
+ "optional": true
+ },
+ "@types/ejs": {
+ "version": "3.1.2",
+ "resolved": "https://registry.npmjs.org/@types/ejs/-/ejs-3.1.2.tgz",
+ "integrity": "sha512-ZmiaE3wglXVWBM9fyVC17aGPkLo/UgaOjEiI2FXQfyczrCefORPxIe+2dVmnmk3zkVIbizjrlQzmPGhSYGXG5g==",
+ "optional": true
+ },
+ "@types/emscripten": {
+ "version": "1.39.6",
+ "resolved": "https://registry.npmjs.org/@types/emscripten/-/emscripten-1.39.6.tgz",
+ "integrity": "sha512-H90aoynNhhkQP6DRweEjJp5vfUVdIj7tdPLsu7pq89vODD/lcugKfZOsfgwpvM6XUewEp2N5dCg1Uf3Qe55Dcg==",
+ "optional": true
+ },
+ "@types/escodegen": {
+ "version": "0.0.6",
+ "resolved": "https://registry.npmjs.org/@types/escodegen/-/escodegen-0.0.6.tgz",
+ "integrity": "sha512-AjwI4MvWx3HAOaZqYsjKWyEObT9lcVV0Y0V8nXo6cXzN8ZiMxVhf6F3d/UNvXVGKrEzL/Dluc5p+y9GkzlTWig==",
+ "optional": true
+ },
"@types/eslint": {
"version": "8.4.1",
"optional": true,
@@ -44630,6 +44222,30 @@
"version": "0.0.39",
"devOptional": true
},
+ "@types/express": {
+ "version": "4.17.17",
+ "resolved": "https://registry.npmjs.org/@types/express/-/express-4.17.17.tgz",
+ "integrity": "sha512-Q4FmmuLGBG58btUnfS1c1r/NQdlp3DMfGDGig8WhfpA2YRUtEkxAjkZb0yvplJGYdF1fsQ81iMDcH24sSCNC/Q==",
+ "optional": true,
+ "requires": {
+ "@types/body-parser": "*",
+ "@types/express-serve-static-core": "^4.17.33",
+ "@types/qs": "*",
+ "@types/serve-static": "*"
+ }
+ },
+ "@types/express-serve-static-core": {
+ "version": "4.17.34",
+ "resolved": "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.17.34.tgz",
+ "integrity": "sha512-fvr49XlCGoUj2Pp730AItckfjat4WNb0lb3kfrLWffd+RLeoGAMsq7UOy04PAPtoL01uKwcp6u8nhzpgpDYr3w==",
+ "optional": true,
+ "requires": {
+ "@types/node": "*",
+ "@types/qs": "*",
+ "@types/range-parser": "*",
+ "@types/send": "*"
+ }
+ },
"@types/extract-files": {
"version": "8.1.1",
"dev": true
@@ -44637,6 +44253,12 @@
"@types/faker": {
"version": "5.5.1"
},
+ "@types/find-cache-dir": {
+ "version": "3.2.1",
+ "resolved": "https://registry.npmjs.org/@types/find-cache-dir/-/find-cache-dir-3.2.1.tgz",
+ "integrity": "sha512-frsJrz2t/CeGifcu/6uRo4b+SzAwT4NYCVPu1GN8IB9XTzrpPkGuV0tmh9mN+/L0PklAlsC3u5Fxt0ju00LXIw==",
+ "optional": true
+ },
"@types/fs-extra": {
"version": "9.0.13",
"dev": true,
@@ -44650,6 +44272,16 @@
"integrity": "sha512-T01/AdVa8o32oRho/p4FwhvHhHODJD3wiolWXkRRCjaeqR8FHocNGtT6pmFIGXFVy/aMDiQgwbnCKvGIRP1XIQ==",
"dev": true
},
+ "@types/glob": {
+ "version": "8.1.0",
+ "resolved": "https://registry.npmjs.org/@types/glob/-/glob-8.1.0.tgz",
+ "integrity": "sha512-IO+MJPVhoqz+28h1qLAcBEH2+xHMK6MTyHJc7MTnnYb6wsoLR29POVGJ7LycmVXIqyy/4/2ShP5sUwTXuOwb/w==",
+ "optional": true,
+ "requires": {
+ "@types/minimatch": "^5.1.2",
+ "@types/node": "*"
+ }
+ },
"@types/graceful-fs": {
"version": "4.1.6",
"devOptional": true,
@@ -44668,13 +44300,9 @@
"hoist-non-react-statics": "^3.3.0"
}
},
- "@types/html-minifier-terser": {
- "version": "5.1.2",
- "optional": true
- },
"@types/http-cache-semantics": {
"version": "4.0.0",
- "dev": true
+ "devOptional": true
},
"@types/is-ci": {
"version": "3.0.0",
@@ -44685,10 +44313,6 @@
"ci-info": "^3.1.0"
}
},
- "@types/is-function": {
- "version": "1.0.0",
- "optional": true
- },
"@types/istanbul-lib-coverage": {
"version": "2.0.3",
"devOptional": true
@@ -44804,7 +44428,7 @@
},
"@types/json5": {
"version": "0.0.29",
- "devOptional": true
+ "optional": true
},
"@types/jsonwebtoken": {
"version": "8.5.5",
@@ -44815,7 +44439,7 @@
},
"@types/keyv": {
"version": "3.1.1",
- "dev": true,
+ "devOptional": true,
"requires": {
"@types/node": "*"
}
@@ -44824,7 +44448,7 @@
"version": "4.14.191",
"resolved": "https://registry.npmjs.org/@types/lodash/-/lodash-4.14.191.tgz",
"integrity": "sha512-BdZ5BCCvho3EIXw6wUCXHe7rS53AIDPLE+JzwgT+OsJk53oBfbSmZZ7CX4VaRoN78N+TJpFi9QPlfIVNmJYWxQ==",
- "dev": true
+ "devOptional": true
},
"@types/lodash-es": {
"version": "4.17.6",
@@ -44835,6 +44459,30 @@
"@types/lodash": "*"
}
},
+ "@types/mdx": {
+ "version": "2.0.5",
+ "resolved": "https://registry.npmjs.org/@types/mdx/-/mdx-2.0.5.tgz",
+ "integrity": "sha512-76CqzuD6Q7LC+AtbPqrvD9AqsN0k8bsYo2bM2J8pmNldP1aIPAbzUQ7QbobyXL4eLr1wK5x8FZFe8eF/ubRuBg==",
+ "optional": true
+ },
+ "@types/mime": {
+ "version": "1.3.2",
+ "resolved": "https://registry.npmjs.org/@types/mime/-/mime-1.3.2.tgz",
+ "integrity": "sha512-YATxVxgRqNH6nHEIsvg6k2Boc1JHI9ZbH5iWFFv/MTkchz3b1ieGDa5T0a9RznNdI0KhVbdbWSN+KWWrQZRxTw==",
+ "optional": true
+ },
+ "@types/mime-types": {
+ "version": "2.1.1",
+ "resolved": "https://registry.npmjs.org/@types/mime-types/-/mime-types-2.1.1.tgz",
+ "integrity": "sha512-vXOTGVSLR2jMw440moWTC7H19iUyLtP3Z1YTj7cSsubOICinjMxFeb/V57v9QdyyPGbbWolUFSSmSiRSn94tFw==",
+ "optional": true
+ },
+ "@types/minimatch": {
+ "version": "5.1.2",
+ "resolved": "https://registry.npmjs.org/@types/minimatch/-/minimatch-5.1.2.tgz",
+ "integrity": "sha512-K0VQKziLUWkVKiRVrx4a40iPaxTUefQmjtkQofBkYRcoaaL/8rhwDWww9qWbrgicNOgnpIsMxyNIUM4+n6dUIA==",
+ "optional": true
+ },
"@types/minimist": {
"version": "1.2.2",
"resolved": "https://registry.npmjs.org/@types/minimist/-/minimist-1.2.2.tgz",
@@ -44850,14 +44498,39 @@
"@types/node": {
"version": "14.14.37"
},
+ "@types/node-fetch": {
+ "version": "2.6.3",
+ "resolved": "https://registry.npmjs.org/@types/node-fetch/-/node-fetch-2.6.3.tgz",
+ "integrity": "sha512-ETTL1mOEdq/sxUtgtOhKjyB2Irra4cjxksvcMUR5Zr4n+PxVhsCD9WS46oPbHL3et9Zde7CNRr+WUNlcHvsX+w==",
+ "optional": true,
+ "requires": {
+ "@types/node": "*",
+ "form-data": "^3.0.0"
+ },
+ "dependencies": {
+ "form-data": {
+ "version": "3.0.1",
+ "resolved": "https://registry.npmjs.org/form-data/-/form-data-3.0.1.tgz",
+ "integrity": "sha512-RHkBKtLWUVwd7SqRIvCZMEvAMoGUp0XU+seQiZejj0COz3RI3hWP4sCv3gZWWLjJTd7rGwcsF5eKZGii0r/hbg==",
+ "optional": true,
+ "requires": {
+ "asynckit": "^0.4.0",
+ "combined-stream": "^1.0.8",
+ "mime-types": "^2.1.12"
+ }
+ }
+ }
+ },
"@types/normalize-package-data": {
"version": "2.4.1",
"resolved": "https://registry.npmjs.org/@types/normalize-package-data/-/normalize-package-data-2.4.1.tgz",
"integrity": "sha512-Gj7cI7z+98M282Tqmp2K5EIsoouUEzbBJhQQzDE3jSIRk6r9gsz0oUokqIUR4u1R3dMHo0pDHM7sNOHyhulypw==",
- "dev": true
+ "devOptional": true
},
"@types/npmlog": {
- "version": "4.1.2",
+ "version": "4.1.4",
+ "resolved": "https://registry.npmjs.org/@types/npmlog/-/npmlog-4.1.4.tgz",
+ "integrity": "sha512-WKG4gTr8przEZBiJ5r3s8ZIAoMXNbOgQ+j/d5O4X3x6kZJRLNvyUJuUK/KoG3+8BaOHPhp2m7WC6JKKeovDSzQ==",
"optional": true
},
"@types/parse-json": {
@@ -44886,19 +44559,26 @@
"version": "2.7.2",
"optional": true
},
+ "@types/pretty-hrtime": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/@types/pretty-hrtime/-/pretty-hrtime-1.0.1.tgz",
+ "integrity": "sha512-VjID5MJb1eGKthz2qUerWT8+R4b9N+CHvGCzg9fn4kWZgaF9AhdYikQio3R7wV8YY1NsQKPaCwKz1Yff+aHNUQ==",
+ "optional": true
+ },
"@types/prop-types": {
"version": "15.7.3"
},
- "@types/q": {
- "version": "1.5.4",
+ "@types/qs": {
+ "version": "6.9.7",
+ "resolved": "https://registry.npmjs.org/@types/qs/-/qs-6.9.7.tgz",
+ "integrity": "sha512-FGa1F62FT09qcrueBA6qYTrJPVDzah9a+493+o2PCXsesWHIn27G98TsSMs3WPNbZIEj4+VJf6saSFpvD+3Zsw==",
"optional": true
},
- "@types/reach__router": {
- "version": "1.3.7",
- "optional": true,
- "requires": {
- "@types/react": "*"
- }
+ "@types/range-parser": {
+ "version": "1.2.4",
+ "resolved": "https://registry.npmjs.org/@types/range-parser/-/range-parser-1.2.4.tgz",
+ "integrity": "sha512-EEhsLsD6UsDM1yFhAvy0Cjr6VwmpMWqFBCb9w07wVugF7w9nfajxLuVmngTIpgS6svCnm6Vaw+MZhoDCKnOfsw==",
+ "optional": true
},
"@types/react": {
"version": "17.0.50",
@@ -44976,20 +44656,6 @@
"react-dnd": "^11.1.3"
}
},
- "@types/react-syntax-highlighter": {
- "version": "11.0.4",
- "optional": true,
- "requires": {
- "@types/react": "*"
- }
- },
- "@types/react-textarea-autosize": {
- "version": "4.3.5",
- "optional": true,
- "requires": {
- "@types/react": "*"
- }
- },
"@types/react-transition-group": {
"version": "4.4.1",
"requires": {
@@ -45013,7 +44679,7 @@
},
"@types/responselike": {
"version": "1.0.0",
- "dev": true,
+ "devOptional": true,
"requires": {
"@types/node": "*"
}
@@ -45023,7 +44689,27 @@
},
"@types/semver": {
"version": "7.3.13",
- "dev": true
+ "devOptional": true
+ },
+ "@types/send": {
+ "version": "0.17.1",
+ "resolved": "https://registry.npmjs.org/@types/send/-/send-0.17.1.tgz",
+ "integrity": "sha512-Cwo8LE/0rnvX7kIIa3QHCkcuF21c05Ayb0ZfxPiv0W8VRiZiNW/WuRupHKpqqGVGf7SUA44QSOUKaEd9lIrd/Q==",
+ "optional": true,
+ "requires": {
+ "@types/mime": "^1",
+ "@types/node": "*"
+ }
+ },
+ "@types/serve-static": {
+ "version": "1.15.1",
+ "resolved": "https://registry.npmjs.org/@types/serve-static/-/serve-static-1.15.1.tgz",
+ "integrity": "sha512-NUo5XNiAdULrJENtJXZZ3fHtfMolzZwczzBbnAeBbqBwG+LaG6YaJtuwzwGSQZ2wsCrxjEhNNjAkKigy3n8teQ==",
+ "optional": true,
+ "requires": {
+ "@types/mime": "*",
+ "@types/node": "*"
+ }
},
"@types/setup-polly-jest": {
"version": "0.5.1",
@@ -45040,26 +44726,10 @@
"version": "2.3.3",
"optional": true
},
- "@types/source-list-map": {
- "version": "0.1.2",
- "optional": true
- },
"@types/stack-utils": {
"version": "2.0.1",
"optional": true
},
- "@types/storybook__react": {
- "version": "4.0.2",
- "optional": true,
- "requires": {
- "@types/react": "*",
- "@types/webpack-env": "*"
- }
- },
- "@types/tapable": {
- "version": "1.0.8",
- "optional": true
- },
"@types/testing-library__jest-dom": {
"version": "5.14.5",
"optional": true,
@@ -45067,22 +44737,21 @@
"@types/jest": "*"
}
},
+ "@types/treeify": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/@types/treeify/-/treeify-1.0.0.tgz",
+ "integrity": "sha512-ONpcZAEYlbPx4EtJwfTyCDQJGUpKf4sEcuySdCVjK5Fj/3vHp5HII1fqa1/+qrsLnpYELCQTfVW/awsGJePoIg==",
+ "optional": true
+ },
"@types/trusted-types": {
"version": "2.0.2",
"dev": true
},
- "@types/uglify-js": {
- "version": "3.17.1",
- "optional": true,
- "requires": {
- "source-map": "^0.6.1"
- },
- "dependencies": {
- "source-map": {
- "version": "0.6.1",
- "optional": true
- }
- }
+ "@types/unist": {
+ "version": "2.0.6",
+ "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.6.tgz",
+ "integrity": "sha512-PBjIUxZHOuj0R15/xuwJYjFi+KZdNFrehocChv4g5hu6aFroHue8m0lBP0POdK2nKzbw0cgV1mws8+V/JAcEkQ==",
+ "optional": true
},
"@types/url-join": {
"version": "4.0.1",
@@ -45094,51 +44763,12 @@
"version": "0.5.1",
"dev": true
},
- "@types/webpack": {
- "version": "4.41.33",
- "optional": true,
- "requires": {
- "@types/node": "*",
- "@types/tapable": "^1",
- "@types/uglify-js": "*",
- "@types/webpack-sources": "*",
- "anymatch": "^3.0.0",
- "source-map": "^0.6.0"
- },
- "dependencies": {
- "anymatch": {
- "version": "3.1.2",
- "optional": true,
- "requires": {
- "normalize-path": "^3.0.0",
- "picomatch": "^2.0.4"
- }
- },
- "source-map": {
- "version": "0.6.1",
- "optional": true
- }
- }
- },
"@types/webpack-env": {
- "version": "1.16.0",
+ "version": "1.18.0",
+ "resolved": "https://registry.npmjs.org/@types/webpack-env/-/webpack-env-1.18.0.tgz",
+ "integrity": "sha512-56/MAlX5WMsPVbOg7tAxnYvNYMMWr/QJiIp6BxVSW3JJXUVzzOn64qW8TzQyMSqSUFM2+PVI4aUHcHOzIz/1tg==",
"devOptional": true
},
- "@types/webpack-sources": {
- "version": "3.2.0",
- "optional": true,
- "requires": {
- "@types/node": "*",
- "@types/source-list-map": "*",
- "source-map": "^0.7.3"
- },
- "dependencies": {
- "source-map": {
- "version": "0.7.4",
- "optional": true
- }
- }
- },
"@types/websocket": {
"version": "1.0.4",
"dev": true,
@@ -45463,6 +45093,30 @@
"resolved": "https://registry.npmjs.org/@vanilla-extract/css-utils/-/css-utils-0.1.3.tgz",
"integrity": "sha512-PZAcHROlgtCUGI2y0JntdNwvPwCNyeVnkQu6KTYKdmxBbK3w72XJUmLFYapfaFfgami4I9CTLnrJTPdtmS3gpw=="
},
+ "@vitejs/plugin-react": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/@vitejs/plugin-react/-/plugin-react-3.1.0.tgz",
+ "integrity": "sha512-AfgcRL8ZBhAlc3BFdigClmTUMISmmzHn7sB2h9U1odvc5U/MjWXsAaz18b/WoppUTDBzxOJwo2VdClfUcItu9g==",
+ "optional": true,
+ "requires": {
+ "@babel/core": "^7.20.12",
+ "@babel/plugin-transform-react-jsx-self": "^7.18.6",
+ "@babel/plugin-transform-react-jsx-source": "^7.19.6",
+ "magic-string": "^0.27.0",
+ "react-refresh": "^0.14.0"
+ },
+ "dependencies": {
+ "magic-string": {
+ "version": "0.27.0",
+ "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.27.0.tgz",
+ "integrity": "sha512-8UnnX2PeRAPZuN12svgR9j7M1uWMovg/CEnIwIG0LFkXSJJe4PdfUGiTGl8V9bsBHFUtfVINcSyYxd7q+kx9fA==",
+ "optional": true,
+ "requires": {
+ "@jridgewell/sourcemap-codec": "^1.4.13"
+ }
+ }
+ }
+ },
"@vitejs/plugin-react-swc": {
"version": "3.2.0",
"resolved": "https://registry.npmjs.org/@vitejs/plugin-react-swc/-/plugin-react-swc-3.2.0.tgz",
@@ -45596,145 +45250,6 @@
"version": "3.2.31",
"dev": true
},
- "@webassemblyjs/ast": {
- "version": "1.9.0",
- "optional": true,
- "requires": {
- "@webassemblyjs/helper-module-context": "1.9.0",
- "@webassemblyjs/helper-wasm-bytecode": "1.9.0",
- "@webassemblyjs/wast-parser": "1.9.0"
- }
- },
- "@webassemblyjs/floating-point-hex-parser": {
- "version": "1.9.0",
- "optional": true
- },
- "@webassemblyjs/helper-api-error": {
- "version": "1.9.0",
- "optional": true
- },
- "@webassemblyjs/helper-buffer": {
- "version": "1.9.0",
- "optional": true
- },
- "@webassemblyjs/helper-code-frame": {
- "version": "1.9.0",
- "optional": true,
- "requires": {
- "@webassemblyjs/wast-printer": "1.9.0"
- }
- },
- "@webassemblyjs/helper-fsm": {
- "version": "1.9.0",
- "optional": true
- },
- "@webassemblyjs/helper-module-context": {
- "version": "1.9.0",
- "optional": true,
- "requires": {
- "@webassemblyjs/ast": "1.9.0"
- }
- },
- "@webassemblyjs/helper-wasm-bytecode": {
- "version": "1.9.0",
- "optional": true
- },
- "@webassemblyjs/helper-wasm-section": {
- "version": "1.9.0",
- "optional": true,
- "requires": {
- "@webassemblyjs/ast": "1.9.0",
- "@webassemblyjs/helper-buffer": "1.9.0",
- "@webassemblyjs/helper-wasm-bytecode": "1.9.0",
- "@webassemblyjs/wasm-gen": "1.9.0"
- }
- },
- "@webassemblyjs/ieee754": {
- "version": "1.9.0",
- "optional": true,
- "requires": {
- "@xtuc/ieee754": "^1.2.0"
- }
- },
- "@webassemblyjs/leb128": {
- "version": "1.9.0",
- "optional": true,
- "requires": {
- "@xtuc/long": "4.2.2"
- }
- },
- "@webassemblyjs/utf8": {
- "version": "1.9.0",
- "optional": true
- },
- "@webassemblyjs/wasm-edit": {
- "version": "1.9.0",
- "optional": true,
- "requires": {
- "@webassemblyjs/ast": "1.9.0",
- "@webassemblyjs/helper-buffer": "1.9.0",
- "@webassemblyjs/helper-wasm-bytecode": "1.9.0",
- "@webassemblyjs/helper-wasm-section": "1.9.0",
- "@webassemblyjs/wasm-gen": "1.9.0",
- "@webassemblyjs/wasm-opt": "1.9.0",
- "@webassemblyjs/wasm-parser": "1.9.0",
- "@webassemblyjs/wast-printer": "1.9.0"
- }
- },
- "@webassemblyjs/wasm-gen": {
- "version": "1.9.0",
- "optional": true,
- "requires": {
- "@webassemblyjs/ast": "1.9.0",
- "@webassemblyjs/helper-wasm-bytecode": "1.9.0",
- "@webassemblyjs/ieee754": "1.9.0",
- "@webassemblyjs/leb128": "1.9.0",
- "@webassemblyjs/utf8": "1.9.0"
- }
- },
- "@webassemblyjs/wasm-opt": {
- "version": "1.9.0",
- "optional": true,
- "requires": {
- "@webassemblyjs/ast": "1.9.0",
- "@webassemblyjs/helper-buffer": "1.9.0",
- "@webassemblyjs/wasm-gen": "1.9.0",
- "@webassemblyjs/wasm-parser": "1.9.0"
- }
- },
- "@webassemblyjs/wasm-parser": {
- "version": "1.9.0",
- "optional": true,
- "requires": {
- "@webassemblyjs/ast": "1.9.0",
- "@webassemblyjs/helper-api-error": "1.9.0",
- "@webassemblyjs/helper-wasm-bytecode": "1.9.0",
- "@webassemblyjs/ieee754": "1.9.0",
- "@webassemblyjs/leb128": "1.9.0",
- "@webassemblyjs/utf8": "1.9.0"
- }
- },
- "@webassemblyjs/wast-parser": {
- "version": "1.9.0",
- "optional": true,
- "requires": {
- "@webassemblyjs/ast": "1.9.0",
- "@webassemblyjs/floating-point-hex-parser": "1.9.0",
- "@webassemblyjs/helper-api-error": "1.9.0",
- "@webassemblyjs/helper-code-frame": "1.9.0",
- "@webassemblyjs/helper-fsm": "1.9.0",
- "@xtuc/long": "4.2.2"
- }
- },
- "@webassemblyjs/wast-printer": {
- "version": "1.9.0",
- "optional": true,
- "requires": {
- "@webassemblyjs/ast": "1.9.0",
- "@webassemblyjs/wast-parser": "1.9.0",
- "@xtuc/long": "4.2.2"
- }
- },
"@wry/context": {
"version": "0.6.1",
"requires": {
@@ -45756,13 +45271,219 @@
"@xstate/fsm": {
"version": "1.4.0"
},
- "@xtuc/ieee754": {
- "version": "1.2.0",
+ "@yarnpkg/core": {
+ "version": "2.4.0",
+ "resolved": "https://registry.npmjs.org/@yarnpkg/core/-/core-2.4.0.tgz",
+ "integrity": "sha512-FYjcPNTfDfMKLFafQPt49EY28jnYC82Z2S7oMwLPUh144BL8v8YXzb4aCnFyi5nFC5h2kcrJfZh7+Pm/qvCqGw==",
+ "optional": true,
+ "requires": {
+ "@arcanis/slice-ansi": "^1.0.2",
+ "@types/semver": "^7.1.0",
+ "@types/treeify": "^1.0.0",
+ "@yarnpkg/fslib": "^2.4.0",
+ "@yarnpkg/json-proxy": "^2.1.0",
+ "@yarnpkg/libzip": "^2.2.1",
+ "@yarnpkg/parsers": "^2.3.0",
+ "@yarnpkg/pnp": "^2.3.2",
+ "@yarnpkg/shell": "^2.4.1",
+ "binjumper": "^0.1.4",
+ "camelcase": "^5.3.1",
+ "chalk": "^3.0.0",
+ "ci-info": "^2.0.0",
+ "clipanion": "^2.6.2",
+ "cross-spawn": "7.0.3",
+ "diff": "^4.0.1",
+ "globby": "^11.0.1",
+ "got": "^11.7.0",
+ "json-file-plus": "^3.3.1",
+ "lodash": "^4.17.15",
+ "micromatch": "^4.0.2",
+ "mkdirp": "^0.5.1",
+ "p-limit": "^2.2.0",
+ "pluralize": "^7.0.0",
+ "pretty-bytes": "^5.1.0",
+ "semver": "^7.1.2",
+ "stream-to-promise": "^2.2.0",
+ "tar-stream": "^2.0.1",
+ "treeify": "^1.1.0",
+ "tslib": "^1.13.0",
+ "tunnel": "^0.0.6"
+ },
+ "dependencies": {
+ "chalk": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz",
+ "integrity": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==",
+ "optional": true,
+ "requires": {
+ "ansi-styles": "^4.1.0",
+ "supports-color": "^7.1.0"
+ }
+ },
+ "ci-info": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-2.0.0.tgz",
+ "integrity": "sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ==",
+ "optional": true
+ },
+ "has-flag": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
+ "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
+ "optional": true
+ },
+ "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==",
+ "optional": true,
+ "requires": {
+ "has-flag": "^4.0.0"
+ }
+ },
+ "tslib": {
+ "version": "1.14.1",
+ "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz",
+ "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==",
+ "optional": true
+ }
+ }
+ },
+ "@yarnpkg/esbuild-plugin-pnp": {
+ "version": "3.0.0-rc.15",
+ "resolved": "https://registry.npmjs.org/@yarnpkg/esbuild-plugin-pnp/-/esbuild-plugin-pnp-3.0.0-rc.15.tgz",
+ "integrity": "sha512-kYzDJO5CA9sy+on/s2aIW0411AklfCi8Ck/4QDivOqsMKpStZA2SsR+X27VTggGwpStWaLrjJcDcdDMowtG8MA==",
+ "optional": true,
+ "requires": {
+ "tslib": "^2.4.0"
+ }
+ },
+ "@yarnpkg/fslib": {
+ "version": "2.10.3",
+ "resolved": "https://registry.npmjs.org/@yarnpkg/fslib/-/fslib-2.10.3.tgz",
+ "integrity": "sha512-41H+Ga78xT9sHvWLlFOZLIhtU6mTGZ20pZ29EiZa97vnxdohJD2AF42rCoAoWfqUz486xY6fhjMH+DYEM9r14A==",
+ "optional": true,
+ "requires": {
+ "@yarnpkg/libzip": "^2.3.0",
+ "tslib": "^1.13.0"
+ },
+ "dependencies": {
+ "tslib": {
+ "version": "1.14.1",
+ "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz",
+ "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==",
+ "optional": true
+ }
+ }
+ },
+ "@yarnpkg/json-proxy": {
+ "version": "2.1.1",
+ "resolved": "https://registry.npmjs.org/@yarnpkg/json-proxy/-/json-proxy-2.1.1.tgz",
+ "integrity": "sha512-meUiCAgCYpXTH1qJfqfz+dX013ohW9p2dKfwIzUYAFutH+lsz1eHPBIk72cuCV84adh9gX6j66ekBKH/bIhCQw==",
+ "optional": true,
+ "requires": {
+ "@yarnpkg/fslib": "^2.5.0",
+ "tslib": "^1.13.0"
+ },
+ "dependencies": {
+ "tslib": {
+ "version": "1.14.1",
+ "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz",
+ "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==",
+ "optional": true
+ }
+ }
+ },
+ "@yarnpkg/libzip": {
+ "version": "2.3.0",
+ "resolved": "https://registry.npmjs.org/@yarnpkg/libzip/-/libzip-2.3.0.tgz",
+ "integrity": "sha512-6xm38yGVIa6mKm/DUCF2zFFJhERh/QWp1ufm4cNUvxsONBmfPg8uZ9pZBdOmF6qFGr/HlT6ABBkCSx/dlEtvWg==",
+ "optional": true,
+ "requires": {
+ "@types/emscripten": "^1.39.6",
+ "tslib": "^1.13.0"
+ },
+ "dependencies": {
+ "tslib": {
+ "version": "1.14.1",
+ "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz",
+ "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==",
+ "optional": true
+ }
+ }
+ },
+ "@yarnpkg/lockfile": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/@yarnpkg/lockfile/-/lockfile-1.1.0.tgz",
+ "integrity": "sha512-GpSwvyXOcOOlV70vbnzjj4fW5xW/FdUF6nQEt1ENy7m4ZCczi1+/buVUPAqmGfqznsORNFzUMjctTIp8a9tuCQ==",
"optional": true
},
- "@xtuc/long": {
- "version": "4.2.2",
- "optional": true
+ "@yarnpkg/parsers": {
+ "version": "2.5.1",
+ "resolved": "https://registry.npmjs.org/@yarnpkg/parsers/-/parsers-2.5.1.tgz",
+ "integrity": "sha512-KtYN6Ez3x753vPF9rETxNTPnPjeaHY11Exlpqb4eTII7WRlnGiZ5rvvQBau4R20Ik5KBv+vS3EJEcHyCunwzzw==",
+ "optional": true,
+ "requires": {
+ "js-yaml": "^3.10.0",
+ "tslib": "^1.13.0"
+ },
+ "dependencies": {
+ "tslib": {
+ "version": "1.14.1",
+ "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz",
+ "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==",
+ "optional": true
+ }
+ }
+ },
+ "@yarnpkg/pnp": {
+ "version": "2.3.2",
+ "resolved": "https://registry.npmjs.org/@yarnpkg/pnp/-/pnp-2.3.2.tgz",
+ "integrity": "sha512-JdwHu1WBCISqJEhIwx6Hbpe8MYsYbkGMxoxolkDiAeJ9IGEe08mQcbX1YmUDV1ozSWlm9JZE90nMylcDsXRFpA==",
+ "optional": true,
+ "requires": {
+ "@types/node": "^13.7.0",
+ "@yarnpkg/fslib": "^2.4.0",
+ "tslib": "^1.13.0"
+ },
+ "dependencies": {
+ "@types/node": {
+ "version": "13.13.52",
+ "resolved": "https://registry.npmjs.org/@types/node/-/node-13.13.52.tgz",
+ "integrity": "sha512-s3nugnZumCC//n4moGGe6tkNMyYEdaDBitVjwPxXmR5lnMG5dHePinH2EdxkG3Rh1ghFHHixAG4NJhpJW1rthQ==",
+ "optional": true
+ },
+ "tslib": {
+ "version": "1.14.1",
+ "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz",
+ "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==",
+ "optional": true
+ }
+ }
+ },
+ "@yarnpkg/shell": {
+ "version": "2.4.1",
+ "resolved": "https://registry.npmjs.org/@yarnpkg/shell/-/shell-2.4.1.tgz",
+ "integrity": "sha512-oNNJkH8ZI5uwu0dMkJf737yMSY1WXn9gp55DqSA5wAOhKvV5DJTXFETxkVgBQhO6Bow9tMGSpvowTMD/oAW/9g==",
+ "optional": true,
+ "requires": {
+ "@yarnpkg/fslib": "^2.4.0",
+ "@yarnpkg/parsers": "^2.3.0",
+ "clipanion": "^2.6.2",
+ "cross-spawn": "7.0.3",
+ "fast-glob": "^3.2.2",
+ "micromatch": "^4.0.2",
+ "stream-buffers": "^3.0.2",
+ "tslib": "^1.13.0"
+ },
+ "dependencies": {
+ "tslib": {
+ "version": "1.14.1",
+ "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz",
+ "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==",
+ "optional": true
+ }
+ }
},
"abab": {
"version": "2.0.6",
@@ -45786,7 +45507,9 @@
}
},
"acorn": {
- "version": "6.4.2",
+ "version": "7.4.1",
+ "resolved": "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz",
+ "integrity": "sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==",
"optional": true
},
"acorn-globals": {
@@ -45795,12 +45518,6 @@
"requires": {
"acorn": "^7.1.1",
"acorn-walk": "^7.1.1"
- },
- "dependencies": {
- "acorn": {
- "version": "7.4.1",
- "optional": true
- }
}
},
"acorn-jsx": {
@@ -45835,7 +45552,9 @@
"optional": true
},
"address": {
- "version": "1.1.2",
+ "version": "1.2.2",
+ "resolved": "https://registry.npmjs.org/address/-/address-1.2.2.tgz",
+ "integrity": "sha512-4B/qKCfeE/ODUaAUpSwfzazo5x29WD4r3vXiWsB7I2mSDAihwEqKO+g8GELZUQSSAo5e1XTYh3ZVfLyxBc12nA==",
"optional": true
},
"agent-base": {
@@ -45859,29 +45578,6 @@
}
}
},
- "airbnb-js-shims": {
- "version": "2.2.1",
- "optional": true,
- "requires": {
- "array-includes": "^3.0.3",
- "array.prototype.flat": "^1.2.1",
- "array.prototype.flatmap": "^1.2.1",
- "es5-shim": "^4.5.13",
- "es6-shim": "^0.35.5",
- "function.prototype.name": "^1.1.0",
- "globalthis": "^1.0.0",
- "object.entries": "^1.1.0",
- "object.fromentries": "^2.0.0 || ^1.0.0",
- "object.getownpropertydescriptors": "^2.0.3",
- "object.values": "^1.1.0",
- "promise.allsettled": "^1.0.0",
- "promise.prototype.finally": "^3.1.0",
- "string.prototype.matchall": "^4.0.0 || ^3.0.1",
- "string.prototype.padend": "^3.0.0",
- "string.prototype.padstart": "^3.0.0",
- "symbol.prototype.description": "^1.0.0"
- }
- },
"ajv": {
"version": "6.12.6",
"devOptional": true,
@@ -45892,13 +45588,9 @@
"uri-js": "^4.2.2"
}
},
- "ajv-errors": {
- "version": "1.0.1",
- "optional": true
- },
"ajv-keywords": {
"version": "3.5.2",
- "devOptional": true
+ "dev": true
},
"ansi-align": {
"version": "3.0.0",
@@ -45922,10 +45614,6 @@
}
}
},
- "ansi-colors": {
- "version": "3.2.4",
- "optional": true
- },
"ansi-escapes": {
"version": "4.3.2",
"devOptional": true,
@@ -45933,10 +45621,6 @@
"type-fest": "^0.21.3"
}
},
- "ansi-html": {
- "version": "0.0.7",
- "optional": true
- },
"ansi-regex": {
"version": "5.0.1"
},
@@ -45946,125 +45630,24 @@
"color-convert": "^2.0.1"
}
},
- "ansi-to-html": {
- "version": "0.6.14",
- "optional": true,
- "requires": {
- "entities": "^1.1.2"
- },
- "dependencies": {
- "entities": {
- "version": "1.1.2",
- "optional": true
- }
- }
- },
"any-observable": {
"version": "0.3.0",
"dev": true
},
+ "any-promise": {
+ "version": "1.3.0",
+ "resolved": "https://registry.npmjs.org/any-promise/-/any-promise-1.3.0.tgz",
+ "integrity": "sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==",
+ "optional": true
+ },
"anymatch": {
- "version": "2.0.0",
- "optional": true,
+ "version": "3.1.3",
+ "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz",
+ "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==",
+ "devOptional": true,
"requires": {
- "micromatch": "^3.1.4",
- "normalize-path": "^2.1.1"
- },
- "dependencies": {
- "braces": {
- "version": "2.3.2",
- "optional": true,
- "requires": {
- "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.2",
- "snapdragon": "^0.8.1",
- "snapdragon-node": "^2.0.1",
- "split-string": "^3.0.2",
- "to-regex": "^3.0.1"
- },
- "dependencies": {
- "extend-shallow": {
- "version": "2.0.1",
- "optional": true,
- "requires": {
- "is-extendable": "^0.1.0"
- }
- }
- }
- },
- "fill-range": {
- "version": "4.0.0",
- "optional": true,
- "requires": {
- "extend-shallow": "^2.0.1",
- "is-number": "^3.0.0",
- "repeat-string": "^1.6.1",
- "to-regex-range": "^2.1.0"
- },
- "dependencies": {
- "extend-shallow": {
- "version": "2.0.1",
- "optional": true,
- "requires": {
- "is-extendable": "^0.1.0"
- }
- }
- }
- },
- "is-number": {
- "version": "3.0.0",
- "optional": true,
- "requires": {
- "kind-of": "^3.0.2"
- },
- "dependencies": {
- "kind-of": {
- "version": "3.2.2",
- "optional": true,
- "requires": {
- "is-buffer": "^1.1.5"
- }
- }
- }
- },
- "micromatch": {
- "version": "3.1.10",
- "optional": true,
- "requires": {
- "arr-diff": "^4.0.0",
- "array-unique": "^0.3.2",
- "braces": "^2.3.1",
- "define-property": "^2.0.2",
- "extend-shallow": "^3.0.2",
- "extglob": "^2.0.4",
- "fragment-cache": "^0.2.1",
- "kind-of": "^6.0.2",
- "nanomatch": "^1.2.9",
- "object.pick": "^1.3.0",
- "regex-not": "^1.0.0",
- "snapdragon": "^0.8.1",
- "to-regex": "^3.0.2"
- }
- },
- "normalize-path": {
- "version": "2.1.1",
- "optional": true,
- "requires": {
- "remove-trailing-separator": "^1.0.1"
- }
- },
- "to-regex-range": {
- "version": "2.1.1",
- "optional": true,
- "requires": {
- "is-number": "^3.0.0",
- "repeat-string": "^1.6.1"
- }
- }
+ "normalize-path": "^3.0.0",
+ "picomatch": "^2.0.4"
}
},
"apollo-upload-client": {
@@ -46075,10 +45658,14 @@
},
"app-root-dir": {
"version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/app-root-dir/-/app-root-dir-1.0.2.tgz",
+ "integrity": "sha512-jlpIfsOoNoafl92Sz//64uQHGSyMrD2vYG5d8o2a4qGvyNCvXur7bzIsWtAC/6flI2RYAp3kv8rsfBtaLm7w0g==",
"optional": true
},
"aproba": {
- "version": "1.2.0",
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/aproba/-/aproba-2.0.0.tgz",
+ "integrity": "sha512-lYe4Gx7QT+MKGbDsA+Z+he/Wtef0BiwDOlK/XkBrdfsh9J/jPPXbX0tE9x9cl27Tmu5gg3QUbUrQYa/y+KOHPQ==",
"optional": true
},
"arch": {
@@ -46086,11 +45673,13 @@
"optional": true
},
"are-we-there-yet": {
- "version": "1.1.5",
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-2.0.0.tgz",
+ "integrity": "sha512-Ci/qENmwHnsYo9xKIcUJN5LeDKdJ6R1Z1j9V/J5wyq8nh/mYPEpIKJbBZXtZjG04HiK7zV/p6Vs9952MrMeUIw==",
"optional": true,
"requires": {
"delegates": "^1.0.0",
- "readable-stream": "^2.0.6"
+ "readable-stream": "^3.6.0"
}
},
"arg": {
@@ -46151,15 +45740,15 @@
},
"arr-diff": {
"version": "4.0.0",
- "devOptional": true
+ "dev": true
},
"arr-flatten": {
"version": "1.1.0",
- "devOptional": true
+ "dev": true
},
"arr-union": {
"version": "3.1.0",
- "devOptional": true
+ "dev": true
},
"array-find-index": {
"version": "1.0.2",
@@ -46183,13 +45772,9 @@
"array-union": {
"version": "2.1.0"
},
- "array-uniq": {
- "version": "1.0.3",
- "optional": true
- },
"array-unique": {
"version": "0.3.2",
- "devOptional": true
+ "dev": true
},
"array.prototype.flat": {
"version": "1.2.4",
@@ -46200,34 +45785,13 @@
"es-abstract": "^1.18.0-next.1"
}
},
- "array.prototype.flatmap": {
- "version": "1.2.4",
- "optional": true,
- "requires": {
- "call-bind": "^1.0.0",
- "define-properties": "^1.1.3",
- "es-abstract": "^1.18.0-next.1",
- "function-bind": "^1.1.1"
- }
- },
- "array.prototype.map": {
- "version": "1.0.3",
- "optional": true,
- "requires": {
- "call-bind": "^1.0.0",
- "define-properties": "^1.1.3",
- "es-abstract": "^1.18.0-next.1",
- "es-array-method-boxes-properly": "^1.0.0",
- "is-string": "^1.0.5"
- }
- },
"arrify": {
"version": "1.0.1",
- "devOptional": true
+ "dev": true
},
"asap": {
"version": "2.0.6",
- "dev": true
+ "devOptional": true
},
"asn1": {
"version": "0.2.4",
@@ -46236,41 +45800,16 @@
"safer-buffer": "~2.1.0"
}
},
- "asn1.js": {
- "version": "5.4.1",
- "optional": true,
- "requires": {
- "bn.js": "^4.0.0",
- "inherits": "^2.0.1",
- "minimalistic-assert": "^1.0.0",
- "safer-buffer": "^2.1.0"
- },
- "dependencies": {
- "bn.js": {
- "version": "4.12.0",
- "optional": true
- }
- }
- },
"assert": {
- "version": "1.5.0",
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/assert/-/assert-2.0.0.tgz",
+ "integrity": "sha512-se5Cd+js9dXJnu6Ag2JFc00t+HmHOen+8Q+L7O9zI0PqQXr20uk2J0XQqMxZEeo5U50o8Nvmmx7dZrl+Ufr35A==",
"optional": true,
"requires": {
- "object-assign": "^4.1.1",
- "util": "0.10.3"
- },
- "dependencies": {
- "inherits": {
- "version": "2.0.1",
- "optional": true
- },
- "util": {
- "version": "0.10.3",
- "optional": true,
- "requires": {
- "inherits": "2.0.1"
- }
- }
+ "es6-object-assign": "^1.1.0",
+ "is-nan": "^1.2.1",
+ "object-is": "^1.0.1",
+ "util": "^0.12.0"
}
},
"assert-plus": {
@@ -46279,7 +45818,7 @@
},
"assign-symbols": {
"version": "1.0.0",
- "devOptional": true
+ "dev": true
},
"ast-types": {
"version": "0.14.2",
@@ -46292,8 +45831,10 @@
"version": "3.2.3",
"devOptional": true
},
- "async-each": {
- "version": "1.0.3",
+ "async-limiter": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/async-limiter/-/async-limiter-1.0.1.tgz",
+ "integrity": "sha512-csOlWGAcRFJaI6m+F2WKdnMKr4HhdhFVBk0H/QbJFMCr+uO2kwohwXQPxw/9OCxp05r5ghVBFSyioixx3gfkNQ==",
"optional": true
},
"async-retry": {
@@ -46313,7 +45854,7 @@
},
"atob": {
"version": "2.1.2",
- "devOptional": true
+ "dev": true
},
"attr-accept": {
"version": "2.2.2"
@@ -46322,19 +45863,6 @@
"version": "4.0.0",
"dev": true
},
- "autoprefixer": {
- "version": "9.8.6",
- "optional": true,
- "requires": {
- "browserslist": "^4.12.0",
- "caniuse-lite": "^1.0.30001109",
- "colorette": "^1.2.1",
- "normalize-range": "^0.1.2",
- "num2fraction": "^1.2.2",
- "postcss": "^7.0.32",
- "postcss-value-parser": "^4.1.0"
- }
- },
"available-typed-arrays": {
"version": "1.0.5",
"optional": true
@@ -46360,82 +45888,9 @@
}
}
},
- "babel-code-frame": {
- "version": "6.26.0",
- "devOptional": true,
- "requires": {
- "chalk": "^1.1.3",
- "esutils": "^2.0.2",
- "js-tokens": "^3.0.2"
- },
- "dependencies": {
- "ansi-regex": {
- "version": "2.1.1",
- "devOptional": true
- },
- "ansi-styles": {
- "version": "2.2.1",
- "devOptional": true
- },
- "chalk": {
- "version": "1.1.3",
- "devOptional": true,
- "requires": {
- "ansi-styles": "^2.2.1",
- "escape-string-regexp": "^1.0.2",
- "has-ansi": "^2.0.0",
- "strip-ansi": "^3.0.0",
- "supports-color": "^2.0.0"
- }
- },
- "js-tokens": {
- "version": "3.0.2",
- "devOptional": true
- },
- "strip-ansi": {
- "version": "3.0.1",
- "devOptional": true,
- "requires": {
- "ansi-regex": "^2.0.0"
- }
- },
- "supports-color": {
- "version": "2.0.0",
- "devOptional": true
- }
- }
- },
"babel-core": {
"version": "7.0.0-bridge.0",
- "dev": true
- },
- "babel-helper-evaluate-path": {
- "version": "0.5.0",
- "optional": true
- },
- "babel-helper-flip-expressions": {
- "version": "0.4.3",
- "optional": true
- },
- "babel-helper-is-nodes-equiv": {
- "version": "0.0.1",
- "optional": true
- },
- "babel-helper-is-void-0": {
- "version": "0.4.3",
- "optional": true
- },
- "babel-helper-mark-eval-scopes": {
- "version": "0.4.3",
- "optional": true
- },
- "babel-helper-remove-or-void": {
- "version": "0.4.3",
- "optional": true
- },
- "babel-helper-to-multiple-sequence-expressions": {
- "version": "0.5.0",
- "optional": true
+ "devOptional": true
},
"babel-jest": {
"version": "27.5.1",
@@ -46513,39 +45968,6 @@
}
}
},
- "babel-plugin-add-react-displayname": {
- "version": "0.0.5",
- "optional": true
- },
- "babel-plugin-dynamic-import-node": {
- "version": "2.3.3",
- "devOptional": true,
- "requires": {
- "object.assign": "^4.1.0"
- }
- },
- "babel-plugin-emotion": {
- "version": "10.2.2",
- "optional": true,
- "requires": {
- "@babel/helper-module-imports": "^7.0.0",
- "@emotion/hash": "0.8.0",
- "@emotion/memoize": "0.7.4",
- "@emotion/serialize": "^0.11.16",
- "babel-plugin-macros": "^2.0.0",
- "babel-plugin-syntax-jsx": "^6.18.0",
- "convert-source-map": "^1.5.0",
- "escape-string-regexp": "^1.0.5",
- "find-root": "^1.1.0",
- "source-map": "^0.5.7"
- },
- "dependencies": {
- "@emotion/memoize": {
- "version": "0.7.4",
- "optional": true
- }
- }
- },
"babel-plugin-istanbul": {
"version": "6.1.1",
"devOptional": true,
@@ -46568,222 +45990,57 @@
}
},
"babel-plugin-macros": {
- "version": "2.8.0",
- "optional": true,
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/babel-plugin-macros/-/babel-plugin-macros-3.1.0.tgz",
+ "integrity": "sha512-Cg7TFGpIr01vOQNODXOOaGz2NpCU5gl8x1qJFbb6hbZxR7XrcE2vtbAsTAbJ7/xwJtUuJEw8K8Zr/AE0LHlesg==",
"requires": {
- "@babel/runtime": "^7.7.2",
- "cosmiconfig": "^6.0.0",
+ "@babel/runtime": "^7.12.5",
+ "cosmiconfig": "^7.0.0",
"resolve": "1.20.0"
- },
- "dependencies": {
- "cosmiconfig": {
- "version": "6.0.0",
- "optional": true,
- "requires": {
- "@types/parse-json": "^4.0.0",
- "import-fresh": "^3.1.0",
- "parse-json": "^5.0.0",
- "path-type": "^4.0.0",
- "yaml": "^1.7.2"
- }
- },
- "import-fresh": {
- "version": "3.3.0",
- "optional": true,
- "requires": {
- "parent-module": "^1.0.0",
- "resolve-from": "^4.0.0"
- }
- },
- "parse-json": {
- "version": "5.2.0",
- "optional": true,
- "requires": {
- "@babel/code-frame": "^7.0.0",
- "error-ex": "^1.3.1",
- "json-parse-even-better-errors": "^2.3.0",
- "lines-and-columns": "^1.1.6"
- }
- },
- "resolve-from": {
- "version": "4.0.0",
- "optional": true
- }
}
},
- "babel-plugin-minify-builtins": {
- "version": "0.5.0",
- "optional": true
- },
- "babel-plugin-minify-constant-folding": {
- "version": "0.5.0",
- "optional": true,
- "requires": {
- "babel-helper-evaluate-path": "^0.5.0"
- }
- },
- "babel-plugin-minify-dead-code-elimination": {
- "version": "0.5.1",
- "optional": true,
- "requires": {
- "babel-helper-evaluate-path": "^0.5.0",
- "babel-helper-mark-eval-scopes": "^0.4.3",
- "babel-helper-remove-or-void": "^0.4.3",
- "lodash": "^4.17.11"
- }
- },
- "babel-plugin-minify-flip-comparisons": {
- "version": "0.4.3",
- "optional": true,
- "requires": {
- "babel-helper-is-void-0": "^0.4.3"
- }
- },
- "babel-plugin-minify-guarded-expressions": {
- "version": "0.4.4",
- "optional": true,
- "requires": {
- "babel-helper-evaluate-path": "^0.5.0",
- "babel-helper-flip-expressions": "^0.4.3"
- }
- },
- "babel-plugin-minify-infinity": {
- "version": "0.4.3",
- "optional": true
- },
- "babel-plugin-minify-mangle-names": {
- "version": "0.5.0",
- "optional": true,
- "requires": {
- "babel-helper-mark-eval-scopes": "^0.4.3"
- }
- },
- "babel-plugin-minify-numeric-literals": {
- "version": "0.4.3",
- "optional": true
- },
- "babel-plugin-minify-replace": {
- "version": "0.5.0",
- "optional": true
- },
- "babel-plugin-minify-simplify": {
- "version": "0.5.1",
- "optional": true,
- "requires": {
- "babel-helper-evaluate-path": "^0.5.0",
- "babel-helper-flip-expressions": "^0.4.3",
- "babel-helper-is-nodes-equiv": "^0.0.1",
- "babel-helper-to-multiple-sequence-expressions": "^0.5.0"
- }
- },
- "babel-plugin-minify-type-constructors": {
- "version": "0.4.3",
- "optional": true,
- "requires": {
- "babel-helper-is-void-0": "^0.4.3"
- }
- },
- "babel-plugin-named-asset-import": {
- "version": "0.3.7",
- "optional": true
- },
"babel-plugin-polyfill-corejs2": {
- "version": "0.1.10",
+ "version": "0.3.3",
+ "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.3.3.tgz",
+ "integrity": "sha512-8hOdmFYFSZhqg2C/JgLUQ+t52o5nirNwaWM2B9LWteozwIvM14VSwdsCAUET10qT+kmySAlseadmfeeSWFCy+Q==",
"devOptional": true,
"requires": {
- "@babel/compat-data": "^7.13.0",
- "@babel/helper-define-polyfill-provider": "^0.1.5",
+ "@babel/compat-data": "^7.17.7",
+ "@babel/helper-define-polyfill-provider": "^0.3.3",
"semver": "^6.1.1"
},
"dependencies": {
"semver": {
"version": "6.3.0",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz",
+ "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==",
"devOptional": true
}
}
},
"babel-plugin-polyfill-corejs3": {
- "version": "0.1.7",
+ "version": "0.6.0",
+ "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.6.0.tgz",
+ "integrity": "sha512-+eHqR6OPcBhJOGgsIar7xoAB1GcSwVUA3XjAd7HJNzOXT4wv6/H7KIdA/Nc60cvUlDbKApmqNvD1B1bzOt4nyA==",
"devOptional": true,
"requires": {
- "@babel/helper-define-polyfill-provider": "^0.1.5",
- "core-js-compat": "^3.8.1"
+ "@babel/helper-define-polyfill-provider": "^0.3.3",
+ "core-js-compat": "^3.25.1"
}
},
"babel-plugin-polyfill-regenerator": {
- "version": "0.1.6",
+ "version": "0.4.1",
+ "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.4.1.tgz",
+ "integrity": "sha512-NtQGmyQDXjQqQ+IzRkBVwEOz9lQ4zxAQZgoAYEtU9dJjnl1Oc98qnN7jcp+bE7O7aYzVpavXE3/VKXNzUbh7aw==",
"devOptional": true,
"requires": {
- "@babel/helper-define-polyfill-provider": "^0.1.5"
+ "@babel/helper-define-polyfill-provider": "^0.3.3"
}
},
- "babel-plugin-react-docgen": {
- "version": "4.2.1",
- "optional": true,
- "requires": {
- "ast-types": "^0.14.2",
- "lodash": "^4.17.15",
- "react-docgen": "^5.0.0"
- }
- },
- "babel-plugin-syntax-jsx": {
- "version": "6.18.0",
- "optional": true
- },
"babel-plugin-syntax-trailing-function-commas": {
"version": "7.0.0-beta.0",
"dev": true
},
- "babel-plugin-transform-inline-consecutive-adds": {
- "version": "0.4.3",
- "optional": true
- },
- "babel-plugin-transform-member-expression-literals": {
- "version": "6.9.4",
- "optional": true
- },
- "babel-plugin-transform-merge-sibling-variables": {
- "version": "6.9.4",
- "optional": true
- },
- "babel-plugin-transform-minify-booleans": {
- "version": "6.9.4",
- "optional": true
- },
- "babel-plugin-transform-property-literals": {
- "version": "6.9.4",
- "optional": true,
- "requires": {
- "esutils": "^2.0.2"
- }
- },
- "babel-plugin-transform-regexp-constructors": {
- "version": "0.4.3",
- "optional": true
- },
- "babel-plugin-transform-remove-console": {
- "version": "6.9.4",
- "optional": true
- },
- "babel-plugin-transform-remove-debugger": {
- "version": "6.9.4",
- "optional": true
- },
- "babel-plugin-transform-remove-undefined": {
- "version": "0.5.0",
- "optional": true,
- "requires": {
- "babel-helper-evaluate-path": "^0.5.0"
- }
- },
- "babel-plugin-transform-simplify-comparison-operators": {
- "version": "6.9.4",
- "optional": true
- },
- "babel-plugin-transform-undefined-to-void": {
- "version": "6.9.4",
- "optional": true
- },
"babel-preset-current-node-syntax": {
"version": "1.0.1",
"devOptional": true,
@@ -46843,35 +46100,6 @@
"babel-preset-current-node-syntax": "^1.0.0"
}
},
- "babel-preset-minify": {
- "version": "0.5.1",
- "optional": true,
- "requires": {
- "babel-plugin-minify-builtins": "^0.5.0",
- "babel-plugin-minify-constant-folding": "^0.5.0",
- "babel-plugin-minify-dead-code-elimination": "^0.5.1",
- "babel-plugin-minify-flip-comparisons": "^0.4.3",
- "babel-plugin-minify-guarded-expressions": "^0.4.4",
- "babel-plugin-minify-infinity": "^0.4.3",
- "babel-plugin-minify-mangle-names": "^0.5.0",
- "babel-plugin-minify-numeric-literals": "^0.4.3",
- "babel-plugin-minify-replace": "^0.5.0",
- "babel-plugin-minify-simplify": "^0.5.1",
- "babel-plugin-minify-type-constructors": "^0.4.3",
- "babel-plugin-transform-inline-consecutive-adds": "^0.4.3",
- "babel-plugin-transform-member-expression-literals": "^6.9.4",
- "babel-plugin-transform-merge-sibling-variables": "^6.9.4",
- "babel-plugin-transform-minify-booleans": "^6.9.4",
- "babel-plugin-transform-property-literals": "^6.9.4",
- "babel-plugin-transform-regexp-constructors": "^0.4.3",
- "babel-plugin-transform-remove-console": "^6.9.4",
- "babel-plugin-transform-remove-debugger": "^6.9.4",
- "babel-plugin-transform-remove-undefined": "^0.5.0",
- "babel-plugin-transform-simplify-comparison-operators": "^6.9.4",
- "babel-plugin-transform-undefined-to-void": "^6.9.4",
- "lodash": "^4.17.11"
- }
- },
"backo2": {
"version": "1.0.2",
"dev": true
@@ -46885,7 +46113,7 @@
},
"base": {
"version": "0.11.2",
- "devOptional": true,
+ "dev": true,
"requires": {
"cache-base": "^1.0.1",
"class-utils": "^0.3.5",
@@ -46898,28 +46126,28 @@
"dependencies": {
"define-property": {
"version": "1.0.0",
- "devOptional": true,
+ "dev": true,
"requires": {
"is-descriptor": "^1.0.0"
}
},
"is-accessor-descriptor": {
"version": "1.0.0",
- "devOptional": true,
+ "dev": true,
"requires": {
"kind-of": "^6.0.0"
}
},
"is-data-descriptor": {
"version": "1.0.0",
- "devOptional": true,
+ "dev": true,
"requires": {
"kind-of": "^6.0.0"
}
},
"is-descriptor": {
"version": "1.0.2",
- "devOptional": true,
+ "dev": true,
"requires": {
"is-accessor-descriptor": "^1.0.0",
"is-data-descriptor": "^1.0.0",
@@ -46945,10 +46173,6 @@
}
}
},
- "batch-processor": {
- "version": "1.0.0",
- "optional": true
- },
"bcrypt-pbkdf": {
"version": "1.0.2",
"optional": true,
@@ -46960,6 +46184,27 @@
"version": "2.2.1",
"dev": true
},
+ "better-opn": {
+ "version": "2.1.1",
+ "resolved": "https://registry.npmjs.org/better-opn/-/better-opn-2.1.1.tgz",
+ "integrity": "sha512-kIPXZS5qwyKiX/HcRvDYfmBQUa8XP17I0mYZZ0y4UhpYOSvtsLHDYqmomS+Mj20aDvD3knEiQ0ecQy2nhio3yA==",
+ "optional": true,
+ "requires": {
+ "open": "^7.0.3"
+ },
+ "dependencies": {
+ "open": {
+ "version": "7.4.2",
+ "resolved": "https://registry.npmjs.org/open/-/open-7.4.2.tgz",
+ "integrity": "sha512-MVHddDVweXZF3awtlAS+6pgKLlm/JgxZ90+/NBurBoQctVOOB/zDdVjcyPzQ+0laDGbsWgrRkflI65sQeOgT9Q==",
+ "optional": true,
+ "requires": {
+ "is-docker": "^2.0.0",
+ "is-wsl": "^2.1.1"
+ }
+ }
+ }
+ },
"better-path-resolve": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/better-path-resolve/-/better-path-resolve-1.0.0.tgz",
@@ -46969,13 +46214,15 @@
"is-windows": "^1.0.0"
}
},
+ "big-integer": {
+ "version": "1.6.51",
+ "resolved": "https://registry.npmjs.org/big-integer/-/big-integer-1.6.51.tgz",
+ "integrity": "sha512-GPEid2Y9QU1Exl1rpO9B2IPJGHPSupF5GnVIP0blYvNOMer2bTvSWs1jGOUg04hTmu67nmLsQ9TBo1puaotBHg==",
+ "optional": true
+ },
"big.js": {
"version": "5.2.2",
- "devOptional": true
- },
- "binary-extensions": {
- "version": "1.13.1",
- "optional": true
+ "dev": true
},
"bindings": {
"version": "1.5.0",
@@ -46984,9 +46231,15 @@
"file-uri-to-path": "1.0.0"
}
},
+ "binjumper": {
+ "version": "0.1.4",
+ "resolved": "https://registry.npmjs.org/binjumper/-/binjumper-0.1.4.tgz",
+ "integrity": "sha512-Gdxhj+U295tIM6cO4bJO1jsvSjBVHNpj2o/OwW7pqDEtaqF6KdOxjtbo93jMMKAkP7+u09+bV8DhSqjIv4qR3w==",
+ "optional": true
+ },
"bl": {
"version": "4.1.0",
- "dev": true,
+ "devOptional": true,
"requires": {
"buffer": "^5.5.0",
"inherits": "^2.0.4",
@@ -46995,20 +46248,11 @@
"dependencies": {
"buffer": {
"version": "5.7.1",
- "dev": true,
+ "devOptional": true,
"requires": {
"base64-js": "^1.3.1",
"ieee754": "^1.1.13"
}
- },
- "readable-stream": {
- "version": "3.6.0",
- "dev": true,
- "requires": {
- "inherits": "^2.0.3",
- "string_decoder": "^1.1.1",
- "util-deprecate": "^1.0.1"
- }
}
}
},
@@ -47024,10 +46268,6 @@
"version": "2.18.0",
"dev": true
},
- "bn.js": {
- "version": "5.2.0",
- "optional": true
- },
"body-parser": {
"version": "1.20.1",
"resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.1.tgz",
@@ -47081,29 +46321,36 @@
},
"boolbase": {
"version": "1.0.0",
- "devOptional": true
+ "dev": true
},
"bowser": {
"version": "2.11.0",
"dev": true
},
"boxen": {
- "version": "4.2.0",
- "optional": true,
+ "version": "5.1.2",
+ "resolved": "https://registry.npmjs.org/boxen/-/boxen-5.1.2.tgz",
+ "integrity": "sha512-9gYgQKXx+1nP8mP7CzFyaUARhg7D3n1dF/FnErWmu9l6JvGpNUN278h0aSb+QjoiKSWG+iZ3uHrcqk0qrY9RQQ==",
"requires": {
"ansi-align": "^3.0.0",
- "camelcase": "^5.3.1",
- "chalk": "^3.0.0",
- "cli-boxes": "^2.2.0",
- "string-width": "^4.1.0",
- "term-size": "^2.1.0",
- "type-fest": "^0.8.1",
- "widest-line": "^3.1.0"
+ "camelcase": "^6.2.0",
+ "chalk": "^4.1.0",
+ "cli-boxes": "^2.2.1",
+ "string-width": "^4.2.2",
+ "type-fest": "^0.20.2",
+ "widest-line": "^3.1.0",
+ "wrap-ansi": "^7.0.0"
},
"dependencies": {
+ "camelcase": {
+ "version": "6.3.0",
+ "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz",
+ "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA=="
+ },
"chalk": {
- "version": "3.0.0",
- "optional": true,
+ "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"
@@ -47111,21 +46358,33 @@
},
"has-flag": {
"version": "4.0.0",
- "optional": true
+ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
+ "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ=="
},
"supports-color": {
"version": "7.2.0",
- "optional": true,
+ "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"
}
},
"type-fest": {
- "version": "0.8.1",
- "optional": true
+ "version": "0.20.2",
+ "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz",
+ "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ=="
}
}
},
+ "bplist-parser": {
+ "version": "0.2.0",
+ "resolved": "https://registry.npmjs.org/bplist-parser/-/bplist-parser-0.2.0.tgz",
+ "integrity": "sha512-z0M+byMThzQmD9NILRniCUXYsYpjwnlO8N5uCFaCqIOpqRsJCrQL9NK3JsD67CN5a08nF5oIL2bD6loTdHOuKw==",
+ "optional": true,
+ "requires": {
+ "big-integer": "^1.6.44"
+ }
+ },
"brace-expansion": {
"version": "1.1.11",
"devOptional": true,
@@ -47149,95 +46408,35 @@
"wcwidth": "^1.0.1"
}
},
- "brorand": {
- "version": "1.1.0",
+ "browser-assert": {
+ "version": "1.2.1",
+ "resolved": "https://registry.npmjs.org/browser-assert/-/browser-assert-1.2.1.tgz",
+ "integrity": "sha512-nfulgvOR6S4gt9UKCeGJOuSGBPGiFT6oQ/2UBnvTY/5aQ1PnksW72fhZkM30DzoRRv2WpwZf1vHHEr3mtuXIWQ==",
"optional": true
},
"browser-process-hrtime": {
"version": "1.0.0",
"optional": true
},
- "browserify-aes": {
- "version": "1.2.0",
- "optional": true,
- "requires": {
- "buffer-xor": "^1.0.3",
- "cipher-base": "^1.0.0",
- "create-hash": "^1.1.0",
- "evp_bytestokey": "^1.0.3",
- "inherits": "^2.0.1",
- "safe-buffer": "^5.0.1"
- }
- },
- "browserify-cipher": {
- "version": "1.0.1",
- "optional": true,
- "requires": {
- "browserify-aes": "^1.0.4",
- "browserify-des": "^1.0.0",
- "evp_bytestokey": "^1.0.0"
- }
- },
- "browserify-des": {
- "version": "1.0.2",
- "optional": true,
- "requires": {
- "cipher-base": "^1.0.1",
- "des.js": "^1.0.0",
- "inherits": "^2.0.1",
- "safe-buffer": "^5.1.2"
- }
- },
- "browserify-rsa": {
- "version": "4.1.0",
- "optional": true,
- "requires": {
- "bn.js": "^5.0.0",
- "randombytes": "^2.0.1"
- }
- },
- "browserify-sign": {
- "version": "4.2.1",
- "optional": true,
- "requires": {
- "bn.js": "^5.1.1",
- "browserify-rsa": "^4.0.1",
- "create-hash": "^1.2.0",
- "create-hmac": "^1.1.7",
- "elliptic": "^6.5.3",
- "inherits": "^2.0.4",
- "parse-asn1": "^5.1.5",
- "readable-stream": "^3.6.0",
- "safe-buffer": "^5.2.0"
- },
- "dependencies": {
- "readable-stream": {
- "version": "3.6.0",
- "optional": true,
- "requires": {
- "inherits": "^2.0.3",
- "string_decoder": "^1.1.1",
- "util-deprecate": "^1.0.1"
- }
- }
- }
- },
"browserify-zlib": {
- "version": "0.2.0",
+ "version": "0.1.4",
+ "resolved": "https://registry.npmjs.org/browserify-zlib/-/browserify-zlib-0.1.4.tgz",
+ "integrity": "sha512-19OEpq7vWgsH6WkvkBJQDFvJS1uPcbFOQ4v9CU839dO+ZZXUZO6XpE6hNCqvlIIj+4fZvRiJ6DsAQ382GwiyTQ==",
"optional": true,
"requires": {
- "pako": "~1.0.5"
+ "pako": "~0.2.0"
}
},
"browserslist": {
- "version": "4.16.3",
+ "version": "4.21.5",
+ "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.21.5.tgz",
+ "integrity": "sha512-tUkiguQGW7S3IhB7N+c2MV/HZPSCPAAiYBZXLsBhFB/PCy6ZKKsZrmBayHV9fdGV/ARIfJ14NkxKzRDjvp7L6w==",
"devOptional": true,
"requires": {
- "caniuse-lite": "^1.0.30001181",
- "colorette": "^1.2.1",
- "electron-to-chromium": "^1.3.649",
- "escalade": "^3.1.1",
- "node-releases": "^1.1.70"
+ "caniuse-lite": "^1.0.30001449",
+ "electron-to-chromium": "^1.4.284",
+ "node-releases": "^2.0.8",
+ "update-browserslist-db": "^1.0.10"
}
},
"bs-logger": {
@@ -47254,21 +46453,6 @@
"node-int64": "^0.4.0"
}
},
- "buffer": {
- "version": "4.9.2",
- "optional": true,
- "requires": {
- "base64-js": "^1.0.2",
- "ieee754": "^1.1.4",
- "isarray": "^1.0.0"
- },
- "dependencies": {
- "isarray": {
- "version": "1.0.0",
- "optional": true
- }
- }
- },
"buffer-crc32": {
"version": "0.2.13",
"devOptional": true
@@ -47281,18 +46465,10 @@
"version": "1.1.1",
"devOptional": true
},
- "buffer-xor": {
- "version": "1.0.3",
- "optional": true
- },
"builtin-modules": {
"version": "3.3.0",
"dev": true
},
- "builtin-status-codes": {
- "version": "3.0.0",
- "optional": true
- },
"busboy": {
"version": "1.6.0",
"dev": true,
@@ -47306,50 +46482,132 @@
"integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==",
"devOptional": true
},
- "cacache": {
- "version": "12.0.4",
+ "c8": {
+ "version": "7.13.0",
+ "resolved": "https://registry.npmjs.org/c8/-/c8-7.13.0.tgz",
+ "integrity": "sha512-/NL4hQTv1gBL6J6ei80zu3IiTrmePDKXKXOTLpHvcIWZTVYQlDhVWjjWvkhICylE8EwwnMVzDZugCvdx0/DIIA==",
"optional": true,
"requires": {
- "bluebird": "^3.5.5",
- "chownr": "^1.1.1",
- "figgy-pudding": "^3.5.1",
- "glob": "^7.1.4",
- "graceful-fs": "^4.1.15",
- "infer-owner": "^1.0.3",
- "lru-cache": "^5.1.1",
- "mississippi": "^3.0.0",
- "mkdirp": "^0.5.1",
- "move-concurrently": "^1.0.1",
- "promise-inflight": "^1.0.1",
- "rimraf": "^2.6.3",
- "ssri": "^6.0.1",
- "unique-filename": "^1.1.1",
- "y18n": "^4.0.0"
+ "@bcoe/v8-coverage": "^0.2.3",
+ "@istanbuljs/schema": "^0.1.3",
+ "find-up": "^5.0.0",
+ "foreground-child": "^2.0.0",
+ "istanbul-lib-coverage": "^3.2.0",
+ "istanbul-lib-report": "^3.0.0",
+ "istanbul-reports": "^3.1.4",
+ "rimraf": "^3.0.2",
+ "test-exclude": "^6.0.0",
+ "v8-to-istanbul": "^9.0.0",
+ "yargs": "^16.2.0",
+ "yargs-parser": "^20.2.9"
},
"dependencies": {
- "lru-cache": {
- "version": "5.1.1",
+ "cliui": {
+ "version": "7.0.4",
+ "resolved": "https://registry.npmjs.org/cliui/-/cliui-7.0.4.tgz",
+ "integrity": "sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==",
"optional": true,
"requires": {
- "yallist": "^3.0.2"
+ "string-width": "^4.2.0",
+ "strip-ansi": "^6.0.0",
+ "wrap-ansi": "^7.0.0"
}
},
- "rimraf": {
- "version": "2.7.1",
+ "find-up": {
+ "version": "5.0.0",
+ "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz",
+ "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==",
"optional": true,
"requires": {
- "glob": "^7.1.3"
+ "locate-path": "^6.0.0",
+ "path-exists": "^4.0.0"
}
},
- "yallist": {
- "version": "3.1.1",
+ "locate-path": {
+ "version": "6.0.0",
+ "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz",
+ "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==",
+ "optional": true,
+ "requires": {
+ "p-locate": "^5.0.0"
+ }
+ },
+ "p-limit": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz",
+ "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==",
+ "optional": true,
+ "requires": {
+ "yocto-queue": "^0.1.0"
+ }
+ },
+ "p-locate": {
+ "version": "5.0.0",
+ "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz",
+ "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==",
+ "optional": true,
+ "requires": {
+ "p-limit": "^3.0.2"
+ }
+ },
+ "path-exists": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz",
+ "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==",
+ "optional": true
+ },
+ "strip-ansi": {
+ "version": "6.0.1",
+ "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz",
+ "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
+ "optional": true,
+ "requires": {
+ "ansi-regex": "^5.0.1"
+ }
+ },
+ "v8-to-istanbul": {
+ "version": "9.1.0",
+ "resolved": "https://registry.npmjs.org/v8-to-istanbul/-/v8-to-istanbul-9.1.0.tgz",
+ "integrity": "sha512-6z3GW9x8G1gd+JIIgQQQxXuiJtCXeAjp6RaPEPLv62mH3iPHPxV6W3robxtCzNErRo6ZwTmzWhsbNvjyEBKzKA==",
+ "optional": true,
+ "requires": {
+ "@jridgewell/trace-mapping": "^0.3.12",
+ "@types/istanbul-lib-coverage": "^2.0.1",
+ "convert-source-map": "^1.6.0"
+ }
+ },
+ "y18n": {
+ "version": "5.0.8",
+ "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz",
+ "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==",
+ "optional": true
+ },
+ "yargs": {
+ "version": "16.2.0",
+ "resolved": "https://registry.npmjs.org/yargs/-/yargs-16.2.0.tgz",
+ "integrity": "sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==",
+ "optional": true,
+ "requires": {
+ "cliui": "^7.0.2",
+ "escalade": "^3.1.1",
+ "get-caller-file": "^2.0.5",
+ "require-directory": "^2.1.1",
+ "string-width": "^4.2.0",
+ "y18n": "^5.0.5",
+ "yargs-parser": "^20.2.2"
+ }
+ },
+ "yargs-parser": {
+ "version": "20.2.9",
+ "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.9.tgz",
+ "integrity": "sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==",
"optional": true
}
}
},
"cache-base": {
"version": "1.0.1",
- "devOptional": true,
+ "dev": true,
"requires": {
"collection-visit": "^1.0.0",
"component-emitter": "^1.2.1",
@@ -47364,11 +46622,11 @@
},
"cacheable-lookup": {
"version": "5.0.4",
- "dev": true
+ "devOptional": true
},
"cacheable-request": {
"version": "7.0.1",
- "dev": true,
+ "devOptional": true,
"requires": {
"clone-response": "^1.0.2",
"get-stream": "^5.1.0",
@@ -47381,7 +46639,7 @@
"dependencies": {
"normalize-url": {
"version": "4.5.0",
- "dev": true
+ "devOptional": true
}
}
},
@@ -47396,28 +46654,6 @@
"get-intrinsic": "^1.0.2"
}
},
- "call-me-maybe": {
- "version": "1.0.1",
- "optional": true
- },
- "caller-callsite": {
- "version": "2.0.0",
- "optional": true,
- "requires": {
- "callsites": "^2.0.0"
- }
- },
- "caller-path": {
- "version": "2.0.0",
- "optional": true,
- "requires": {
- "caller-callsite": "^2.0.0"
- }
- },
- "callsites": {
- "version": "2.0.0",
- "optional": true
- },
"camelcase": {
"version": "5.3.1",
"devOptional": true
@@ -47441,12 +46677,10 @@
}
}
},
- "can-use-dom": {
- "version": "0.1.0",
- "optional": true
- },
"caniuse-lite": {
- "version": "1.0.30001208",
+ "version": "1.0.30001482",
+ "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001482.tgz",
+ "integrity": "sha512-F1ZInsg53cegyjroxLNW9DmrEQ1SuGRTO1QlpA0o2/6OpQ0gFeDRoq1yFmnr8Sakn9qwwt9DmbxHB6w167OSuQ==",
"devOptional": true
},
"canvas-hypertxt": {
@@ -47473,10 +46707,6 @@
}
}
},
- "case-sensitive-paths-webpack-plugin": {
- "version": "2.4.0",
- "optional": true
- },
"caseless": {
"version": "0.12.0",
"optional": true
@@ -47585,7 +46815,7 @@
},
"chardet": {
"version": "0.7.0",
- "devOptional": true
+ "dev": true
},
"charenc": {
"version": "0.0.2",
@@ -47596,34 +46826,27 @@
"devOptional": true
},
"chokidar": {
- "version": "3.5.1",
+ "version": "3.5.3",
+ "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.3.tgz",
+ "integrity": "sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==",
"devOptional": true,
"requires": {
- "anymatch": "~3.1.1",
+ "anymatch": "~3.1.2",
"braces": "~3.0.2",
- "fsevents": "~2.3.1",
- "glob-parent": "~5.1.0",
+ "fsevents": "~2.3.2",
+ "glob-parent": "~5.1.2",
"is-binary-path": "~2.1.0",
"is-glob": "~4.0.1",
"normalize-path": "~3.0.0",
- "readdirp": "~3.5.0"
+ "readdirp": "~3.6.0"
},
"dependencies": {
- "anymatch": {
- "version": "3.1.2",
- "devOptional": true,
- "requires": {
- "normalize-path": "^3.0.0",
- "picomatch": "^2.0.4"
- }
- },
"binary-extensions": {
"version": "2.2.0",
"devOptional": true
},
"fsevents": {
"version": "2.3.2",
- "dev": true,
"optional": true
},
"is-binary-path": {
@@ -47632,54 +46855,37 @@
"requires": {
"binary-extensions": "^2.0.0"
}
- },
- "readdirp": {
- "version": "3.5.0",
- "devOptional": true,
- "requires": {
- "picomatch": "^2.2.1"
- }
}
}
},
"chownr": {
- "version": "1.1.4",
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/chownr/-/chownr-2.0.0.tgz",
+ "integrity": "sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==",
"optional": true
},
- "chrome-trace-event": {
- "version": "1.0.2",
+ "chromatic": {
+ "version": "6.17.4",
+ "resolved": "https://registry.npmjs.org/chromatic/-/chromatic-6.17.4.tgz",
+ "integrity": "sha512-vnlvsv2lkp8BVtTn1OumJzqkDk2qB3pcGxEDIfZtVboKtzIPjnIlGa+c1fVKQe8NvHDU8R39k8klqgKHIXUVJw==",
"optional": true,
"requires": {
- "tslib": "^1.9.0"
- },
- "dependencies": {
- "tslib": {
- "version": "1.14.1",
- "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz",
- "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==",
- "optional": true
- }
+ "@discoveryjs/json-ext": "^0.5.7",
+ "@types/webpack-env": "^1.17.0",
+ "snyk-nodejs-lockfile-parser": "^1.49.0"
}
},
"ci-info": {
"version": "3.7.0",
"devOptional": true
},
- "cipher-base": {
- "version": "1.0.4",
- "optional": true,
- "requires": {
- "inherits": "^2.0.1",
- "safe-buffer": "^5.0.1"
- }
- },
"cjs-module-lexer": {
"version": "1.2.2",
"optional": true
},
"class-utils": {
"version": "0.3.6",
- "devOptional": true,
+ "dev": true,
"requires": {
"arr-union": "^3.1.0",
"define-property": "^0.2.5",
@@ -47689,7 +46895,7 @@
"dependencies": {
"define-property": {
"version": "0.2.5",
- "devOptional": true,
+ "dev": true,
"requires": {
"is-descriptor": "^0.1.0"
}
@@ -47699,25 +46905,12 @@
"classnames": {
"version": "2.3.1"
},
- "clean-css": {
- "version": "4.2.4",
- "optional": true,
- "requires": {
- "source-map": "~0.6.0"
- },
- "dependencies": {
- "source-map": {
- "version": "0.6.1",
- "optional": true
- }
- }
- },
"cli-boxes": {
"version": "2.2.1"
},
"cli-cursor": {
"version": "2.1.0",
- "devOptional": true,
+ "dev": true,
"requires": {
"restore-cursor": "^2.0.0"
}
@@ -47727,37 +46920,13 @@
"dev": true
},
"cli-table3": {
- "version": "0.5.1",
+ "version": "0.6.3",
+ "resolved": "https://registry.npmjs.org/cli-table3/-/cli-table3-0.6.3.tgz",
+ "integrity": "sha512-w5Jac5SykAeZJKntOxJCrm63Eg5/4dhMWIcuTbo9rpE+brgaSZo0RuNJZeOyMgsUdhDeojvgyQLmjI+K50ZGyg==",
"optional": true,
"requires": {
- "colors": "^1.1.2",
- "object-assign": "^4.1.0",
- "string-width": "^2.1.1"
- },
- "dependencies": {
- "ansi-regex": {
- "version": "3.0.0",
- "optional": true
- },
- "is-fullwidth-code-point": {
- "version": "2.0.0",
- "optional": true
- },
- "string-width": {
- "version": "2.1.1",
- "optional": true,
- "requires": {
- "is-fullwidth-code-point": "^2.0.0",
- "strip-ansi": "^4.0.0"
- }
- },
- "strip-ansi": {
- "version": "4.0.0",
- "optional": true,
- "requires": {
- "ansi-regex": "^3.0.0"
- }
- }
+ "@colors/colors": "1.5.0",
+ "string-width": "^4.2.0"
}
},
"cli-truncate": {
@@ -47799,16 +46968,13 @@
},
"cli-width": {
"version": "3.0.0",
- "devOptional": true
+ "dev": true
},
- "clipboard": {
- "version": "2.0.8",
- "optional": true,
- "requires": {
- "good-listener": "^1.2.2",
- "select": "^1.1.2",
- "tiny-emitter": "^2.0.0"
- }
+ "clipanion": {
+ "version": "2.6.2",
+ "resolved": "https://registry.npmjs.org/clipanion/-/clipanion-2.6.2.tgz",
+ "integrity": "sha512-0tOHJNMF9+4R3qcbBL+4IxLErpaYSYvzs10aXuECDbZdJOuJHdagJMAqvLdeaUQTI/o2uSCDRpet6ywDiKOAYw==",
+ "optional": true
},
"cliui": {
"version": "5.0.0",
@@ -47869,26 +47035,6 @@
"version": "1.0.4",
"dev": true
},
- "clone-deep": {
- "version": "0.2.4",
- "optional": true,
- "requires": {
- "for-own": "^0.1.3",
- "is-plain-object": "^2.0.1",
- "kind-of": "^3.0.2",
- "lazy-cache": "^1.0.3",
- "shallow-clone": "^0.1.2"
- },
- "dependencies": {
- "kind-of": {
- "version": "3.2.2",
- "optional": true,
- "requires": {
- "is-buffer": "^1.1.5"
- }
- }
- }
- },
"clone-response": {
"version": "1.0.2",
"requires": {
@@ -47902,18 +47048,9 @@
"version": "4.6.0",
"optional": true
},
- "coa": {
- "version": "2.0.2",
- "optional": true,
- "requires": {
- "@types/q": "^1.5.1",
- "chalk": "^2.4.1",
- "q": "^1.1.2"
- }
- },
"code-point-at": {
"version": "1.1.0",
- "devOptional": true
+ "dev": true
},
"codecov": {
"version": "3.8.1",
@@ -47969,7 +47106,7 @@
},
"collection-visit": {
"version": "1.0.0",
- "devOptional": true,
+ "dev": true,
"requires": {
"map-visit": "^1.0.0",
"object-visit": "^1.0.0"
@@ -47984,13 +47121,21 @@
"color-name": {
"version": "1.1.4"
},
+ "color-support": {
+ "version": "1.1.3",
+ "resolved": "https://registry.npmjs.org/color-support/-/color-support-1.1.3.tgz",
+ "integrity": "sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg==",
+ "optional": true
+ },
"colorette": {
- "version": "1.2.2",
+ "version": "2.0.20",
+ "resolved": "https://registry.npmjs.org/colorette/-/colorette-2.0.20.tgz",
+ "integrity": "sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==",
"devOptional": true
},
"colors": {
"version": "1.4.0",
- "devOptional": true
+ "dev": true
},
"combined-stream": {
"version": "1.0.8",
@@ -47999,13 +47144,9 @@
"delayed-stream": "~1.0.0"
}
},
- "comma-separated-tokens": {
- "version": "1.0.8",
- "optional": true
- },
"commander": {
"version": "4.1.1",
- "devOptional": true
+ "dev": true
},
"common-tags": {
"version": "1.8.0",
@@ -48017,7 +47158,60 @@
},
"component-emitter": {
"version": "1.3.0",
- "devOptional": true
+ "dev": true
+ },
+ "compressible": {
+ "version": "2.0.18",
+ "resolved": "https://registry.npmjs.org/compressible/-/compressible-2.0.18.tgz",
+ "integrity": "sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==",
+ "optional": true,
+ "requires": {
+ "mime-db": ">= 1.43.0 < 2"
+ }
+ },
+ "compression": {
+ "version": "1.7.4",
+ "resolved": "https://registry.npmjs.org/compression/-/compression-1.7.4.tgz",
+ "integrity": "sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ==",
+ "optional": true,
+ "requires": {
+ "accepts": "~1.3.5",
+ "bytes": "3.0.0",
+ "compressible": "~2.0.16",
+ "debug": "2.6.9",
+ "on-headers": "~1.0.2",
+ "safe-buffer": "5.1.2",
+ "vary": "~1.1.2"
+ },
+ "dependencies": {
+ "bytes": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.0.0.tgz",
+ "integrity": "sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw==",
+ "optional": true
+ },
+ "debug": {
+ "version": "2.6.9",
+ "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
+ "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
+ "optional": true,
+ "requires": {
+ "ms": "2.0.0"
+ }
+ },
+ "ms": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
+ "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==",
+ "optional": true
+ },
+ "safe-buffer": {
+ "version": "5.1.2",
+ "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz",
+ "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==",
+ "optional": true
+ }
+ }
},
"compute-scroll-into-view": {
"version": "1.0.17"
@@ -48028,12 +47222,43 @@
},
"concat-stream": {
"version": "1.6.2",
+ "resolved": "https://registry.npmjs.org/concat-stream/-/concat-stream-1.6.2.tgz",
+ "integrity": "sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==",
"optional": true,
"requires": {
"buffer-from": "^1.0.0",
"inherits": "^2.0.3",
"readable-stream": "^2.2.2",
"typedarray": "^0.0.6"
+ },
+ "dependencies": {
+ "isarray": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz",
+ "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==",
+ "optional": true
+ },
+ "readable-stream": {
+ "version": "2.3.8",
+ "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz",
+ "integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==",
+ "optional": true,
+ "requires": {
+ "core-util-is": "~1.0.0",
+ "inherits": "~2.0.3",
+ "isarray": "~1.0.0",
+ "process-nextick-args": "~2.0.0",
+ "safe-buffer": "~5.1.1",
+ "string_decoder": "~1.1.1",
+ "util-deprecate": "~1.0.1"
+ }
+ },
+ "safe-buffer": {
+ "version": "5.1.2",
+ "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz",
+ "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==",
+ "optional": true
+ }
}
},
"configstore": {
@@ -48075,12 +47300,10 @@
"version": "2.15.3",
"dev": true
},
- "console-browserify": {
- "version": "1.2.0",
- "optional": true
- },
"console-control-strings": {
"version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/console-control-strings/-/console-control-strings-1.1.0.tgz",
+ "integrity": "sha512-ty/fTekppD2fIwRvnZAVdeOiGd1c7YXEixbgJTNzqcxJWKQnjJ/V1bNEEE6hygpM3WjwHFUVK6HTjWSzV4a8sQ==",
"optional": true
},
"constant-case": {
@@ -48102,10 +47325,6 @@
}
}
},
- "constants-browserify": {
- "version": "1.0.0",
- "optional": true
- },
"contains-path": {
"version": "0.1.0",
"optional": true
@@ -48144,30 +47363,9 @@
"version": "1.0.6",
"devOptional": true
},
- "copy-concurrently": {
- "version": "1.0.5",
- "optional": true,
- "requires": {
- "aproba": "^1.1.1",
- "fs-write-stream-atomic": "^1.0.8",
- "iferr": "^0.1.5",
- "mkdirp": "^0.5.1",
- "rimraf": "^2.5.4",
- "run-queue": "^1.0.0"
- },
- "dependencies": {
- "rimraf": {
- "version": "2.7.1",
- "optional": true,
- "requires": {
- "glob": "^7.1.3"
- }
- }
- }
- },
"copy-descriptor": {
"version": "0.1.1",
- "devOptional": true
+ "dev": true
},
"copy-to-clipboard": {
"version": "3.3.1",
@@ -48177,44 +47375,21 @@
},
"core-js": {
"version": "3.10.1",
- "devOptional": true
+ "dev": true
},
"core-js-compat": {
- "version": "3.10.1",
+ "version": "3.30.1",
+ "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.30.1.tgz",
+ "integrity": "sha512-d690npR7MC6P0gq4npTl5n2VQeNAmUrJ90n+MHiKS7W2+xno4o3F5GDEuylSdi6EJ3VssibSGXOa1r3YXD3Mhw==",
"devOptional": true,
"requires": {
- "browserslist": "^4.16.3",
- "semver": "7.0.0"
- },
- "dependencies": {
- "semver": {
- "version": "7.0.0",
- "devOptional": true
- }
+ "browserslist": "^4.21.5"
}
},
- "core-js-pure": {
- "version": "3.10.1",
- "optional": true
- },
"core-util-is": {
"version": "1.0.2",
"optional": true
},
- "corejs-upgrade-webpack-plugin": {
- "version": "2.2.0",
- "optional": true,
- "requires": {
- "resolve-from": "^5.0.0",
- "webpack": "^4.38.0"
- },
- "dependencies": {
- "resolve-from": {
- "version": "5.0.0",
- "optional": true
- }
- }
- },
"cors": {
"version": "2.8.5",
"dev": true,
@@ -48224,13 +47399,15 @@
}
},
"cosmiconfig": {
- "version": "5.2.1",
- "optional": true,
+ "version": "7.1.0",
+ "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.1.0.tgz",
+ "integrity": "sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==",
"requires": {
- "import-fresh": "^2.0.0",
- "is-directory": "^0.3.1",
- "js-yaml": "^3.13.1",
- "parse-json": "^4.0.0"
+ "@types/parse-json": "^4.0.0",
+ "import-fresh": "^3.2.1",
+ "parse-json": "^5.0.0",
+ "path-type": "^4.0.0",
+ "yaml": "^1.10.0"
}
},
"cosmiconfig-toml-loader": {
@@ -48245,60 +47422,6 @@
"resolved": "https://registry.npmjs.org/crc-32/-/crc-32-1.2.2.tgz",
"integrity": "sha512-ROmzCKrTnOwybPcJApAA6WBWij23HVfGVNKqqrZpuyZOHqK2CwHSvpGuyt/UNNvaIjEd8X5IFGp4Mh+Ie1IHJQ=="
},
- "create-ecdh": {
- "version": "4.0.4",
- "optional": true,
- "requires": {
- "bn.js": "^4.1.0",
- "elliptic": "^6.5.3"
- },
- "dependencies": {
- "bn.js": {
- "version": "4.12.0",
- "optional": true
- }
- }
- },
- "create-hash": {
- "version": "1.2.0",
- "optional": true,
- "requires": {
- "cipher-base": "^1.0.1",
- "inherits": "^2.0.1",
- "md5.js": "^1.3.4",
- "ripemd160": "^2.0.1",
- "sha.js": "^2.4.0"
- }
- },
- "create-hmac": {
- "version": "1.1.7",
- "optional": true,
- "requires": {
- "cipher-base": "^1.0.3",
- "create-hash": "^1.1.0",
- "inherits": "^2.0.1",
- "ripemd160": "^2.0.0",
- "safe-buffer": "^5.0.1",
- "sha.js": "^2.4.8"
- }
- },
- "create-react-context": {
- "version": "0.3.0",
- "optional": true,
- "requires": {
- "gud": "^1.0.0",
- "warning": "^4.0.3"
- },
- "dependencies": {
- "warning": {
- "version": "4.0.3",
- "optional": true,
- "requires": {
- "loose-envify": "^1.0.0"
- }
- }
- }
- },
"create-require": {
"version": "1.1.1",
"dev": true
@@ -48308,39 +47431,6 @@
"dev": true,
"requires": {
"cross-spawn": "^7.0.0"
- },
- "dependencies": {
- "cross-spawn": {
- "version": "7.0.3",
- "dev": true,
- "requires": {
- "path-key": "^3.1.0",
- "shebang-command": "^2.0.0",
- "which": "^2.0.1"
- }
- },
- "path-key": {
- "version": "3.1.1",
- "dev": true
- },
- "shebang-command": {
- "version": "2.0.0",
- "dev": true,
- "requires": {
- "shebang-regex": "^3.0.0"
- }
- },
- "shebang-regex": {
- "version": "3.0.0",
- "dev": true
- },
- "which": {
- "version": "2.0.2",
- "dev": true,
- "requires": {
- "isexe": "^2.0.0"
- }
- }
}
},
"cross-fetch": {
@@ -48350,19 +47440,39 @@
}
},
"cross-spawn": {
- "version": "6.0.5",
- "optional": true,
+ "version": "7.0.3",
+ "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz",
+ "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==",
+ "devOptional": true,
"requires": {
- "nice-try": "^1.0.4",
- "path-key": "^2.0.1",
- "semver": "^5.5.0",
- "shebang-command": "^1.2.0",
- "which": "^1.2.9"
+ "path-key": "^3.1.0",
+ "shebang-command": "^2.0.0",
+ "which": "^2.0.1"
},
"dependencies": {
- "semver": {
- "version": "5.7.1",
- "optional": true
+ "shebang-command": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz",
+ "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==",
+ "devOptional": true,
+ "requires": {
+ "shebang-regex": "^3.0.0"
+ }
+ },
+ "shebang-regex": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz",
+ "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==",
+ "devOptional": true
+ },
+ "which": {
+ "version": "2.0.2",
+ "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz",
+ "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==",
+ "devOptional": true,
+ "requires": {
+ "isexe": "^2.0.0"
+ }
}
}
},
@@ -48370,23 +47480,6 @@
"version": "0.0.2",
"optional": true
},
- "crypto-browserify": {
- "version": "3.12.0",
- "optional": true,
- "requires": {
- "browserify-cipher": "^1.0.0",
- "browserify-sign": "^4.0.0",
- "create-ecdh": "^4.0.0",
- "create-hash": "^1.1.0",
- "create-hmac": "^1.1.0",
- "diffie-hellman": "^5.0.0",
- "inherits": "^2.0.1",
- "pbkdf2": "^3.0.3",
- "public-encrypt": "^4.0.0",
- "randombytes": "^2.0.0",
- "randomfill": "^1.0.3"
- }
- },
"crypto-random-string": {
"version": "2.0.0"
},
@@ -48413,96 +47506,6 @@
}
}
},
- "css-loader": {
- "version": "3.6.0",
- "optional": true,
- "requires": {
- "camelcase": "^5.3.1",
- "cssesc": "^3.0.0",
- "icss-utils": "^4.1.1",
- "loader-utils": "^1.2.3",
- "normalize-path": "^3.0.0",
- "postcss": "^7.0.32",
- "postcss-modules-extract-imports": "^2.0.0",
- "postcss-modules-local-by-default": "^3.0.2",
- "postcss-modules-scope": "^2.2.0",
- "postcss-modules-values": "^3.0.0",
- "postcss-value-parser": "^4.1.0",
- "schema-utils": "^2.7.0",
- "semver": "^6.3.0"
- },
- "dependencies": {
- "schema-utils": {
- "version": "2.7.1",
- "optional": true,
- "requires": {
- "@types/json-schema": "^7.0.5",
- "ajv": "^6.12.4",
- "ajv-keywords": "^3.5.2"
- }
- },
- "semver": {
- "version": "6.3.0",
- "optional": true
- }
- }
- },
- "css-select": {
- "version": "2.1.0",
- "optional": true,
- "requires": {
- "boolbase": "^1.0.0",
- "css-what": "^3.2.1",
- "domutils": "^1.7.0",
- "nth-check": "^1.0.2"
- },
- "dependencies": {
- "dom-serializer": {
- "version": "0.2.2",
- "optional": true,
- "requires": {
- "domelementtype": "^2.0.1",
- "entities": "^2.0.0"
- },
- "dependencies": {
- "domelementtype": {
- "version": "2.2.0",
- "optional": true
- }
- }
- },
- "domelementtype": {
- "version": "1.3.1",
- "optional": true
- },
- "domutils": {
- "version": "1.7.0",
- "optional": true,
- "requires": {
- "dom-serializer": "0",
- "domelementtype": "1"
- }
- }
- }
- },
- "css-select-base-adapter": {
- "version": "0.1.1",
- "optional": true
- },
- "css-tree": {
- "version": "1.0.0-alpha.37",
- "optional": true,
- "requires": {
- "mdn-data": "2.0.4",
- "source-map": "^0.6.1"
- },
- "dependencies": {
- "source-map": {
- "version": "0.6.1",
- "optional": true
- }
- }
- },
"css-vendor": {
"version": "2.0.8",
"requires": {
@@ -48510,47 +47513,14 @@
"is-in-browser": "^1.0.2"
}
},
- "css-what": {
- "version": "3.4.2",
- "optional": true
- },
"css.escape": {
"version": "1.5.1",
"optional": true
},
- "cssesc": {
- "version": "3.0.0",
- "optional": true
- },
"cssfontparser": {
"version": "1.2.1",
"optional": true
},
- "csso": {
- "version": "4.2.0",
- "optional": true,
- "requires": {
- "css-tree": "^1.1.2"
- },
- "dependencies": {
- "css-tree": {
- "version": "1.1.3",
- "optional": true,
- "requires": {
- "mdn-data": "2.0.14",
- "source-map": "^0.6.1"
- }
- },
- "mdn-data": {
- "version": "2.0.14",
- "optional": true
- },
- "source-map": {
- "version": "0.6.1",
- "optional": true
- }
- }
- },
"cssom": {
"version": "0.4.4",
"optional": true
@@ -48620,10 +47590,6 @@
"array-find-index": "^1.0.1"
}
},
- "cyclist": {
- "version": "1.0.1",
- "optional": true
- },
"cypress": {
"version": "12.4.0",
"optional": true,
@@ -48708,14 +47674,6 @@
"restore-cursor": "^3.1.0"
}
},
- "cli-table3": {
- "version": "0.6.2",
- "optional": true,
- "requires": {
- "@colors/colors": "1.5.0",
- "string-width": "^4.2.0"
- }
- },
"cli-truncate": {
"version": "2.1.0",
"optional": true,
@@ -48724,10 +47682,6 @@
"string-width": "^4.2.0"
}
},
- "colorette": {
- "version": "2.0.16",
- "optional": true
- },
"commander": {
"version": "5.1.0",
"optional": true
@@ -49168,18 +48122,18 @@
},
"decode-uri-component": {
"version": "0.2.0",
- "devOptional": true
+ "dev": true
},
"decompress-response": {
"version": "6.0.0",
- "dev": true,
+ "devOptional": true,
"requires": {
"mimic-response": "^3.1.0"
},
"dependencies": {
"mimic-response": {
"version": "3.1.0",
- "dev": true
+ "devOptional": true
}
}
},
@@ -49187,18 +48141,6 @@
"version": "0.7.0",
"optional": true
},
- "deep-equal": {
- "version": "1.1.1",
- "optional": true,
- "requires": {
- "is-arguments": "^1.0.4",
- "is-date-object": "^1.0.1",
- "is-regex": "^1.0.4",
- "object-is": "^1.0.1",
- "object-keys": "^1.1.1",
- "regexp.prototype.flags": "^1.2.0"
- }
- },
"deep-extend": {
"version": "0.6.0"
},
@@ -49206,14 +48148,20 @@
"version": "0.1.4",
"optional": true
},
- "deep-object-diff": {
- "version": "1.1.0",
- "optional": true
- },
"deepmerge": {
"version": "4.2.2",
"devOptional": true
},
+ "default-browser-id": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/default-browser-id/-/default-browser-id-3.0.0.tgz",
+ "integrity": "sha512-OZ1y3y0SqSICtE8DE4S8YOE9UZOJ8wO16fKWVP5J1Qz42kV9jcnMVFrEE/noXb/ss3Q4pZIH79kxofzyNNtUNA==",
+ "optional": true,
+ "requires": {
+ "bplist-parser": "^0.2.0",
+ "untildify": "^4.0.0"
+ }
+ },
"defaults": {
"version": "1.0.3",
"dev": true,
@@ -49223,7 +48171,13 @@
},
"defer-to-connect": {
"version": "2.0.1",
- "dev": true
+ "devOptional": true
+ },
+ "define-lazy-prop": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/define-lazy-prop/-/define-lazy-prop-2.0.0.tgz",
+ "integrity": "sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==",
+ "optional": true
},
"define-properties": {
"version": "1.1.4",
@@ -49235,7 +48189,7 @@
},
"define-property": {
"version": "2.0.2",
- "devOptional": true,
+ "dev": true,
"requires": {
"is-descriptor": "^1.0.2",
"isobject": "^3.0.1"
@@ -49243,21 +48197,21 @@
"dependencies": {
"is-accessor-descriptor": {
"version": "1.0.0",
- "devOptional": true,
+ "dev": true,
"requires": {
"kind-of": "^6.0.0"
}
},
"is-data-descriptor": {
"version": "1.0.0",
- "devOptional": true,
+ "dev": true,
"requires": {
"kind-of": "^6.0.0"
}
},
"is-descriptor": {
"version": "1.0.2",
- "devOptional": true,
+ "dev": true,
"requires": {
"is-accessor-descriptor": "^1.0.0",
"is-data-descriptor": "^1.0.0",
@@ -49266,16 +48220,47 @@
}
}
},
+ "defu": {
+ "version": "6.1.2",
+ "resolved": "https://registry.npmjs.org/defu/-/defu-6.1.2.tgz",
+ "integrity": "sha512-+uO4+qr7msjNNWKYPHqN/3+Dx3NFkmIzayk2L1MyZQlvgZb/J1A0fo410dpKrN2SnqFjt8n4JL8fDJE0wIgjFQ==",
+ "optional": true
+ },
+ "del": {
+ "version": "6.1.1",
+ "resolved": "https://registry.npmjs.org/del/-/del-6.1.1.tgz",
+ "integrity": "sha512-ua8BhapfP0JUJKC/zV9yHHDW/rDoDxP4Zhn3AkA6/xT6gY7jYXJiaeyBZznYVujhZZET+UgcbZiQ7sN3WqcImg==",
+ "optional": true,
+ "requires": {
+ "globby": "^11.0.1",
+ "graceful-fs": "^4.2.4",
+ "is-glob": "^4.0.1",
+ "is-path-cwd": "^2.2.0",
+ "is-path-inside": "^3.0.2",
+ "p-map": "^4.0.0",
+ "rimraf": "^3.0.2",
+ "slash": "^3.0.0"
+ },
+ "dependencies": {
+ "p-map": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/p-map/-/p-map-4.0.0.tgz",
+ "integrity": "sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==",
+ "optional": true,
+ "requires": {
+ "aggregate-error": "^3.0.0"
+ }
+ }
+ }
+ },
"delayed-stream": {
"version": "1.0.0",
"devOptional": true
},
- "delegate": {
- "version": "3.2.0",
- "optional": true
- },
"delegates": {
"version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/delegates/-/delegates-1.0.0.tgz",
+ "integrity": "sha512-bd2L678uiWATM6m5Z1VzNCErI3jiGzt6HGY8OVICs40JQq/HALfbyNJmp0UDakEY4pMMaN0Ly5om/B1VI/+xfQ==",
"optional": true
},
"depd": {
@@ -49499,13 +48484,11 @@
"version": "2.3.1",
"dev": true
},
- "des.js": {
- "version": "1.0.1",
- "optional": true,
- "requires": {
- "inherits": "^2.0.1",
- "minimalistic-assert": "^1.0.0"
- }
+ "dequal": {
+ "version": "2.0.3",
+ "resolved": "https://registry.npmjs.org/dequal/-/dequal-2.0.3.tgz",
+ "integrity": "sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==",
+ "optional": true
},
"destroy": {
"version": "1.2.0",
@@ -49514,8 +48497,10 @@
"devOptional": true
},
"detect-indent": {
- "version": "6.0.0",
- "dev": true
+ "version": "6.1.0",
+ "resolved": "https://registry.npmjs.org/detect-indent/-/detect-indent-6.1.0.tgz",
+ "integrity": "sha512-reYkTUJAZb9gUuZ2RvVCNhVHdg62RHnJ7WJl8ftMi4diZ6NWlciOzQN88pUhSELEwflJht4oQDv0F0BMlwaYtA==",
+ "devOptional": true
},
"detect-newline": {
"version": "3.1.0",
@@ -49524,50 +48509,64 @@
"detect-node-es": {
"version": "1.1.0"
},
+ "detect-package-manager": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/detect-package-manager/-/detect-package-manager-2.0.1.tgz",
+ "integrity": "sha512-j/lJHyoLlWi6G1LDdLgvUtz60Zo5GEj+sVYtTVXnYLDPuzgC3llMxonXym9zIwhhUII8vjdw0LXxavpLqTbl1A==",
+ "optional": true,
+ "requires": {
+ "execa": "^5.1.1"
+ },
+ "dependencies": {
+ "execa": {
+ "version": "5.1.1",
+ "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz",
+ "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==",
+ "optional": true,
+ "requires": {
+ "cross-spawn": "^7.0.3",
+ "get-stream": "^6.0.0",
+ "human-signals": "^2.1.0",
+ "is-stream": "^2.0.0",
+ "merge-stream": "^2.0.0",
+ "npm-run-path": "^4.0.1",
+ "onetime": "^5.1.2",
+ "signal-exit": "^3.0.3",
+ "strip-final-newline": "^2.0.0"
+ }
+ },
+ "get-stream": {
+ "version": "6.0.1",
+ "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz",
+ "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==",
+ "optional": true
+ },
+ "human-signals": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz",
+ "integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==",
+ "optional": true
+ }
+ }
+ },
"detect-port": {
- "version": "1.3.0",
+ "version": "1.5.1",
+ "resolved": "https://registry.npmjs.org/detect-port/-/detect-port-1.5.1.tgz",
+ "integrity": "sha512-aBzdj76lueB6uUst5iAs7+0H/oOjqI5D16XUWxlWMIMROhcM0rfsNVk93zTngq1dDNpoXRr++Sus7ETAExppAQ==",
"optional": true,
"requires": {
"address": "^1.0.1",
- "debug": "^2.6.0"
- },
- "dependencies": {
- "debug": {
- "version": "2.6.9",
- "optional": true,
- "requires": {
- "ms": "2.0.0"
- }
- },
- "ms": {
- "version": "2.0.0",
- "optional": true
- }
+ "debug": "4"
}
},
"diff": {
"version": "4.0.2",
- "dev": true
+ "devOptional": true
},
"diff-sequences": {
"version": "27.5.1",
"optional": true
},
- "diffie-hellman": {
- "version": "5.0.3",
- "optional": true,
- "requires": {
- "bn.js": "^4.1.0",
- "miller-rabin": "^4.0.0",
- "randombytes": "^2.0.0"
- },
- "dependencies": {
- "bn.js": {
- "version": "4.12.0",
- "optional": true
- }
- }
- },
"dir-glob": {
"version": "3.0.1",
"requires": {
@@ -49593,13 +48592,6 @@
"version": "0.5.14",
"optional": true
},
- "dom-converter": {
- "version": "0.2.0",
- "optional": true,
- "requires": {
- "utila": "~0.4"
- }
- },
"dom-helpers": {
"version": "5.2.0",
"requires": {
@@ -49628,14 +48620,6 @@
}
}
},
- "dom-walk": {
- "version": "0.1.2",
- "optional": true
- },
- "domain-browser": {
- "version": "1.2.0",
- "optional": true
- },
"domelementtype": {
"version": "2.2.0"
},
@@ -49681,7 +48665,7 @@
},
"dot-case": {
"version": "3.0.4",
- "devOptional": true,
+ "dev": true,
"requires": {
"no-case": "^3.0.4",
"tslib": "^2.0.3"
@@ -49689,7 +48673,7 @@
"dependencies": {
"no-case": {
"version": "3.0.4",
- "devOptional": true,
+ "dev": true,
"requires": {
"lower-case": "^2.0.2",
"tslib": "^2.0.3"
@@ -49713,7 +48697,9 @@
"dev": true
},
"dotenv-expand": {
- "version": "5.1.0",
+ "version": "10.0.0",
+ "resolved": "https://registry.npmjs.org/dotenv-expand/-/dotenv-expand-10.0.0.tgz",
+ "integrity": "sha512-GopVGCpVS1UKH75VKHGuQFqS1Gusej0z4FyQkPdwjil2gNIv+LNsqBlboOzpJFZKVT95GkCyWJbBSdFEFUWI2A==",
"optional": true
},
"downshift": {
@@ -49747,19 +48733,50 @@
},
"duplexer": {
"version": "0.1.2",
- "devOptional": true
+ "dev": true
},
"duplexer3": {
"version": "0.1.4"
},
"duplexify": {
"version": "3.7.1",
+ "resolved": "https://registry.npmjs.org/duplexify/-/duplexify-3.7.1.tgz",
+ "integrity": "sha512-07z8uv2wMyS51kKhD1KsdXJg5WQ6t93RneqRxUHnskXVtlYYkLqM0gqStQZ3pj073g687jPCHrqNfCzawLYh5g==",
"optional": true,
"requires": {
"end-of-stream": "^1.0.0",
"inherits": "^2.0.1",
"readable-stream": "^2.0.0",
"stream-shift": "^1.0.0"
+ },
+ "dependencies": {
+ "isarray": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz",
+ "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==",
+ "optional": true
+ },
+ "readable-stream": {
+ "version": "2.3.8",
+ "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz",
+ "integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==",
+ "optional": true,
+ "requires": {
+ "core-util-is": "~1.0.0",
+ "inherits": "~2.0.3",
+ "isarray": "~1.0.0",
+ "process-nextick-args": "~2.0.0",
+ "safe-buffer": "~5.1.1",
+ "string_decoder": "~1.1.1",
+ "util-deprecate": "~1.0.1"
+ }
+ },
+ "safe-buffer": {
+ "version": "5.1.2",
+ "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz",
+ "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==",
+ "optional": true
+ }
}
},
"ecc-jsbn": {
@@ -49785,43 +48802,24 @@
"devOptional": true
},
"ejs": {
- "version": "2.7.4",
- "optional": true
+ "version": "3.1.9",
+ "resolved": "https://registry.npmjs.org/ejs/-/ejs-3.1.9.tgz",
+ "integrity": "sha512-rC+QVNMJWv+MtPgkt0y+0rVEIdbtxVADApW9JXrUVlzHetgcyczP/E7DJmWJ4fJCZF2cPcBk0laWO9ZHMG3DmQ==",
+ "devOptional": true,
+ "requires": {
+ "jake": "^10.8.5"
+ }
},
"electron-to-chromium": {
- "version": "1.3.710",
+ "version": "1.4.384",
+ "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.384.tgz",
+ "integrity": "sha512-I97q0MmRAAqj53+a8vZsDkEXBZki+ehYAOPzwtQzALip52aEp2+BJqHFtTlsfjoqVZYwPpHC8wM6MbsSZQ/Eqw==",
"devOptional": true
},
"elegant-spinner": {
"version": "1.0.1",
"dev": true
},
- "element-resize-detector": {
- "version": "1.2.2",
- "optional": true,
- "requires": {
- "batch-processor": "1.0.0"
- }
- },
- "elliptic": {
- "version": "6.5.4",
- "optional": true,
- "requires": {
- "bn.js": "^4.11.9",
- "brorand": "^1.1.0",
- "hash.js": "^1.0.0",
- "hmac-drbg": "^1.0.1",
- "inherits": "^2.0.4",
- "minimalistic-assert": "^1.0.1",
- "minimalistic-crypto-utils": "^1.0.1"
- },
- "dependencies": {
- "bn.js": {
- "version": "4.12.0",
- "optional": true
- }
- }
- },
"emittery": {
"version": "0.8.1",
"optional": true
@@ -49831,16 +48829,7 @@
},
"emojis-list": {
"version": "3.0.0",
- "devOptional": true
- },
- "emotion-theming": {
- "version": "10.0.27",
- "optional": true,
- "requires": {
- "@babel/runtime": "^7.5.5",
- "@emotion/weak-memoize": "0.2.5",
- "hoist-non-react-statics": "^3.3.0"
- }
+ "dev": true
},
"encodeurl": {
"version": "1.0.2",
@@ -49854,25 +48843,6 @@
"once": "^1.4.0"
}
},
- "enhanced-resolve": {
- "version": "4.5.0",
- "optional": true,
- "requires": {
- "graceful-fs": "^4.1.2",
- "memory-fs": "^0.5.0",
- "tapable": "^1.0.0"
- },
- "dependencies": {
- "memory-fs": {
- "version": "0.5.0",
- "optional": true,
- "requires": {
- "errno": "^0.1.3",
- "readable-stream": "^2.0.1"
- }
- }
- }
- },
"enquirer": {
"version": "2.3.6",
"devOptional": true,
@@ -49895,12 +48865,11 @@
"integrity": "sha512-qwtwYJ9d3XFxXRDudPEAMszaggpDgcfb1ZGYb9/cNyMugN2/a8EtviopnRL6c+petj2vp6/gxwYd9ExL1/iPcw==",
"dev": true
},
- "errno": {
- "version": "0.1.8",
- "optional": true,
- "requires": {
- "prr": "~1.0.1"
- }
+ "envinfo": {
+ "version": "7.8.1",
+ "resolved": "https://registry.npmjs.org/envinfo/-/envinfo-7.8.1.tgz",
+ "integrity": "sha512-/o+BXHmB7ocbHEAs6F2EnG0ogybVVUdkRunTT2glZU9XAaGmhqskrvKwqXuDfNjEO0LZKWdejEEpnq8aM0tOaw==",
+ "optional": true
},
"error-ex": {
"version": "1.3.2",
@@ -49938,10 +48907,6 @@
"unbox-primitive": "^1.0.2"
}
},
- "es-array-method-boxes-properly": {
- "version": "1.0.0",
- "optional": true
- },
"es-get-iterator": {
"version": "1.1.2",
"optional": true,
@@ -49962,6 +48927,12 @@
}
}
},
+ "es-module-lexer": {
+ "version": "0.9.3",
+ "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-0.9.3.tgz",
+ "integrity": "sha512-1HQ2M2sPtxwnvOvT1ZClHyQDiggdNjURWpY2we6aMKCQiUVxTmVs2UYPLIrD84sS+kMdUwfBSylbJPwNnBrnHQ==",
+ "optional": true
+ },
"es-to-primitive": {
"version": "1.2.1",
"devOptional": true,
@@ -49971,12 +48942,10 @@
"is-symbol": "^1.0.2"
}
},
- "es5-shim": {
- "version": "4.5.15",
- "optional": true
- },
- "es6-shim": {
- "version": "0.35.6",
+ "es6-object-assign": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/es6-object-assign/-/es6-object-assign-1.1.0.tgz",
+ "integrity": "sha512-MEl9uirslVwqQU369iHNWZXsI8yaZYGg/D65aOgZkeyFJwHYSxilf7rQzXKI7DdDuBPrBXbfk3sl9hJhmd5AUw==",
"optional": true
},
"esbuild": {
@@ -50003,13 +48972,239 @@
"esbuild-windows-32": "0.14.34",
"esbuild-windows-64": "0.14.34",
"esbuild-windows-arm64": "0.14.34"
+ },
+ "dependencies": {
+ "esbuild-android-64": {
+ "version": "0.14.34",
+ "resolved": "https://registry.npmjs.org/esbuild-android-64/-/esbuild-android-64-0.14.34.tgz",
+ "integrity": "sha512-XfxcfJqmMYsT/LXqrptzFxmaR3GWzXHDLdFNIhm6S00zPaQF1TBBWm+9t0RZ6LRR7iwH57DPjaOeW20vMqI4Yw==",
+ "dev": true,
+ "optional": true
+ },
+ "esbuild-android-arm64": {
+ "version": "0.14.34",
+ "resolved": "https://registry.npmjs.org/esbuild-android-arm64/-/esbuild-android-arm64-0.14.34.tgz",
+ "integrity": "sha512-T02+NXTmSRL1Mc6puz+R9CB54rSPICkXKq6+tw8B6vxZFnCPzbJxgwIX4kcluz9p8nYBjF3+lSilTGWb7+Xgew==",
+ "dev": true,
+ "optional": true
+ },
+ "esbuild-darwin-64": {
+ "version": "0.14.34",
+ "resolved": "https://registry.npmjs.org/esbuild-darwin-64/-/esbuild-darwin-64-0.14.34.tgz",
+ "integrity": "sha512-pLRip2Bh4Ng7Bf6AMgCrSp3pPe/qZyf11h5Qo2mOfJqLWzSVjxrXW+CFRJfrOVP7TCnh/gmZSM2AFdCPB72vtw==",
+ "dev": true,
+ "optional": true
+ },
+ "esbuild-freebsd-64": {
+ "version": "0.14.34",
+ "resolved": "https://registry.npmjs.org/esbuild-freebsd-64/-/esbuild-freebsd-64-0.14.34.tgz",
+ "integrity": "sha512-m0HBjePhe0hAQJgtMRMNV9kMgIyV4/qSnzPx42kRMQBcPhgjAq1JRu4Il26czC+9FgpMbFkUktb07f/Lwnc6CA==",
+ "dev": true,
+ "optional": true
+ },
+ "esbuild-freebsd-arm64": {
+ "version": "0.14.34",
+ "resolved": "https://registry.npmjs.org/esbuild-freebsd-arm64/-/esbuild-freebsd-arm64-0.14.34.tgz",
+ "integrity": "sha512-cpRc2B94L1KvMPPYB4D6G39jLqpKlD3noAMY4/e86iXXXkhUYJJEtTuyNFTa9JRpWM0xCAp4mxjHjoIiLuoCLA==",
+ "dev": true,
+ "optional": true
+ },
+ "esbuild-linux-32": {
+ "version": "0.14.34",
+ "resolved": "https://registry.npmjs.org/esbuild-linux-32/-/esbuild-linux-32-0.14.34.tgz",
+ "integrity": "sha512-8nQaEaoW7MH/K/RlozJa+lE1ejHIr8fuPIHhc513UebRav7HtXgQvxHQ6VZRUkWtep23M6dd7UqhwO1tMOfzQQ==",
+ "dev": true,
+ "optional": true
+ },
+ "esbuild-linux-64": {
+ "version": "0.14.34",
+ "resolved": "https://registry.npmjs.org/esbuild-linux-64/-/esbuild-linux-64-0.14.34.tgz",
+ "integrity": "sha512-Y3of4qQoLLlAgf042MlrY1P+7PnN9zWj8nVtw9XQG5hcLOZLz7IKpU35oeu7n4wvyaZHwvQqDJ93gRLqdJekcQ==",
+ "dev": true,
+ "optional": true
+ },
+ "esbuild-linux-arm": {
+ "version": "0.14.34",
+ "resolved": "https://registry.npmjs.org/esbuild-linux-arm/-/esbuild-linux-arm-0.14.34.tgz",
+ "integrity": "sha512-9lpq1NcJqssAF7alCO6zL3gvBVVt/lKw4oetUM7OgNnRX0OWpB+ZIO9FwCrSj/dMdmgDhPLf+119zB8QxSMmAg==",
+ "dev": true,
+ "optional": true
+ },
+ "esbuild-linux-arm64": {
+ "version": "0.14.34",
+ "resolved": "https://registry.npmjs.org/esbuild-linux-arm64/-/esbuild-linux-arm64-0.14.34.tgz",
+ "integrity": "sha512-IlWaGtj9ir7+Nrume1DGcyzBDlK8GcnJq0ANKwcI9pVw8tqr+6GD0eqyF9SF1mR8UmAp+odrx1H5NdR2cHdFHA==",
+ "dev": true,
+ "optional": true
+ },
+ "esbuild-linux-mips64le": {
+ "version": "0.14.34",
+ "resolved": "https://registry.npmjs.org/esbuild-linux-mips64le/-/esbuild-linux-mips64le-0.14.34.tgz",
+ "integrity": "sha512-k3or+01Rska1AjUyNjA4buEwB51eyN/xPQAoOx1CjzAQC3l8rpjUDw55kXyL63O/1MUi4ISvtNtl8gLwdyEcxw==",
+ "dev": true,
+ "optional": true
+ },
+ "esbuild-linux-ppc64le": {
+ "version": "0.14.34",
+ "resolved": "https://registry.npmjs.org/esbuild-linux-ppc64le/-/esbuild-linux-ppc64le-0.14.34.tgz",
+ "integrity": "sha512-+qxb8M9FfM2CJaVU7GgYpJOHM1ngQOx+/VrtBjb4C8oVqaPcESCeg2anjl+HRZy8VpYc71q/iBYausPPbJ+Keg==",
+ "dev": true,
+ "optional": true
+ },
+ "esbuild-linux-riscv64": {
+ "version": "0.14.34",
+ "resolved": "https://registry.npmjs.org/esbuild-linux-riscv64/-/esbuild-linux-riscv64-0.14.34.tgz",
+ "integrity": "sha512-Y717ltBdQ5j5sZIHdy1DV9kieo0wMip0dCmVSTceowCPYSn1Cg33Kd6981+F/3b9FDMzNWldZFOBRILViENZSA==",
+ "dev": true,
+ "optional": true
+ },
+ "esbuild-linux-s390x": {
+ "version": "0.14.34",
+ "resolved": "https://registry.npmjs.org/esbuild-linux-s390x/-/esbuild-linux-s390x-0.14.34.tgz",
+ "integrity": "sha512-bDDgYO4LhL4+zPs+WcBkXph+AQoPcQRTv18FzZS0WhjfH8TZx2QqlVPGhmhZ6WidrY+jKthUqO6UhGyIb4MpmA==",
+ "dev": true,
+ "optional": true
+ },
+ "esbuild-netbsd-64": {
+ "version": "0.14.34",
+ "resolved": "https://registry.npmjs.org/esbuild-netbsd-64/-/esbuild-netbsd-64-0.14.34.tgz",
+ "integrity": "sha512-cfaFGXdRt0+vHsjNPyF0POM4BVSHPSbhLPe8mppDc7GDDxjIl08mV1Zou14oDWMp/XZMjYN1kWYRSfftiD0vvQ==",
+ "dev": true,
+ "optional": true
+ },
+ "esbuild-openbsd-64": {
+ "version": "0.14.34",
+ "resolved": "https://registry.npmjs.org/esbuild-openbsd-64/-/esbuild-openbsd-64-0.14.34.tgz",
+ "integrity": "sha512-vmy9DxXVnRiI14s8GKuYBtess+EVcDALkbpTqd5jw4XITutIzyB7n4x0Tj5utAkKsgZJB22lLWGekr0ABnSLow==",
+ "dev": true,
+ "optional": true
+ },
+ "esbuild-sunos-64": {
+ "version": "0.14.34",
+ "resolved": "https://registry.npmjs.org/esbuild-sunos-64/-/esbuild-sunos-64-0.14.34.tgz",
+ "integrity": "sha512-eNPVatNET1F7tRMhii7goL/eptfxc0ALRjrj9SPFNqp0zmxrehBFD6BaP3R4LjMn6DbMO0jOAnTLFKr8NqcJAA==",
+ "dev": true,
+ "optional": true
+ },
+ "esbuild-windows-32": {
+ "version": "0.14.34",
+ "resolved": "https://registry.npmjs.org/esbuild-windows-32/-/esbuild-windows-32-0.14.34.tgz",
+ "integrity": "sha512-EFhpXyHEcnqWYe2rAHFd8dRw8wkrd9U+9oqcyoEL84GbanAYjiiIjBZsnR8kl0sCQ5w6bLpk7vCEIA2VS32Vcg==",
+ "dev": true,
+ "optional": true
+ },
+ "esbuild-windows-64": {
+ "version": "0.14.34",
+ "resolved": "https://registry.npmjs.org/esbuild-windows-64/-/esbuild-windows-64-0.14.34.tgz",
+ "integrity": "sha512-a8fbl8Ky7PxNEjf1aJmtxdDZj32/hC7S1OcA2ckEpCJRTjiKslI9vAdPpSjrKIWhws4Galpaawy0nB7fjHYf5Q==",
+ "dev": true,
+ "optional": true
+ },
+ "esbuild-windows-arm64": {
+ "version": "0.14.34",
+ "resolved": "https://registry.npmjs.org/esbuild-windows-arm64/-/esbuild-windows-arm64-0.14.34.tgz",
+ "integrity": "sha512-EYvmKbSa2B3sPnpC28UEu9jBK5atGV4BaVRE7CYGUci2Hlz4AvtV/LML+TcDMT6gBgibnN2gcltWclab3UutMg==",
+ "dev": true,
+ "optional": true
+ }
}
},
+ "esbuild-android-64": {
+ "version": "0.15.15",
+ "resolved": "https://registry.npmjs.org/esbuild-android-64/-/esbuild-android-64-0.15.15.tgz",
+ "integrity": "sha512-F+WjjQxO+JQOva3tJWNdVjouFMLK6R6i5gjDvgUthLYJnIZJsp1HlF523k73hELY20WPyEO8xcz7aaYBVkeg5Q==",
+ "dev": true,
+ "optional": true
+ },
+ "esbuild-android-arm64": {
+ "version": "0.15.15",
+ "resolved": "https://registry.npmjs.org/esbuild-android-arm64/-/esbuild-android-arm64-0.15.15.tgz",
+ "integrity": "sha512-attlyhD6Y22jNyQ0fIIQ7mnPvDWKw7k6FKnsXlBvQE6s3z6s6cuEHcSgoirquQc7TmZgVCK5fD/2uxmRN+ZpcQ==",
+ "dev": true,
+ "optional": true
+ },
+ "esbuild-darwin-64": {
+ "version": "0.15.15",
+ "resolved": "https://registry.npmjs.org/esbuild-darwin-64/-/esbuild-darwin-64-0.15.15.tgz",
+ "integrity": "sha512-ohZtF8W1SHJ4JWldsPVdk8st0r9ExbAOSrBOh5L+Mq47i696GVwv1ab/KlmbUoikSTNoXEhDzVpxUR/WIO19FQ==",
+ "dev": true,
+ "optional": true
+ },
"esbuild-darwin-arm64": {
"version": "0.14.34",
"dev": true,
"optional": true
},
+ "esbuild-freebsd-64": {
+ "version": "0.15.15",
+ "resolved": "https://registry.npmjs.org/esbuild-freebsd-64/-/esbuild-freebsd-64-0.15.15.tgz",
+ "integrity": "sha512-KkTg+AmDXz1IvA9S1gt8dE24C8Thx0X5oM0KGF322DuP+P3evwTL9YyusHAWNsh4qLsR80nvBr/EIYs29VSwuA==",
+ "dev": true,
+ "optional": true
+ },
+ "esbuild-freebsd-arm64": {
+ "version": "0.15.15",
+ "resolved": "https://registry.npmjs.org/esbuild-freebsd-arm64/-/esbuild-freebsd-arm64-0.15.15.tgz",
+ "integrity": "sha512-FUcML0DRsuyqCMfAC+HoeAqvWxMeq0qXvclZZ/lt2kLU6XBnDA5uKTLUd379WYEyVD4KKFctqWd9tTuk8C/96g==",
+ "dev": true,
+ "optional": true
+ },
+ "esbuild-linux-32": {
+ "version": "0.15.15",
+ "resolved": "https://registry.npmjs.org/esbuild-linux-32/-/esbuild-linux-32-0.15.15.tgz",
+ "integrity": "sha512-q28Qn5pZgHNqug02aTkzw5sW9OklSo96b5nm17Mq0pDXrdTBcQ+M6Q9A1B+dalFeynunwh/pvfrNucjzwDXj+Q==",
+ "dev": true,
+ "optional": true
+ },
+ "esbuild-linux-64": {
+ "version": "0.15.15",
+ "resolved": "https://registry.npmjs.org/esbuild-linux-64/-/esbuild-linux-64-0.15.15.tgz",
+ "integrity": "sha512-217KPmWMirkf8liO+fj2qrPwbIbhNTGNVtvqI1TnOWJgcMjUWvd677Gq3fTzXEjilkx2yWypVnTswM2KbXgoAg==",
+ "dev": true,
+ "optional": true
+ },
+ "esbuild-linux-arm": {
+ "version": "0.15.15",
+ "resolved": "https://registry.npmjs.org/esbuild-linux-arm/-/esbuild-linux-arm-0.15.15.tgz",
+ "integrity": "sha512-RYVW9o2yN8yM7SB1yaWr378CwrjvGCyGybX3SdzPHpikUHkME2AP55Ma20uNwkNyY2eSYFX9D55kDrfQmQBR4w==",
+ "dev": true,
+ "optional": true
+ },
+ "esbuild-linux-arm64": {
+ "version": "0.15.15",
+ "resolved": "https://registry.npmjs.org/esbuild-linux-arm64/-/esbuild-linux-arm64-0.15.15.tgz",
+ "integrity": "sha512-/ltmNFs0FivZkYsTzAsXIfLQX38lFnwJTWCJts0IbCqWZQe+jjj0vYBNbI0kmXLb3y5NljiM5USVAO1NVkdh2g==",
+ "dev": true,
+ "optional": true
+ },
+ "esbuild-linux-mips64le": {
+ "version": "0.15.15",
+ "resolved": "https://registry.npmjs.org/esbuild-linux-mips64le/-/esbuild-linux-mips64le-0.15.15.tgz",
+ "integrity": "sha512-PksEPb321/28GFFxtvL33yVPfnMZihxkEv5zME2zapXGp7fA1X2jYeiTUK+9tJ/EGgcNWuwvtawPxJG7Mmn86A==",
+ "dev": true,
+ "optional": true
+ },
+ "esbuild-linux-ppc64le": {
+ "version": "0.15.15",
+ "resolved": "https://registry.npmjs.org/esbuild-linux-ppc64le/-/esbuild-linux-ppc64le-0.15.15.tgz",
+ "integrity": "sha512-ek8gJBEIhcpGI327eAZigBOHl58QqrJrYYIZBWQCnH3UnXoeWMrMZLeeZL8BI2XMBhP+sQ6ERctD5X+ajL/AIA==",
+ "dev": true,
+ "optional": true
+ },
+ "esbuild-linux-riscv64": {
+ "version": "0.15.15",
+ "resolved": "https://registry.npmjs.org/esbuild-linux-riscv64/-/esbuild-linux-riscv64-0.15.15.tgz",
+ "integrity": "sha512-H5ilTZb33/GnUBrZMNJtBk7/OXzDHDXjIzoLXHSutwwsLxSNaLxzAaMoDGDd/keZoS+GDBqNVxdCkpuiRW4OSw==",
+ "dev": true,
+ "optional": true
+ },
+ "esbuild-linux-s390x": {
+ "version": "0.15.15",
+ "resolved": "https://registry.npmjs.org/esbuild-linux-s390x/-/esbuild-linux-s390x-0.15.15.tgz",
+ "integrity": "sha512-jKaLUg78mua3rrtrkpv4Or2dNTJU7bgHN4bEjT4OX4GR7nLBSA9dfJezQouTxMmIW7opwEC5/iR9mpC18utnxQ==",
+ "dev": true,
+ "optional": true
+ },
"esbuild-loader": {
"version": "2.18.0",
"dev": true,
@@ -50049,6 +49244,63 @@
}
}
},
+ "esbuild-netbsd-64": {
+ "version": "0.15.15",
+ "resolved": "https://registry.npmjs.org/esbuild-netbsd-64/-/esbuild-netbsd-64-0.15.15.tgz",
+ "integrity": "sha512-aOvmF/UkjFuW6F36HbIlImJTTx45KUCHJndtKo+KdP8Dhq3mgLRKW9+6Ircpm8bX/RcS3zZMMmaBLkvGY06Gvw==",
+ "dev": true,
+ "optional": true
+ },
+ "esbuild-openbsd-64": {
+ "version": "0.15.15",
+ "resolved": "https://registry.npmjs.org/esbuild-openbsd-64/-/esbuild-openbsd-64-0.15.15.tgz",
+ "integrity": "sha512-HFFX+WYedx1w2yJ1VyR1Dfo8zyYGQZf1cA69bLdrHzu9svj6KH6ZLK0k3A1/LFPhcEY9idSOhsB2UyU0tHPxgQ==",
+ "dev": true,
+ "optional": true
+ },
+ "esbuild-plugin-alias": {
+ "version": "0.2.1",
+ "resolved": "https://registry.npmjs.org/esbuild-plugin-alias/-/esbuild-plugin-alias-0.2.1.tgz",
+ "integrity": "sha512-jyfL/pwPqaFXyKnj8lP8iLk6Z0m099uXR45aSN8Av1XD4vhvQutxxPzgA2bTcAwQpa1zCXDcWOlhFgyP3GKqhQ==",
+ "optional": true
+ },
+ "esbuild-register": {
+ "version": "3.4.2",
+ "resolved": "https://registry.npmjs.org/esbuild-register/-/esbuild-register-3.4.2.tgz",
+ "integrity": "sha512-kG/XyTDyz6+YDuyfB9ZoSIOOmgyFCH+xPRtsCa8W85HLRV5Csp+o3jWVbOSHgSLfyLc5DmP+KFDNwty4mEjC+Q==",
+ "optional": true,
+ "requires": {
+ "debug": "^4.3.4"
+ }
+ },
+ "esbuild-sunos-64": {
+ "version": "0.15.15",
+ "resolved": "https://registry.npmjs.org/esbuild-sunos-64/-/esbuild-sunos-64-0.15.15.tgz",
+ "integrity": "sha512-jOPBudffG4HN8yJXcK9rib/ZTFoTA5pvIKbRrt3IKAGMq1EpBi4xoVoSRrq/0d4OgZLaQbmkHp8RO9eZIn5atA==",
+ "dev": true,
+ "optional": true
+ },
+ "esbuild-windows-32": {
+ "version": "0.15.15",
+ "resolved": "https://registry.npmjs.org/esbuild-windows-32/-/esbuild-windows-32-0.15.15.tgz",
+ "integrity": "sha512-MDkJ3QkjnCetKF0fKxCyYNBnOq6dmidcwstBVeMtXSgGYTy8XSwBeIE4+HuKiSsG6I/mXEb++px3IGSmTN0XiA==",
+ "dev": true,
+ "optional": true
+ },
+ "esbuild-windows-64": {
+ "version": "0.15.15",
+ "resolved": "https://registry.npmjs.org/esbuild-windows-64/-/esbuild-windows-64-0.15.15.tgz",
+ "integrity": "sha512-xaAUIB2qllE888SsMU3j9nrqyLbkqqkpQyWVkfwSil6BBPgcPk3zOFitTTncEKCLTQy3XV9RuH7PDj3aJDljWA==",
+ "dev": true,
+ "optional": true
+ },
+ "esbuild-windows-arm64": {
+ "version": "0.15.15",
+ "resolved": "https://registry.npmjs.org/esbuild-windows-arm64/-/esbuild-windows-arm64-0.15.15.tgz",
+ "integrity": "sha512-ttuoCYCIJAFx4UUKKWYnFdrVpoXa3+3WWkXVI6s09U+YjhnyM5h96ewTq/WgQj9LFSIlABQvadHSOQyAVjW5xQ==",
+ "dev": true,
+ "optional": true
+ },
"escalade": {
"version": "3.1.1",
"devOptional": true
@@ -50145,15 +49397,6 @@
"supports-color": "^7.1.0"
}
},
- "cross-spawn": {
- "version": "7.0.3",
- "optional": true,
- "requires": {
- "path-key": "^3.1.0",
- "shebang-command": "^2.0.0",
- "which": "^2.0.1"
- }
- },
"escape-string-regexp": {
"version": "4.0.0",
"optional": true
@@ -50194,14 +49437,6 @@
"version": "4.0.6",
"optional": true
},
- "import-fresh": {
- "version": "3.3.0",
- "optional": true,
- "requires": {
- "parent-module": "^1.0.0",
- "resolve-from": "^4.0.0"
- }
- },
"levn": {
"version": "0.4.1",
"optional": true,
@@ -50222,29 +49457,10 @@
"word-wrap": "^1.2.3"
}
},
- "path-key": {
- "version": "3.1.1",
- "optional": true
- },
"prelude-ls": {
"version": "1.2.1",
"optional": true
},
- "resolve-from": {
- "version": "4.0.0",
- "optional": true
- },
- "shebang-command": {
- "version": "2.0.0",
- "optional": true,
- "requires": {
- "shebang-regex": "^3.0.0"
- }
- },
- "shebang-regex": {
- "version": "3.0.0",
- "optional": true
- },
"strip-ansi": {
"version": "6.0.1",
"optional": true,
@@ -50269,13 +49485,6 @@
"type-fest": {
"version": "0.20.2",
"optional": true
- },
- "which": {
- "version": "2.0.2",
- "optional": true,
- "requires": {
- "isexe": "^2.0.0"
- }
}
}
},
@@ -50605,14 +49814,6 @@
"version": "5.0.3",
"optional": true
},
- "eslint-scope": {
- "version": "4.0.3",
- "optional": true,
- "requires": {
- "esrecurse": "^4.1.0",
- "estraverse": "^4.1.1"
- }
- },
"eslint-utils": {
"version": "3.0.0",
"dev": true,
@@ -50633,10 +49834,6 @@
"eslint-visitor-keys": "^1.3.0"
},
"dependencies": {
- "acorn": {
- "version": "7.4.1",
- "optional": true
- },
"eslint-visitor-keys": {
"version": "1.3.0",
"optional": true
@@ -50676,6 +49873,17 @@
"version": "4.3.0",
"devOptional": true
},
+ "estree-to-babel": {
+ "version": "3.2.1",
+ "resolved": "https://registry.npmjs.org/estree-to-babel/-/estree-to-babel-3.2.1.tgz",
+ "integrity": "sha512-YNF+mZ/Wu2FU/gvmzuWtYc8rloubL7wfXCTgouFrnjGVXPA/EeYYA7pupXWrb3Iv1cTBeSSxxJIbK23l4MRNqg==",
+ "optional": true,
+ "requires": {
+ "@babel/traverse": "^7.1.6",
+ "@babel/types": "^7.2.0",
+ "c8": "^7.6.0"
+ }
+ },
"estree-walker": {
"version": "1.0.1",
"dev": true
@@ -50688,6 +49896,15 @@
"version": "1.8.1",
"devOptional": true
},
+ "event-loop-spinner": {
+ "version": "2.2.0",
+ "resolved": "https://registry.npmjs.org/event-loop-spinner/-/event-loop-spinner-2.2.0.tgz",
+ "integrity": "sha512-KB44sV4Mv7uLIkJHJ5qhiZe5um6th2g57nHQL/uqnPHKP2IswoTRWUteEXTJQL4gW++1zqWUni+H2hGkP51c9w==",
+ "optional": true,
+ "requires": {
+ "tslib": "^2.1.0"
+ }
+ },
"event-stream": {
"version": "3.3.4",
"dev": true,
@@ -50709,29 +49926,6 @@
"version": "6.4.7",
"optional": true
},
- "eventemitter3": {
- "version": "4.0.7",
- "optional": true
- },
- "events": {
- "version": "3.3.0",
- "optional": true
- },
- "eventsource": {
- "version": "1.1.0",
- "optional": true,
- "requires": {
- "original": "^1.0.0"
- }
- },
- "evp_bytestokey": {
- "version": "1.0.3",
- "optional": true,
- "requires": {
- "md5.js": "^1.3.4",
- "safe-buffer": "^5.1.1"
- }
- },
"execa": {
"version": "4.1.0",
"devOptional": true,
@@ -50745,39 +49939,6 @@
"onetime": "^5.1.0",
"signal-exit": "^3.0.2",
"strip-final-newline": "^2.0.0"
- },
- "dependencies": {
- "cross-spawn": {
- "version": "7.0.3",
- "devOptional": true,
- "requires": {
- "path-key": "^3.1.0",
- "shebang-command": "^2.0.0",
- "which": "^2.0.1"
- }
- },
- "path-key": {
- "version": "3.1.1",
- "devOptional": true
- },
- "shebang-command": {
- "version": "2.0.0",
- "devOptional": true,
- "requires": {
- "shebang-regex": "^3.0.0"
- }
- },
- "shebang-regex": {
- "version": "3.0.0",
- "devOptional": true
- },
- "which": {
- "version": "2.0.2",
- "devOptional": true,
- "requires": {
- "isexe": "^2.0.0"
- }
- }
}
},
"executable": {
@@ -50802,7 +49963,7 @@
},
"expand-brackets": {
"version": "2.1.4",
- "devOptional": true,
+ "dev": true,
"requires": {
"debug": "^2.3.3",
"define-property": "^0.2.5",
@@ -50815,28 +49976,28 @@
"dependencies": {
"debug": {
"version": "2.6.9",
- "devOptional": true,
+ "dev": true,
"requires": {
"ms": "2.0.0"
}
},
"define-property": {
"version": "0.2.5",
- "devOptional": true,
+ "dev": true,
"requires": {
"is-descriptor": "^0.1.0"
}
},
"extend-shallow": {
"version": "2.0.1",
- "devOptional": true,
+ "dev": true,
"requires": {
"is-extendable": "^0.1.0"
}
},
"ms": {
"version": "2.0.0",
- "devOptional": true
+ "dev": true
}
}
},
@@ -50929,7 +50090,7 @@
},
"extend-shallow": {
"version": "3.0.2",
- "devOptional": true,
+ "dev": true,
"requires": {
"assign-symbols": "^1.0.0",
"is-extendable": "^1.0.1"
@@ -50937,7 +50098,7 @@
"dependencies": {
"is-extendable": {
"version": "1.0.1",
- "devOptional": true,
+ "dev": true,
"requires": {
"is-plain-object": "^2.0.4"
}
@@ -50952,7 +50113,7 @@
},
"external-editor": {
"version": "3.1.0",
- "devOptional": true,
+ "dev": true,
"requires": {
"chardet": "^0.7.0",
"iconv-lite": "^0.4.24",
@@ -50961,7 +50122,7 @@
},
"extglob": {
"version": "2.0.4",
- "devOptional": true,
+ "dev": true,
"requires": {
"array-unique": "^0.3.2",
"define-property": "^1.0.0",
@@ -50975,35 +50136,35 @@
"dependencies": {
"define-property": {
"version": "1.0.0",
- "devOptional": true,
+ "dev": true,
"requires": {
"is-descriptor": "^1.0.0"
}
},
"extend-shallow": {
"version": "2.0.1",
- "devOptional": true,
+ "dev": true,
"requires": {
"is-extendable": "^0.1.0"
}
},
"is-accessor-descriptor": {
"version": "1.0.0",
- "devOptional": true,
+ "dev": true,
"requires": {
"kind-of": "^6.0.0"
}
},
"is-data-descriptor": {
"version": "1.0.0",
- "devOptional": true,
+ "dev": true,
"requires": {
"kind-of": "^6.0.0"
}
},
"is-descriptor": {
"version": "1.0.2",
- "devOptional": true,
+ "dev": true,
"requires": {
"is-accessor-descriptor": "^1.0.0",
"is-data-descriptor": "^1.0.0",
@@ -51068,20 +50229,6 @@
"reusify": "^1.0.4"
}
},
- "fault": {
- "version": "1.0.4",
- "optional": true,
- "requires": {
- "format": "^0.2.0"
- }
- },
- "faye-websocket": {
- "version": "0.11.3",
- "optional": true,
- "requires": {
- "websocket-driver": ">=0.5.1"
- }
- },
"fb-watchman": {
"version": "2.0.1",
"devOptional": true,
@@ -51113,8 +50260,10 @@
"pend": "~1.2.0"
}
},
- "figgy-pudding": {
- "version": "3.5.2",
+ "fetch-retry": {
+ "version": "5.0.5",
+ "resolved": "https://registry.npmjs.org/fetch-retry/-/fetch-retry-5.0.5.tgz",
+ "integrity": "sha512-q9SvpKH5Ka6h7X2C6r1sP31pQoeDb3o6/R9cg21ahfPAqbIOkW9tus1dXfwYb6G6dOI4F7nVS4Q+LSssBGIz0A==",
"optional": true
},
"figures": {
@@ -51139,42 +50288,47 @@
}
},
"file-system-cache": {
- "version": "1.0.5",
+ "version": "2.1.1",
+ "resolved": "https://registry.npmjs.org/file-system-cache/-/file-system-cache-2.1.1.tgz",
+ "integrity": "sha512-vgZ1uDsK29DM4pptUOv47zdJO2tYM5M/ERyAE9Jk0QBN6e64Md+a+xJSOp68dCCDH4niFMVD8nC8n8A5ic0bmg==",
"optional": true,
"requires": {
- "bluebird": "^3.3.5",
- "fs-extra": "^0.30.0",
- "ramda": "^0.21.0"
+ "fs-extra": "^11.1.0",
+ "ramda": "^0.28.0"
},
"dependencies": {
"fs-extra": {
- "version": "0.30.0",
+ "version": "11.1.1",
+ "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-11.1.1.tgz",
+ "integrity": "sha512-MGIE4HOvQCeUCzmlHs0vXpih4ysz4wg9qiSAu6cd42lVwPbTM1TjV7RusoyQqMmk/95gdQZX72u+YW+c3eEpFQ==",
"optional": true,
"requires": {
- "graceful-fs": "^4.1.2",
- "jsonfile": "^2.1.0",
- "klaw": "^1.0.0",
- "path-is-absolute": "^1.0.0",
- "rimraf": "^2.2.8"
+ "graceful-fs": "^4.2.0",
+ "jsonfile": "^6.0.1",
+ "universalify": "^2.0.0"
}
},
"jsonfile": {
- "version": "2.4.0",
+ "version": "6.1.0",
+ "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz",
+ "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==",
"optional": true,
"requires": {
- "graceful-fs": "^4.1.6"
+ "graceful-fs": "^4.1.6",
+ "universalify": "^2.0.0"
}
},
"ramda": {
- "version": "0.21.0",
+ "version": "0.28.0",
+ "resolved": "https://registry.npmjs.org/ramda/-/ramda-0.28.0.tgz",
+ "integrity": "sha512-9QnLuG/kPVgWvMQ4aODhsBUFKOUmnbUnsSXACv+NCQZcHbeb+v8Lodp8OVxtRULN1/xOyYLLaL6npE6dMq5QTA==",
"optional": true
},
- "rimraf": {
- "version": "2.7.1",
- "optional": true,
- "requires": {
- "glob": "^7.1.3"
- }
+ "universalify": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz",
+ "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==",
+ "optional": true
}
}
},
@@ -51184,31 +50338,27 @@
},
"filelist": {
"version": "1.0.4",
- "dev": true,
+ "devOptional": true,
"requires": {
"minimatch": "^5.0.1"
},
"dependencies": {
"brace-expansion": {
"version": "2.0.1",
- "dev": true,
+ "devOptional": true,
"requires": {
"balanced-match": "^1.0.0"
}
},
"minimatch": {
"version": "5.1.0",
- "dev": true,
+ "devOptional": true,
"requires": {
"brace-expansion": "^2.0.1"
}
}
}
},
- "filesize": {
- "version": "3.6.1",
- "optional": true
- },
"fill-range": {
"version": "7.0.1",
"requires": {
@@ -51430,15 +50580,7 @@
},
"flow-parser": {
"version": "0.165.1",
- "dev": true
- },
- "flush-write-stream": {
- "version": "1.1.1",
- "optional": true,
- "requires": {
- "inherits": "^2.0.3",
- "readable-stream": "^2.3.6"
- }
+ "devOptional": true
},
"focus-lock": {
"version": "0.11.4",
@@ -51455,126 +50597,22 @@
},
"for-in": {
"version": "1.0.2",
- "devOptional": true
+ "dev": true
},
- "for-own": {
- "version": "0.1.5",
+ "foreground-child": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/foreground-child/-/foreground-child-2.0.0.tgz",
+ "integrity": "sha512-dCIq9FpEcyQyXKCkyzmlPTFNgrCzPudOe+mhvJU5zAtlBnGVy2yKxtfsxK2tQBThwq225jcvBjpw1Gr40uzZCA==",
"optional": true,
"requires": {
- "for-in": "^1.0.1"
+ "cross-spawn": "^7.0.0",
+ "signal-exit": "^3.0.2"
}
},
"forever-agent": {
"version": "0.6.1",
"optional": true
},
- "fork-ts-checker-webpack-plugin": {
- "version": "3.1.1",
- "dev": true,
- "requires": {
- "babel-code-frame": "^6.22.0",
- "chalk": "^2.4.1",
- "chokidar": "^3.3.0",
- "micromatch": "^3.1.10",
- "minimatch": "^3.0.4",
- "semver": "^5.6.0",
- "tapable": "^1.0.0",
- "worker-rpc": "^0.1.0"
- },
- "dependencies": {
- "braces": {
- "version": "2.3.2",
- "dev": true,
- "requires": {
- "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.2",
- "snapdragon": "^0.8.1",
- "snapdragon-node": "^2.0.1",
- "split-string": "^3.0.2",
- "to-regex": "^3.0.1"
- },
- "dependencies": {
- "extend-shallow": {
- "version": "2.0.1",
- "dev": true,
- "requires": {
- "is-extendable": "^0.1.0"
- }
- }
- }
- },
- "fill-range": {
- "version": "4.0.0",
- "dev": true,
- "requires": {
- "extend-shallow": "^2.0.1",
- "is-number": "^3.0.0",
- "repeat-string": "^1.6.1",
- "to-regex-range": "^2.1.0"
- },
- "dependencies": {
- "extend-shallow": {
- "version": "2.0.1",
- "dev": true,
- "requires": {
- "is-extendable": "^0.1.0"
- }
- }
- }
- },
- "is-number": {
- "version": "3.0.0",
- "dev": true,
- "requires": {
- "kind-of": "^3.0.2"
- },
- "dependencies": {
- "kind-of": {
- "version": "3.2.2",
- "dev": true,
- "requires": {
- "is-buffer": "^1.1.5"
- }
- }
- }
- },
- "micromatch": {
- "version": "3.1.10",
- "dev": true,
- "requires": {
- "arr-diff": "^4.0.0",
- "array-unique": "^0.3.2",
- "braces": "^2.3.1",
- "define-property": "^2.0.2",
- "extend-shallow": "^3.0.2",
- "extglob": "^2.0.4",
- "fragment-cache": "^0.2.1",
- "kind-of": "^6.0.2",
- "nanomatch": "^1.2.9",
- "object.pick": "^1.3.0",
- "regex-not": "^1.0.0",
- "snapdragon": "^0.8.1",
- "to-regex": "^3.0.2"
- }
- },
- "semver": {
- "version": "5.7.1",
- "dev": true
- },
- "to-regex-range": {
- "version": "2.1.1",
- "dev": true,
- "requires": {
- "is-number": "^3.0.0",
- "repeat-string": "^1.6.1"
- }
- }
- }
- },
"form-data": {
"version": "2.3.3",
"optional": true,
@@ -51584,10 +50622,6 @@
"mime-types": "^2.1.12"
}
},
- "format": {
- "version": "0.2.2",
- "optional": true
- },
"forwarded": {
"version": "0.2.0",
"resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz",
@@ -51596,7 +50630,7 @@
},
"fragment-cache": {
"version": "0.2.1",
- "devOptional": true,
+ "dev": true,
"requires": {
"map-cache": "^0.2.2"
}
@@ -51609,14 +50643,6 @@
"version": "0.1.7",
"dev": true
},
- "from2": {
- "version": "2.3.0",
- "optional": true,
- "requires": {
- "inherits": "^2.0.1",
- "readable-stream": "^2.0.0"
- }
- },
"frontend-collective-react-dnd-scrollzone": {
"version": "1.0.2",
"requires": {
@@ -51648,9 +50674,15 @@
}
}
},
+ "fs-constants": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/fs-constants/-/fs-constants-1.0.0.tgz",
+ "integrity": "sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==",
+ "optional": true
+ },
"fs-extra": {
"version": "8.1.0",
- "devOptional": true,
+ "dev": true,
"requires": {
"graceful-fs": "^4.2.0",
"jsonfile": "^4.0.0",
@@ -51659,25 +50691,28 @@
},
"fs-minipass": {
"version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/fs-minipass/-/fs-minipass-2.1.0.tgz",
+ "integrity": "sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==",
"optional": true,
"requires": {
"minipass": "^3.0.0"
+ },
+ "dependencies": {
+ "minipass": {
+ "version": "3.3.6",
+ "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz",
+ "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==",
+ "optional": true,
+ "requires": {
+ "yallist": "^4.0.0"
+ }
+ }
}
},
"fs-readdir-recursive": {
"version": "1.1.0",
"dev": true
},
- "fs-write-stream-atomic": {
- "version": "1.0.10",
- "optional": true,
- "requires": {
- "graceful-fs": "^4.1.2",
- "iferr": "^0.1.5",
- "imurmurhash": "^0.1.4",
- "readable-stream": "1 || 2"
- }
- },
"fs.realpath": {
"version": "1.0.0",
"devOptional": true
@@ -51722,44 +50757,29 @@
"version": "2.1.0"
},
"gauge": {
- "version": "2.7.4",
+ "version": "3.0.2",
+ "resolved": "https://registry.npmjs.org/gauge/-/gauge-3.0.2.tgz",
+ "integrity": "sha512-+5J6MS/5XksCuXq++uFRsnUd7Ovu1XenbeuIuNRJxYWjgQbPuFhT14lAvsWfqfAmnwluf1OwMjz39HjfLPci0Q==",
"optional": true,
"requires": {
- "aproba": "^1.0.3",
+ "aproba": "^1.0.3 || ^2.0.0",
+ "color-support": "^1.1.2",
"console-control-strings": "^1.0.0",
- "has-unicode": "^2.0.0",
- "object-assign": "^4.1.0",
+ "has-unicode": "^2.0.1",
+ "object-assign": "^4.1.1",
"signal-exit": "^3.0.0",
- "string-width": "^1.0.1",
- "strip-ansi": "^3.0.1",
- "wide-align": "^1.1.0"
+ "string-width": "^4.2.3",
+ "strip-ansi": "^6.0.1",
+ "wide-align": "^1.1.2"
},
"dependencies": {
- "ansi-regex": {
- "version": "2.1.1",
- "optional": true
- },
- "is-fullwidth-code-point": {
- "version": "1.0.0",
- "optional": true,
- "requires": {
- "number-is-nan": "^1.0.0"
- }
- },
- "string-width": {
- "version": "1.0.2",
- "optional": true,
- "requires": {
- "code-point-at": "^1.0.0",
- "is-fullwidth-code-point": "^1.0.0",
- "strip-ansi": "^3.0.0"
- }
- },
"strip-ansi": {
- "version": "3.0.1",
+ "version": "6.0.1",
+ "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz",
+ "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
"optional": true,
"requires": {
- "ansi-regex": "^2.0.0"
+ "ansi-regex": "^5.0.1"
}
}
}
@@ -51783,6 +50803,12 @@
"get-nonce": {
"version": "1.0.1"
},
+ "get-npm-tarball-url": {
+ "version": "2.0.3",
+ "resolved": "https://registry.npmjs.org/get-npm-tarball-url/-/get-npm-tarball-url-2.0.3.tgz",
+ "integrity": "sha512-R/PW6RqyaBQNWYaSyfrh54/qtcnOp22FHCCiRhSSZj0FP3KQWCsxxt0DzIdVTbwTqe9CtQfvl/FPD4UIPt4pqw==",
+ "optional": true
+ },
"get-own-enumerable-property-symbols": {
"version": "3.0.2",
"devOptional": true
@@ -51791,6 +50817,12 @@
"version": "0.1.0",
"devOptional": true
},
+ "get-port": {
+ "version": "5.1.1",
+ "resolved": "https://registry.npmjs.org/get-port/-/get-port-5.1.1.tgz",
+ "integrity": "sha512-g/Q1aTSDOxFpchXC4i8ZWvxA1lnPqx/JHqcpIw0/LX9T8x/GBbi6YnlN5nhaKIFkT8oFsscUKgDJYxfwfS6QsQ==",
+ "optional": true
+ },
"get-stream": {
"version": "5.2.0",
"devOptional": true,
@@ -51808,7 +50840,7 @@
},
"get-value": {
"version": "2.0.6",
- "devOptional": true
+ "dev": true
},
"getos": {
"version": "3.2.1",
@@ -51824,6 +50856,39 @@
"assert-plus": "^1.0.0"
}
},
+ "giget": {
+ "version": "1.1.2",
+ "resolved": "https://registry.npmjs.org/giget/-/giget-1.1.2.tgz",
+ "integrity": "sha512-HsLoS07HiQ5oqvObOI+Qb2tyZH4Gj5nYGfF9qQcZNrPw+uEFhdXtgJr01aO2pWadGHucajYDLxxbtQkm97ON2A==",
+ "optional": true,
+ "requires": {
+ "colorette": "^2.0.19",
+ "defu": "^6.1.2",
+ "https-proxy-agent": "^5.0.1",
+ "mri": "^1.2.0",
+ "node-fetch-native": "^1.0.2",
+ "pathe": "^1.1.0",
+ "tar": "^6.1.13"
+ },
+ "dependencies": {
+ "https-proxy-agent": {
+ "version": "5.0.1",
+ "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz",
+ "integrity": "sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==",
+ "optional": true,
+ "requires": {
+ "agent-base": "6",
+ "debug": "4"
+ }
+ },
+ "pathe": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/pathe/-/pathe-1.1.0.tgz",
+ "integrity": "sha512-ODbEPR0KKHqECXW1GoxdDb+AZvULmXjVPy4rt+pGo2+TnjJTIPJQSVS6N63n8T2Ip+syHhbn52OewKicV0373w==",
+ "optional": true
+ }
+ }
+ },
"git-up": {
"version": "4.0.2",
"dev": true,
@@ -51835,6 +50900,12 @@
"github-buttons": {
"version": "2.22.1"
},
+ "github-slugger": {
+ "version": "1.5.0",
+ "resolved": "https://registry.npmjs.org/github-slugger/-/github-slugger-1.5.0.tgz",
+ "integrity": "sha512-wIh+gKBI9Nshz2o46B0B3f5k/W+WI9ZAv6y5Dn5WJ5SK1t0TnDimB4WE5rmTD05ZAIn8HALCZVmCsvj0w0v0lw==",
+ "optional": true
+ },
"glob": {
"version": "7.2.3",
"devOptional": true,
@@ -51856,52 +50927,27 @@
}
}
},
- "glob-base": {
- "version": "0.3.0",
- "optional": true,
- "requires": {
- "glob-parent": "^2.0.0",
- "is-glob": "^2.0.0"
- },
- "dependencies": {
- "glob-parent": {
- "version": "2.0.0",
- "optional": true,
- "requires": {
- "is-glob": "^2.0.0"
- }
- },
- "is-extglob": {
- "version": "1.0.0",
- "optional": true
- },
- "is-glob": {
- "version": "2.0.1",
- "optional": true,
- "requires": {
- "is-extglob": "^1.0.0"
- }
- }
- }
- },
"glob-parent": {
"version": "5.1.2",
"requires": {
"is-glob": "^4.0.1"
}
},
- "glob-to-regexp": {
- "version": "0.3.0",
- "optional": true
- },
- "global": {
- "version": "4.4.0",
+ "glob-promise": {
+ "version": "6.0.2",
+ "resolved": "https://registry.npmjs.org/glob-promise/-/glob-promise-6.0.2.tgz",
+ "integrity": "sha512-Ni2aDyD1ekD6x8/+K4hDriRDbzzfuK4yKpqSymJ4P7IxbtARiOOuU+k40kbHM0sLIlbf1Qh0qdMkAHMZYE6XJQ==",
"optional": true,
"requires": {
- "min-document": "^2.19.0",
- "process": "^0.11.10"
+ "@types/glob": "^8.0.0"
}
},
+ "glob-to-regexp": {
+ "version": "0.4.1",
+ "resolved": "https://registry.npmjs.org/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz",
+ "integrity": "sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==",
+ "optional": true
+ },
"global-dirs": {
"version": "3.0.0",
"requires": {
@@ -51913,36 +50959,13 @@
}
}
},
- "global-modules": {
- "version": "2.0.0",
- "optional": true,
- "requires": {
- "global-prefix": "^3.0.0"
- }
- },
- "global-prefix": {
- "version": "3.0.0",
- "optional": true,
- "requires": {
- "ini": "^1.3.5",
- "kind-of": "^6.0.2",
- "which": "^1.3.1"
- }
- },
"globals": {
"version": "11.12.0",
"devOptional": true
},
- "globalthis": {
- "version": "1.0.2",
- "optional": true,
- "requires": {
- "define-properties": "^1.1.3"
- }
- },
"globby": {
"version": "11.0.3",
- "dev": true,
+ "devOptional": true,
"requires": {
"array-union": "^2.1.0",
"dir-glob": "^3.0.1",
@@ -51952,16 +50975,9 @@
"slash": "^3.0.0"
}
},
- "good-listener": {
- "version": "1.2.2",
- "optional": true,
- "requires": {
- "delegate": "^3.1.2"
- }
- },
"got": {
"version": "11.8.2",
- "dev": true,
+ "devOptional": true,
"requires": {
"@sindresorhus/is": "^4.0.0",
"@szmarczak/http-timer": "^4.0.5",
@@ -51983,7 +50999,7 @@
"version": "1.0.4",
"resolved": "https://registry.npmjs.org/grapheme-splitter/-/grapheme-splitter-1.0.4.tgz",
"integrity": "sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ==",
- "dev": true
+ "devOptional": true
},
"graphiql": {
"version": "2.2.0",
@@ -52057,28 +51073,6 @@
"yaml": "^1.10.0"
}
},
- "import-fresh": {
- "version": "3.3.0",
- "dev": true,
- "requires": {
- "parent-module": "^1.0.0",
- "resolve-from": "^4.0.0"
- }
- },
- "parse-json": {
- "version": "5.2.0",
- "dev": true,
- "requires": {
- "@babel/code-frame": "^7.0.0",
- "error-ex": "^1.3.1",
- "json-parse-even-better-errors": "^2.3.0",
- "lines-and-columns": "^1.1.6"
- }
- },
- "resolve-from": {
- "version": "4.0.0",
- "dev": true
- },
"ts-node": {
"version": "9.1.1",
"dev": true,
@@ -52140,23 +51134,25 @@
"version": "5.4.0",
"dev": true
},
- "gud": {
- "version": "1.0.0",
- "optional": true
- },
- "gzip-size": {
- "version": "5.1.1",
+ "gunzip-maybe": {
+ "version": "1.4.2",
+ "resolved": "https://registry.npmjs.org/gunzip-maybe/-/gunzip-maybe-1.4.2.tgz",
+ "integrity": "sha512-4haO1M4mLO91PW57BMsDFf75UmwoRX0GkdD+Faw+Lr+r/OZrOCS0pIBwOL1xCKQqnQzbNFGgK2V2CpBUPeFNTw==",
"optional": true,
"requires": {
- "duplexer": "^0.1.1",
- "pify": "^4.0.1"
+ "browserify-zlib": "^0.1.4",
+ "is-deflate": "^1.0.0",
+ "is-gzip": "^1.0.0",
+ "peek-stream": "^1.1.0",
+ "pumpify": "^1.3.3",
+ "through2": "^2.0.3"
}
},
"handlebars": {
"version": "4.7.7",
"resolved": "https://registry.npmjs.org/handlebars/-/handlebars-4.7.7.tgz",
"integrity": "sha512-aAcXm5OAfE/8IXkcZvCepKU3VzW1/39Fb5ZuqMtgI/hT8X2YgoMvBY5dLhq/cpOvw7Lk1nK/UF71aLG/ZnVYRA==",
- "dev": true,
+ "devOptional": true,
"requires": {
"minimist": "^1.2.5",
"neo-async": "^2.6.0",
@@ -52169,7 +51165,7 @@
"version": "0.6.1",
"resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
"integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
- "dev": true
+ "devOptional": true
}
}
},
@@ -52191,14 +51187,14 @@
},
"has-ansi": {
"version": "2.0.0",
- "devOptional": true,
+ "dev": true,
"requires": {
"ansi-regex": "^2.0.0"
},
"dependencies": {
"ansi-regex": {
"version": "2.1.1",
- "devOptional": true
+ "dev": true
}
}
},
@@ -52228,11 +51224,13 @@
},
"has-unicode": {
"version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/has-unicode/-/has-unicode-2.0.1.tgz",
+ "integrity": "sha512-8Rf9Y83NBReMnx0gFzA8JImQACstCYWUplepDa9xprwwtmgEZUF0h/i5xSA625zB/I37EtrswSST6OXxwaaIJQ==",
"optional": true
},
"has-value": {
"version": "1.0.0",
- "devOptional": true,
+ "dev": true,
"requires": {
"get-value": "^2.0.6",
"has-values": "^1.0.0",
@@ -52241,7 +51239,7 @@
},
"has-values": {
"version": "1.0.0",
- "devOptional": true,
+ "dev": true,
"requires": {
"is-number": "^3.0.0",
"kind-of": "^4.0.0"
@@ -52249,14 +51247,14 @@
"dependencies": {
"is-number": {
"version": "3.0.0",
- "devOptional": true,
+ "dev": true,
"requires": {
"kind-of": "^3.0.2"
},
"dependencies": {
"kind-of": {
"version": "3.2.2",
- "devOptional": true,
+ "dev": true,
"requires": {
"is-buffer": "^1.1.5"
}
@@ -52265,7 +51263,7 @@
},
"kind-of": {
"version": "4.0.0",
- "devOptional": true,
+ "dev": true,
"requires": {
"is-buffer": "^1.1.5"
}
@@ -52275,51 +51273,9 @@
"has-yarn": {
"version": "2.1.0"
},
- "hash-base": {
- "version": "3.1.0",
- "optional": true,
- "requires": {
- "inherits": "^2.0.4",
- "readable-stream": "^3.6.0",
- "safe-buffer": "^5.2.0"
- },
- "dependencies": {
- "readable-stream": {
- "version": "3.6.0",
- "optional": true,
- "requires": {
- "inherits": "^2.0.3",
- "string_decoder": "^1.1.1",
- "util-deprecate": "^1.0.1"
- }
- }
- }
- },
- "hash.js": {
- "version": "1.1.7",
- "optional": true,
- "requires": {
- "inherits": "^2.0.3",
- "minimalistic-assert": "^1.0.1"
- }
- },
- "hast-util-parse-selector": {
- "version": "2.2.5",
- "optional": true
- },
- "hastscript": {
- "version": "5.1.2",
- "optional": true,
- "requires": {
- "comma-separated-tokens": "^1.0.0",
- "hast-util-parse-selector": "^2.0.0",
- "property-information": "^5.0.0",
- "space-separated-tokens": "^1.0.0"
- }
- },
"he": {
"version": "1.2.0",
- "devOptional": true
+ "dev": true
},
"header-case": {
"version": "2.0.4",
@@ -52329,10 +51285,6 @@
"tslib": "^2.0.3"
}
},
- "highlight.js": {
- "version": "9.13.1",
- "optional": true
- },
"history": {
"version": "4.10.1",
"requires": {
@@ -52344,15 +51296,6 @@
"value-equal": "^1.0.1"
}
},
- "hmac-drbg": {
- "version": "1.0.1",
- "optional": true,
- "requires": {
- "hash.js": "^1.0.3",
- "minimalistic-assert": "^1.0.0",
- "minimalistic-crypto-utils": "^1.0.1"
- }
- },
"hoist-non-react-statics": {
"version": "3.3.2",
"requires": {
@@ -52378,44 +51321,15 @@
"whatwg-encoding": "^1.0.5"
}
},
- "html-entities": {
- "version": "1.4.0",
- "optional": true
- },
"html-escaper": {
"version": "2.0.2",
"optional": true
},
- "html-minifier-terser": {
- "version": "5.1.1",
- "optional": true,
- "requires": {
- "camel-case": "^4.1.1",
- "clean-css": "^4.2.3",
- "commander": "^4.1.1",
- "he": "^1.2.0",
- "param-case": "^3.0.3",
- "relateurl": "^0.2.7",
- "terser": "^4.6.3"
- },
- "dependencies": {
- "camel-case": {
- "version": "4.1.2",
- "optional": true,
- "requires": {
- "pascal-case": "^3.1.2",
- "tslib": "^2.0.3"
- }
- },
- "param-case": {
- "version": "3.0.4",
- "optional": true,
- "requires": {
- "dot-case": "^3.0.4",
- "tslib": "^2.0.3"
- }
- }
- }
+ "html-tags": {
+ "version": "3.3.1",
+ "resolved": "https://registry.npmjs.org/html-tags/-/html-tags-3.3.1.tgz",
+ "integrity": "sha512-ztqyC3kLto0e9WbNp0aeP+M3kTt+nbaIveGmUxAtZa+8iFgKLUOD4YKM5j+f3QD89bra7UeumolZHKuOXnTmeQ==",
+ "optional": true
},
"html-to-react": {
"version": "1.4.5",
@@ -52460,10 +51374,6 @@
"debug": "^4.1.1"
}
},
- "http-parser-js": {
- "version": "0.5.3",
- "optional": true
- },
"http-proxy-agent": {
"version": "4.0.1",
"devOptional": true,
@@ -52475,16 +51385,12 @@
},
"http2-wrapper": {
"version": "1.0.3",
- "dev": true,
+ "devOptional": true,
"requires": {
"quick-lru": "^5.1.1",
"resolve-alpn": "^1.0.0"
}
},
- "https-browserify": {
- "version": "1.0.0",
- "optional": true
- },
"https-proxy-agent": {
"version": "5.0.0",
"devOptional": true,
@@ -52525,13 +51431,6 @@
"safer-buffer": ">= 2.1.2 < 3"
}
},
- "icss-utils": {
- "version": "4.1.1",
- "optional": true,
- "requires": {
- "postcss": "^7.0.14"
- }
- },
"idb": {
"version": "7.1.1",
"dev": true
@@ -52547,10 +51446,6 @@
"version": "1.2.1",
"devOptional": true
},
- "iferr": {
- "version": "0.1.5",
- "optional": true
- },
"ignore": {
"version": "5.2.4",
"resolved": "https://registry.npmjs.org/ignore/-/ignore-5.2.4.tgz",
@@ -52572,34 +51467,24 @@
"queue": "6.0.2"
}
},
- "immer": {
- "version": "1.10.0",
- "optional": true
- },
"immutable": {
"version": "3.7.6",
"dev": true
},
- "import-cwd": {
- "version": "2.1.0",
- "optional": true,
- "requires": {
- "import-from": "^2.1.0"
- }
- },
"import-fresh": {
- "version": "2.0.0",
- "optional": true,
+ "version": "3.3.0",
+ "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz",
+ "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==",
"requires": {
- "caller-path": "^2.0.0",
- "resolve-from": "^3.0.0"
- }
- },
- "import-from": {
- "version": "2.1.0",
- "optional": true,
- "requires": {
- "resolve-from": "^3.0.0"
+ "parent-module": "^1.0.0",
+ "resolve-from": "^4.0.0"
+ },
+ "dependencies": {
+ "resolve-from": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz",
+ "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g=="
+ }
}
},
"import-lazy": {
@@ -52661,14 +51546,6 @@
"version": "4.0.0",
"devOptional": true
},
- "indexes-of": {
- "version": "1.0.1",
- "optional": true
- },
- "infer-owner": {
- "version": "1.0.4",
- "optional": true
- },
"inflight": {
"version": "1.0.6",
"devOptional": true,
@@ -52685,7 +51562,7 @@
},
"inquirer": {
"version": "7.3.3",
- "devOptional": true,
+ "dev": true,
"requires": {
"ansi-escapes": "^4.2.1",
"chalk": "^4.1.0",
@@ -52704,7 +51581,7 @@
"dependencies": {
"chalk": {
"version": "4.1.0",
- "devOptional": true,
+ "dev": true,
"requires": {
"ansi-styles": "^4.1.0",
"supports-color": "^7.1.0"
@@ -52712,25 +51589,25 @@
},
"cli-cursor": {
"version": "3.1.0",
- "devOptional": true,
+ "dev": true,
"requires": {
"restore-cursor": "^3.1.0"
}
},
"figures": {
"version": "3.2.0",
- "devOptional": true,
+ "dev": true,
"requires": {
"escape-string-regexp": "^1.0.5"
}
},
"has-flag": {
"version": "4.0.0",
- "devOptional": true
+ "dev": true
},
"restore-cursor": {
"version": "3.1.0",
- "devOptional": true,
+ "dev": true,
"requires": {
"onetime": "^5.1.0",
"signal-exit": "^3.0.2"
@@ -52738,14 +51615,14 @@
},
"strip-ansi": {
"version": "6.0.0",
- "devOptional": true,
+ "dev": true,
"requires": {
"ansi-regex": "^5.0.0"
}
},
"supports-color": {
"version": "7.2.0",
- "devOptional": true,
+ "dev": true,
"requires": {
"has-flag": "^4.0.0"
}
@@ -52781,7 +51658,9 @@
}
},
"ip": {
- "version": "1.1.5",
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/ip/-/ip-2.0.0.tgz",
+ "integrity": "sha512-WKa+XuLG1A1R0UWhl2+1XQSi+fZWMsYKffMZTTYsiZaUD8k2yDAj5atimTUD2TZkyCkNEeYE5NhFZmupOGtjYQ==",
"optional": true
},
"ipaddr.js": {
@@ -52790,6 +51669,12 @@
"integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==",
"devOptional": true
},
+ "is": {
+ "version": "3.3.0",
+ "resolved": "https://registry.npmjs.org/is/-/is-3.3.0.tgz",
+ "integrity": "sha512-nW24QBoPcFGGHJGUwnfpI7Yc5CdqWNdsyHQszVE/z2pKHXzh7FZ5GWhJqSyaQ9wMkQnsTx+kAI8bHlCX4tKdbg==",
+ "optional": true
+ },
"is-absolute": {
"version": "1.0.0",
"dev": true,
@@ -52800,18 +51685,18 @@
},
"is-absolute-url": {
"version": "3.0.3",
- "dev": true
+ "devOptional": true
},
"is-accessor-descriptor": {
"version": "0.1.6",
- "devOptional": true,
+ "dev": true,
"requires": {
"kind-of": "^3.0.2"
},
"dependencies": {
"kind-of": {
"version": "3.2.2",
- "devOptional": true,
+ "dev": true,
"requires": {
"is-buffer": "^1.1.5"
}
@@ -52842,13 +51727,6 @@
"version": "1.0.1",
"devOptional": true
},
- "is-binary-path": {
- "version": "1.0.1",
- "optional": true,
- "requires": {
- "binary-extensions": "^1.0.0"
- }
- },
"is-boolean-object": {
"version": "1.1.0",
"devOptional": true,
@@ -52878,14 +51756,14 @@
},
"is-data-descriptor": {
"version": "0.1.4",
- "devOptional": true,
+ "dev": true,
"requires": {
"kind-of": "^3.0.2"
},
"dependencies": {
"kind-of": {
"version": "3.2.2",
- "devOptional": true,
+ "dev": true,
"requires": {
"is-buffer": "^1.1.5"
}
@@ -52899,9 +51777,15 @@
"is-decimal": {
"version": "1.0.4"
},
+ "is-deflate": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/is-deflate/-/is-deflate-1.0.0.tgz",
+ "integrity": "sha512-YDoFpuZWu1VRXlsnlYMzKyVRITXj7Ej/V9gXQ2/pAe7X1J7M/RNOqaIYi6qUn+B7nGyB9pDXrv02dsB58d2ZAQ==",
+ "optional": true
+ },
"is-descriptor": {
"version": "0.1.6",
- "devOptional": true,
+ "dev": true,
"requires": {
"is-accessor-descriptor": "^0.1.6",
"is-data-descriptor": "^0.1.4",
@@ -52910,21 +51794,19 @@
"dependencies": {
"kind-of": {
"version": "5.1.0",
- "devOptional": true
+ "dev": true
}
}
},
- "is-directory": {
- "version": "0.3.1",
- "optional": true
- },
"is-docker": {
"version": "2.2.1",
+ "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-2.2.1.tgz",
+ "integrity": "sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==",
"optional": true
},
"is-extendable": {
"version": "0.1.1",
- "devOptional": true
+ "dev": true
},
"is-extglob": {
"version": "2.1.1"
@@ -52932,20 +51814,31 @@
"is-fullwidth-code-point": {
"version": "3.0.0"
},
- "is-function": {
- "version": "1.0.2",
- "optional": true
- },
"is-generator-fn": {
"version": "2.1.0",
"optional": true
},
+ "is-generator-function": {
+ "version": "1.0.10",
+ "resolved": "https://registry.npmjs.org/is-generator-function/-/is-generator-function-1.0.10.tgz",
+ "integrity": "sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A==",
+ "optional": true,
+ "requires": {
+ "has-tostringtag": "^1.0.0"
+ }
+ },
"is-glob": {
"version": "4.0.1",
"requires": {
"is-extglob": "^2.1.1"
}
},
+ "is-gzip": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/is-gzip/-/is-gzip-1.0.0.tgz",
+ "integrity": "sha512-rcfALRIb1YewtnksfRIHGcIY93QnK8BIQ/2c9yDYcG/Y6+vRoJuTWBmmSEbyLLYtXm7q35pHOHbZFQBaLrhlWQ==",
+ "optional": true
+ },
"is-hexadecimal": {
"version": "1.0.4"
},
@@ -52978,6 +51871,16 @@
"version": "1.0.0",
"dev": true
},
+ "is-nan": {
+ "version": "1.3.2",
+ "resolved": "https://registry.npmjs.org/is-nan/-/is-nan-1.3.2.tgz",
+ "integrity": "sha512-E+zBKpQ2t6MEo1VsonYmluk9NxGrbzpeeLC2xIViuO2EjU2xsXsBPwTr3Ykv9l08UYEVEdWeRZNouaZqF6RN0w==",
+ "optional": true,
+ "requires": {
+ "call-bind": "^1.0.0",
+ "define-properties": "^1.1.3"
+ }
+ },
"is-negative-zero": {
"version": "2.0.2",
"devOptional": true
@@ -53003,6 +51906,12 @@
"symbol-observable": "^1.1.0"
}
},
+ "is-path-cwd": {
+ "version": "2.2.0",
+ "resolved": "https://registry.npmjs.org/is-path-cwd/-/is-path-cwd-2.2.0.tgz",
+ "integrity": "sha512-w942bTcih8fdJPJmQHFzkS76NEP8Kzzvmw92cXsazb8intwLqPibPPdXf4ANdKV3rYMuuQYGIWtvz9JilB3NFQ==",
+ "optional": true
+ },
"is-path-inside": {
"version": "3.0.3"
},
@@ -53042,10 +51951,6 @@
"is-unc-path": "^1.0.0"
}
},
- "is-root": {
- "version": "2.1.0",
- "optional": true
- },
"is-set": {
"version": "2.0.2",
"optional": true
@@ -53150,13 +52055,15 @@
},
"is-windows": {
"version": "1.0.2",
- "devOptional": true
+ "dev": true
},
"is-word-character": {
"version": "1.0.4"
},
"is-wsl": {
"version": "2.2.0",
+ "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz",
+ "integrity": "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==",
"optional": true,
"requires": {
"is-docker": "^2.0.0"
@@ -53183,6 +52090,16 @@
"whatwg-fetch": "^3.4.1"
}
},
+ "isomorphic-unfetch": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/isomorphic-unfetch/-/isomorphic-unfetch-3.1.0.tgz",
+ "integrity": "sha512-geDJjpoZ8N0kWexiwkX8F9NkTsXhetLPVbZFQ+JTW239QNOwvB0gniuR1Wc6f0AMTn7/mFGyXvHTifrCp/GH8Q==",
+ "optional": true,
+ "requires": {
+ "node-fetch": "^2.6.1",
+ "unfetch": "^4.2.0"
+ }
+ },
"isomorphic-ws": {
"version": "4.0.1",
"dev": true
@@ -53272,21 +52189,9 @@
"version": "1.3.0",
"dev": true
},
- "iterate-iterator": {
- "version": "1.0.1",
- "optional": true
- },
- "iterate-value": {
- "version": "1.0.2",
- "optional": true,
- "requires": {
- "es-get-iterator": "^1.0.2",
- "iterate-iterator": "^1.0.1"
- }
- },
"jake": {
"version": "10.8.5",
- "dev": true,
+ "devOptional": true,
"requires": {
"async": "^3.2.3",
"chalk": "^4.0.2",
@@ -53296,7 +52201,7 @@
"dependencies": {
"chalk": {
"version": "4.1.2",
- "dev": true,
+ "devOptional": true,
"requires": {
"ansi-styles": "^4.1.0",
"supports-color": "^7.1.0"
@@ -53304,11 +52209,11 @@
},
"has-flag": {
"version": "4.0.0",
- "dev": true
+ "devOptional": true
},
"supports-color": {
"version": "7.2.0",
- "dev": true,
+ "devOptional": true,
"requires": {
"has-flag": "^4.0.0"
}
@@ -53341,15 +52246,6 @@
"throat": "^6.0.1"
},
"dependencies": {
- "cross-spawn": {
- "version": "7.0.3",
- "optional": true,
- "requires": {
- "path-key": "^3.1.0",
- "shebang-command": "^2.0.0",
- "which": "^2.0.1"
- }
- },
"execa": {
"version": "5.1.1",
"optional": true,
@@ -53372,28 +52268,6 @@
"human-signals": {
"version": "2.1.0",
"optional": true
- },
- "path-key": {
- "version": "3.1.1",
- "optional": true
- },
- "shebang-command": {
- "version": "2.0.0",
- "optional": true,
- "requires": {
- "shebang-regex": "^3.0.0"
- }
- },
- "shebang-regex": {
- "version": "3.0.0",
- "optional": true
- },
- "which": {
- "version": "2.0.2",
- "optional": true,
- "requires": {
- "isexe": "^2.0.0"
- }
}
}
},
@@ -53561,16 +52435,6 @@
"version": "4.0.0",
"optional": true
},
- "parse-json": {
- "version": "5.2.0",
- "optional": true,
- "requires": {
- "@babel/code-frame": "^7.0.0",
- "error-ex": "^1.3.1",
- "json-parse-even-better-errors": "^2.3.0",
- "lines-and-columns": "^1.1.6"
- }
- },
"supports-color": {
"version": "7.2.0",
"optional": true,
@@ -53702,14 +52566,6 @@
"walker": "^1.0.7"
},
"dependencies": {
- "anymatch": {
- "version": "3.1.3",
- "devOptional": true,
- "requires": {
- "normalize-path": "^3.0.0",
- "picomatch": "^2.0.4"
- }
- },
"fsevents": {
"version": "2.3.2",
"optional": true
@@ -53987,15 +52843,6 @@
"supports-color": "^7.1.0"
}
},
- "cross-spawn": {
- "version": "7.0.3",
- "optional": true,
- "requires": {
- "path-key": "^3.1.0",
- "shebang-command": "^2.0.0",
- "which": "^2.0.1"
- }
- },
"execa": {
"version": "5.1.1",
"optional": true,
@@ -54023,21 +52870,6 @@
"version": "2.1.0",
"optional": true
},
- "path-key": {
- "version": "3.1.1",
- "optional": true
- },
- "shebang-command": {
- "version": "2.0.0",
- "optional": true,
- "requires": {
- "shebang-regex": "^3.0.0"
- }
- },
- "shebang-regex": {
- "version": "3.0.0",
- "optional": true
- },
"strip-bom": {
"version": "4.0.0",
"optional": true
@@ -54048,13 +52880,6 @@
"requires": {
"has-flag": "^4.0.0"
}
- },
- "which": {
- "version": "2.0.2",
- "optional": true,
- "requires": {
- "isexe": "^2.0.0"
- }
}
}
},
@@ -54300,178 +53125,6 @@
"write-file-atomic": "^2.3.0"
},
"dependencies": {
- "@babel/code-frame": {
- "version": "7.16.0",
- "dev": true,
- "requires": {
- "@babel/highlight": "^7.16.0"
- }
- },
- "@babel/compat-data": {
- "version": "7.16.4",
- "dev": true
- },
- "@babel/core": {
- "version": "7.16.0",
- "dev": true,
- "requires": {
- "@babel/code-frame": "^7.16.0",
- "@babel/generator": "^7.16.0",
- "@babel/helper-compilation-targets": "^7.16.0",
- "@babel/helper-module-transforms": "^7.16.0",
- "@babel/helpers": "^7.16.0",
- "@babel/parser": "^7.16.0",
- "@babel/template": "^7.16.0",
- "@babel/traverse": "^7.16.0",
- "@babel/types": "^7.16.0",
- "convert-source-map": "^1.7.0",
- "debug": "^4.1.0",
- "gensync": "^1.0.0-beta.2",
- "json5": "^2.1.2",
- "semver": "^6.3.0",
- "source-map": "^0.5.0"
- }
- },
- "@babel/generator": {
- "version": "7.16.0",
- "dev": true,
- "requires": {
- "@babel/types": "^7.16.0",
- "jsesc": "^2.5.1",
- "source-map": "^0.5.0"
- }
- },
- "@babel/helper-compilation-targets": {
- "version": "7.16.3",
- "dev": true,
- "requires": {
- "@babel/compat-data": "^7.16.0",
- "@babel/helper-validator-option": "^7.14.5",
- "browserslist": "^4.17.5",
- "semver": "^6.3.0"
- }
- },
- "@babel/helper-function-name": {
- "version": "7.16.0",
- "dev": true,
- "requires": {
- "@babel/helper-get-function-arity": "^7.16.0",
- "@babel/template": "^7.16.0",
- "@babel/types": "^7.16.0"
- }
- },
- "@babel/helper-get-function-arity": {
- "version": "7.16.0",
- "dev": true,
- "requires": {
- "@babel/types": "^7.16.0"
- }
- },
- "@babel/helper-hoist-variables": {
- "version": "7.16.0",
- "dev": true,
- "requires": {
- "@babel/types": "^7.16.0"
- }
- },
- "@babel/helper-member-expression-to-functions": {
- "version": "7.16.0",
- "dev": true,
- "requires": {
- "@babel/types": "^7.16.0"
- }
- },
- "@babel/helper-module-transforms": {
- "version": "7.16.0",
- "dev": true,
- "requires": {
- "@babel/helper-module-imports": "^7.16.0",
- "@babel/helper-replace-supers": "^7.16.0",
- "@babel/helper-simple-access": "^7.16.0",
- "@babel/helper-split-export-declaration": "^7.16.0",
- "@babel/helper-validator-identifier": "^7.15.7",
- "@babel/template": "^7.16.0",
- "@babel/traverse": "^7.16.0",
- "@babel/types": "^7.16.0"
- }
- },
- "@babel/helper-optimise-call-expression": {
- "version": "7.16.0",
- "dev": true,
- "requires": {
- "@babel/types": "^7.16.0"
- }
- },
- "@babel/helper-replace-supers": {
- "version": "7.16.0",
- "dev": true,
- "requires": {
- "@babel/helper-member-expression-to-functions": "^7.16.0",
- "@babel/helper-optimise-call-expression": "^7.16.0",
- "@babel/traverse": "^7.16.0",
- "@babel/types": "^7.16.0"
- }
- },
- "@babel/helper-simple-access": {
- "version": "7.16.0",
- "dev": true,
- "requires": {
- "@babel/types": "^7.16.0"
- }
- },
- "@babel/helper-split-export-declaration": {
- "version": "7.16.0",
- "dev": true,
- "requires": {
- "@babel/types": "^7.16.0"
- }
- },
- "@babel/helper-validator-option": {
- "version": "7.14.5",
- "dev": true
- },
- "@babel/helpers": {
- "version": "7.16.3",
- "dev": true,
- "requires": {
- "@babel/template": "^7.16.0",
- "@babel/traverse": "^7.16.3",
- "@babel/types": "^7.16.0"
- }
- },
- "@babel/highlight": {
- "version": "7.16.0",
- "dev": true,
- "requires": {
- "@babel/helper-validator-identifier": "^7.15.7",
- "chalk": "^2.0.0",
- "js-tokens": "^4.0.0"
- }
- },
- "@babel/template": {
- "version": "7.16.0",
- "dev": true,
- "requires": {
- "@babel/code-frame": "^7.16.0",
- "@babel/parser": "^7.16.0",
- "@babel/types": "^7.16.0"
- }
- },
- "@babel/traverse": {
- "version": "7.16.3",
- "dev": true,
- "requires": {
- "@babel/code-frame": "^7.16.0",
- "@babel/generator": "^7.16.0",
- "@babel/helper-function-name": "^7.16.0",
- "@babel/helper-hoist-variables": "^7.16.0",
- "@babel/helper-split-export-declaration": "^7.16.0",
- "@babel/parser": "^7.16.3",
- "@babel/types": "^7.16.0",
- "debug": "^4.1.0",
- "globals": "^11.1.0"
- }
- },
"braces": {
"version": "2.3.2",
"dev": true,
@@ -54497,25 +53150,6 @@
}
}
},
- "browserslist": {
- "version": "4.18.1",
- "dev": true,
- "requires": {
- "caniuse-lite": "^1.0.30001280",
- "electron-to-chromium": "^1.3.896",
- "escalade": "^3.1.1",
- "node-releases": "^2.0.1",
- "picocolors": "^1.0.0"
- }
- },
- "caniuse-lite": {
- "version": "1.0.30001282",
- "dev": true
- },
- "electron-to-chromium": {
- "version": "1.3.906",
- "dev": true
- },
"fill-range": {
"version": "4.0.0",
"dev": true,
@@ -54570,14 +53204,6 @@
"to-regex": "^3.0.2"
}
},
- "node-releases": {
- "version": "2.0.1",
- "dev": true
- },
- "semver": {
- "version": "6.3.0",
- "dev": true
- },
"to-regex-range": {
"version": "2.1.1",
"dev": true,
@@ -54660,11 +53286,20 @@
},
"json-buffer": {
"version": "3.0.1",
- "dev": true
+ "devOptional": true
},
- "json-parse-better-errors": {
- "version": "1.0.2",
- "optional": true
+ "json-file-plus": {
+ "version": "3.3.1",
+ "resolved": "https://registry.npmjs.org/json-file-plus/-/json-file-plus-3.3.1.tgz",
+ "integrity": "sha512-wo0q1UuiV5NsDPQDup1Km8IwEeqe+olr8tkWxeJq9Bjtcp7DZ0l+yrg28fSC3DEtrE311mhTZ54QGS6oiqnZEA==",
+ "optional": true,
+ "requires": {
+ "is": "^3.2.1",
+ "node.extend": "^2.0.0",
+ "object.assign": "^4.1.0",
+ "promiseback": "^2.0.2",
+ "safer-buffer": "^2.0.2"
+ }
},
"json-parse-even-better-errors": {
"version": "2.3.1"
@@ -54700,10 +53335,6 @@
"remove-trailing-spaces": "^1.0.6"
}
},
- "json3": {
- "version": "3.3.3",
- "optional": true
- },
"json5": {
"version": "2.2.3",
"resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz",
@@ -55095,7 +53726,7 @@
},
"keyv": {
"version": "4.0.3",
- "dev": true,
+ "devOptional": true,
"requires": {
"json-buffer": "3.0.1"
}
@@ -55104,13 +53735,6 @@
"version": "6.0.3",
"devOptional": true
},
- "klaw": {
- "version": "1.3.1",
- "optional": true,
- "requires": {
- "graceful-fs": "^4.1.9"
- }
- },
"kleur": {
"version": "3.0.3",
"devOptional": true
@@ -55125,23 +53749,21 @@
"version": "1.6.0",
"devOptional": true
},
- "lazy-cache": {
- "version": "1.0.4",
- "optional": true
- },
"lazy-universal-dotenv": {
- "version": "3.0.1",
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/lazy-universal-dotenv/-/lazy-universal-dotenv-4.0.0.tgz",
+ "integrity": "sha512-aXpZJRnTkpK6gQ/z4nk+ZBLd/Qdp118cvPruLSIQzQNRhKwEcdXCOzXuF55VDqIiuAaY3UGZ10DJtvZzDcvsxg==",
"optional": true,
"requires": {
- "@babel/runtime": "^7.5.0",
"app-root-dir": "^1.0.2",
- "core-js": "^3.0.4",
- "dotenv": "^8.0.0",
- "dotenv-expand": "^5.1.0"
+ "dotenv": "^16.0.0",
+ "dotenv-expand": "^10.0.0"
},
"dependencies": {
"dotenv": {
- "version": "8.6.0",
+ "version": "16.0.3",
+ "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-16.0.3.tgz",
+ "integrity": "sha512-7GO6HghkA5fYG9TYnNxi14/7K9f5occMlp3zXAuSxn7CKCxt9xbNWG7yF8hTCSUchlfWSe3uLmlPfigevRItzQ==",
"optional": true
}
}
@@ -55212,29 +53834,10 @@
"version": "6.2.1",
"optional": true
},
- "cosmiconfig": {
- "version": "7.0.0",
- "optional": true,
- "requires": {
- "@types/parse-json": "^4.0.0",
- "import-fresh": "^3.2.1",
- "parse-json": "^5.0.0",
- "path-type": "^4.0.0",
- "yaml": "^1.10.0"
- }
- },
"has-flag": {
"version": "4.0.0",
"optional": true
},
- "import-fresh": {
- "version": "3.3.0",
- "optional": true,
- "requires": {
- "parent-module": "^1.0.0",
- "resolve-from": "^4.0.0"
- }
- },
"log-symbols": {
"version": "4.1.0",
"optional": true,
@@ -55243,20 +53846,6 @@
"is-unicode-supported": "^0.1.0"
}
},
- "parse-json": {
- "version": "5.2.0",
- "optional": true,
- "requires": {
- "@babel/code-frame": "^7.0.0",
- "error-ex": "^1.3.1",
- "json-parse-even-better-errors": "^2.3.0",
- "lines-and-columns": "^1.1.6"
- }
- },
- "resolve-from": {
- "version": "4.0.0",
- "optional": true
- },
"slice-ansi": {
"version": "3.0.0",
"optional": true,
@@ -55504,28 +54093,6 @@
"strip-bom": "^3.0.0"
}
},
- "loader-runner": {
- "version": "2.4.0",
- "optional": true
- },
- "loader-utils": {
- "version": "1.4.0",
- "optional": true,
- "requires": {
- "big.js": "^5.2.2",
- "emojis-list": "^3.0.0",
- "json5": "^1.0.1"
- },
- "dependencies": {
- "json5": {
- "version": "1.0.1",
- "optional": true,
- "requires": {
- "minimist": "^1.2.0"
- }
- }
- }
- },
"locate-path": {
"version": "3.0.0",
"devOptional": true,
@@ -55547,14 +54114,58 @@
"version": "4.4.0",
"dev": true
},
+ "lodash.clone": {
+ "version": "4.5.0",
+ "resolved": "https://registry.npmjs.org/lodash.clone/-/lodash.clone-4.5.0.tgz",
+ "integrity": "sha512-GhrVeweiTD6uTmmn5hV/lzgCQhccwReIVRLHp7LT4SopOjqEZ5BbX8b5WWEtAKasjmy8hR7ZPwsYlxRCku5odg==",
+ "optional": true
+ },
+ "lodash.clonedeep": {
+ "version": "4.5.0",
+ "resolved": "https://registry.npmjs.org/lodash.clonedeep/-/lodash.clonedeep-4.5.0.tgz",
+ "integrity": "sha512-H5ZhCF25riFd9uB5UCkVKo61m3S/xZk1x4wA6yp/L3RFP6Z/eHH1ymQcGLo7J3GMPfm0V/7m1tryHuGVxpqEBQ==",
+ "optional": true
+ },
+ "lodash.constant": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/lodash.constant/-/lodash.constant-3.0.0.tgz",
+ "integrity": "sha512-X5XMrB+SdI1mFa81162NSTo/YNd23SLdLOLzcXTwS4inDZ5YCL8X67UFzZJAH4CqIa6R8cr56CShfA5K5MFiYQ==",
+ "optional": true
+ },
"lodash.debounce": {
"version": "4.0.8",
+ "resolved": "https://registry.npmjs.org/lodash.debounce/-/lodash.debounce-4.0.8.tgz",
+ "integrity": "sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==",
"devOptional": true
},
+ "lodash.filter": {
+ "version": "4.6.0",
+ "resolved": "https://registry.npmjs.org/lodash.filter/-/lodash.filter-4.6.0.tgz",
+ "integrity": "sha512-pXYUy7PR8BCLwX5mgJ/aNtyOvuJTdZAo9EQFUvMIYugqmJxnrYaANvTbgndOzHSCSR0wnlBBfRXJL5SbWxo3FQ==",
+ "optional": true
+ },
+ "lodash.flatmap": {
+ "version": "4.5.0",
+ "resolved": "https://registry.npmjs.org/lodash.flatmap/-/lodash.flatmap-4.5.0.tgz",
+ "integrity": "sha512-/OcpcAGWlrZyoHGeHh3cAoa6nGdX6QYtmzNP84Jqol6UEQQ2gIaU3H+0eICcjcKGl0/XF8LWOujNn9lffsnaOg==",
+ "optional": true
+ },
+ "lodash.foreach": {
+ "version": "4.5.0",
+ "resolved": "https://registry.npmjs.org/lodash.foreach/-/lodash.foreach-4.5.0.tgz",
+ "integrity": "sha512-aEXTF4d+m05rVOAUG3z4vZZ4xVexLKZGF0lIxuHZ1Hplpk/3B6Z1+/ICICYRLm7c41Z2xiejbkCkJoTlypoXhQ==",
+ "optional": true
+ },
"lodash.get": {
"version": "4.4.2",
"dev": true
},
+ "lodash.has": {
+ "version": "4.5.2",
+ "resolved": "https://registry.npmjs.org/lodash.has/-/lodash.has-4.5.2.tgz",
+ "integrity": "sha512-rnYUdIo6xRCJnQmbVFEwcxF144erlD+M3YcJUVesflU9paQaE8p+fJDcIQrlMYbxoANFL+AB9hZrzSBBk5PL+g==",
+ "optional": true
+ },
"lodash.includes": {
"version": "4.3.0",
"dev": true
@@ -55594,6 +54205,24 @@
"version": "4.0.1",
"devOptional": true
},
+ "lodash.isundefined": {
+ "version": "3.0.1",
+ "resolved": "https://registry.npmjs.org/lodash.isundefined/-/lodash.isundefined-3.0.1.tgz",
+ "integrity": "sha512-MXB1is3s899/cD8jheYYE2V9qTHwKvt+npCwpD+1Sxm3Q3cECXCiYHjeHWXNwr6Q0SOBPrYUDxendrO6goVTEA==",
+ "optional": true
+ },
+ "lodash.keys": {
+ "version": "4.2.0",
+ "resolved": "https://registry.npmjs.org/lodash.keys/-/lodash.keys-4.2.0.tgz",
+ "integrity": "sha512-J79MkJcp7Df5mizHiVNpjoHXLi4HLjh9VLS/M7lQSGoQ+0oQ+lWEigREkqKyizPB1IawvQLLKY8mzEcm1tkyxQ==",
+ "optional": true
+ },
+ "lodash.map": {
+ "version": "4.6.0",
+ "resolved": "https://registry.npmjs.org/lodash.map/-/lodash.map-4.6.0.tgz",
+ "integrity": "sha512-worNHGKLDetmcEYDvh2stPCrrQRkP20E4l0iIS7F8EvzMqBBi7ltvFN5m1HvTf1P7Jk1txKhvFcmYsCr8O2F1Q==",
+ "optional": true
+ },
"lodash.memoize": {
"version": "4.1.2",
"optional": true
@@ -55606,10 +54235,22 @@
"version": "4.1.1",
"devOptional": true
},
+ "lodash.reduce": {
+ "version": "4.6.0",
+ "resolved": "https://registry.npmjs.org/lodash.reduce/-/lodash.reduce-4.6.0.tgz",
+ "integrity": "sha512-6raRe2vxCYBhpBu+B+TtNGUzah+hQjVdu3E17wfusjyrXBka2nBS8OH/gjVZ5PvHOhWmIZTYri09Z6n/QfnNMw==",
+ "optional": true
+ },
"lodash.set": {
"version": "4.3.2",
"dev": true
},
+ "lodash.size": {
+ "version": "4.2.0",
+ "resolved": "https://registry.npmjs.org/lodash.size/-/lodash.size-4.2.0.tgz",
+ "integrity": "sha512-wbu3SF1XC5ijqm0piNxw59yCbuUf2kaShumYBLWUrcCvwh6C8odz6SY/wGVzCWTQTFL/1Ygbvqg2eLtspUVVAQ==",
+ "optional": true
+ },
"lodash.sortby": {
"version": "4.7.0",
"dev": true
@@ -55623,10 +54264,34 @@
"lodash.throttle": {
"version": "4.1.1"
},
+ "lodash.topairs": {
+ "version": "4.3.0",
+ "resolved": "https://registry.npmjs.org/lodash.topairs/-/lodash.topairs-4.3.0.tgz",
+ "integrity": "sha512-qrRMbykBSEGdOgQLJJqVSdPWMD7Q+GJJ5jMRfQYb+LTLsw3tYVIabnCzRqTJb2WTo17PG5gNzXuFaZgYH/9SAQ==",
+ "optional": true
+ },
+ "lodash.transform": {
+ "version": "4.6.0",
+ "resolved": "https://registry.npmjs.org/lodash.transform/-/lodash.transform-4.6.0.tgz",
+ "integrity": "sha512-LO37ZnhmBVx0GvOU/caQuipEh4GN82TcWv3yHlebGDgOxbxiwwzW5Pcx2AcvpIv2WmvmSMoC492yQFNhy/l/UQ==",
+ "optional": true
+ },
"lodash.truncate": {
"version": "4.4.2",
"optional": true
},
+ "lodash.union": {
+ "version": "4.6.0",
+ "resolved": "https://registry.npmjs.org/lodash.union/-/lodash.union-4.6.0.tgz",
+ "integrity": "sha512-c4pB2CdGrGdjMKYLA+XiRDO7Y0PRQbm/Gzg8qMj+QH+pFVAoTp5sBpO0odL3FjoPCGjK96p6qsP+yQoiLoOBcw==",
+ "optional": true
+ },
+ "lodash.values": {
+ "version": "4.3.0",
+ "resolved": "https://registry.npmjs.org/lodash.values/-/lodash.values-4.3.0.tgz",
+ "integrity": "sha512-r0RwvdCv8id9TUblb/O7rYPwVy6lerCbcawrfdo9iC/1t1wsNMJknO79WNBgwkH0hIeJ08jmvvESbFpNb4jH0Q==",
+ "optional": true
+ },
"log-symbols": {
"version": "1.0.2",
"dev": true,
@@ -55728,7 +54393,7 @@
},
"lower-case": {
"version": "2.0.2",
- "devOptional": true,
+ "dev": true,
"requires": {
"tslib": "^2.0.3"
}
@@ -55742,15 +54407,7 @@
},
"lowercase-keys": {
"version": "2.0.0",
- "dev": true
- },
- "lowlight": {
- "version": "1.11.0",
- "optional": true,
- "requires": {
- "fault": "^1.0.2",
- "highlight.js": "~9.13.0"
- }
+ "devOptional": true
},
"lru-cache": {
"version": "6.0.0",
@@ -55799,7 +54456,7 @@
},
"map-cache": {
"version": "0.2.2",
- "devOptional": true
+ "dev": true
},
"map-obj": {
"version": "4.3.0",
@@ -55809,6 +54466,8 @@
},
"map-or-similar": {
"version": "1.5.0",
+ "resolved": "https://registry.npmjs.org/map-or-similar/-/map-or-similar-1.5.0.tgz",
+ "integrity": "sha512-0aF7ZmVon1igznGI4VS30yugpduQW3y3GkcgGJOp7d8x8QrizhigUxjI/m2UojsXXto+jLAH3KSz+xOJTiORjg==",
"optional": true
},
"map-stream": {
@@ -55817,7 +54476,7 @@
},
"map-visit": {
"version": "1.0.0",
- "devOptional": true,
+ "dev": true,
"requires": {
"object-visit": "^1.0.0"
}
@@ -55844,12 +54503,10 @@
}
},
"markdown-to-jsx": {
- "version": "6.11.4",
- "optional": true,
- "requires": {
- "prop-types": "^15.6.2",
- "unquote": "^1.1.0"
- }
+ "version": "7.2.0",
+ "resolved": "https://registry.npmjs.org/markdown-to-jsx/-/markdown-to-jsx-7.2.0.tgz",
+ "integrity": "sha512-3l4/Bigjm4bEqjCR6Xr+d4DtM1X6vvtGsMGSjJYyep8RjjIvcWtrXBS8Wbfe1/P+atKNMccpsraESIaWVplzVg==",
+ "optional": true
},
"marked": {
"version": "4.0.17"
@@ -55863,23 +54520,54 @@
"is-buffer": "~1.1.6"
}
},
- "md5.js": {
- "version": "1.3.5",
- "optional": true,
- "requires": {
- "hash-base": "^3.0.0",
- "inherits": "^2.0.1",
- "safe-buffer": "^5.1.2"
- }
- },
"mdast-add-list-metadata": {
"version": "1.0.1",
"requires": {
"unist-util-visit-parents": "1.1.2"
}
},
- "mdn-data": {
- "version": "2.0.4",
+ "mdast-util-definitions": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/mdast-util-definitions/-/mdast-util-definitions-4.0.0.tgz",
+ "integrity": "sha512-k8AJ6aNnUkB7IE+5azR9h81O5EQ/cTDXtWdMq9Kk5KcEW/8ritU5CeLg/9HhOC++nALHBlaogJ5jz0Ybk3kPMQ==",
+ "optional": true,
+ "requires": {
+ "unist-util-visit": "^2.0.0"
+ },
+ "dependencies": {
+ "unist-util-is": {
+ "version": "4.1.0",
+ "resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-4.1.0.tgz",
+ "integrity": "sha512-ZOQSsnce92GrxSqlnEEseX0gi7GH9zTJZ0p9dtu87WRb/37mMPO2Ilx1s/t9vBHrFhbgweUwb+t7cIn5dxPhZg==",
+ "optional": true
+ },
+ "unist-util-visit": {
+ "version": "2.0.3",
+ "resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-2.0.3.tgz",
+ "integrity": "sha512-iJ4/RczbJMkD0712mGktuGpm/U4By4FfDonL7N/9tATGIF4imikjOuagyMY53tnZq3NP6BcmlrHhEKAfGWjh7Q==",
+ "optional": true,
+ "requires": {
+ "@types/unist": "^2.0.0",
+ "unist-util-is": "^4.0.0",
+ "unist-util-visit-parents": "^3.0.0"
+ }
+ },
+ "unist-util-visit-parents": {
+ "version": "3.1.1",
+ "resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-3.1.1.tgz",
+ "integrity": "sha512-1KROIZWo6bcMrZEwiH2UrXDyalAa0uqzWCxCJj6lPOvTve2WkfgCytoDTPaMnodXh1WrXOq0haVYHj99ynJlsg==",
+ "optional": true,
+ "requires": {
+ "@types/unist": "^2.0.0",
+ "unist-util-is": "^4.0.0"
+ }
+ }
+ }
+ },
+ "mdast-util-to-string": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/mdast-util-to-string/-/mdast-util-to-string-1.1.0.tgz",
+ "integrity": "sha512-jVU0Nr2B9X3MU4tSK7JP1CMkSvOj7X5l/GboG1tKRw52lLF1x2Ju92Ms9tNetCcbfX3hzlM73zYo2NKkWSfF/A==",
"optional": true
},
"mdurl": {
@@ -55896,19 +54584,13 @@
},
"memoizerific": {
"version": "1.11.3",
+ "resolved": "https://registry.npmjs.org/memoizerific/-/memoizerific-1.11.3.tgz",
+ "integrity": "sha512-/EuHYwAPdLtXwAwSZkh/Gutery6pD2KYd44oQLhAvQp/50mpyduZh8Q7PYHXTCJ+wuXxt7oij2LXyIJOOYFPog==",
"optional": true,
"requires": {
"map-or-similar": "^1.5.0"
}
},
- "memory-fs": {
- "version": "0.4.1",
- "optional": true,
- "requires": {
- "errno": "^0.1.3",
- "readable-stream": "^2.0.1"
- }
- },
"meow": {
"version": "6.1.1",
"resolved": "https://registry.npmjs.org/meow/-/meow-6.1.1.tgz",
@@ -55946,24 +54628,6 @@
}
}
},
- "merge-deep": {
- "version": "3.0.3",
- "optional": true,
- "requires": {
- "arr-union": "^3.1.0",
- "clone-deep": "^0.2.4",
- "kind-of": "^3.0.2"
- },
- "dependencies": {
- "kind-of": {
- "version": "3.2.2",
- "optional": true,
- "requires": {
- "is-buffer": "^1.1.5"
- }
- }
- }
- },
"merge-descriptors": {
"version": "1.0.1",
"devOptional": true
@@ -55982,10 +54646,6 @@
"version": "1.1.2",
"devOptional": true
},
- "microevent.ts": {
- "version": "0.1.1",
- "devOptional": true
- },
"micromatch": {
"version": "4.0.5",
"requires": {
@@ -55993,20 +54653,6 @@
"picomatch": "^2.3.1"
}
},
- "miller-rabin": {
- "version": "4.0.1",
- "optional": true,
- "requires": {
- "bn.js": "^4.0.0",
- "brorand": "^1.0.1"
- },
- "dependencies": {
- "bn.js": {
- "version": "4.12.0",
- "optional": true
- }
- }
- },
"mime": {
"version": "1.6.0",
"resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz",
@@ -56035,13 +54681,6 @@
"mimic-response": {
"version": "1.0.1"
},
- "min-document": {
- "version": "2.19.0",
- "optional": true,
- "requires": {
- "dom-walk": "^0.1.0"
- }
- },
"min-indent": {
"version": "1.0.1",
"devOptional": true
@@ -56053,48 +54692,6 @@
"tiny-warning": "^1.0.3"
}
},
- "mini-css-extract-plugin": {
- "version": "0.7.0",
- "optional": true,
- "requires": {
- "loader-utils": "^1.1.0",
- "normalize-url": "1.9.1",
- "schema-utils": "^1.0.0",
- "webpack-sources": "^1.1.0"
- },
- "dependencies": {
- "normalize-url": {
- "version": "1.9.1",
- "optional": true,
- "requires": {
- "object-assign": "^4.0.1",
- "prepend-http": "^1.0.0",
- "query-string": "^4.1.0",
- "sort-keys": "^1.0.0"
- }
- },
- "query-string": {
- "version": "4.3.4",
- "optional": true,
- "requires": {
- "object-assign": "^4.1.0",
- "strict-uri-encode": "^1.0.0"
- }
- },
- "strict-uri-encode": {
- "version": "1.1.0",
- "optional": true
- }
- }
- },
- "minimalistic-assert": {
- "version": "1.0.1",
- "optional": true
- },
- "minimalistic-crypto-utils": {
- "version": "1.0.1",
- "optional": true
- },
"minimatch": {
"version": "3.0.4",
"devOptional": true,
@@ -56119,52 +54716,35 @@
}
},
"minipass": {
- "version": "3.1.3",
+ "version": "5.0.0",
+ "resolved": "https://registry.npmjs.org/minipass/-/minipass-5.0.0.tgz",
+ "integrity": "sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==",
+ "optional": true
+ },
+ "minizlib": {
+ "version": "2.1.2",
+ "resolved": "https://registry.npmjs.org/minizlib/-/minizlib-2.1.2.tgz",
+ "integrity": "sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==",
"optional": true,
"requires": {
+ "minipass": "^3.0.0",
"yallist": "^4.0.0"
- }
- },
- "minipass-collect": {
- "version": "1.0.2",
- "optional": true,
- "requires": {
- "minipass": "^3.0.0"
- }
- },
- "minipass-flush": {
- "version": "1.0.5",
- "optional": true,
- "requires": {
- "minipass": "^3.0.0"
- }
- },
- "minipass-pipeline": {
- "version": "1.2.4",
- "optional": true,
- "requires": {
- "minipass": "^3.0.0"
- }
- },
- "mississippi": {
- "version": "3.0.0",
- "optional": true,
- "requires": {
- "concat-stream": "^1.5.0",
- "duplexify": "^3.4.2",
- "end-of-stream": "^1.1.0",
- "flush-write-stream": "^1.0.0",
- "from2": "^2.1.0",
- "parallel-transform": "^1.1.0",
- "pump": "^3.0.0",
- "pumpify": "^1.3.3",
- "stream-each": "^1.1.0",
- "through2": "^2.0.0"
+ },
+ "dependencies": {
+ "minipass": {
+ "version": "3.3.6",
+ "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz",
+ "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==",
+ "optional": true,
+ "requires": {
+ "yallist": "^4.0.0"
+ }
+ }
}
},
"mixin-deep": {
"version": "1.3.2",
- "devOptional": true,
+ "dev": true,
"requires": {
"for-in": "^1.0.2",
"is-extendable": "^1.0.1"
@@ -56172,27 +54752,13 @@
"dependencies": {
"is-extendable": {
"version": "1.0.1",
- "devOptional": true,
+ "dev": true,
"requires": {
"is-plain-object": "^2.0.4"
}
}
}
},
- "mixin-object": {
- "version": "2.0.1",
- "optional": true,
- "requires": {
- "for-in": "^0.1.3",
- "is-extendable": "^0.1.1"
- },
- "dependencies": {
- "for-in": {
- "version": "0.1.8",
- "optional": true
- }
- }
- },
"mixme": {
"version": "0.5.5",
"resolved": "https://registry.npmjs.org/mixme/-/mixme-0.5.5.tgz",
@@ -56206,6 +54772,12 @@
"minimist": "^1.2.5"
}
},
+ "mkdirp-classic": {
+ "version": "0.5.3",
+ "resolved": "https://registry.npmjs.org/mkdirp-classic/-/mkdirp-classic-0.5.3.tgz",
+ "integrity": "sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A==",
+ "optional": true
+ },
"mocha-junit-reporter": {
"version": "2.0.2",
"optional": true,
@@ -56597,33 +55169,18 @@
}
}
},
- "move-concurrently": {
- "version": "1.0.1",
- "optional": true,
- "requires": {
- "aproba": "^1.1.1",
- "copy-concurrently": "^1.0.0",
- "fs-write-stream-atomic": "^1.0.8",
- "mkdirp": "^0.5.1",
- "rimraf": "^2.5.4",
- "run-queue": "^1.0.3"
- },
- "dependencies": {
- "rimraf": {
- "version": "2.7.1",
- "optional": true,
- "requires": {
- "glob": "^7.1.3"
- }
- }
- }
+ "mri": {
+ "version": "1.2.0",
+ "resolved": "https://registry.npmjs.org/mri/-/mri-1.2.0.tgz",
+ "integrity": "sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA==",
+ "optional": true
},
"ms": {
"version": "2.1.2"
},
"mute-stream": {
"version": "0.0.8",
- "devOptional": true
+ "dev": true
},
"nan": {
"version": "2.15.0",
@@ -56634,7 +55191,7 @@
},
"nanomatch": {
"version": "1.2.13",
- "devOptional": true,
+ "dev": true,
"requires": {
"arr-diff": "^4.0.0",
"array-unique": "^0.3.2",
@@ -56663,10 +55220,6 @@
"version": "2.6.2",
"devOptional": true
},
- "nice-try": {
- "version": "1.0.5",
- "optional": true
- },
"nocache": {
"version": "2.1.0",
"dev": true
@@ -56691,6 +55244,12 @@
"node-fetch": {
"version": "2.6.1"
},
+ "node-fetch-native": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/node-fetch-native/-/node-fetch-native-1.1.0.tgz",
+ "integrity": "sha512-nl5goFCig93JZ9FIV8GHT9xpNqXbxQUzkOmKIMKmncsBH9jhg7qKex8hirpymkBFmNQ114chEEG5lS4wgK2I+Q==",
+ "optional": true
+ },
"node-html-parser": {
"version": "5.4.2",
"dev": true,
@@ -56734,45 +55293,22 @@
"version": "0.4.0",
"devOptional": true
},
- "node-libs-browser": {
- "version": "2.2.1",
+ "node-releases": {
+ "version": "2.0.10",
+ "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.10.tgz",
+ "integrity": "sha512-5GFldHPXVG/YZmFzJvKK2zDSzPKhEp0+ZR5SVaoSag9fsL5YgHbUHDfnG5494ISANDcK4KwPXAx2xqVEydmd7w==",
+ "devOptional": true
+ },
+ "node.extend": {
+ "version": "2.0.2",
+ "resolved": "https://registry.npmjs.org/node.extend/-/node.extend-2.0.2.tgz",
+ "integrity": "sha512-pDT4Dchl94/+kkgdwyS2PauDFjZG0Hk0IcHIB+LkW27HLDtdoeMxHTxZh39DYbPP8UflWXWj9JcdDozF+YDOpQ==",
"optional": true,
"requires": {
- "assert": "^1.1.1",
- "browserify-zlib": "^0.2.0",
- "buffer": "^4.3.0",
- "console-browserify": "^1.1.0",
- "constants-browserify": "^1.0.0",
- "crypto-browserify": "^3.11.0",
- "domain-browser": "^1.1.1",
- "events": "^3.0.0",
- "https-browserify": "^1.0.0",
- "os-browserify": "^0.3.0",
- "path-browserify": "0.0.1",
- "process": "^0.11.10",
- "punycode": "^1.2.4",
- "querystring-es3": "^0.2.0",
- "readable-stream": "^2.3.3",
- "stream-browserify": "^2.0.1",
- "stream-http": "^2.7.2",
- "string_decoder": "^1.0.0",
- "timers-browserify": "^2.0.4",
- "tty-browserify": "0.0.0",
- "url": "^0.11.0",
- "util": "^0.11.0",
- "vm-browserify": "^1.0.1"
- },
- "dependencies": {
- "punycode": {
- "version": "1.4.1",
- "optional": true
- }
+ "has": "^1.0.3",
+ "is": "^3.2.1"
}
},
- "node-releases": {
- "version": "1.1.71",
- "devOptional": true
- },
"normalize-package-data": {
"version": "2.5.0",
"devOptional": true,
@@ -56793,38 +55329,23 @@
"version": "3.0.0",
"devOptional": true
},
- "normalize-range": {
- "version": "0.1.2",
- "optional": true
- },
"npm-run-path": {
"version": "4.0.1",
"devOptional": true,
"requires": {
"path-key": "^3.0.0"
- },
- "dependencies": {
- "path-key": {
- "version": "3.1.1",
- "devOptional": true
- }
}
},
"npmlog": {
- "version": "4.1.2",
+ "version": "5.0.1",
+ "resolved": "https://registry.npmjs.org/npmlog/-/npmlog-5.0.1.tgz",
+ "integrity": "sha512-AqZtDUWOMKs1G/8lwylVjrdYgqA4d9nu8hc+0gzRxlDb1I10+FHBGMXs6aiQHFdCUUlqH99MUMuLfzWDNDtfxw==",
"optional": true,
"requires": {
- "are-we-there-yet": "~1.1.2",
- "console-control-strings": "~1.1.0",
- "gauge": "~2.7.3",
- "set-blocking": "~2.0.0"
- }
- },
- "nth-check": {
- "version": "1.0.2",
- "optional": true,
- "requires": {
- "boolbase": "~1.0.0"
+ "are-we-there-yet": "^2.0.0",
+ "console-control-strings": "^1.1.0",
+ "gauge": "^3.0.0",
+ "set-blocking": "^2.0.0"
}
},
"nub": {
@@ -56833,13 +55354,9 @@
"nullthrows": {
"version": "1.1.1"
},
- "num2fraction": {
- "version": "1.2.2",
- "optional": true
- },
"number-is-nan": {
"version": "1.0.1",
- "devOptional": true
+ "dev": true
},
"nwsapi": {
"version": "2.2.2",
@@ -56850,7 +55367,7 @@
},
"object-copy": {
"version": "0.1.0",
- "devOptional": true,
+ "dev": true,
"requires": {
"copy-descriptor": "^0.1.0",
"define-property": "^0.2.5",
@@ -56859,20 +55376,26 @@
"dependencies": {
"define-property": {
"version": "0.2.5",
- "devOptional": true,
+ "dev": true,
"requires": {
"is-descriptor": "^0.1.0"
}
},
"kind-of": {
"version": "3.2.2",
- "devOptional": true,
+ "dev": true,
"requires": {
"is-buffer": "^1.1.5"
}
}
}
},
+ "object-hash": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/object-hash/-/object-hash-3.0.0.tgz",
+ "integrity": "sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==",
+ "optional": true
+ },
"object-inspect": {
"version": "1.12.2"
},
@@ -56890,7 +55413,7 @@
},
"object-visit": {
"version": "1.0.1",
- "devOptional": true,
+ "dev": true,
"requires": {
"isobject": "^3.0.0"
}
@@ -56905,38 +55428,9 @@
"object-keys": "^1.1.1"
}
},
- "object.entries": {
- "version": "1.1.3",
- "optional": true,
- "requires": {
- "call-bind": "^1.0.0",
- "define-properties": "^1.1.3",
- "es-abstract": "^1.18.0-next.1",
- "has": "^1.0.3"
- }
- },
- "object.fromentries": {
- "version": "2.0.4",
- "optional": true,
- "requires": {
- "call-bind": "^1.0.2",
- "define-properties": "^1.1.3",
- "es-abstract": "^1.18.0-next.2",
- "has": "^1.0.3"
- }
- },
- "object.getownpropertydescriptors": {
- "version": "2.1.2",
- "optional": true,
- "requires": {
- "call-bind": "^1.0.2",
- "define-properties": "^1.1.3",
- "es-abstract": "^1.18.0-next.2"
- }
- },
"object.pick": {
"version": "1.3.0",
- "devOptional": true,
+ "dev": true,
"requires": {
"isobject": "^3.0.1"
}
@@ -56960,7 +55454,7 @@
},
"on-headers": {
"version": "1.0.2",
- "dev": true
+ "devOptional": true
},
"once": {
"version": "1.4.0",
@@ -56976,11 +55470,14 @@
}
},
"open": {
- "version": "7.4.2",
+ "version": "8.4.2",
+ "resolved": "https://registry.npmjs.org/open/-/open-8.4.2.tgz",
+ "integrity": "sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ==",
"optional": true,
"requires": {
- "is-docker": "^2.0.0",
- "is-wsl": "^2.1.1"
+ "define-lazy-prop": "^2.0.0",
+ "is-docker": "^2.1.1",
+ "is-wsl": "^2.2.0"
}
},
"opener": {
@@ -57077,17 +55574,6 @@
"resolved": "https://registry.npmjs.org/orderedmap/-/orderedmap-1.1.8.tgz",
"integrity": "sha512-eWEYOAggZZpZbJ9CTsqAKOTxlbBHdHZ8pzcfEvNTxGrjQ/m+Q25nSWUiMlT9MTbgpB6FOiBDKqsgJ2FlLDVNaw=="
},
- "original": {
- "version": "1.0.2",
- "optional": true,
- "requires": {
- "url-parse": "^1.4.3"
- }
- },
- "os-browserify": {
- "version": "0.3.0",
- "optional": true
- },
"os-name": {
"version": "4.0.0",
"dev": true,
@@ -57098,7 +55584,7 @@
},
"os-tmpdir": {
"version": "1.0.2",
- "devOptional": true
+ "dev": true
},
"ospath": {
"version": "1.2.2",
@@ -57112,7 +55598,7 @@
},
"p-cancelable": {
"version": "2.1.0",
- "dev": true
+ "devOptional": true
},
"p-filter": {
"version": "2.1.0",
@@ -57246,18 +55732,17 @@
}
}
},
- "pako": {
- "version": "1.0.11",
+ "packageurl-js": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/packageurl-js/-/packageurl-js-1.0.2.tgz",
+ "integrity": "sha512-fWC4ZPxo80qlh3xN5FxfIoQD3phVY4+EyzTIqyksjhKNDmaicdpxSvkWwIrYTtv9C1/RcUN6pxaTwGmj2NzS6A==",
"optional": true
},
- "parallel-transform": {
- "version": "1.2.0",
- "optional": true,
- "requires": {
- "cyclist": "^1.0.1",
- "inherits": "^2.0.3",
- "readable-stream": "^2.1.5"
- }
+ "pako": {
+ "version": "0.2.9",
+ "resolved": "https://registry.npmjs.org/pako/-/pako-0.2.9.tgz",
+ "integrity": "sha512-NUcwaKxUxWrZLpDG+z/xZaCgQITkA/Dv4V/T6bw7VON6l1Xz/VnrBqrYjZQ12TamKHzITTfOEIYUj48y2KXImA==",
+ "optional": true
},
"parent-module": {
"version": "1.0.1",
@@ -57270,17 +55755,6 @@
}
}
},
- "parse-asn1": {
- "version": "5.1.6",
- "optional": true,
- "requires": {
- "asn1.js": "^5.2.0",
- "browserify-aes": "^1.0.0",
- "evp_bytestokey": "^1.0.0",
- "pbkdf2": "^3.0.3",
- "safe-buffer": "^5.1.1"
- }
- },
"parse-entities": {
"version": "1.2.2",
"requires": {
@@ -57302,11 +55776,14 @@
}
},
"parse-json": {
- "version": "4.0.0",
- "optional": true,
+ "version": "5.2.0",
+ "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz",
+ "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==",
"requires": {
+ "@babel/code-frame": "^7.0.0",
"error-ex": "^1.3.1",
- "json-parse-better-errors": "^1.0.1"
+ "json-parse-even-better-errors": "^2.3.0",
+ "lines-and-columns": "^1.1.6"
}
},
"parse-path": {
@@ -57361,7 +55838,7 @@
},
"pascal-case": {
"version": "3.1.2",
- "devOptional": true,
+ "dev": true,
"requires": {
"no-case": "^3.0.4",
"tslib": "^2.0.3"
@@ -57369,7 +55846,7 @@
"dependencies": {
"no-case": {
"version": "3.0.4",
- "devOptional": true,
+ "dev": true,
"requires": {
"lower-case": "^2.0.2",
"tslib": "^2.0.3"
@@ -57379,11 +55856,7 @@
},
"pascalcase": {
"version": "0.1.1",
- "devOptional": true
- },
- "path-browserify": {
- "version": "0.0.1",
- "optional": true
+ "dev": true
},
"path-case": {
"version": "3.0.4",
@@ -57393,10 +55866,6 @@
"tslib": "^2.0.3"
}
},
- "path-dirname": {
- "version": "1.0.2",
- "optional": true
- },
"path-exists": {
"version": "3.0.0",
"devOptional": true
@@ -57406,8 +55875,10 @@
"devOptional": true
},
"path-key": {
- "version": "2.0.1",
- "optional": true
+ "version": "3.1.1",
+ "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz",
+ "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==",
+ "devOptional": true
},
"path-parse": {
"version": "1.0.7"
@@ -57443,15 +55914,15 @@
"through": "~2.3"
}
},
- "pbkdf2": {
- "version": "3.1.1",
+ "peek-stream": {
+ "version": "1.1.3",
+ "resolved": "https://registry.npmjs.org/peek-stream/-/peek-stream-1.1.3.tgz",
+ "integrity": "sha512-FhJ+YbOSBb9/rIl2ZeE/QHEsWn7PqNYt8ARAY3kIgNGOk13g9FGyIY6JIl/xB/3TFRVoTv5as0l11weORrTekA==",
"optional": true,
"requires": {
- "create-hash": "^1.1.2",
- "create-hmac": "^1.1.4",
- "ripemd160": "^2.0.1",
- "safe-buffer": "^5.0.1",
- "sha.js": "^2.4.8"
+ "buffer-from": "^1.0.0",
+ "duplexify": "^3.5.0",
+ "through2": "^2.0.3"
}
},
"pend": {
@@ -57463,7 +55934,7 @@
},
"picocolors": {
"version": "1.0.0",
- "dev": true
+ "devOptional": true
},
"picomatch": {
"version": "2.3.1"
@@ -57491,48 +55962,6 @@
"find-up": "^3.0.0"
}
},
- "pkg-up": {
- "version": "2.0.0",
- "optional": true,
- "requires": {
- "find-up": "^2.1.0"
- },
- "dependencies": {
- "find-up": {
- "version": "2.1.0",
- "optional": true,
- "requires": {
- "locate-path": "^2.0.0"
- }
- },
- "locate-path": {
- "version": "2.0.0",
- "optional": true,
- "requires": {
- "p-locate": "^2.0.0",
- "path-exists": "^3.0.0"
- }
- },
- "p-limit": {
- "version": "1.3.0",
- "optional": true,
- "requires": {
- "p-try": "^1.0.0"
- }
- },
- "p-locate": {
- "version": "2.0.0",
- "optional": true,
- "requires": {
- "p-limit": "^1.1.0"
- }
- },
- "p-try": {
- "version": "1.0.0",
- "optional": true
- }
- }
- },
"please-upgrade-node": {
"version": "3.2.0",
"optional": true,
@@ -57540,23 +55969,24 @@
"semver-compare": "^1.0.0"
}
},
+ "pluralize": {
+ "version": "7.0.0",
+ "resolved": "https://registry.npmjs.org/pluralize/-/pluralize-7.0.0.tgz",
+ "integrity": "sha512-ARhBOdzS3e41FbkW/XWrTEtukqqLoK5+Z/4UeDaLuSW+39JPeFgs4gCGqsrJHVZX0fUrx//4OF0K1CUGwlIFow==",
+ "optional": true
+ },
"pngjs": {
"version": "6.0.0",
"resolved": "https://registry.npmjs.org/pngjs/-/pngjs-6.0.0.tgz",
"integrity": "sha512-TRzzuFRRmEoSW/p1KVAmiOgPco2Irlah+bGFCeNfJXxxYGwSw7YwAOAcd7X28K/m5bjBWKsC29KyoMfHbypayg=="
},
- "pnp-webpack-plugin": {
- "version": "1.5.0",
- "optional": true,
- "requires": {
- "ts-pnp": "^1.1.2"
- }
- },
"polished": {
- "version": "3.7.1",
+ "version": "4.2.2",
+ "resolved": "https://registry.npmjs.org/polished/-/polished-4.2.2.tgz",
+ "integrity": "sha512-Sz2Lkdxz6F2Pgnpi9U5Ng/WdWAUZxmHrNPoVlm3aAemxoy2Qy7LGjQg4uf8qKelDAUW94F4np3iH2YPf2qefcQ==",
"optional": true,
"requires": {
- "@babel/runtime": "^7.12.5"
+ "@babel/runtime": "^7.17.8"
}
},
"popper.js": {
@@ -57564,97 +55994,7 @@
},
"posix-character-classes": {
"version": "0.1.1",
- "devOptional": true
- },
- "postcss": {
- "version": "7.0.39",
- "optional": true,
- "requires": {
- "picocolors": "^0.2.1",
- "source-map": "^0.6.1"
- },
- "dependencies": {
- "picocolors": {
- "version": "0.2.1",
- "optional": true
- },
- "source-map": {
- "version": "0.6.1",
- "optional": true
- }
- }
- },
- "postcss-flexbugs-fixes": {
- "version": "4.2.1",
- "optional": true,
- "requires": {
- "postcss": "^7.0.26"
- }
- },
- "postcss-load-config": {
- "version": "2.1.2",
- "optional": true,
- "requires": {
- "cosmiconfig": "^5.0.0",
- "import-cwd": "^2.0.0"
- }
- },
- "postcss-loader": {
- "version": "3.0.0",
- "optional": true,
- "requires": {
- "loader-utils": "^1.1.0",
- "postcss": "^7.0.0",
- "postcss-load-config": "^2.0.0",
- "schema-utils": "^1.0.0"
- }
- },
- "postcss-modules-extract-imports": {
- "version": "2.0.0",
- "optional": true,
- "requires": {
- "postcss": "^7.0.5"
- }
- },
- "postcss-modules-local-by-default": {
- "version": "3.0.3",
- "optional": true,
- "requires": {
- "icss-utils": "^4.1.1",
- "postcss": "^7.0.32",
- "postcss-selector-parser": "^6.0.2",
- "postcss-value-parser": "^4.1.0"
- }
- },
- "postcss-modules-scope": {
- "version": "2.2.0",
- "optional": true,
- "requires": {
- "postcss": "^7.0.6",
- "postcss-selector-parser": "^6.0.0"
- }
- },
- "postcss-modules-values": {
- "version": "3.0.0",
- "optional": true,
- "requires": {
- "icss-utils": "^4.0.0",
- "postcss": "^7.0.6"
- }
- },
- "postcss-selector-parser": {
- "version": "6.0.4",
- "optional": true,
- "requires": {
- "cssesc": "^3.0.0",
- "indexes-of": "^1.0.1",
- "uniq": "^1.0.1",
- "util-deprecate": "^1.0.2"
- }
- },
- "postcss-value-parser": {
- "version": "4.1.0",
- "optional": true
+ "dev": true
},
"preferred-pm": {
"version": "3.0.3",
@@ -57717,10 +56057,6 @@
"version": "1.1.2",
"optional": true
},
- "prepend-http": {
- "version": "1.0.4",
- "optional": true
- },
"prettier": {
"version": "2.8.7",
"resolved": "https://registry.npmjs.org/prettier/-/prettier-2.8.7.tgz",
@@ -57731,14 +56067,6 @@
"version": "5.6.0",
"devOptional": true
},
- "pretty-error": {
- "version": "2.1.2",
- "optional": true,
- "requires": {
- "lodash": "^4.17.20",
- "renderkid": "^2.0.4"
- }
- },
"pretty-format": {
"version": "27.5.1",
"optional": true,
@@ -57756,21 +56084,20 @@
},
"pretty-hrtime": {
"version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/pretty-hrtime/-/pretty-hrtime-1.0.3.tgz",
+ "integrity": "sha512-66hKPCr+72mlfiSjlEB1+45IjXSqvVAIy6mocupoww4tBFE9R9IhwwUGoI4G++Tc9Aq+2rxOt0RFU6gPcrte0A==",
"optional": true
},
- "prismjs": {
- "version": "1.23.0",
- "optional": true,
- "requires": {
- "clipboard": "^2.0.0"
- }
- },
"process": {
"version": "0.11.10",
+ "resolved": "https://registry.npmjs.org/process/-/process-0.11.10.tgz",
+ "integrity": "sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==",
"optional": true
},
"process-nextick-args": {
"version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz",
+ "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==",
"optional": true
},
"progress": {
@@ -57779,34 +56106,28 @@
},
"promise": {
"version": "7.3.1",
- "dev": true,
+ "devOptional": true,
"requires": {
"asap": "~2.0.3"
}
},
- "promise-inflight": {
- "version": "1.0.1",
- "optional": true
- },
- "promise.allsettled": {
- "version": "1.0.4",
+ "promise-deferred": {
+ "version": "2.0.3",
+ "resolved": "https://registry.npmjs.org/promise-deferred/-/promise-deferred-2.0.3.tgz",
+ "integrity": "sha512-n10XaoznCzLfyPFOlEE8iurezHpxrYzyjgq/1eW9Wk1gJwur/N7BdBmjJYJpqMeMcXK4wEbzo2EvZQcqjYcKUQ==",
"optional": true,
"requires": {
- "array.prototype.map": "^1.0.3",
- "call-bind": "^1.0.2",
- "define-properties": "^1.1.3",
- "es-abstract": "^1.18.0-next.2",
- "get-intrinsic": "^1.0.2",
- "iterate-value": "^1.0.2"
+ "promise": "^7.3.1"
}
},
- "promise.prototype.finally": {
- "version": "3.1.2",
+ "promiseback": {
+ "version": "2.0.3",
+ "resolved": "https://registry.npmjs.org/promiseback/-/promiseback-2.0.3.tgz",
+ "integrity": "sha512-VZXdCwS0ppVNTIRfNsCvVwJAaP2b+pxQF7lM8DMWfmpNWyTxB6O5YNbzs+8z0ki/KIBHKHk308NTIl4kJUem3w==",
"optional": true,
"requires": {
- "define-properties": "^1.1.3",
- "es-abstract": "^1.17.0-next.0",
- "function-bind": "^1.1.1"
+ "is-callable": "^1.1.5",
+ "promise-deferred": "^2.0.3"
}
},
"prompts": {
@@ -57834,13 +56155,6 @@
"version": "2.0.1",
"dev": true
},
- "property-information": {
- "version": "5.6.0",
- "optional": true,
- "requires": {
- "xtend": "^4.0.0"
- }
- },
"prosemirror-commands": {
"version": "1.1.12",
"resolved": "https://registry.npmjs.org/prosemirror-commands/-/prosemirror-commands-1.1.12.tgz",
@@ -57930,11 +56244,7 @@
},
"proxy-from-env": {
"version": "1.1.0",
- "dev": true
- },
- "prr": {
- "version": "1.0.1",
- "optional": true
+ "devOptional": true
},
"ps-tree": {
"version": "1.2.0",
@@ -57953,24 +56263,6 @@
"version": "1.8.0",
"optional": true
},
- "public-encrypt": {
- "version": "4.0.3",
- "optional": true,
- "requires": {
- "bn.js": "^4.1.0",
- "browserify-rsa": "^4.0.0",
- "create-hash": "^1.1.0",
- "parse-asn1": "^5.0.0",
- "randombytes": "^2.0.1",
- "safe-buffer": "^5.1.2"
- },
- "dependencies": {
- "bn.js": {
- "version": "4.12.0",
- "optional": true
- }
- }
- },
"pump": {
"version": "3.0.0",
"requires": {
@@ -57980,6 +56272,8 @@
},
"pumpify": {
"version": "1.5.1",
+ "resolved": "https://registry.npmjs.org/pumpify/-/pumpify-1.5.1.tgz",
+ "integrity": "sha512-oClZI37HvuUJJxSKKrC17bZ9Cu0ZYhEAGPsPUy9KlMUmv9dKX2o77RUmq7f3XjIxbwyGwYzbzQ1L2Ks8sIradQ==",
"optional": true,
"requires": {
"duplexify": "^3.6.0",
@@ -57989,6 +56283,8 @@
"dependencies": {
"pump": {
"version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/pump/-/pump-2.0.1.tgz",
+ "integrity": "sha512-ruPMNRkN3MHP1cWJc9OWr+T/xDP0jhXYCLfJcBuX54hhfIBnaQmAUMfDcG4DM5UMWByBbJY69QSphm3jtDKIkA==",
"optional": true,
"requires": {
"end-of-stream": "^1.1.0",
@@ -58007,9 +56303,94 @@
"escape-goat": "^2.0.0"
}
},
- "q": {
- "version": "1.5.1",
- "optional": true
+ "puppeteer-core": {
+ "version": "2.1.1",
+ "resolved": "https://registry.npmjs.org/puppeteer-core/-/puppeteer-core-2.1.1.tgz",
+ "integrity": "sha512-n13AWriBMPYxnpbb6bnaY5YoY6rGj8vPLrz6CZF3o0qJNEwlcfJVxBzYZ0NJsQ21UbdJoijPCDrM++SUVEz7+w==",
+ "optional": true,
+ "requires": {
+ "@types/mime-types": "^2.1.0",
+ "debug": "^4.1.0",
+ "extract-zip": "^1.6.6",
+ "https-proxy-agent": "^4.0.0",
+ "mime": "^2.0.3",
+ "mime-types": "^2.1.25",
+ "progress": "^2.0.1",
+ "proxy-from-env": "^1.0.0",
+ "rimraf": "^2.6.1",
+ "ws": "^6.1.0"
+ },
+ "dependencies": {
+ "agent-base": {
+ "version": "5.1.1",
+ "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-5.1.1.tgz",
+ "integrity": "sha512-TMeqbNl2fMW0nMjTEPOwe3J/PRFP4vqeoNuQMG0HlMrtm5QxKqdvAkZ1pRBQ/ulIyDD5Yq0nJ7YbdD8ey0TO3g==",
+ "optional": true
+ },
+ "extract-zip": {
+ "version": "1.7.0",
+ "resolved": "https://registry.npmjs.org/extract-zip/-/extract-zip-1.7.0.tgz",
+ "integrity": "sha512-xoh5G1W/PB0/27lXgMQyIhP5DSY/LhoCsOyZgb+6iMmRtCwVBo55uKaMoEYrDCKQhWvqEip5ZPKAc6eFNyf/MA==",
+ "optional": true,
+ "requires": {
+ "concat-stream": "^1.6.2",
+ "debug": "^2.6.9",
+ "mkdirp": "^0.5.4",
+ "yauzl": "^2.10.0"
+ },
+ "dependencies": {
+ "debug": {
+ "version": "2.6.9",
+ "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
+ "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
+ "optional": true,
+ "requires": {
+ "ms": "2.0.0"
+ }
+ }
+ }
+ },
+ "https-proxy-agent": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-4.0.0.tgz",
+ "integrity": "sha512-zoDhWrkR3of1l9QAL8/scJZyLu8j/gBkcwcaQOZh7Gyh/+uJQzGVETdgT30akuwkpL8HTRfssqI3BZuV18teDg==",
+ "optional": true,
+ "requires": {
+ "agent-base": "5",
+ "debug": "4"
+ }
+ },
+ "mime": {
+ "version": "2.6.0",
+ "resolved": "https://registry.npmjs.org/mime/-/mime-2.6.0.tgz",
+ "integrity": "sha512-USPkMeET31rOMiarsBNIHZKLGgvKc/LrjofAnBlOttf5ajRvqiRA8QsenbcooctK6d6Ts6aqZXBA+XbkKthiQg==",
+ "optional": true
+ },
+ "ms": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
+ "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==",
+ "optional": true
+ },
+ "rimraf": {
+ "version": "2.7.1",
+ "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz",
+ "integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==",
+ "optional": true,
+ "requires": {
+ "glob": "^7.1.3"
+ }
+ },
+ "ws": {
+ "version": "6.2.2",
+ "resolved": "https://registry.npmjs.org/ws/-/ws-6.2.2.tgz",
+ "integrity": "sha512-zmhltoSR8u1cnDsD43TX59mzoMZsLKqUweyYBAIvTngR3shc0W6aOZylZmq/7hqyVxPdi+5Ud2QInblgyE72fw==",
+ "optional": true,
+ "requires": {
+ "async-limiter": "~1.0.0"
+ }
+ }
+ }
},
"qs": {
"version": "6.11.1",
@@ -58019,14 +56400,6 @@
"side-channel": "^1.0.4"
}
},
- "querystring": {
- "version": "0.2.0",
- "optional": true
- },
- "querystring-es3": {
- "version": "0.2.1",
- "optional": true
- },
"querystringify": {
"version": "2.2.0",
"devOptional": true
@@ -58045,7 +56418,7 @@
},
"quick-lru": {
"version": "5.1.1",
- "dev": true
+ "devOptional": true
},
"raf": {
"version": "3.4.1",
@@ -58058,19 +56431,11 @@
},
"randombytes": {
"version": "2.1.0",
- "devOptional": true,
+ "dev": true,
"requires": {
"safe-buffer": "^5.1.0"
}
},
- "randomfill": {
- "version": "1.0.4",
- "optional": true,
- "requires": {
- "randombytes": "^2.0.5",
- "safe-buffer": "^5.1.0"
- }
- },
"range-parser": {
"version": "1.2.1",
"devOptional": true
@@ -58087,25 +56452,6 @@
"unpipe": "1.0.0"
}
},
- "raw-loader": {
- "version": "3.1.0",
- "optional": true,
- "requires": {
- "loader-utils": "^1.1.0",
- "schema-utils": "^2.0.1"
- },
- "dependencies": {
- "schema-utils": {
- "version": "2.7.1",
- "optional": true,
- "requires": {
- "@types/json-schema": "^7.0.5",
- "ajv": "^6.12.4",
- "ajv-keywords": "^3.5.2"
- }
- }
- }
- },
"rc": {
"version": "1.2.8",
"requires": {
@@ -58133,378 +56479,11 @@
"@babel/runtime": "^7.12.13"
}
},
- "react-dev-utils": {
- "version": "9.1.0",
- "optional": true,
- "requires": {
- "@babel/code-frame": "7.5.5",
- "address": "1.1.2",
- "browserslist": "4.7.0",
- "chalk": "2.4.2",
- "cross-spawn": "6.0.5",
- "detect-port-alt": "1.1.6",
- "escape-string-regexp": "1.0.5",
- "filesize": "3.6.1",
- "find-up": "3.0.0",
- "fork-ts-checker-webpack-plugin": "1.5.0",
- "global-modules": "2.0.0",
- "globby": "8.0.2",
- "gzip-size": "5.1.1",
- "immer": "1.10.0",
- "inquirer": "6.5.0",
- "is-root": "2.1.0",
- "loader-utils": "1.2.3",
- "open": "^6.3.0",
- "pkg-up": "2.0.0",
- "react-error-overlay": "^6.0.3",
- "recursive-readdir": "2.2.2",
- "shell-quote": "1.7.2",
- "sockjs-client": "1.4.0",
- "strip-ansi": "5.2.0",
- "text-table": "0.2.0"
- },
- "dependencies": {
- "@babel/code-frame": {
- "version": "7.5.5",
- "optional": true,
- "requires": {
- "@babel/highlight": "^7.0.0"
- }
- },
- "@nodelib/fs.stat": {
- "version": "1.1.3",
- "optional": true
- },
- "ansi-escapes": {
- "version": "3.2.0",
- "optional": true
- },
- "ansi-regex": {
- "version": "3.0.0",
- "optional": true
- },
- "array-union": {
- "version": "1.0.2",
- "optional": true,
- "requires": {
- "array-uniq": "^1.0.1"
- }
- },
- "braces": {
- "version": "2.3.2",
- "optional": true,
- "requires": {
- "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.2",
- "snapdragon": "^0.8.1",
- "snapdragon-node": "^2.0.1",
- "split-string": "^3.0.2",
- "to-regex": "^3.0.1"
- }
- },
- "browserslist": {
- "version": "4.7.0",
- "optional": true,
- "requires": {
- "caniuse-lite": "^1.0.30000989",
- "electron-to-chromium": "^1.3.247",
- "node-releases": "^1.1.29"
- }
- },
- "chokidar": {
- "version": "2.1.8",
- "optional": true,
- "requires": {
- "anymatch": "^2.0.0",
- "async-each": "^1.0.1",
- "braces": "^2.3.2",
- "fsevents": "^1.2.7",
- "glob-parent": "^3.1.0",
- "inherits": "^2.0.3",
- "is-binary-path": "^1.0.0",
- "is-glob": "^4.0.0",
- "normalize-path": "^3.0.0",
- "path-is-absolute": "^1.0.0",
- "readdirp": "^2.2.1",
- "upath": "^1.1.1"
- }
- },
- "cli-width": {
- "version": "2.2.1",
- "optional": true
- },
- "debug": {
- "version": "2.6.9",
- "optional": true,
- "requires": {
- "ms": "2.0.0"
- }
- },
- "detect-port-alt": {
- "version": "1.1.6",
- "optional": true,
- "requires": {
- "address": "^1.0.1",
- "debug": "^2.6.0"
- }
- },
- "dir-glob": {
- "version": "2.0.0",
- "optional": true,
- "requires": {
- "arrify": "^1.0.1",
- "path-type": "^3.0.0"
- }
- },
- "emojis-list": {
- "version": "2.1.0",
- "optional": true
- },
- "extend-shallow": {
- "version": "2.0.1",
- "optional": true,
- "requires": {
- "is-extendable": "^0.1.0"
- }
- },
- "fast-glob": {
- "version": "2.2.7",
- "optional": true,
- "requires": {
- "@mrmlnc/readdir-enhanced": "^2.2.1",
- "@nodelib/fs.stat": "^1.1.2",
- "glob-parent": "^3.1.0",
- "is-glob": "^4.0.0",
- "merge2": "^1.2.3",
- "micromatch": "^3.1.10"
- }
- },
- "figures": {
- "version": "2.0.0",
- "optional": true,
- "requires": {
- "escape-string-regexp": "^1.0.5"
- }
- },
- "fill-range": {
- "version": "4.0.0",
- "optional": true,
- "requires": {
- "extend-shallow": "^2.0.1",
- "is-number": "^3.0.0",
- "repeat-string": "^1.6.1",
- "to-regex-range": "^2.1.0"
- }
- },
- "fork-ts-checker-webpack-plugin": {
- "version": "1.5.0",
- "optional": true,
- "requires": {
- "babel-code-frame": "^6.22.0",
- "chalk": "^2.4.1",
- "chokidar": "^2.0.4",
- "micromatch": "^3.1.10",
- "minimatch": "^3.0.4",
- "semver": "^5.6.0",
- "tapable": "^1.0.0",
- "worker-rpc": "^0.1.0"
- }
- },
- "glob-parent": {
- "version": "3.1.0",
- "optional": true,
- "requires": {
- "is-glob": "^3.1.0",
- "path-dirname": "^1.0.0"
- },
- "dependencies": {
- "is-glob": {
- "version": "3.1.0",
- "optional": true,
- "requires": {
- "is-extglob": "^2.1.0"
- }
- }
- }
- },
- "globby": {
- "version": "8.0.2",
- "optional": true,
- "requires": {
- "array-union": "^1.0.1",
- "dir-glob": "2.0.0",
- "fast-glob": "^2.0.2",
- "glob": "^7.1.2",
- "ignore": "^3.3.5",
- "pify": "^3.0.0",
- "slash": "^1.0.0"
- }
- },
- "ignore": {
- "version": "3.3.10",
- "optional": true
- },
- "inquirer": {
- "version": "6.5.0",
- "optional": true,
- "requires": {
- "ansi-escapes": "^3.2.0",
- "chalk": "^2.4.2",
- "cli-cursor": "^2.1.0",
- "cli-width": "^2.0.0",
- "external-editor": "^3.0.3",
- "figures": "^2.0.0",
- "lodash": "^4.17.12",
- "mute-stream": "0.0.7",
- "run-async": "^2.2.0",
- "rxjs": "^6.4.0",
- "string-width": "^2.1.0",
- "strip-ansi": "^5.1.0",
- "through": "^2.3.6"
- }
- },
- "is-fullwidth-code-point": {
- "version": "2.0.0",
- "optional": true
- },
- "is-number": {
- "version": "3.0.0",
- "optional": true,
- "requires": {
- "kind-of": "^3.0.2"
- }
- },
- "is-wsl": {
- "version": "1.1.0",
- "optional": true
- },
- "json5": {
- "version": "1.0.1",
- "optional": true,
- "requires": {
- "minimist": "^1.2.0"
- }
- },
- "kind-of": {
- "version": "3.2.2",
- "optional": true,
- "requires": {
- "is-buffer": "^1.1.5"
- }
- },
- "loader-utils": {
- "version": "1.2.3",
- "optional": true,
- "requires": {
- "big.js": "^5.2.2",
- "emojis-list": "^2.0.0",
- "json5": "^1.0.1"
- }
- },
- "micromatch": {
- "version": "3.1.10",
- "optional": true,
- "requires": {
- "arr-diff": "^4.0.0",
- "array-unique": "^0.3.2",
- "braces": "^2.3.1",
- "define-property": "^2.0.2",
- "extend-shallow": "^3.0.2",
- "extglob": "^2.0.4",
- "fragment-cache": "^0.2.1",
- "kind-of": "^6.0.2",
- "nanomatch": "^1.2.9",
- "object.pick": "^1.3.0",
- "regex-not": "^1.0.0",
- "snapdragon": "^0.8.1",
- "to-regex": "^3.0.2"
- },
- "dependencies": {
- "extend-shallow": {
- "version": "3.0.2",
- "optional": true,
- "requires": {
- "assign-symbols": "^1.0.0",
- "is-extendable": "^1.0.1"
- }
- },
- "is-extendable": {
- "version": "1.0.1",
- "optional": true,
- "requires": {
- "is-plain-object": "^2.0.4"
- }
- },
- "kind-of": {
- "version": "6.0.3",
- "optional": true
- }
- }
- },
- "ms": {
- "version": "2.0.0",
- "optional": true
- },
- "mute-stream": {
- "version": "0.0.7",
- "optional": true
- },
- "open": {
- "version": "6.4.0",
- "optional": true,
- "requires": {
- "is-wsl": "^1.1.0"
- }
- },
- "path-type": {
- "version": "3.0.0",
- "optional": true,
- "requires": {
- "pify": "^3.0.0"
- }
- },
- "pify": {
- "version": "3.0.0",
- "optional": true
- },
- "semver": {
- "version": "5.7.1",
- "optional": true
- },
- "slash": {
- "version": "1.0.0",
- "optional": true
- },
- "string-width": {
- "version": "2.1.1",
- "optional": true,
- "requires": {
- "is-fullwidth-code-point": "^2.0.0",
- "strip-ansi": "^4.0.0"
- },
- "dependencies": {
- "strip-ansi": {
- "version": "4.0.0",
- "optional": true,
- "requires": {
- "ansi-regex": "^3.0.0"
- }
- }
- }
- },
- "to-regex-range": {
- "version": "2.1.1",
- "optional": true,
- "requires": {
- "is-number": "^3.0.0",
- "repeat-string": "^1.6.1"
- }
- }
- }
+ "react-colorful": {
+ "version": "5.6.1",
+ "resolved": "https://registry.npmjs.org/react-colorful/-/react-colorful-5.6.1.tgz",
+ "integrity": "sha512-1exovf0uGTGyq5mXQT0zgQ80uvj2PCwvF8zY1RN9/vbJVSjSo3fsB/4L3ObbF7u70NduSiK4xu4Y6q1MHoUGEw==",
+ "optional": true
},
"react-display-name": {
"version": "0.2.5"
@@ -58525,25 +56504,37 @@
}
},
"react-docgen": {
- "version": "5.3.1",
+ "version": "6.0.0-alpha.3",
+ "resolved": "https://registry.npmjs.org/react-docgen/-/react-docgen-6.0.0-alpha.3.tgz",
+ "integrity": "sha512-DDLvB5EV9As1/zoUsct6Iz2Cupw9FObEGD3DMcIs3EDFIoSKyz8FZtoWj3Wj+oodrU4/NfidN0BL5yrapIcTSA==",
"optional": true,
"requires": {
"@babel/core": "^7.7.5",
- "@babel/runtime": "^7.7.6",
+ "@babel/generator": "^7.12.11",
"ast-types": "^0.14.2",
"commander": "^2.19.0",
"doctrine": "^3.0.0",
+ "estree-to-babel": "^3.1.0",
"neo-async": "^2.6.1",
"node-dir": "^0.1.10",
+ "resolve": "1.20.0",
"strip-indent": "^3.0.0"
},
"dependencies": {
"commander": {
"version": "2.20.3",
+ "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz",
+ "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==",
"optional": true
}
}
},
+ "react-docgen-typescript": {
+ "version": "2.2.2",
+ "resolved": "https://registry.npmjs.org/react-docgen-typescript/-/react-docgen-typescript-2.2.2.tgz",
+ "integrity": "sha512-tvg2ZtOpOi6QDwsb3GZhOjDkkX0h8Z2gipvTg6OVMUyoYoURhEiRNePT8NZItTVCDh39JJHnLdfCOkzoLbFnTg==",
+ "optional": true
+ },
"react-dom": {
"version": "17.0.2",
"requires": {
@@ -58602,16 +56593,37 @@
"@react-editor-js/server": "2.0.6"
}
},
+ "react-element-to-jsx-string": {
+ "version": "15.0.0",
+ "resolved": "https://registry.npmjs.org/react-element-to-jsx-string/-/react-element-to-jsx-string-15.0.0.tgz",
+ "integrity": "sha512-UDg4lXB6BzlobN60P8fHWVPX3Kyw8ORrTeBtClmIlGdkOOE+GYQSFvmEU5iLLpwp/6v42DINwNcwOhOLfQ//FQ==",
+ "optional": true,
+ "requires": {
+ "@base2/pretty-print-object": "1.0.1",
+ "is-plain-object": "5.0.0",
+ "react-is": "18.1.0"
+ },
+ "dependencies": {
+ "is-plain-object": {
+ "version": "5.0.0",
+ "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-5.0.0.tgz",
+ "integrity": "sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q==",
+ "optional": true
+ },
+ "react-is": {
+ "version": "18.1.0",
+ "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.1.0.tgz",
+ "integrity": "sha512-Fl7FuabXsJnV5Q1qIOQwx/sagGF18kogb4gpfcG4gjLBWO0WDiiz1ko/ExayuxE7InyQkBLkxRFG5oxY6Uu3Kg==",
+ "optional": true
+ }
+ }
+ },
"react-error-boundary": {
"version": "3.1.4",
"requires": {
"@babel/runtime": "^7.12.5"
}
},
- "react-error-overlay": {
- "version": "6.0.9",
- "optional": true
- },
"react-focus-lock": {
"version": "2.9.2",
"requires": {
@@ -58652,30 +56664,6 @@
}
}
},
- "react-helmet-async": {
- "version": "1.0.9",
- "optional": true,
- "requires": {
- "@babel/runtime": "^7.12.5",
- "invariant": "^2.2.4",
- "prop-types": "^15.7.2",
- "react-fast-compare": "^3.2.0",
- "shallowequal": "^1.1.0"
- },
- "dependencies": {
- "react-fast-compare": {
- "version": "3.2.0",
- "optional": true
- }
- }
- },
- "react-hotkeys": {
- "version": "2.0.0",
- "optional": true,
- "requires": {
- "prop-types": "^15.6.1"
- }
- },
"react-infinite-scroll-component": {
"version": "6.1.0",
"requires": {
@@ -58691,6 +56679,12 @@
"react-from-dom": "^0.6.2"
}
},
+ "react-inspector": {
+ "version": "6.0.1",
+ "resolved": "https://registry.npmjs.org/react-inspector/-/react-inspector-6.0.1.tgz",
+ "integrity": "sha512-cxKSeFTf7jpSSVddm66sKdolG90qURAX3g1roTeaN6x0YEbtWc8JpmFN9+yIqLNH2uEkYerWLtJZIXRIFuBKrg==",
+ "optional": true
+ },
"react-intl": {
"version": "5.24.8",
"requires": {
@@ -58772,39 +56766,11 @@
"prop-types": "^15.7.2"
}
},
- "react-popper": {
- "version": "1.3.11",
- "optional": true,
- "requires": {
- "@babel/runtime": "^7.1.2",
- "@hypnosphi/create-react-context": "^0.3.1",
- "deep-equal": "^1.1.1",
- "popper.js": "^1.14.4",
- "prop-types": "^15.6.1",
- "typed-styles": "^0.0.7",
- "warning": "^4.0.2"
- },
- "dependencies": {
- "popper.js": {
- "version": "1.16.1",
- "optional": true
- },
- "warning": {
- "version": "4.0.3",
- "optional": true,
- "requires": {
- "loose-envify": "^1.0.0"
- }
- }
- }
- },
- "react-popper-tooltip": {
- "version": "2.11.1",
- "optional": true,
- "requires": {
- "@babel/runtime": "^7.9.2",
- "react-popper": "^1.3.7"
- }
+ "react-refresh": {
+ "version": "0.14.0",
+ "resolved": "https://registry.npmjs.org/react-refresh/-/react-refresh-0.14.0.tgz",
+ "integrity": "sha512-wViHqhAd8OHeLS/IRMJjTSDHF3U9eWi62F/MledQGPdJGDhodXJ9PBLNGr6WWL7qlH12Mt3TyTpbS+hGXMjCzQ==",
+ "optional": true
},
"react-remove-scroll": {
"version": "2.5.5",
@@ -58926,16 +56892,6 @@
}
}
},
- "react-sizeme": {
- "version": "2.6.12",
- "optional": true,
- "requires": {
- "element-resize-detector": "^1.2.1",
- "invariant": "^2.2.4",
- "shallowequal": "^1.1.0",
- "throttle-debounce": "^2.1.0"
- }
- },
"react-sortable-hoc": {
"version": "1.11.0",
"requires": {
@@ -58964,25 +56920,6 @@
"tslib": "^2.0.0"
}
},
- "react-syntax-highlighter": {
- "version": "11.0.2",
- "optional": true,
- "requires": {
- "@babel/runtime": "^7.3.1",
- "highlight.js": "~9.13.0",
- "lowlight": "~1.11.0",
- "prismjs": "^1.8.4",
- "refractor": "^2.4.1"
- }
- },
- "react-textarea-autosize": {
- "version": "7.1.2",
- "optional": true,
- "requires": {
- "@babel/runtime": "^7.1.2",
- "prop-types": "^15.6.0"
- }
- },
"react-transition-group": {
"version": "4.4.1",
"requires": {
@@ -59007,7 +56944,7 @@
"version": "5.2.0",
"resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-5.2.0.tgz",
"integrity": "sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==",
- "dev": true,
+ "devOptional": true,
"requires": {
"@types/normalize-package-data": "^2.4.0",
"normalize-package-data": "^2.5.0",
@@ -59015,23 +56952,11 @@
"type-fest": "^0.6.0"
},
"dependencies": {
- "parse-json": {
- "version": "5.2.0",
- "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz",
- "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==",
- "dev": true,
- "requires": {
- "@babel/code-frame": "^7.0.0",
- "error-ex": "^1.3.1",
- "json-parse-even-better-errors": "^2.3.0",
- "lines-and-columns": "^1.1.6"
- }
- },
"type-fest": {
"version": "0.6.0",
"resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.6.0.tgz",
"integrity": "sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==",
- "dev": true
+ "devOptional": true
}
}
},
@@ -59039,7 +56964,7 @@
"version": "7.0.1",
"resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-7.0.1.tgz",
"integrity": "sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg==",
- "dev": true,
+ "devOptional": true,
"requires": {
"find-up": "^4.1.0",
"read-pkg": "^5.2.0",
@@ -59050,7 +56975,7 @@
"version": "4.1.0",
"resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz",
"integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==",
- "dev": true,
+ "devOptional": true,
"requires": {
"locate-path": "^5.0.0",
"path-exists": "^4.0.0"
@@ -59060,7 +56985,7 @@
"version": "5.0.0",
"resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz",
"integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==",
- "dev": true,
+ "devOptional": true,
"requires": {
"p-locate": "^4.1.0"
}
@@ -59069,7 +56994,7 @@
"version": "4.1.0",
"resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz",
"integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==",
- "dev": true,
+ "devOptional": true,
"requires": {
"p-limit": "^2.2.0"
}
@@ -59078,13 +57003,13 @@
"version": "4.0.0",
"resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz",
"integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==",
- "dev": true
+ "devOptional": true
},
"type-fest": {
"version": "0.8.1",
"resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.8.1.tgz",
"integrity": "sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==",
- "dev": true
+ "devOptional": true
}
}
},
@@ -59101,124 +57026,23 @@
}
},
"readable-stream": {
- "version": "2.3.7",
- "optional": true,
+ "version": "3.6.2",
+ "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz",
+ "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==",
+ "devOptional": true,
"requires": {
- "core-util-is": "~1.0.0",
- "inherits": "~2.0.3",
- "isarray": "~1.0.0",
- "process-nextick-args": "~2.0.0",
- "safe-buffer": "~5.1.1",
- "string_decoder": "~1.1.1",
- "util-deprecate": "~1.0.1"
- },
- "dependencies": {
- "isarray": {
- "version": "1.0.0",
- "optional": true
- },
- "safe-buffer": {
- "version": "5.1.2",
- "optional": true
- }
+ "inherits": "^2.0.3",
+ "string_decoder": "^1.1.1",
+ "util-deprecate": "^1.0.1"
}
},
"readdirp": {
- "version": "2.2.1",
- "optional": true,
+ "version": "3.6.0",
+ "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz",
+ "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==",
+ "devOptional": true,
"requires": {
- "graceful-fs": "^4.1.11",
- "micromatch": "^3.1.10",
- "readable-stream": "^2.0.2"
- },
- "dependencies": {
- "braces": {
- "version": "2.3.2",
- "optional": true,
- "requires": {
- "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.2",
- "snapdragon": "^0.8.1",
- "snapdragon-node": "^2.0.1",
- "split-string": "^3.0.2",
- "to-regex": "^3.0.1"
- },
- "dependencies": {
- "extend-shallow": {
- "version": "2.0.1",
- "optional": true,
- "requires": {
- "is-extendable": "^0.1.0"
- }
- }
- }
- },
- "fill-range": {
- "version": "4.0.0",
- "optional": true,
- "requires": {
- "extend-shallow": "^2.0.1",
- "is-number": "^3.0.0",
- "repeat-string": "^1.6.1",
- "to-regex-range": "^2.1.0"
- },
- "dependencies": {
- "extend-shallow": {
- "version": "2.0.1",
- "optional": true,
- "requires": {
- "is-extendable": "^0.1.0"
- }
- }
- }
- },
- "is-number": {
- "version": "3.0.0",
- "optional": true,
- "requires": {
- "kind-of": "^3.0.2"
- },
- "dependencies": {
- "kind-of": {
- "version": "3.2.2",
- "optional": true,
- "requires": {
- "is-buffer": "^1.1.5"
- }
- }
- }
- },
- "micromatch": {
- "version": "3.1.10",
- "optional": true,
- "requires": {
- "arr-diff": "^4.0.0",
- "array-unique": "^0.3.2",
- "braces": "^2.3.1",
- "define-property": "^2.0.2",
- "extend-shallow": "^3.0.2",
- "extglob": "^2.0.4",
- "fragment-cache": "^0.2.1",
- "kind-of": "^6.0.2",
- "nanomatch": "^1.2.9",
- "object.pick": "^1.3.0",
- "regex-not": "^1.0.0",
- "snapdragon": "^0.8.1",
- "to-regex": "^3.0.2"
- }
- },
- "to-regex-range": {
- "version": "2.1.1",
- "optional": true,
- "requires": {
- "is-number": "^3.0.0",
- "repeat-string": "^1.6.1"
- }
- }
+ "picomatch": "^2.2.1"
}
},
"recast": {
@@ -59244,13 +57068,6 @@
"resolve": "1.20.0"
}
},
- "recursive-readdir": {
- "version": "2.2.2",
- "optional": true,
- "requires": {
- "minimatch": "3.0.4"
- }
- },
"redent": {
"version": "3.0.0",
"devOptional": true,
@@ -59266,33 +57083,19 @@
"symbol-observable": "^1.2.0"
}
},
- "refractor": {
- "version": "2.10.1",
- "optional": true,
- "requires": {
- "hastscript": "^5.0.0",
- "parse-entities": "^1.1.2",
- "prismjs": "~1.17.0"
- },
- "dependencies": {
- "prismjs": {
- "version": "1.17.1",
- "optional": true,
- "requires": {
- "clipboard": "^2.0.0"
- }
- }
- }
- },
"regenerate": {
"version": "1.4.2",
+ "resolved": "https://registry.npmjs.org/regenerate/-/regenerate-1.4.2.tgz",
+ "integrity": "sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==",
"devOptional": true
},
"regenerate-unicode-properties": {
- "version": "8.2.0",
+ "version": "10.1.0",
+ "resolved": "https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-10.1.0.tgz",
+ "integrity": "sha512-d1VudCLoIGitcU/hEg2QqvyGZQmdC0Lf8BqdOMXGFSvJP4bNV1+XqbPQeHHLD51Jh4QJJ225dlIFvY4Ly6MXmQ==",
"devOptional": true,
"requires": {
- "regenerate": "^1.4.0"
+ "regenerate": "^1.4.2"
}
},
"regenerator-runtime": {
@@ -59300,7 +57103,9 @@
"dev": true
},
"regenerator-transform": {
- "version": "0.14.5",
+ "version": "0.15.1",
+ "resolved": "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.15.1.tgz",
+ "integrity": "sha512-knzmNAcuyxV+gQCufkYcvOqX/qIIfHLv0u5x79kRxuGojfYVky1f15TzZEu2Avte8QGepvUNTnLskf8E6X6Vyg==",
"devOptional": true,
"requires": {
"@babel/runtime": "^7.8.4"
@@ -59308,7 +57113,7 @@
},
"regex-not": {
"version": "1.0.2",
- "devOptional": true,
+ "dev": true,
"requires": {
"extend-shallow": "^3.0.2",
"safe-regex": "^1.1.0"
@@ -59334,15 +57139,17 @@
"devOptional": true
},
"regexpu-core": {
- "version": "4.7.1",
+ "version": "5.3.2",
+ "resolved": "https://registry.npmjs.org/regexpu-core/-/regexpu-core-5.3.2.tgz",
+ "integrity": "sha512-RAM5FlZz+Lhmo7db9L298p2vHP5ZywrVXmVXpmAD9GuL5MPH6t9ROw1iA/wfHkQ76Qe7AaPF0nGuim96/IrQMQ==",
"devOptional": true,
"requires": {
- "regenerate": "^1.4.0",
- "regenerate-unicode-properties": "^8.2.0",
- "regjsgen": "^0.5.1",
- "regjsparser": "^0.6.4",
- "unicode-match-property-ecmascript": "^1.0.4",
- "unicode-match-property-value-ecmascript": "^1.2.0"
+ "@babel/regjsgen": "^0.8.0",
+ "regenerate": "^1.4.2",
+ "regenerate-unicode-properties": "^10.1.0",
+ "regjsparser": "^0.9.1",
+ "unicode-match-property-ecmascript": "^2.0.0",
+ "unicode-match-property-value-ecmascript": "^2.1.0"
}
},
"register-service-worker": {
@@ -59361,12 +57168,10 @@
"rc": "^1.2.8"
}
},
- "regjsgen": {
- "version": "0.5.2",
- "devOptional": true
- },
"regjsparser": {
- "version": "0.6.9",
+ "version": "0.9.1",
+ "resolved": "https://registry.npmjs.org/regjsparser/-/regjsparser-0.9.1.tgz",
+ "integrity": "sha512-dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ==",
"devOptional": true,
"requires": {
"jsesc": "~0.5.0"
@@ -59374,13 +57179,15 @@
"dependencies": {
"jsesc": {
"version": "0.5.0",
+ "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-0.5.0.tgz",
+ "integrity": "sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==",
"devOptional": true
}
}
},
"relateurl": {
"version": "0.2.7",
- "devOptional": true
+ "dev": true
},
"relay-compiler": {
"version": "11.0.2",
@@ -59571,15 +57378,6 @@
"yaml": "^1.10.0"
}
},
- "cross-spawn": {
- "version": "7.0.3",
- "dev": true,
- "requires": {
- "path-key": "^3.1.0",
- "shebang-command": "^2.0.0",
- "which": "^2.0.1"
- }
- },
"debug": {
"version": "4.3.1",
"resolved": "https://registry.npmjs.org/debug/-/debug-4.3.1.tgz",
@@ -59654,14 +57452,6 @@
"import-from": "^3.0.0"
}
},
- "import-fresh": {
- "version": "3.3.0",
- "dev": true,
- "requires": {
- "parent-module": "^1.0.0",
- "resolve-from": "^4.0.0"
- }
- },
"import-from": {
"version": "3.0.0",
"dev": true,
@@ -59733,28 +57523,10 @@
"p-limit": "^3.0.2"
}
},
- "parse-json": {
- "version": "5.2.0",
- "dev": true,
- "requires": {
- "@babel/code-frame": "^7.0.0",
- "error-ex": "^1.3.1",
- "json-parse-even-better-errors": "^2.3.0",
- "lines-and-columns": "^1.1.6"
- }
- },
"path-exists": {
"version": "4.0.0",
"dev": true
},
- "path-key": {
- "version": "3.1.1",
- "dev": true
- },
- "resolve-from": {
- "version": "4.0.0",
- "dev": true
- },
"restore-cursor": {
"version": "3.1.0",
"dev": true,
@@ -59763,17 +57535,6 @@
"signal-exit": "^3.0.2"
}
},
- "shebang-command": {
- "version": "2.0.0",
- "dev": true,
- "requires": {
- "shebang-regex": "^3.0.0"
- }
- },
- "shebang-regex": {
- "version": "3.0.0",
- "dev": true
- },
"strip-ansi": {
"version": "6.0.0",
"dev": true,
@@ -59792,19 +57553,54 @@
"version": "8.3.2",
"dev": true
},
- "which": {
- "version": "2.0.2",
- "dev": true,
- "requires": {
- "isexe": "^2.0.0"
- }
- },
"yargs-parser": {
"version": "20.2.7",
"dev": true
}
}
},
+ "remark-external-links": {
+ "version": "8.0.0",
+ "resolved": "https://registry.npmjs.org/remark-external-links/-/remark-external-links-8.0.0.tgz",
+ "integrity": "sha512-5vPSX0kHoSsqtdftSHhIYofVINC8qmp0nctkeU9YoJwV3YfiBRiI6cbFRJ0oI/1F9xS+bopXG0m2KS8VFscuKA==",
+ "optional": true,
+ "requires": {
+ "extend": "^3.0.0",
+ "is-absolute-url": "^3.0.0",
+ "mdast-util-definitions": "^4.0.0",
+ "space-separated-tokens": "^1.0.0",
+ "unist-util-visit": "^2.0.0"
+ },
+ "dependencies": {
+ "unist-util-is": {
+ "version": "4.1.0",
+ "resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-4.1.0.tgz",
+ "integrity": "sha512-ZOQSsnce92GrxSqlnEEseX0gi7GH9zTJZ0p9dtu87WRb/37mMPO2Ilx1s/t9vBHrFhbgweUwb+t7cIn5dxPhZg==",
+ "optional": true
+ },
+ "unist-util-visit": {
+ "version": "2.0.3",
+ "resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-2.0.3.tgz",
+ "integrity": "sha512-iJ4/RczbJMkD0712mGktuGpm/U4By4FfDonL7N/9tATGIF4imikjOuagyMY53tnZq3NP6BcmlrHhEKAfGWjh7Q==",
+ "optional": true,
+ "requires": {
+ "@types/unist": "^2.0.0",
+ "unist-util-is": "^4.0.0",
+ "unist-util-visit-parents": "^3.0.0"
+ }
+ },
+ "unist-util-visit-parents": {
+ "version": "3.1.1",
+ "resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-3.1.1.tgz",
+ "integrity": "sha512-1KROIZWo6bcMrZEwiH2UrXDyalAa0uqzWCxCJj6lPOvTve2WkfgCytoDTPaMnodXh1WrXOq0haVYHj99ynJlsg==",
+ "optional": true,
+ "requires": {
+ "@types/unist": "^2.0.0",
+ "unist-util-is": "^4.0.0"
+ }
+ }
+ }
+ },
"remark-parse": {
"version": "5.0.0",
"requires": {
@@ -59825,107 +57621,61 @@
"xtend": "^4.0.1"
}
},
+ "remark-slug": {
+ "version": "6.1.0",
+ "resolved": "https://registry.npmjs.org/remark-slug/-/remark-slug-6.1.0.tgz",
+ "integrity": "sha512-oGCxDF9deA8phWvxFuyr3oSJsdyUAxMFbA0mZ7Y1Sas+emILtO+e5WutF9564gDsEN4IXaQXm5pFo6MLH+YmwQ==",
+ "optional": true,
+ "requires": {
+ "github-slugger": "^1.0.0",
+ "mdast-util-to-string": "^1.0.0",
+ "unist-util-visit": "^2.0.0"
+ },
+ "dependencies": {
+ "unist-util-is": {
+ "version": "4.1.0",
+ "resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-4.1.0.tgz",
+ "integrity": "sha512-ZOQSsnce92GrxSqlnEEseX0gi7GH9zTJZ0p9dtu87WRb/37mMPO2Ilx1s/t9vBHrFhbgweUwb+t7cIn5dxPhZg==",
+ "optional": true
+ },
+ "unist-util-visit": {
+ "version": "2.0.3",
+ "resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-2.0.3.tgz",
+ "integrity": "sha512-iJ4/RczbJMkD0712mGktuGpm/U4By4FfDonL7N/9tATGIF4imikjOuagyMY53tnZq3NP6BcmlrHhEKAfGWjh7Q==",
+ "optional": true,
+ "requires": {
+ "@types/unist": "^2.0.0",
+ "unist-util-is": "^4.0.0",
+ "unist-util-visit-parents": "^3.0.0"
+ }
+ },
+ "unist-util-visit-parents": {
+ "version": "3.1.1",
+ "resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-3.1.1.tgz",
+ "integrity": "sha512-1KROIZWo6bcMrZEwiH2UrXDyalAa0uqzWCxCJj6lPOvTve2WkfgCytoDTPaMnodXh1WrXOq0haVYHj99ynJlsg==",
+ "optional": true,
+ "requires": {
+ "@types/unist": "^2.0.0",
+ "unist-util-is": "^4.0.0"
+ }
+ }
+ }
+ },
"remedial": {
"version": "1.0.8",
"dev": true
},
"remove-trailing-separator": {
"version": "1.1.0",
- "devOptional": true
+ "dev": true
},
"remove-trailing-spaces": {
"version": "1.0.8",
"dev": true
},
- "renderkid": {
- "version": "2.0.5",
- "optional": true,
- "requires": {
- "css-select": "^2.0.2",
- "dom-converter": "^0.2",
- "htmlparser2": "^3.10.1",
- "lodash": "^4.17.20",
- "strip-ansi": "^3.0.0"
- },
- "dependencies": {
- "ansi-regex": {
- "version": "2.1.1",
- "optional": true
- },
- "dom-serializer": {
- "version": "0.2.2",
- "optional": true,
- "requires": {
- "domelementtype": "^2.0.1",
- "entities": "^2.0.0"
- },
- "dependencies": {
- "domelementtype": {
- "version": "2.2.0",
- "optional": true
- },
- "entities": {
- "version": "2.2.0",
- "optional": true
- }
- }
- },
- "domelementtype": {
- "version": "1.3.1",
- "optional": true
- },
- "domhandler": {
- "version": "2.4.2",
- "optional": true,
- "requires": {
- "domelementtype": "1"
- }
- },
- "domutils": {
- "version": "1.7.0",
- "optional": true,
- "requires": {
- "dom-serializer": "0",
- "domelementtype": "1"
- }
- },
- "entities": {
- "version": "1.1.2",
- "optional": true
- },
- "htmlparser2": {
- "version": "3.10.1",
- "optional": true,
- "requires": {
- "domelementtype": "^1.3.1",
- "domhandler": "^2.3.0",
- "domutils": "^1.5.1",
- "entities": "^1.1.1",
- "inherits": "^2.0.1",
- "readable-stream": "^3.1.1"
- }
- },
- "readable-stream": {
- "version": "3.6.0",
- "optional": true,
- "requires": {
- "inherits": "^2.0.3",
- "string_decoder": "^1.1.1",
- "util-deprecate": "^1.0.1"
- }
- },
- "strip-ansi": {
- "version": "3.0.1",
- "optional": true,
- "requires": {
- "ansi-regex": "^2.0.0"
- }
- }
- }
- },
"repeat-element": {
"version": "1.1.4",
- "devOptional": true
+ "dev": true
},
"repeat-string": {
"version": "1.6.1"
@@ -59967,10 +57717,6 @@
"version": "1.0.0",
"devOptional": true
},
- "resize-observer-polyfill": {
- "version": "1.5.1",
- "optional": true
- },
"resolve": {
"version": "1.20.0",
"requires": {
@@ -59980,31 +57726,27 @@
},
"resolve-alpn": {
"version": "1.0.0",
- "dev": true
+ "devOptional": true
},
"resolve-cwd": {
"version": "3.0.0",
"optional": true,
"requires": {
"resolve-from": "^5.0.0"
- },
- "dependencies": {
- "resolve-from": {
- "version": "5.0.0",
- "optional": true
- }
}
},
"resolve-from": {
- "version": "3.0.0",
- "optional": true
+ "version": "5.0.0",
+ "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz",
+ "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==",
+ "devOptional": true
},
"resolve-pathname": {
"version": "3.0.0"
},
"resolve-url": {
"version": "0.2.1",
- "devOptional": true
+ "dev": true
},
"resolve.exports": {
"version": "1.1.1",
@@ -60018,14 +57760,14 @@
},
"responselike": {
"version": "2.0.0",
- "dev": true,
+ "devOptional": true,
"requires": {
"lowercase-keys": "^2.0.0"
}
},
"restore-cursor": {
"version": "2.0.0",
- "devOptional": true,
+ "dev": true,
"requires": {
"onetime": "^2.0.0",
"signal-exit": "^3.0.2"
@@ -60033,11 +57775,11 @@
"dependencies": {
"mimic-fn": {
"version": "1.2.0",
- "devOptional": true
+ "dev": true
},
"onetime": {
"version": "2.0.1",
- "devOptional": true,
+ "dev": true,
"requires": {
"mimic-fn": "^1.0.0"
}
@@ -60046,7 +57788,7 @@
},
"ret": {
"version": "0.1.15",
- "devOptional": true
+ "dev": true
},
"retes": {
"version": "0.33.0",
@@ -60074,24 +57816,15 @@
"glob": "^7.1.3"
}
},
- "ripemd160": {
- "version": "2.0.2",
- "optional": true,
- "requires": {
- "hash-base": "^3.0.0",
- "inherits": "^2.0.1"
- }
- },
"rollup": {
"version": "2.79.1",
- "dev": true,
+ "devOptional": true,
"requires": {
"fsevents": "~2.3.2"
},
"dependencies": {
"fsevents": {
"version": "2.3.2",
- "dev": true,
"optional": true
}
}
@@ -60164,7 +57897,7 @@
},
"run-async": {
"version": "2.4.1",
- "devOptional": true
+ "dev": true
},
"run-parallel": {
"version": "1.2.0",
@@ -60172,13 +57905,6 @@
"queue-microtask": "^1.2.2"
}
},
- "run-queue": {
- "version": "1.0.3",
- "optional": true,
- "requires": {
- "aproba": "^1.1.1"
- }
- },
"rxjs": {
"version": "6.6.7",
"devOptional": true,
@@ -60200,7 +57926,7 @@
},
"safe-regex": {
"version": "1.1.0",
- "devOptional": true,
+ "dev": true,
"requires": {
"ret": "~0.1.10"
}
@@ -60218,10 +57944,6 @@
"version": "2.1.2",
"devOptional": true
},
- "sax": {
- "version": "1.2.4",
- "optional": true
- },
"saxes": {
"version": "5.0.1",
"optional": true,
@@ -60236,23 +57958,10 @@
"object-assign": "^4.1.1"
}
},
- "schema-utils": {
- "version": "1.0.0",
- "optional": true,
- "requires": {
- "ajv": "^6.1.0",
- "ajv-errors": "^1.0.0",
- "ajv-keywords": "^3.1.0"
- }
- },
"scuid": {
"version": "1.1.0",
"dev": true
},
- "select": {
- "version": "1.1.2",
- "optional": true
- },
"semver": {
"version": "7.3.5",
"requires": {
@@ -60370,13 +58079,15 @@
},
"serialize-javascript": {
"version": "4.0.0",
- "devOptional": true,
+ "dev": true,
"requires": {
"randombytes": "^2.1.0"
}
},
"serve-favicon": {
"version": "2.5.0",
+ "resolved": "https://registry.npmjs.org/serve-favicon/-/serve-favicon-2.5.0.tgz",
+ "integrity": "sha512-FMW2RvqNr03x+C0WxTyu6sOv21oOjkq5j8tjquWccwa6ScNyGFOGJVpuS1NmTVGBAHS07xnSKotgf2ehQmf9iA==",
"optional": true,
"requires": {
"etag": "~1.8.1",
@@ -60388,10 +58099,14 @@
"dependencies": {
"ms": {
"version": "2.1.1",
+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.1.tgz",
+ "integrity": "sha512-tgp+dl5cGk28utYktBsrFqA7HKgrhgPsg6Z/EfhWI4gl1Hwq8B/GmY/0oXZ6nF8hDVesS/FpnYaD/kOWhYQvyg==",
"optional": true
},
"safe-buffer": {
"version": "5.1.1",
+ "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.1.tgz",
+ "integrity": "sha512-kKvNJn6Mm93gAczWVJg7wH+wGYWNrDHdWvpUmHyEsgCtIwwo3bqPtV4tR5tuPaUhTOo/kvhVwd8XwwOllGYkbg==",
"optional": true
}
}
@@ -60418,7 +58133,7 @@
},
"set-value": {
"version": "2.0.1",
- "devOptional": true,
+ "dev": true,
"requires": {
"extend-shallow": "^2.0.1",
"is-extendable": "^0.1.1",
@@ -60428,7 +58143,7 @@
"dependencies": {
"extend-shallow": {
"version": "2.0.1",
- "devOptional": true,
+ "dev": true,
"requires": {
"is-extendable": "^0.1.0"
}
@@ -60437,7 +58152,7 @@
},
"setimmediate": {
"version": "1.0.5",
- "devOptional": true
+ "dev": true
},
"setprototypeof": {
"version": "1.2.0",
@@ -60449,62 +58164,23 @@
"version": "0.9.1",
"optional": true
},
- "sha.js": {
- "version": "2.4.11",
- "optional": true,
- "requires": {
- "inherits": "^2.0.1",
- "safe-buffer": "^5.0.1"
- }
- },
- "shallow-clone": {
- "version": "0.1.2",
- "optional": true,
- "requires": {
- "is-extendable": "^0.1.1",
- "kind-of": "^2.0.1",
- "lazy-cache": "^0.2.3",
- "mixin-object": "^2.0.1"
- },
- "dependencies": {
- "kind-of": {
- "version": "2.0.1",
- "optional": true,
- "requires": {
- "is-buffer": "^1.0.2"
- }
- },
- "lazy-cache": {
- "version": "0.2.7",
- "optional": true
- }
- }
- },
"shallow-equal": {
"version": "1.2.1"
},
- "shallowequal": {
- "version": "1.1.0",
- "optional": true
- },
"shebang-command": {
"version": "1.2.0",
- "devOptional": true,
+ "dev": true,
"requires": {
"shebang-regex": "^1.0.0"
}
},
"shebang-regex": {
"version": "1.0.0",
- "devOptional": true
- },
- "shell-quote": {
- "version": "1.7.2",
- "optional": true
+ "dev": true
},
"shelljs": {
"version": "0.8.4",
- "devOptional": true,
+ "dev": true,
"requires": {
"glob": "^7.0.0",
"interpret": "^1.0.0",
@@ -60520,7 +58196,9 @@
}
},
"signal-exit": {
- "version": "3.0.3"
+ "version": "3.0.7",
+ "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz",
+ "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ=="
},
"signedsource": {
"version": "1.0.0",
@@ -60542,24 +58220,21 @@
}
}
},
- "simplebar": {
- "version": "4.2.3",
+ "simple-update-notifier": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/simple-update-notifier/-/simple-update-notifier-1.1.0.tgz",
+ "integrity": "sha512-VpsrsJSUcJEseSbMHkrsrAVSdvVS5I96Qo1QAQ4FxQ9wXFcB+pjj7FB7/us9+GcgfW4ziHtYMc1J0PLczb55mg==",
"optional": true,
"requires": {
- "can-use-dom": "^0.1.0",
- "core-js": "^3.0.1",
- "lodash.debounce": "^4.0.8",
- "lodash.memoize": "^4.1.2",
- "lodash.throttle": "^4.1.1",
- "resize-observer-polyfill": "^1.5.1"
- }
- },
- "simplebar-react": {
- "version": "1.2.3",
- "optional": true,
- "requires": {
- "prop-types": "^15.6.1",
- "simplebar": "^4.2.3"
+ "semver": "~7.0.0"
+ },
+ "dependencies": {
+ "semver": {
+ "version": "7.0.0",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-7.0.0.tgz",
+ "integrity": "sha512-+GB6zVA9LWh6zovYQLALHwv5rb2PHGlJi3lfiqIHxR0uuwCgefcOJc59v9fv1w8GbStwxuuqqAjI9NMAOOgq1A==",
+ "optional": true
+ }
}
},
"sisteransi": {
@@ -60696,7 +58371,7 @@
},
"snapdragon": {
"version": "0.8.2",
- "devOptional": true,
+ "dev": true,
"requires": {
"base": "^0.11.1",
"debug": "^2.2.0",
@@ -60710,34 +58385,34 @@
"dependencies": {
"debug": {
"version": "2.6.9",
- "devOptional": true,
+ "dev": true,
"requires": {
"ms": "2.0.0"
}
},
"define-property": {
"version": "0.2.5",
- "devOptional": true,
+ "dev": true,
"requires": {
"is-descriptor": "^0.1.0"
}
},
"extend-shallow": {
"version": "2.0.1",
- "devOptional": true,
+ "dev": true,
"requires": {
"is-extendable": "^0.1.0"
}
},
"ms": {
"version": "2.0.0",
- "devOptional": true
+ "dev": true
}
}
},
"snapdragon-node": {
"version": "2.1.1",
- "devOptional": true,
+ "dev": true,
"requires": {
"define-property": "^1.0.0",
"isobject": "^3.0.0",
@@ -60746,28 +58421,28 @@
"dependencies": {
"define-property": {
"version": "1.0.0",
- "devOptional": true,
+ "dev": true,
"requires": {
"is-descriptor": "^1.0.0"
}
},
"is-accessor-descriptor": {
"version": "1.0.0",
- "devOptional": true,
+ "dev": true,
"requires": {
"kind-of": "^6.0.0"
}
},
"is-data-descriptor": {
"version": "1.0.0",
- "devOptional": true,
+ "dev": true,
"requires": {
"kind-of": "^6.0.0"
}
},
"is-descriptor": {
"version": "1.0.2",
- "devOptional": true,
+ "dev": true,
"requires": {
"is-accessor-descriptor": "^1.0.0",
"is-data-descriptor": "^1.0.0",
@@ -60778,51 +58453,97 @@
},
"snapdragon-util": {
"version": "3.0.1",
- "devOptional": true,
+ "dev": true,
"requires": {
"kind-of": "^3.2.0"
},
"dependencies": {
"kind-of": {
"version": "3.2.2",
- "devOptional": true,
+ "dev": true,
"requires": {
"is-buffer": "^1.1.5"
}
}
}
},
- "sockjs-client": {
- "version": "1.4.0",
+ "snyk-config": {
+ "version": "5.1.0",
+ "resolved": "https://registry.npmjs.org/snyk-config/-/snyk-config-5.1.0.tgz",
+ "integrity": "sha512-wqVMxUGqjjHX+MJrz0WHa/pJTDWU17aRv6cnI/6i7cq93J3TkkJZ8sjgvwCgP8cWX5wTHIlRuMV+IAd59K4X/g==",
"optional": true,
"requires": {
- "debug": "^3.2.5",
- "eventsource": "^1.0.7",
- "faye-websocket": "~0.11.1",
- "inherits": "^2.0.3",
- "json3": "^3.3.2",
- "url-parse": "^1.4.3"
- },
- "dependencies": {
- "debug": {
- "version": "3.2.7",
- "optional": true,
- "requires": {
- "ms": "^2.1.1"
- }
- }
+ "async": "^3.2.0",
+ "debug": "^4.1.1",
+ "lodash.merge": "^4.6.2",
+ "minimist": "^1.2.5"
}
},
- "sort-keys": {
- "version": "1.1.2",
+ "snyk-nodejs-lockfile-parser": {
+ "version": "1.49.0",
+ "resolved": "https://registry.npmjs.org/snyk-nodejs-lockfile-parser/-/snyk-nodejs-lockfile-parser-1.49.0.tgz",
+ "integrity": "sha512-73iqwHB8YSWex/PTx+TRUwtNPyKn5wP4n/kxEPbX9EfN3uSIcw6mSKiLm8gSKl5gtf8hcP0R0f1tBFjjdzQvRQ==",
"optional": true,
"requires": {
- "is-plain-obj": "^1.0.0"
+ "@snyk/dep-graph": "^2.3.0",
+ "@snyk/graphlib": "2.1.9-patch.3",
+ "@yarnpkg/core": "^2.4.0",
+ "@yarnpkg/lockfile": "^1.1.0",
+ "event-loop-spinner": "^2.0.0",
+ "js-yaml": "^4.1.0",
+ "lodash.clonedeep": "^4.5.0",
+ "lodash.flatmap": "^4.5.0",
+ "lodash.isempty": "^4.4.0",
+ "lodash.topairs": "^4.3.0",
+ "micromatch": "^4.0.5",
+ "p-map": "^4.0.0",
+ "semver": "^7.3.5",
+ "snyk-config": "^5.0.0",
+ "tslib": "^1.9.3",
+ "uuid": "^8.3.0"
+ },
+ "dependencies": {
+ "argparse": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz",
+ "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==",
+ "optional": true
+ },
+ "js-yaml": {
+ "version": "4.1.0",
+ "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz",
+ "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==",
+ "optional": true,
+ "requires": {
+ "argparse": "^2.0.1"
+ }
+ },
+ "p-map": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/p-map/-/p-map-4.0.0.tgz",
+ "integrity": "sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==",
+ "optional": true,
+ "requires": {
+ "aggregate-error": "^3.0.0"
+ }
+ },
+ "tslib": {
+ "version": "1.14.1",
+ "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz",
+ "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==",
+ "optional": true
+ },
+ "uuid": {
+ "version": "8.3.2",
+ "resolved": "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz",
+ "integrity": "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==",
+ "optional": true
+ }
}
},
"source-list-map": {
"version": "2.0.1",
- "devOptional": true
+ "dev": true
},
"source-map": {
"version": "0.5.7"
@@ -60833,7 +58554,7 @@
},
"source-map-resolve": {
"version": "0.5.3",
- "devOptional": true,
+ "dev": true,
"requires": {
"atob": "^2.1.2",
"decode-uri-component": "^0.2.0",
@@ -60858,7 +58579,7 @@
},
"source-map-url": {
"version": "0.4.1",
- "devOptional": true
+ "dev": true
},
"sourcemap-codec": {
"version": "1.4.8",
@@ -60866,6 +58587,8 @@
},
"space-separated-tokens": {
"version": "1.1.5",
+ "resolved": "https://registry.npmjs.org/space-separated-tokens/-/space-separated-tokens-1.1.5.tgz",
+ "integrity": "sha512-q/JSVd1Lptzhf5bkYm4ob4iWPjx0KiRe3sRFBNrVqbJkFaBm5vbbowy1mymoPNLRa52+oadOhJ+K49wsSeSjTA==",
"optional": true
},
"spawndamnit": {
@@ -60944,7 +58667,7 @@
},
"split-string": {
"version": "3.1.0",
- "devOptional": true,
+ "dev": true,
"requires": {
"extend-shallow": "^3.0.0"
}
@@ -60974,17 +58697,6 @@
"tweetnacl": "~0.14.0"
}
},
- "ssri": {
- "version": "6.0.2",
- "optional": true,
- "requires": {
- "figgy-pudding": "^3.5.1"
- }
- },
- "stable": {
- "version": "0.1.8",
- "optional": true
- },
"stack-utils": {
"version": "2.0.6",
"optional": true,
@@ -61011,15 +58723,6 @@
"wait-on": "5.3.0"
},
"dependencies": {
- "cross-spawn": {
- "version": "7.0.3",
- "dev": true,
- "requires": {
- "path-key": "^3.1.0",
- "shebang-command": "^2.0.0",
- "which": "^2.0.1"
- }
- },
"debug": {
"version": "4.3.1",
"resolved": "https://registry.npmjs.org/debug/-/debug-4.3.1.tgz",
@@ -61048,28 +58751,6 @@
"p-finally": {
"version": "2.0.1",
"dev": true
- },
- "path-key": {
- "version": "3.1.1",
- "dev": true
- },
- "shebang-command": {
- "version": "2.0.0",
- "dev": true,
- "requires": {
- "shebang-regex": "^3.0.0"
- }
- },
- "shebang-regex": {
- "version": "3.0.0",
- "dev": true
- },
- "which": {
- "version": "2.0.2",
- "dev": true,
- "requires": {
- "isexe": "^2.0.0"
- }
}
}
},
@@ -61078,7 +58759,7 @@
},
"static-extend": {
"version": "0.1.2",
- "devOptional": true,
+ "dev": true,
"requires": {
"define-property": "^0.2.5",
"object-copy": "^0.1.0"
@@ -61086,7 +58767,7 @@
"dependencies": {
"define-property": {
"version": "0.2.5",
- "devOptional": true,
+ "dev": true,
"requires": {
"is-descriptor": "^0.1.0"
}
@@ -61100,17 +58781,26 @@
"devOptional": true
},
"store2": {
- "version": "2.12.0",
+ "version": "2.14.2",
+ "resolved": "https://registry.npmjs.org/store2/-/store2-2.14.2.tgz",
+ "integrity": "sha512-siT1RiqlfQnGqgT/YzXVUNsom9S0H1OX+dpdGN1xkyYATo4I6sep5NmsRD/40s3IIOvlCq6akxkqG82urIZW1w==",
"optional": true
},
- "stream-browserify": {
- "version": "2.0.2",
+ "storybook": {
+ "version": "7.0.8",
+ "resolved": "https://registry.npmjs.org/storybook/-/storybook-7.0.8.tgz",
+ "integrity": "sha512-2SY6r7nwb5uh2HXXcTttwaZcKhGhy0kHE8mfaWD4Ros5vnt6Se12sanCCWTTxNeV1spAtg4aa9lelRI0VyGvsg==",
"optional": true,
"requires": {
- "inherits": "~2.0.1",
- "readable-stream": "^2.0.2"
+ "@storybook/cli": "7.0.8"
}
},
+ "stream-buffers": {
+ "version": "3.0.2",
+ "resolved": "https://registry.npmjs.org/stream-buffers/-/stream-buffers-3.0.2.tgz",
+ "integrity": "sha512-DQi1h8VEBA/lURbSwFtEHnSTb9s2/pwLEaFuNhXwy1Dx3Sa0lOuYT2yNUr4/j2fs8oCAMANtrZ5OrPZtyVs3MQ==",
+ "optional": true
+ },
"stream-combiner": {
"version": "0.0.4",
"dev": true,
@@ -61118,14 +58808,6 @@
"duplexer": "~0.1.1"
}
},
- "stream-each": {
- "version": "1.2.3",
- "optional": true,
- "requires": {
- "end-of-stream": "^1.1.0",
- "stream-shift": "^1.0.0"
- }
- },
"stream-events": {
"version": "1.0.5",
"dev": true,
@@ -61133,21 +58815,52 @@
"stubs": "^3.0.0"
}
},
- "stream-http": {
- "version": "2.8.3",
- "optional": true,
- "requires": {
- "builtin-status-codes": "^3.0.0",
- "inherits": "^2.0.1",
- "readable-stream": "^2.3.6",
- "to-arraybuffer": "^1.0.0",
- "xtend": "^4.0.0"
- }
- },
"stream-shift": {
"version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/stream-shift/-/stream-shift-1.0.1.tgz",
+ "integrity": "sha512-AiisoFqQ0vbGcZgQPY1cdP2I76glaVA/RauYR4G4thNFgkTqr90yXTo4LYX60Jl+sIlPNHHdGSwo01AvbKUSVQ==",
"optional": true
},
+ "stream-to-array": {
+ "version": "2.3.0",
+ "resolved": "https://registry.npmjs.org/stream-to-array/-/stream-to-array-2.3.0.tgz",
+ "integrity": "sha512-UsZtOYEn4tWU2RGLOXr/o/xjRBftZRlG3dEWoaHr8j4GuypJ3isitGbVyjQKAuMu+xbiop8q224TjiZWc4XTZA==",
+ "optional": true,
+ "requires": {
+ "any-promise": "^1.1.0"
+ }
+ },
+ "stream-to-promise": {
+ "version": "2.2.0",
+ "resolved": "https://registry.npmjs.org/stream-to-promise/-/stream-to-promise-2.2.0.tgz",
+ "integrity": "sha512-HAGUASw8NT0k8JvIVutB2Y/9iBk7gpgEyAudXwNJmZERdMITGdajOa4VJfD/kNiA3TppQpTP4J+CtcHwdzKBAw==",
+ "optional": true,
+ "requires": {
+ "any-promise": "~1.3.0",
+ "end-of-stream": "~1.1.0",
+ "stream-to-array": "~2.3.0"
+ },
+ "dependencies": {
+ "end-of-stream": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.1.0.tgz",
+ "integrity": "sha512-EoulkdKF/1xa92q25PbjuDcgJ9RDHYU2Rs3SCIvs2/dSQ3BpmxneNHmA/M7fe60M3PrV7nNGTTNbkK62l6vXiQ==",
+ "optional": true,
+ "requires": {
+ "once": "~1.3.0"
+ }
+ },
+ "once": {
+ "version": "1.3.3",
+ "resolved": "https://registry.npmjs.org/once/-/once-1.3.3.tgz",
+ "integrity": "sha512-6vaNInhu+CHxtONf3zw3vq4SP2DOQhjBvIa3rNcG0+P7eKWlYH6Peu7rHizSloRU2EwMz6GraLieis9Ac9+p1w==",
+ "optional": true,
+ "requires": {
+ "wrappy": "1"
+ }
+ }
+ }
+ },
"stream-transform": {
"version": "2.1.3",
"resolved": "https://registry.npmjs.org/stream-transform/-/stream-transform-2.1.3.tgz",
@@ -61221,7 +58934,7 @@
},
"string.prototype.matchall": {
"version": "4.0.8",
- "devOptional": true,
+ "dev": true,
"requires": {
"call-bind": "^1.0.2",
"define-properties": "^1.1.4",
@@ -61233,24 +58946,6 @@
"side-channel": "^1.0.4"
}
},
- "string.prototype.padend": {
- "version": "3.1.2",
- "optional": true,
- "requires": {
- "call-bind": "^1.0.2",
- "define-properties": "^1.1.3",
- "es-abstract": "^1.18.0-next.2"
- }
- },
- "string.prototype.padstart": {
- "version": "3.1.2",
- "optional": true,
- "requires": {
- "call-bind": "^1.0.2",
- "define-properties": "^1.1.3",
- "es-abstract": "^1.18.0-next.2"
- }
- },
"string.prototype.trimend": {
"version": "1.0.6",
"devOptional": true,
@@ -61316,34 +59011,6 @@
"version": "3.0.0",
"dev": true
},
- "style-loader": {
- "version": "1.3.0",
- "optional": true,
- "requires": {
- "loader-utils": "^2.0.0",
- "schema-utils": "^2.7.0"
- },
- "dependencies": {
- "loader-utils": {
- "version": "2.0.0",
- "optional": true,
- "requires": {
- "big.js": "^5.2.2",
- "emojis-list": "^3.0.0",
- "json5": "^2.1.2"
- }
- },
- "schema-utils": {
- "version": "2.7.1",
- "optional": true,
- "requires": {
- "@types/json-schema": "^7.0.5",
- "ajv": "^6.12.4",
- "ajv-keywords": "^3.5.2"
- }
- }
- }
- },
"stylis": {
"version": "4.1.3",
"resolved": "https://registry.npmjs.org/stylis/-/stylis-4.1.3.tgz",
@@ -61393,41 +59060,6 @@
}
}
},
- "svg-parser": {
- "version": "2.0.4",
- "optional": true
- },
- "svgo": {
- "version": "1.3.2",
- "optional": true,
- "requires": {
- "chalk": "^2.4.1",
- "coa": "^2.0.2",
- "css-select": "^2.0.0",
- "css-select-base-adapter": "^0.1.1",
- "css-tree": "1.0.0-alpha.37",
- "csso": "^4.0.2",
- "js-yaml": "^3.13.1",
- "mkdirp": "~0.5.1",
- "object.values": "^1.1.0",
- "sax": "~1.2.4",
- "stable": "^0.1.8",
- "unquote": "~1.1.1",
- "util.promisify": "~1.0.0"
- },
- "dependencies": {
- "util.promisify": {
- "version": "1.0.1",
- "optional": true,
- "requires": {
- "define-properties": "^1.1.3",
- "es-abstract": "^1.17.2",
- "has-symbols": "^1.0.1",
- "object.getownpropertydescriptors": "^2.1.0"
- }
- }
- }
- },
"swap-case": {
"version": "2.0.2",
"dev": true,
@@ -61442,16 +59074,6 @@
"version": "3.2.4",
"optional": true
},
- "symbol.prototype.description": {
- "version": "1.0.4",
- "optional": true,
- "requires": {
- "call-bind": "^1.0.2",
- "es-abstract": "^1.18.0-next.2",
- "has-symbols": "^1.0.1",
- "object.getownpropertydescriptors": "^2.1.2"
- }
- },
"sync-fetch": {
"version": "0.3.0",
"dev": true,
@@ -61470,6 +59092,12 @@
}
}
},
+ "synchronous-promise": {
+ "version": "2.0.17",
+ "resolved": "https://registry.npmjs.org/synchronous-promise/-/synchronous-promise-2.0.17.tgz",
+ "integrity": "sha512-AsS729u2RHUfEra9xJrE39peJcc2stq2+poBXX8bcM08Y6g9j/i/PUzwNQqkaJde7Ntg1TO7bSREbR5sdosQ+g==",
+ "optional": true
+ },
"tabbable": {
"version": "4.0.0"
},
@@ -61520,9 +59148,60 @@
}
}
},
- "tapable": {
- "version": "1.1.3",
- "devOptional": true
+ "tar": {
+ "version": "6.1.14",
+ "resolved": "https://registry.npmjs.org/tar/-/tar-6.1.14.tgz",
+ "integrity": "sha512-piERznXu0U7/pW7cdSn7hjqySIVTYT6F76icmFk7ptU7dDYlXTm5r9A6K04R2vU3olYgoKeo1Cg3eeu5nhftAw==",
+ "optional": true,
+ "requires": {
+ "chownr": "^2.0.0",
+ "fs-minipass": "^2.0.0",
+ "minipass": "^5.0.0",
+ "minizlib": "^2.1.1",
+ "mkdirp": "^1.0.3",
+ "yallist": "^4.0.0"
+ },
+ "dependencies": {
+ "mkdirp": {
+ "version": "1.0.4",
+ "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz",
+ "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==",
+ "optional": true
+ }
+ }
+ },
+ "tar-fs": {
+ "version": "2.1.1",
+ "resolved": "https://registry.npmjs.org/tar-fs/-/tar-fs-2.1.1.tgz",
+ "integrity": "sha512-V0r2Y9scmbDRLCNex/+hYzvp/zyYjvFbHPNgVTKfQvVrb6guiE/fxP+XblDNR011utopbkex2nM4dHNV6GDsng==",
+ "optional": true,
+ "requires": {
+ "chownr": "^1.1.1",
+ "mkdirp-classic": "^0.5.2",
+ "pump": "^3.0.0",
+ "tar-stream": "^2.1.4"
+ },
+ "dependencies": {
+ "chownr": {
+ "version": "1.1.4",
+ "resolved": "https://registry.npmjs.org/chownr/-/chownr-1.1.4.tgz",
+ "integrity": "sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==",
+ "optional": true
+ }
+ }
+ },
+ "tar-stream": {
+ "version": "2.2.0",
+ "resolved": "https://registry.npmjs.org/tar-stream/-/tar-stream-2.2.0.tgz",
+ "integrity": "sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==",
+ "optional": true,
+ "requires": {
+ "bl": "^4.0.3",
+ "end-of-stream": "^1.4.1",
+ "fs-constants": "^1.0.0",
+ "inherits": "^2.0.3",
+ "readable-stream": "^3.1.1"
+ }
},
"tcomb": {
"version": "3.2.29",
@@ -61567,35 +59246,24 @@
}
},
"telejson": {
- "version": "3.3.0",
+ "version": "7.1.0",
+ "resolved": "https://registry.npmjs.org/telejson/-/telejson-7.1.0.tgz",
+ "integrity": "sha512-jFJO4P5gPebZAERPkJsqMAQ0IMA1Hi0AoSfxpnUaV6j6R2SZqlpkbS20U6dEUtA3RUYt2Ak/mTlkQzHH9Rv/hA==",
"optional": true,
"requires": {
- "@types/is-function": "^1.0.0",
- "global": "^4.4.0",
- "is-function": "^1.0.1",
- "is-regex": "^1.0.4",
- "is-symbol": "^1.0.3",
- "isobject": "^4.0.0",
- "lodash": "^4.17.15",
"memoizerific": "^1.11.3"
- },
- "dependencies": {
- "isobject": {
- "version": "4.0.0",
- "optional": true
- }
}
},
"temp": {
"version": "0.8.4",
- "dev": true,
+ "devOptional": true,
"requires": {
"rimraf": "~2.6.2"
},
"dependencies": {
"rimraf": {
"version": "2.6.3",
- "dev": true,
+ "devOptional": true,
"requires": {
"glob": "^7.1.3"
}
@@ -61604,7 +59272,7 @@
},
"temp-dir": {
"version": "2.0.0",
- "dev": true
+ "devOptional": true
},
"tempy": {
"version": "0.6.0",
@@ -61624,7 +59292,7 @@
},
"term-size": {
"version": "2.2.1",
- "devOptional": true
+ "dev": true
},
"terminal-link": {
"version": "2.1.1",
@@ -61634,131 +59302,6 @@
"supports-hyperlinks": "^2.0.0"
}
},
- "terser": {
- "version": "4.8.0",
- "optional": true,
- "requires": {
- "commander": "^2.20.0",
- "source-map": "~0.6.1",
- "source-map-support": "~0.5.12"
- },
- "dependencies": {
- "commander": {
- "version": "2.20.3",
- "optional": true
- },
- "source-map": {
- "version": "0.6.1",
- "optional": true
- }
- }
- },
- "terser-webpack-plugin": {
- "version": "2.3.8",
- "optional": true,
- "requires": {
- "cacache": "^13.0.1",
- "find-cache-dir": "^3.3.1",
- "jest-worker": "^25.4.0",
- "p-limit": "^2.3.0",
- "schema-utils": "^2.6.6",
- "serialize-javascript": "^4.0.0",
- "source-map": "^0.6.1",
- "terser": "^4.6.12",
- "webpack-sources": "^1.4.3"
- },
- "dependencies": {
- "cacache": {
- "version": "13.0.1",
- "optional": true,
- "requires": {
- "chownr": "^1.1.2",
- "figgy-pudding": "^3.5.1",
- "fs-minipass": "^2.0.0",
- "glob": "^7.1.4",
- "graceful-fs": "^4.2.2",
- "infer-owner": "^1.0.4",
- "lru-cache": "^5.1.1",
- "minipass": "^3.0.0",
- "minipass-collect": "^1.0.2",
- "minipass-flush": "^1.0.5",
- "minipass-pipeline": "^1.2.2",
- "mkdirp": "^0.5.1",
- "move-concurrently": "^1.0.1",
- "p-map": "^3.0.0",
- "promise-inflight": "^1.0.1",
- "rimraf": "^2.7.1",
- "ssri": "^7.0.0",
- "unique-filename": "^1.1.1"
- }
- },
- "has-flag": {
- "version": "4.0.0",
- "optional": true
- },
- "jest-worker": {
- "version": "25.5.0",
- "optional": true,
- "requires": {
- "merge-stream": "^2.0.0",
- "supports-color": "^7.0.0"
- }
- },
- "lru-cache": {
- "version": "5.1.1",
- "optional": true,
- "requires": {
- "yallist": "^3.0.2"
- }
- },
- "p-map": {
- "version": "3.0.0",
- "optional": true,
- "requires": {
- "aggregate-error": "^3.0.0"
- }
- },
- "rimraf": {
- "version": "2.7.1",
- "optional": true,
- "requires": {
- "glob": "^7.1.3"
- }
- },
- "schema-utils": {
- "version": "2.7.1",
- "optional": true,
- "requires": {
- "@types/json-schema": "^7.0.5",
- "ajv": "^6.12.4",
- "ajv-keywords": "^3.5.2"
- }
- },
- "source-map": {
- "version": "0.6.1",
- "optional": true
- },
- "ssri": {
- "version": "7.1.0",
- "optional": true,
- "requires": {
- "figgy-pudding": "^3.5.1",
- "minipass": "^3.1.1"
- }
- },
- "supports-color": {
- "version": "7.2.0",
- "optional": true,
- "requires": {
- "has-flag": "^4.0.0"
- }
- },
- "yallist": {
- "version": "3.1.1",
- "optional": true
- }
- }
- },
"test-exclude": {
"version": "6.0.0",
"devOptional": true,
@@ -61798,23 +59341,43 @@
},
"through2": {
"version": "2.0.5",
+ "resolved": "https://registry.npmjs.org/through2/-/through2-2.0.5.tgz",
+ "integrity": "sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==",
"optional": true,
"requires": {
"readable-stream": "~2.3.6",
"xtend": "~4.0.1"
+ },
+ "dependencies": {
+ "isarray": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz",
+ "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==",
+ "optional": true
+ },
+ "readable-stream": {
+ "version": "2.3.8",
+ "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz",
+ "integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==",
+ "optional": true,
+ "requires": {
+ "core-util-is": "~1.0.0",
+ "inherits": "~2.0.3",
+ "isarray": "~1.0.0",
+ "process-nextick-args": "~2.0.0",
+ "safe-buffer": "~5.1.1",
+ "string_decoder": "~1.1.1",
+ "util-deprecate": "~1.0.1"
+ }
+ },
+ "safe-buffer": {
+ "version": "5.1.2",
+ "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz",
+ "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==",
+ "optional": true
+ }
}
},
- "timers-browserify": {
- "version": "2.0.12",
- "optional": true,
- "requires": {
- "setimmediate": "^1.0.4"
- }
- },
- "tiny-emitter": {
- "version": "2.1.0",
- "optional": true
- },
"tiny-invariant": {
"version": "1.1.0"
},
@@ -61830,7 +59393,7 @@
},
"tmp": {
"version": "0.0.33",
- "devOptional": true,
+ "dev": true,
"requires": {
"os-tmpdir": "~1.0.2"
}
@@ -61839,23 +59402,19 @@
"version": "1.0.5",
"devOptional": true
},
- "to-arraybuffer": {
- "version": "1.0.1",
- "optional": true
- },
"to-fast-properties": {
"version": "2.0.0"
},
"to-object-path": {
"version": "0.3.0",
- "devOptional": true,
+ "dev": true,
"requires": {
"kind-of": "^3.0.2"
},
"dependencies": {
"kind-of": {
"version": "3.2.2",
- "devOptional": true,
+ "dev": true,
"requires": {
"is-buffer": "^1.1.5"
}
@@ -61867,7 +59426,7 @@
},
"to-regex": {
"version": "3.0.2",
- "devOptional": true,
+ "dev": true,
"requires": {
"define-property": "^2.0.2",
"extend-shallow": "^3.0.2",
@@ -61905,6 +59464,12 @@
"punycode": "^2.1.0"
}
},
+ "treeify": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/treeify/-/treeify-1.1.0.tgz",
+ "integrity": "sha512-1m4RA7xVAJrSGrrXGs0L3YTwyvBs2S8PbRHaLZAkFw7JR8oIFwYtysxlBZhYIa7xSyiYJKZ3iGrrk55cGA3i9A==",
+ "optional": true
+ },
"trim": {
"version": "0.0.1"
},
@@ -61921,7 +59486,9 @@
"version": "1.0.5"
},
"ts-dedent": {
- "version": "1.2.0",
+ "version": "2.2.0",
+ "resolved": "https://registry.npmjs.org/ts-dedent/-/ts-dedent-2.2.0.tgz",
+ "integrity": "sha512-q5W7tVM71e2xjHZTlgfTDoPF/SmqKG5hddq9SzR49CH2hayqRKJtQ4mtRlSxKaJlR/+9rEM+mnBHf7I2/BQcpQ==",
"optional": true
},
"ts-invariant": {
@@ -61954,13 +59521,9 @@
"version": "2.2.3",
"dev": true
},
- "ts-pnp": {
- "version": "1.2.0",
- "optional": true
- },
"tsconfig-paths": {
"version": "3.9.0",
- "devOptional": true,
+ "optional": true,
"requires": {
"@types/json5": "^0.0.29",
"json5": "^1.0.1",
@@ -61970,55 +59533,13 @@
"dependencies": {
"json5": {
"version": "1.0.1",
- "devOptional": true,
+ "optional": true,
"requires": {
"minimist": "^1.2.0"
}
}
}
},
- "tsconfig-paths-webpack-plugin": {
- "version": "3.5.1",
- "dev": true,
- "requires": {
- "chalk": "^4.1.0",
- "enhanced-resolve": "^5.7.0",
- "tsconfig-paths": "^3.9.0"
- },
- "dependencies": {
- "chalk": {
- "version": "4.1.0",
- "dev": true,
- "requires": {
- "ansi-styles": "^4.1.0",
- "supports-color": "^7.1.0"
- }
- },
- "enhanced-resolve": {
- "version": "5.7.0",
- "dev": true,
- "requires": {
- "graceful-fs": "^4.2.4",
- "tapable": "^2.2.0"
- }
- },
- "has-flag": {
- "version": "4.0.0",
- "dev": true
- },
- "supports-color": {
- "version": "7.2.0",
- "dev": true,
- "requires": {
- "has-flag": "^4.0.0"
- }
- },
- "tapable": {
- "version": "2.2.0",
- "dev": true
- }
- }
- },
"tslib": {
"version": "2.5.0",
"resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.0.tgz",
@@ -62039,10 +59560,6 @@
}
}
},
- "tty-browserify": {
- "version": "0.0.0",
- "optional": true
- },
"tty-table": {
"version": "4.1.6",
"resolved": "https://registry.npmjs.org/tty-table/-/tty-table-4.1.6.tgz",
@@ -62138,6 +59655,12 @@
}
}
},
+ "tunnel": {
+ "version": "0.0.6",
+ "resolved": "https://registry.npmjs.org/tunnel/-/tunnel-0.0.6.tgz",
+ "integrity": "sha512-1h/Lnq9yajKY2PEbBadPXj3VxsDDu844OnaAo52UVmIzIvwwtBPIuNvkjuzBlTWpfJyUbG3ez0KSBibQkj4ojg==",
+ "optional": true
+ },
"tunnel-agent": {
"version": "0.6.0",
"optional": true,
@@ -62172,12 +59695,10 @@
"mime-types": "~2.1.24"
}
},
- "typed-styles": {
- "version": "0.0.7",
- "optional": true
- },
"typedarray": {
"version": "0.0.6",
+ "resolved": "https://registry.npmjs.org/typedarray/-/typedarray-0.0.6.tgz",
+ "integrity": "sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA==",
"optional": true
},
"typedarray-to-buffer": {
@@ -62205,7 +59726,6 @@
"version": "3.17.4",
"resolved": "https://registry.npmjs.org/uglify-js/-/uglify-js-3.17.4.tgz",
"integrity": "sha512-T9q82TJI9e/C1TAxYvfb16xO120tMVFZrGA3f9/P4424DNu6ypK103y0GPFVa17yotwSyZW5iYXgjYHkGrJW/g==",
- "dev": true,
"optional": true
},
"unbox-primitive": {
@@ -62224,6 +59744,8 @@
},
"unfetch": {
"version": "4.2.0",
+ "resolved": "https://registry.npmjs.org/unfetch/-/unfetch-4.2.0.tgz",
+ "integrity": "sha512-F9p7yYCn6cIW9El1zi0HI6vqpeIvBsr3dSuRO6Xuppb1u5rXpCPmMvLSyECLhybr9isec8Ohl0hPekMVrEinDA==",
"optional": true
},
"unherit": {
@@ -62234,23 +59756,31 @@
}
},
"unicode-canonical-property-names-ecmascript": {
- "version": "1.0.4",
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-2.0.0.tgz",
+ "integrity": "sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ==",
"devOptional": true
},
"unicode-match-property-ecmascript": {
- "version": "1.0.4",
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-2.0.0.tgz",
+ "integrity": "sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==",
"devOptional": true,
"requires": {
- "unicode-canonical-property-names-ecmascript": "^1.0.4",
- "unicode-property-aliases-ecmascript": "^1.0.4"
+ "unicode-canonical-property-names-ecmascript": "^2.0.0",
+ "unicode-property-aliases-ecmascript": "^2.0.0"
}
},
"unicode-match-property-value-ecmascript": {
- "version": "1.2.0",
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.1.0.tgz",
+ "integrity": "sha512-qxkjQt6qjg/mYscYMC0XKRn3Rh0wFPlfxB0xkt9CfyTvpX1Ra0+rAmdX2QyAobptSEvuy4RtpPRui6XkV+8wjA==",
"devOptional": true
},
"unicode-property-aliases-ecmascript": {
- "version": "1.1.0",
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-2.1.0.tgz",
+ "integrity": "sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w==",
"devOptional": true
},
"unified": {
@@ -62266,7 +59796,7 @@
},
"union-value": {
"version": "1.0.1",
- "devOptional": true,
+ "dev": true,
"requires": {
"arr-union": "^3.1.0",
"get-value": "^2.0.6",
@@ -62274,24 +59804,6 @@
"set-value": "^2.0.1"
}
},
- "uniq": {
- "version": "1.0.1",
- "optional": true
- },
- "unique-filename": {
- "version": "1.1.1",
- "optional": true,
- "requires": {
- "unique-slug": "^2.0.0"
- }
- },
- "unique-slug": {
- "version": "2.0.2",
- "optional": true,
- "requires": {
- "imurmurhash": "^0.1.4"
- }
- },
"unique-string": {
"version": "2.0.0",
"requires": {
@@ -62355,13 +59867,29 @@
"version": "1.0.0",
"devOptional": true
},
- "unquote": {
- "version": "1.1.1",
- "optional": true
+ "unplugin": {
+ "version": "0.10.2",
+ "resolved": "https://registry.npmjs.org/unplugin/-/unplugin-0.10.2.tgz",
+ "integrity": "sha512-6rk7GUa4ICYjae5PrAllvcDeuT8pA9+j5J5EkxbMFaV+SalHhxZ7X2dohMzu6C3XzsMT+6jwR/+pwPNR3uK9MA==",
+ "optional": true,
+ "requires": {
+ "acorn": "^8.8.0",
+ "chokidar": "^3.5.3",
+ "webpack-sources": "^3.2.3",
+ "webpack-virtual-modules": "^0.4.5"
+ },
+ "dependencies": {
+ "acorn": {
+ "version": "8.8.2",
+ "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.8.2.tgz",
+ "integrity": "sha512-xjIYgE8HBrkpd/sJqOGNspf8uHG+NOHGOw6a/Urj8taM2EXfdNAH2oFcPeIFfsv3+kz/mJrS5VuMqbNLjCa2vw==",
+ "optional": true
+ }
+ }
},
"unset-value": {
"version": "1.0.0",
- "devOptional": true,
+ "dev": true,
"requires": {
"has-value": "^0.3.1",
"isobject": "^3.0.0"
@@ -62369,7 +59897,7 @@
"dependencies": {
"has-value": {
"version": "0.3.1",
- "devOptional": true,
+ "dev": true,
"requires": {
"get-value": "^2.0.3",
"has-values": "^0.1.4",
@@ -62378,7 +59906,7 @@
"dependencies": {
"isobject": {
"version": "2.1.0",
- "devOptional": true,
+ "dev": true,
"requires": {
"isarray": "1.0.0"
}
@@ -62387,11 +59915,11 @@
},
"has-values": {
"version": "0.1.4",
- "devOptional": true
+ "dev": true
},
"isarray": {
"version": "1.0.0",
- "devOptional": true
+ "dev": true
}
}
},
@@ -62401,7 +59929,17 @@
},
"upath": {
"version": "1.2.0",
- "devOptional": true
+ "dev": true
+ },
+ "update-browserslist-db": {
+ "version": "1.0.11",
+ "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.11.tgz",
+ "integrity": "sha512-dCwEFf0/oT85M1fHBg4F0jtLwJrutGoHSQXCh7u4o2t1drG+c0a9Flnqww6XUKSfQMPpJBRjU8d4RXB09qtvaA==",
+ "devOptional": true,
+ "requires": {
+ "escalade": "^3.1.1",
+ "picocolors": "^1.0.0"
+ }
},
"update-notifier": {
"version": "5.1.0",
@@ -62422,22 +59960,6 @@
"xdg-basedir": "^4.0.0"
},
"dependencies": {
- "boxen": {
- "version": "5.0.1",
- "requires": {
- "ansi-align": "^3.0.0",
- "camelcase": "^6.2.0",
- "chalk": "^4.1.0",
- "cli-boxes": "^2.2.1",
- "string-width": "^4.2.0",
- "type-fest": "^0.20.2",
- "widest-line": "^3.1.0",
- "wrap-ansi": "^7.0.0"
- }
- },
- "camelcase": {
- "version": "6.2.0"
- },
"chalk": {
"version": "4.1.0",
"requires": {
@@ -62462,9 +59984,6 @@
"requires": {
"has-flag": "^4.0.0"
}
- },
- "type-fest": {
- "version": "0.20.2"
}
}
},
@@ -62491,49 +60010,11 @@
},
"urix": {
"version": "0.1.0",
- "devOptional": true
- },
- "url": {
- "version": "0.11.0",
- "optional": true,
- "requires": {
- "punycode": "1.3.2",
- "querystring": "0.2.0"
- },
- "dependencies": {
- "punycode": {
- "version": "1.3.2",
- "optional": true
- }
- }
+ "dev": true
},
"url-join": {
"version": "4.0.1"
},
- "url-loader": {
- "version": "2.3.0",
- "optional": true,
- "requires": {
- "loader-utils": "^1.2.3",
- "mime": "^2.4.4",
- "schema-utils": "^2.5.0"
- },
- "dependencies": {
- "mime": {
- "version": "2.5.2",
- "optional": true
- },
- "schema-utils": {
- "version": "2.7.1",
- "optional": true,
- "requires": {
- "@types/json-schema": "^7.0.5",
- "ajv": "^6.12.4",
- "ajv-keywords": "^3.5.2"
- }
- }
- }
- },
"url-parse": {
"version": "1.5.3",
"devOptional": true,
@@ -62559,7 +60040,7 @@
},
"use": {
"version": "3.1.1",
- "devOptional": true
+ "dev": true
},
"use-callback-ref": {
"version": "1.3.0",
@@ -62581,6 +60062,15 @@
"use-force-update": "^1.0.5"
}
},
+ "use-resize-observer": {
+ "version": "9.1.0",
+ "resolved": "https://registry.npmjs.org/use-resize-observer/-/use-resize-observer-9.1.0.tgz",
+ "integrity": "sha512-R25VqO9Wb3asSD4eqtcxk8sJalvIOYBqS8MNZlpDSQ4l4xMQxC/J7Id9HoTqPq8FwULIn0PVW+OAqF2dyYbjow==",
+ "optional": true,
+ "requires": {
+ "@juggle/resize-observer": "^3.3.1"
+ }
+ },
"use-sidecar": {
"version": "1.1.2",
"requires": {
@@ -62593,33 +60083,29 @@
"dev": true
},
"util": {
- "version": "0.11.1",
+ "version": "0.12.5",
+ "resolved": "https://registry.npmjs.org/util/-/util-0.12.5.tgz",
+ "integrity": "sha512-kZf/K6hEIrWHI6XqOFUiiMa+79wE/D8Q+NCNAWclkyg3b4d2k7s0QGepNjiABc+aR3N1PAyHL7p6UcLY6LmrnA==",
"optional": true,
"requires": {
- "inherits": "2.0.3"
- },
- "dependencies": {
- "inherits": {
- "version": "2.0.3",
- "optional": true
- }
+ "inherits": "^2.0.3",
+ "is-arguments": "^1.0.4",
+ "is-generator-function": "^1.0.7",
+ "is-typed-array": "^1.1.3",
+ "which-typed-array": "^1.1.2"
}
},
"util-deprecate": {
"version": "1.0.2",
"devOptional": true
},
- "utila": {
- "version": "0.4.0",
- "optional": true
- },
"utils-merge": {
"version": "1.0.1",
"devOptional": true
},
"uuid": {
"version": "3.4.0",
- "devOptional": true
+ "dev": true
},
"v8-compile-cache": {
"version": "2.3.0",
@@ -62705,6 +60191,20 @@
"rollup": "^2.79.1"
},
"dependencies": {
+ "@esbuild/android-arm": {
+ "version": "0.15.15",
+ "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.15.15.tgz",
+ "integrity": "sha512-JJjZjJi2eBL01QJuWjfCdZxcIgot+VoK6Fq7eKF9w4YHm9hwl7nhBR1o2Wnt/WcANk5l9SkpvrldW1PLuXxcbw==",
+ "dev": true,
+ "optional": true
+ },
+ "@esbuild/linux-loong64": {
+ "version": "0.15.15",
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.15.15.tgz",
+ "integrity": "sha512-lhz6UNPMDXUhtXSulw8XlFAtSYO26WmHQnCi2Lg2p+/TMiJKNLtZCYUxV4wG6rZMzXmr8InGpNwk+DLT2Hm0PA==",
+ "dev": true,
+ "optional": true
+ },
"esbuild": {
"version": "0.15.15",
"dev": true,
@@ -62799,10 +60299,6 @@
"source-map": "~0.6.0"
}
},
- "colorette": {
- "version": "2.0.19",
- "dev": true
- },
"commander": {
"version": "8.3.0",
"dev": true
@@ -62815,13 +60311,6 @@
"version": "8.0.3",
"dev": true
},
- "ejs": {
- "version": "3.1.8",
- "dev": true,
- "requires": {
- "jake": "^10.8.5"
- }
- },
"estree-walker": {
"version": "2.0.2",
"dev": true
@@ -62916,10 +60405,6 @@
"@sentry/cli": "^2.3.1"
}
},
- "vm-browserify": {
- "version": "1.1.2",
- "optional": true
- },
"vscode-languageserver-types": {
"version": "3.17.2"
},
@@ -62978,112 +60463,13 @@
}
},
"watchpack": {
- "version": "1.7.5",
+ "version": "2.4.0",
+ "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-2.4.0.tgz",
+ "integrity": "sha512-Lcvm7MGST/4fup+ifyKi2hjyIAwcdI4HRgtvTpIUxBRhB+RFtUh8XtDOxUfctVCnhVi+QQj49i91OyvzkJl6cg==",
"optional": true,
"requires": {
- "chokidar": "^3.4.1",
- "graceful-fs": "^4.1.2",
- "neo-async": "^2.5.0",
- "watchpack-chokidar2": "^2.0.1"
- }
- },
- "watchpack-chokidar2": {
- "version": "2.0.1",
- "optional": true,
- "requires": {
- "chokidar": "^2.1.8"
- },
- "dependencies": {
- "braces": {
- "version": "2.3.2",
- "optional": true,
- "requires": {
- "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.2",
- "snapdragon": "^0.8.1",
- "snapdragon-node": "^2.0.1",
- "split-string": "^3.0.2",
- "to-regex": "^3.0.1"
- }
- },
- "chokidar": {
- "version": "2.1.8",
- "optional": true,
- "requires": {
- "anymatch": "^2.0.0",
- "async-each": "^1.0.1",
- "braces": "^2.3.2",
- "fsevents": "^1.2.7",
- "glob-parent": "^3.1.0",
- "inherits": "^2.0.3",
- "is-binary-path": "^1.0.0",
- "is-glob": "^4.0.0",
- "normalize-path": "^3.0.0",
- "path-is-absolute": "^1.0.0",
- "readdirp": "^2.2.1",
- "upath": "^1.1.1"
- }
- },
- "extend-shallow": {
- "version": "2.0.1",
- "optional": true,
- "requires": {
- "is-extendable": "^0.1.0"
- }
- },
- "fill-range": {
- "version": "4.0.0",
- "optional": true,
- "requires": {
- "extend-shallow": "^2.0.1",
- "is-number": "^3.0.0",
- "repeat-string": "^1.6.1",
- "to-regex-range": "^2.1.0"
- }
- },
- "glob-parent": {
- "version": "3.1.0",
- "optional": true,
- "requires": {
- "is-glob": "^3.1.0",
- "path-dirname": "^1.0.0"
- },
- "dependencies": {
- "is-glob": {
- "version": "3.1.0",
- "optional": true,
- "requires": {
- "is-extglob": "^2.1.0"
- }
- }
- }
- },
- "is-number": {
- "version": "3.0.0",
- "optional": true,
- "requires": {
- "kind-of": "^3.0.2"
- }
- },
- "kind-of": {
- "version": "3.2.2",
- "optional": true,
- "requires": {
- "is-buffer": "^1.1.5"
- }
- },
- "to-regex-range": {
- "version": "2.1.1",
- "optional": true,
- "requires": {
- "is-number": "^3.0.0",
- "repeat-string": "^1.6.1"
- }
- }
+ "glob-to-regexp": "^0.4.1",
+ "graceful-fs": "^4.1.2"
}
},
"watskeburt": {
@@ -63114,245 +60500,16 @@
"version": "4.0.2",
"dev": true
},
- "webpack": {
- "version": "4.46.0",
- "optional": true,
- "requires": {
- "@webassemblyjs/ast": "1.9.0",
- "@webassemblyjs/helper-module-context": "1.9.0",
- "@webassemblyjs/wasm-edit": "1.9.0",
- "@webassemblyjs/wasm-parser": "1.9.0",
- "acorn": "^6.4.1",
- "ajv": "^6.10.2",
- "ajv-keywords": "^3.4.1",
- "chrome-trace-event": "^1.0.2",
- "enhanced-resolve": "^4.5.0",
- "eslint-scope": "^4.0.3",
- "json-parse-better-errors": "^1.0.2",
- "loader-runner": "^2.4.0",
- "loader-utils": "^1.2.3",
- "memory-fs": "^0.4.1",
- "micromatch": "^3.1.10",
- "mkdirp": "^0.5.3",
- "neo-async": "^2.6.1",
- "node-libs-browser": "^2.2.1",
- "schema-utils": "^1.0.0",
- "tapable": "^1.1.3",
- "terser-webpack-plugin": "^1.4.3",
- "watchpack": "^1.7.4",
- "webpack-sources": "^1.4.1"
- },
- "dependencies": {
- "braces": {
- "version": "2.3.2",
- "optional": true,
- "requires": {
- "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.2",
- "snapdragon": "^0.8.1",
- "snapdragon-node": "^2.0.1",
- "split-string": "^3.0.2",
- "to-regex": "^3.0.1"
- },
- "dependencies": {
- "extend-shallow": {
- "version": "2.0.1",
- "optional": true,
- "requires": {
- "is-extendable": "^0.1.0"
- }
- }
- }
- },
- "fill-range": {
- "version": "4.0.0",
- "optional": true,
- "requires": {
- "extend-shallow": "^2.0.1",
- "is-number": "^3.0.0",
- "repeat-string": "^1.6.1",
- "to-regex-range": "^2.1.0"
- },
- "dependencies": {
- "extend-shallow": {
- "version": "2.0.1",
- "optional": true,
- "requires": {
- "is-extendable": "^0.1.0"
- }
- }
- }
- },
- "find-cache-dir": {
- "version": "2.1.0",
- "optional": true,
- "requires": {
- "commondir": "^1.0.1",
- "make-dir": "^2.0.0",
- "pkg-dir": "^3.0.0"
- }
- },
- "is-number": {
- "version": "3.0.0",
- "optional": true,
- "requires": {
- "kind-of": "^3.0.2"
- },
- "dependencies": {
- "kind-of": {
- "version": "3.2.2",
- "optional": true,
- "requires": {
- "is-buffer": "^1.1.5"
- }
- }
- }
- },
- "is-wsl": {
- "version": "1.1.0",
- "optional": true
- },
- "micromatch": {
- "version": "3.1.10",
- "optional": true,
- "requires": {
- "arr-diff": "^4.0.0",
- "array-unique": "^0.3.2",
- "braces": "^2.3.1",
- "define-property": "^2.0.2",
- "extend-shallow": "^3.0.2",
- "extglob": "^2.0.4",
- "fragment-cache": "^0.2.1",
- "kind-of": "^6.0.2",
- "nanomatch": "^1.2.9",
- "object.pick": "^1.3.0",
- "regex-not": "^1.0.0",
- "snapdragon": "^0.8.1",
- "to-regex": "^3.0.2"
- }
- },
- "source-map": {
- "version": "0.6.1",
- "optional": true
- },
- "terser-webpack-plugin": {
- "version": "1.4.5",
- "optional": true,
- "requires": {
- "cacache": "^12.0.2",
- "find-cache-dir": "^2.1.0",
- "is-wsl": "^1.1.0",
- "schema-utils": "^1.0.0",
- "serialize-javascript": "^4.0.0",
- "source-map": "^0.6.1",
- "terser": "^4.1.2",
- "webpack-sources": "^1.4.0",
- "worker-farm": "^1.7.0"
- }
- },
- "to-regex-range": {
- "version": "2.1.1",
- "optional": true,
- "requires": {
- "is-number": "^3.0.0",
- "repeat-string": "^1.6.1"
- }
- }
- }
- },
- "webpack-dev-middleware": {
- "version": "3.7.3",
- "optional": true,
- "requires": {
- "memory-fs": "^0.4.1",
- "mime": "^2.4.4",
- "mkdirp": "^0.5.1",
- "range-parser": "^1.2.1",
- "webpack-log": "^2.0.0"
- },
- "dependencies": {
- "mime": {
- "version": "2.5.2",
- "optional": true
- }
- }
- },
- "webpack-hot-middleware": {
- "version": "2.25.0",
- "optional": true,
- "requires": {
- "ansi-html": "0.0.7",
- "html-entities": "^1.2.0",
- "querystring": "^0.2.0",
- "strip-ansi": "^3.0.0"
- },
- "dependencies": {
- "ansi-regex": {
- "version": "2.1.1",
- "optional": true
- },
- "strip-ansi": {
- "version": "3.0.1",
- "optional": true,
- "requires": {
- "ansi-regex": "^2.0.0"
- }
- }
- }
- },
- "webpack-log": {
- "version": "2.0.0",
- "optional": true,
- "requires": {
- "ansi-colors": "^3.0.0",
- "uuid": "^3.3.2"
- }
- },
"webpack-sources": {
- "version": "1.4.3",
- "optional": true,
- "requires": {
- "source-list-map": "^2.0.0",
- "source-map": "~0.6.1"
- },
- "dependencies": {
- "source-map": {
- "version": "0.6.1",
- "optional": true
- }
- }
+ "version": "3.2.3",
+ "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-3.2.3.tgz",
+ "integrity": "sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==",
+ "optional": true
},
"webpack-virtual-modules": {
- "version": "0.2.2",
- "optional": true,
- "requires": {
- "debug": "^3.0.0"
- },
- "dependencies": {
- "debug": {
- "version": "3.2.7",
- "optional": true,
- "requires": {
- "ms": "^2.1.1"
- }
- }
- }
- },
- "websocket-driver": {
- "version": "0.7.4",
- "optional": true,
- "requires": {
- "http-parser-js": ">=0.5.1",
- "safe-buffer": ">=5.1.0",
- "websocket-extensions": ">=0.1.1"
- }
- },
- "websocket-extensions": {
- "version": "0.1.4",
+ "version": "0.4.6",
+ "resolved": "https://registry.npmjs.org/webpack-virtual-modules/-/webpack-virtual-modules-0.4.6.tgz",
+ "integrity": "sha512-5tyDlKLqPfMqjT3Q9TAqf2YqjwmnUleZwzJi1A5qXnlBCdj2AtOJ6wAWdglTIDOPgOiOrXeBeFcsQ8+aGQ6QbA==",
"optional": true
},
"whatwg-encoding": {
@@ -63394,7 +60551,7 @@
},
"which": {
"version": "1.3.1",
- "devOptional": true,
+ "dev": true,
"requires": {
"isexe": "^2.0.0"
}
@@ -63455,35 +60612,12 @@
}
},
"wide-align": {
- "version": "1.1.3",
+ "version": "1.1.5",
+ "resolved": "https://registry.npmjs.org/wide-align/-/wide-align-1.1.5.tgz",
+ "integrity": "sha512-eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg==",
"optional": true,
"requires": {
- "string-width": "^1.0.2 || 2"
- },
- "dependencies": {
- "ansi-regex": {
- "version": "3.0.0",
- "optional": true
- },
- "is-fullwidth-code-point": {
- "version": "2.0.0",
- "optional": true
- },
- "string-width": {
- "version": "2.1.1",
- "optional": true,
- "requires": {
- "is-fullwidth-code-point": "^2.0.0",
- "strip-ansi": "^4.0.0"
- }
- },
- "strip-ansi": {
- "version": "4.0.0",
- "optional": true,
- "requires": {
- "ansi-regex": "^3.0.0"
- }
- }
+ "string-width": "^1.0.2 || 2 || 3 || 4"
}
},
"widest-line": {
@@ -63506,7 +60640,7 @@
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-1.0.0.tgz",
"integrity": "sha512-gvVzJFlPycKc5dZN4yPkP8w7Dc37BtP1yczEneOb4uq34pXZcvrtRTmWV8W+Ume+XCxKgbjM+nevkyFPMybd4Q==",
- "dev": true
+ "devOptional": true
},
"workbox-background-sync": {
"version": "6.5.4",
@@ -63726,20 +60860,6 @@
"workbox-core": "6.5.4"
}
},
- "worker-farm": {
- "version": "1.7.0",
- "optional": true,
- "requires": {
- "errno": "~0.1.7"
- }
- },
- "worker-rpc": {
- "version": "0.1.1",
- "devOptional": true,
- "requires": {
- "microevent.ts": "~0.1.1"
- }
- },
"wrap-ansi": {
"version": "7.0.0",
"requires": {
@@ -63761,7 +60881,7 @@
},
"write-file-atomic": {
"version": "2.4.1",
- "dev": true,
+ "devOptional": true,
"requires": {
"graceful-fs": "^4.1.11",
"imurmurhash": "^0.1.4",
@@ -63883,7 +61003,7 @@
},
"yocto-queue": {
"version": "0.1.0",
- "dev": true
+ "devOptional": true
},
"zen-observable": {
"version": "0.8.15"
diff --git a/package.json b/package.json
index a7b1b1d19..6ac436941 100644
--- a/package.json
+++ b/package.json
@@ -150,6 +150,7 @@
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^27.5.1",
"babel-loader": "^8.0.6",
+ "babel-plugin-macros": "^3.1.0",
"ci-info": "^3.7.0",
"codecov": "^3.7.1",
"core-js": "^3.7.0",
@@ -159,7 +160,6 @@
"dotenv": "^10.0.0",
"env-var": "^7.3.0",
"esbuild-loader": "^2.18.0",
- "fork-ts-checker-webpack-plugin": "^3.1.1",
"graphql-request": "^3.7.0",
"identity-obj-proxy": "^3.0.0",
"is-ci": "^3.0.1",
@@ -171,7 +171,6 @@
"rimraf": "^3.0.0",
"rollup-plugin-polyfill-node": "^0.11.0",
"start-server-and-test": "^1.11.0",
- "tsconfig-paths-webpack-plugin": "^3.2.0",
"typescript": "^5.0.2",
"vite": "^3.2.4",
"vite-plugin-html": "^3.2.0",
@@ -184,7 +183,11 @@
"workbox-strategies": "^6.1.2"
},
"optionalDependencies": {
- "@storybook/react": "^5.1.9",
+ "@storybook/addon-essentials": "^7.0.8",
+ "@storybook/addon-interactions": "^7.0.8",
+ "@storybook/addon-links": "^7.0.8",
+ "@storybook/react": "^7.0.8",
+ "@storybook/react-vite": "^7.0.8",
"@swc/core-darwin-arm64": "1.3.40",
"@swc/core-darwin-x64": "1.3.40",
"@swc/core-linux-arm-gnueabihf": "1.3.40",
@@ -201,7 +204,7 @@
"@testing-library/user-event": "^14.4.3",
"@types/jest": "^26.0.14",
"@types/setup-polly-jest": "^0.5.0",
- "@types/storybook__react": "^4.0.2",
+ "chromatic": "^6.17.4",
"cypress": "^12.4.0",
"cypress-file-upload": "^5.0.8",
"cypress-mailhog": "^1.3.0",
@@ -234,6 +237,7 @@
"mochawesome-report-generator": "^6.0.1",
"prettier": "^2.8.4",
"setup-polly-jest": "^0.9.1",
+ "storybook": "^7.0.8",
"ts-jest": "^27.1.5"
},
"//@swc/*": "swc packages are required until https://github.com/npm/cli/issues/4828 is fixed",
@@ -294,7 +298,7 @@
"dev": "vite --host",
"build": "cross-env NODE_OPTIONS=--max_old_space_size=16384 vite build",
"preview": "vite preview",
- "build-storybook": "cross-env NODE_OPTIONS=--openssl-legacy-provider build-storybook -c src/storybook/ -o build/storybook",
+ "build-storybook": "cross-env NODE_OPTIONS=--max_old_space_size=16384 storybook build -o build/storybook",
"build-types": "node scripts/build-types.js",
"prebuild": "npm run build-types",
"check-strict-null-errors": "tsc --noEmit --strictNullChecks | node scripts/count-strict-null-check-errors.js",
@@ -305,7 +309,7 @@
"heroku-postbuild": "npm run build",
"serve:lhci": "cross-env NODE_ENV=production npm run server",
"prestart": "npm run build-types",
- "storybook": "cross-env NODE_OPTIONS=--openssl-legacy-provider start-storybook -p 3000 -c src/storybook/",
+ "storybook": "storybook dev --port 3000",
"cy:run": "cypress run",
"cy:run:dashboard": "cypress run --record",
"cy:open": "cypress open",
@@ -324,7 +328,8 @@
"predev": "npm run build-types",
"release": "release-it",
"prepare": "is-ci || husky install",
- "dep-status": "depcruise --config .dependency-cruiser.js src"
+ "dep-status": "depcruise --config .dependency-cruiser.js src",
+ "chromatic": "chromatic --exit-zero-on-changes"
},
"description": ""
}
diff --git a/src/apps/components/AppDeactivateDialog/AppDeactivateDialog.stories.tsx b/src/apps/components/AppDeactivateDialog/AppDeactivateDialog.stories.tsx
deleted file mode 100644
index 5c5f04bdc..000000000
--- a/src/apps/components/AppDeactivateDialog/AppDeactivateDialog.stories.tsx
+++ /dev/null
@@ -1,20 +0,0 @@
-import Decorator from "@dashboard/storybook/Decorator";
-import { storiesOf } from "@storybook/react";
-import React from "react";
-
-import AppDeactivateDialog, {
- AppDeactivateDialogProps,
-} from "./AppDeactivateDialog";
-
-const props: AppDeactivateDialogProps = {
- confirmButtonState: "default",
- name: "App",
- onClose: () => undefined,
- onConfirm: () => undefined,
- open: true,
-};
-
-storiesOf("Views / Apps / Deactivate app", module)
- .addDecorator(Decorator)
- .add("default", () => )
- .add("unnamed app", () => );
diff --git a/src/apps/components/AppDeleteDialog/AppDeleteDialog.stories.tsx b/src/apps/components/AppDeleteDialog/AppDeleteDialog.stories.tsx
deleted file mode 100644
index 31030a841..000000000
--- a/src/apps/components/AppDeleteDialog/AppDeleteDialog.stories.tsx
+++ /dev/null
@@ -1,19 +0,0 @@
-import Decorator from "@dashboard/storybook/Decorator";
-import { storiesOf } from "@storybook/react";
-import React from "react";
-
-import AppDeleteDialog, { AppDeleteDialogProps } from "./AppDeleteDialog";
-
-const props: AppDeleteDialogProps = {
- confirmButtonState: "default",
- name: "App",
- onClose: () => undefined,
- onConfirm: () => undefined,
- open: true,
- type: "EXTERNAL",
-};
-
-storiesOf("Views / Apps / Delete app", module)
- .addDecorator(Decorator)
- .add("default", () => )
- .add("unnamed app", () => );
diff --git a/src/apps/components/AppDetailsPage/AppDetailsPage.stories.tsx b/src/apps/components/AppDetailsPage/AppDetailsPage.stories.tsx
index 204cf62fc..992b50368 100644
--- a/src/apps/components/AppDetailsPage/AppDetailsPage.stories.tsx
+++ b/src/apps/components/AppDetailsPage/AppDetailsPage.stories.tsx
@@ -1,5 +1,3 @@
-import Decorator from "@dashboard/storybook/Decorator";
-import { storiesOf } from "@storybook/react";
import React from "react";
import { appDetails } from "../../fixtures";
@@ -14,7 +12,10 @@ const props: AppDetailsPageProps = {
onAppDeleteOpen: () => undefined,
};
-storiesOf("Apps / App details", module)
- .addDecorator(Decorator)
- .add("default", () => )
- .add("loading", () => );
+export default {
+ title: "Apps / App details",
+};
+
+export const Default = () => ;
+
+export const Loading = () => ;
diff --git a/src/apps/components/AppInProgressDeleteDialog/AppInProgressDeleteDialog.stories.tsx b/src/apps/components/AppInProgressDeleteDialog/AppInProgressDeleteDialog.stories.tsx
deleted file mode 100644
index 2d0fe3733..000000000
--- a/src/apps/components/AppInProgressDeleteDialog/AppInProgressDeleteDialog.stories.tsx
+++ /dev/null
@@ -1,20 +0,0 @@
-import Decorator from "@dashboard/storybook/Decorator";
-import { storiesOf } from "@storybook/react";
-import React from "react";
-
-import AppInProgressDeleteDialog, {
- AppInProgressDeleteDialogProps,
-} from "./AppInProgressDeleteDialog";
-
-const props: AppInProgressDeleteDialogProps = {
- confirmButtonState: "default",
- name: "App",
- onClose: () => undefined,
- onConfirm: () => undefined,
- open: true,
-};
-
-storiesOf("Views / Apps / Delete app failed installation", module)
- .addDecorator(Decorator)
- .add("default", () => )
- .add("unnamed app", () => );
diff --git a/src/apps/components/AppInstallPage/AppInstallPage.stories.tsx b/src/apps/components/AppInstallPage/AppInstallPage.stories.tsx
index df3d8813a..5119aaf71 100644
--- a/src/apps/components/AppInstallPage/AppInstallPage.stories.tsx
+++ b/src/apps/components/AppInstallPage/AppInstallPage.stories.tsx
@@ -1,5 +1,3 @@
-import Decorator from "@dashboard/storybook/Decorator";
-import { storiesOf } from "@storybook/react";
import React from "react";
import { installApp } from "../../fixtures";
@@ -12,7 +10,10 @@ const props: AppInstallPageProps = {
onSubmit: () => Promise.resolve([]),
};
-storiesOf("Apps / Install App", module)
- .addDecorator(Decorator)
- .add("default", () => )
- .add("loading", () => );
+export default {
+ title: "Apps / Install App",
+};
+
+export const Default = () => ;
+
+export const Loading = () => ;
diff --git a/src/apps/components/AppListPage/AppListPage.stories.tsx b/src/apps/components/AppListPage/AppListPage.stories.tsx
index 469e053f1..85f786d26 100644
--- a/src/apps/components/AppListPage/AppListPage.stories.tsx
+++ b/src/apps/components/AppListPage/AppListPage.stories.tsx
@@ -1,6 +1,4 @@
import { installedAppsList } from "@dashboard/apps/fixtures";
-import Decorator from "@dashboard/storybook/Decorator";
-import { storiesOf } from "@storybook/react";
import React from "react";
import AppListPage, { AppListPageProps } from "./AppListPage";
@@ -10,14 +8,17 @@ const props: AppListPageProps = {
installedApps: installedAppsList,
};
-storiesOf("Apps / New Apps / App List", module)
- .addDecorator(Decorator)
- .add("default", () => )
- .add("empty", () => (
-
- ));
+export default {
+ title: "Apps / New Apps / App List",
+};
+
+export const Default = () => ;
+
+export const Empty = () => (
+
+);
diff --git a/src/apps/components/AppPage/AppPage.stories.tsx b/src/apps/components/AppPage/AppPage.stories.tsx
index 422933af7..50456d347 100644
--- a/src/apps/components/AppPage/AppPage.stories.tsx
+++ b/src/apps/components/AppPage/AppPage.stories.tsx
@@ -1,5 +1,3 @@
-import Decorator from "@dashboard/storybook/Decorator";
-import { storiesOf } from "@storybook/react";
import React from "react";
import { appDetails } from "../../fixtures";
@@ -11,9 +9,12 @@ const props: AppPageProps = {
onError: () => undefined,
};
-storiesOf("Apps / App", module)
- .addDecorator(Decorator)
- .add("default", () => )
- .add("settings", () => (
-
- ));
+export default {
+ title: "Apps / App",
+};
+
+export const Default = () => ;
+
+export const Settings = () => (
+
+);
diff --git a/src/attributes/index.tsx b/src/attributes/index.tsx
index 6ad20f224..34f5f3a84 100644
--- a/src/attributes/index.tsx
+++ b/src/attributes/index.tsx
@@ -20,7 +20,7 @@ import AttributeDetailsComponent from "./views/AttributeDetails";
import AttributeListComponent from "./views/AttributeList";
const AttributeList: React.FC> = ({ location }) => {
- const qs = parseQs(location.search.substr(1));
+ const qs = parseQs(location.search.substr(1)) as any;
const params: AttributeListUrlQueryParams = asSortParams(
qs,
AttributeListUrlSortField,
diff --git a/src/auth/components/LoginPage/LoginPage.stories.tsx b/src/auth/components/LoginPage/LoginPage.stories.tsx
index 7e63a087a..69a8e2212 100644
--- a/src/auth/components/LoginPage/LoginPage.stories.tsx
+++ b/src/auth/components/LoginPage/LoginPage.stories.tsx
@@ -1,8 +1,6 @@
-import CardDecorator from "@dashboard/storybook/CardDecorator";
-import Decorator from "@dashboard/storybook/Decorator";
-import { storiesOf } from "@storybook/react";
import React from "react";
+import { CardDecorator } from "../../../../.storybook/decorators";
import LoginPage, { LoginCardProps } from "./LoginPage";
const props: Omit = {
@@ -20,13 +18,21 @@ const props: Omit = {
onSubmit: () => undefined,
};
-storiesOf("Authentication / Log in", module)
- .addDecorator(CardDecorator)
- .addDecorator(Decorator)
- .add("default", () => )
- .add("error login", () => )
- .add("error external login", () => (
-
- ))
- .add("disabled", () => )
- .add("loading", () => );
+export default {
+ title: "Authentication / Log in",
+ decorators: [CardDecorator],
+};
+
+export const Default = () => ;
+
+export const ErrorLogin = () => (
+
+);
+
+export const ErrorExternalLogin = () => (
+
+);
+
+export const Disabled = () => ;
+
+export const Loading = () => ;
diff --git a/src/auth/components/NewPasswordPage/NewPasswordPage.stories.tsx b/src/auth/components/NewPasswordPage/NewPasswordPage.stories.tsx
index 307b105fa..f24cf9054 100644
--- a/src/auth/components/NewPasswordPage/NewPasswordPage.stories.tsx
+++ b/src/auth/components/NewPasswordPage/NewPasswordPage.stories.tsx
@@ -1,30 +1,32 @@
import { AccountErrorCode } from "@dashboard/graphql";
-import CardDecorator from "@dashboard/storybook//CardDecorator";
-import Decorator from "@dashboard/storybook//Decorator";
-import { storiesOf } from "@storybook/react";
import React from "react";
+import { CardDecorator } from "../../../../.storybook/decorators";
import NewPasswordPage from "./NewPasswordPage";
-storiesOf("Authentication / Set up a new password", module)
- .addDecorator(CardDecorator)
- .addDecorator(Decorator)
- .add("default", () => (
- undefined} />
- ))
- .add("loading", () => (
- undefined} />
- ))
- .add("too short error", () => (
- ({
- __typename: "AccountError",
- code: AccountErrorCode.PASSWORD_TOO_SHORT,
- field,
- addressType: null,
- message: null,
- }))}
- loading={false}
- onSubmit={() => undefined}
- />
- ));
+export default {
+ title: "Authentication / Set up a new password",
+ decorators: [CardDecorator],
+};
+
+export const Default = () => (
+ undefined} />
+);
+
+export const Loading = () => (
+ undefined} />
+);
+
+export const TooShortError = () => (
+ ({
+ __typename: "AccountError",
+ code: AccountErrorCode.PASSWORD_TOO_SHORT,
+ field,
+ addressType: null,
+ message: null,
+ }))}
+ loading={false}
+ onSubmit={() => undefined}
+ />
+);
diff --git a/src/auth/components/ResetPasswordPage/ResetPasswordPage.stories.tsx b/src/auth/components/ResetPasswordPage/ResetPasswordPage.stories.tsx
index 4a1d1d784..d83f48f61 100644
--- a/src/auth/components/ResetPasswordPage/ResetPasswordPage.stories.tsx
+++ b/src/auth/components/ResetPasswordPage/ResetPasswordPage.stories.tsx
@@ -1,9 +1,7 @@
-import CardDecorator from "@dashboard/storybook/CardDecorator";
-import Decorator from "@dashboard/storybook/Decorator";
-import { formError } from "@dashboard/storybook/formError";
-import { storiesOf } from "@storybook/react";
import React from "react";
+import { CardDecorator } from "../../../../.storybook/decorators";
+import { formError } from "../../../../.storybook/helpers";
import ResetPasswordPage, { ResetPasswordPageProps } from "./ResetPasswordPage";
const props: ResetPasswordPageProps = {
@@ -11,11 +9,16 @@ const props: ResetPasswordPageProps = {
error: undefined,
onSubmit: () => undefined,
};
-storiesOf("Authentication / Reset password", module)
- .addDecorator(CardDecorator)
- .addDecorator(Decorator)
- .add("default", () => )
- .add("loading", () => )
- .add("error", () => (
-
- ));
+
+export default {
+ title: "Authentication / Reset password",
+ decorators: [CardDecorator],
+};
+
+export const Default = () => ;
+
+export const Loading = () => ;
+
+export const Error = () => (
+
+);
diff --git a/src/auth/components/ResetPasswordSuccessPage/ResetPasswordSuccessPage.stories.tsx b/src/auth/components/ResetPasswordSuccessPage/ResetPasswordSuccessPage.stories.tsx
index 4f85cf623..efa464503 100644
--- a/src/auth/components/ResetPasswordSuccessPage/ResetPasswordSuccessPage.stories.tsx
+++ b/src/auth/components/ResetPasswordSuccessPage/ResetPasswordSuccessPage.stories.tsx
@@ -1,11 +1,13 @@
-import CardDecorator from "@dashboard/storybook/CardDecorator";
-import Decorator from "@dashboard/storybook/Decorator";
-import { storiesOf } from "@storybook/react";
import React from "react";
+import { CardDecorator } from "../../../../.storybook/decorators";
import ResetPasswordSuccessPage from "./ResetPasswordSuccessPage";
-storiesOf("Authentication / Reset password success", module)
- .addDecorator(CardDecorator)
- .addDecorator(Decorator)
- .add("default", () => undefined} />);
+export default {
+ title: "Authentication / Reset password success",
+ decorators: [CardDecorator],
+};
+
+export const Default = () => (
+ undefined} />
+);
diff --git a/src/auth/index.tsx b/src/auth/index.tsx
index 39571fbe7..1bfaaafe3 100644
--- a/src/auth/index.tsx
+++ b/src/auth/index.tsx
@@ -16,7 +16,7 @@ import ResetPassword from "./views/ResetPassword";
import ResetPasswordSuccess from "./views/ResetPasswordSuccess";
const LoginView: React.FC> = () => {
- const qs = parseQs(location.search.substr(1));
+ const qs = parseQs(location.search.substr(1)) as any;
const params: LoginUrlQueryParams = qs;
return ;
diff --git a/src/auth/views/NewPassword.tsx b/src/auth/views/NewPassword.tsx
index 4f3fddabc..ef68283df 100644
--- a/src/auth/views/NewPassword.tsx
+++ b/src/auth/views/NewPassword.tsx
@@ -17,7 +17,9 @@ const NewPassword: React.FC = ({ location }) => {
const [loading, setLoading] = useState(false);
const [errors, setErrors] = useState([]);
- const params: NewPasswordUrlQueryParams = parseQs(location.search.substr(1));
+ const params: NewPasswordUrlQueryParams = parseQs(
+ location.search.substr(1),
+ ) as any;
const handleSubmit = async (data: NewPasswordPageFormData) => {
setLoading(true);
diff --git a/src/categories/components/CategoryCreatePage/CategoryCratePage.stories.tsx b/src/categories/components/CategoryCreatePage/CategoryCratePage.stories.tsx
index 53e1e19a0..8efd15e4e 100644
--- a/src/categories/components/CategoryCreatePage/CategoryCratePage.stories.tsx
+++ b/src/categories/components/CategoryCreatePage/CategoryCratePage.stories.tsx
@@ -1,6 +1,4 @@
import { ProductErrorCode } from "@dashboard/graphql";
-import Decorator from "@dashboard/storybook/Decorator";
-import { storiesOf } from "@storybook/react";
import React from "react";
import CategoryCreatePage, {
@@ -15,29 +13,33 @@ const createProps: CategoryCreatePageProps = {
saveButtonBarState: "default",
};
-storiesOf("Categories / Create category", module)
- .addDecorator(Decorator)
- .add("default", () => )
- .add("When loading", () => (
-
- ))
- .add("form errors", () => (
- ({
- __typename: "ProductError",
- ...err,
- }))}
- />
- ));
+export default {
+ title: "Categories / Create category",
+};
+
+export const Default = () => ;
+
+export const WhenLoading = () => (
+
+);
+
+export const FormErrors = () => (
+ ({
+ __typename: "ProductError",
+ ...err,
+ }))}
+ />
+);
diff --git a/src/categories/components/CategoryListPage/CategoryListPage.stories.tsx b/src/categories/components/CategoryListPage/CategoryListPage.stories.tsx
index b767a6554..2779d4b8e 100644
--- a/src/categories/components/CategoryListPage/CategoryListPage.stories.tsx
+++ b/src/categories/components/CategoryListPage/CategoryListPage.stories.tsx
@@ -7,11 +7,9 @@ import {
sortPageProps,
tabPageProps,
} from "@dashboard/fixtures";
-import Decorator from "@dashboard/storybook/Decorator";
-import { PaginatorContextDecorator } from "@dashboard/storybook/PaginatorContextDecorator";
-import { storiesOf } from "@storybook/react";
import React from "react";
+import { PaginatorContextDecorator } from "../../../../.storybook/decorators";
import CategoryListPage, { CategoryTableProps } from "./CategoryListPage";
const categoryTableProps: CategoryTableProps = {
@@ -28,13 +26,17 @@ const categoryTableProps: CategoryTableProps = {
},
};
-storiesOf("Categories / Category list", module)
- .addDecorator(Decorator)
- .addDecorator(PaginatorContextDecorator)
- .add("default", () => )
- .add("loading", () => (
-
- ))
- .add("empty", () => (
-
- ));
+export default {
+ title: "Categories / Category list",
+ decorators: [PaginatorContextDecorator],
+};
+
+export const Default = () => ;
+
+export const Loading = () => (
+
+);
+
+export const Empty = () => (
+
+);
diff --git a/src/categories/components/CategoryUpdatePage/CategoryUpdatePage.stories.tsx b/src/categories/components/CategoryUpdatePage/CategoryUpdatePage.stories.tsx
index 89dee9bdf..96bb077cc 100644
--- a/src/categories/components/CategoryUpdatePage/CategoryUpdatePage.stories.tsx
+++ b/src/categories/components/CategoryUpdatePage/CategoryUpdatePage.stories.tsx
@@ -2,12 +2,10 @@ import placeholderImage from "@assets/images/placeholder255x255.png";
import { category as categoryFixture } from "@dashboard/categories/fixtures";
import { listActionsProps } from "@dashboard/fixtures";
import { ProductErrorCode } from "@dashboard/graphql";
-import Decorator from "@dashboard/storybook/Decorator";
-import { PaginatorContextDecorator } from "@dashboard/storybook/PaginatorContextDecorator";
import { mapEdgesToItems } from "@dashboard/utils/maps";
-import { storiesOf } from "@storybook/react";
import React from "react";
+import { PaginatorContextDecorator } from "../../../../.storybook/decorators";
import CategoryUpdatePage, {
CategoryPageTab,
CategoryUpdatePageProps,
@@ -35,61 +33,66 @@ const updateProps: Omit = {
...listActionsProps,
};
-storiesOf("Categories / Update category", module)
- .addDecorator(Decorator)
- .addDecorator(PaginatorContextDecorator)
- .add("default", () => )
- .add("products", () => (
-
- ))
- .add("no background", () => (
-
- ))
- .add("no subcategories", () => (
-
- ))
- .add("no products", () => (
-
- ))
- .add("loading", () => (
-
- ))
- .add("form errors", () => (
- ({
- __typename: "ProductError",
- ...err,
- }))}
- />
- ));
+export default {
+ title: "Categories / Update category",
+ decorators: [PaginatorContextDecorator],
+};
+
+export const Default = () => ;
+
+export const Products = () => (
+
+);
+
+export const NoBackground = () => (
+
+);
+
+export const NoSubcategories = () => (
+
+);
+
+export const NoProducts = () => (
+
+);
+
+export const Loading = () => (
+
+);
+
+export const FormErrors = () => (
+ ({
+ __typename: "ProductError",
+ ...err,
+ }))}
+ />
+);
diff --git a/src/categories/index.tsx b/src/categories/index.tsx
index 67273f2e7..df2dfa628 100644
--- a/src/categories/index.tsx
+++ b/src/categories/index.tsx
@@ -21,9 +21,9 @@ import CategoryListComponent from "./views/CategoryList";
interface CategoryDetailsRouteParams {
id: string;
}
-const CategoryDetails: React.FC> = ({ location, match }) => {
+const CategoryDetails: React.FC<
+ RouteComponentProps
+> = ({ location, match }) => {
const qs = parseQs(location.search.substr(1));
const params: CategoryUrlQueryParams = qs;
@@ -38,16 +38,16 @@ const CategoryDetails: React.FC> = ({ match }) => (
+const CategoryCreate: React.FC<
+ RouteComponentProps
+> = ({ match }) => (
);
const CategoryList: React.FC> = ({ location }) => {
- const qs = parseQs(location.search.substr(1));
+ const qs = parseQs(location.search.substr(1)) as any;
const params: CategoryListUrlQueryParams = {
...asSortParams(qs, CategoryListUrlSortField),
};
diff --git a/src/channels/index.tsx b/src/channels/index.tsx
index af98d4083..b08ead5c6 100644
--- a/src/channels/index.tsx
+++ b/src/channels/index.tsx
@@ -29,7 +29,7 @@ const ChannelDetails: React.FC> = ({ match }) => {
};
const ChannelsList: React.FC = ({ location }) => {
- const qs = parseQs(location.search.substr(1));
+ const qs = parseQs(location.search.substr(1)) as any;
const params: ChannelsListUrlQueryParams = asSortParams(
qs,
ChannelsListUrlSortField,
diff --git a/src/channels/pages/ChannelDetailsPage/ChannelDetailsPage.stories.tsx b/src/channels/pages/ChannelDetailsPage/ChannelDetailsPage.stories.tsx
index 4494faa4b..96c2f2258 100644
--- a/src/channels/pages/ChannelDetailsPage/ChannelDetailsPage.stories.tsx
+++ b/src/channels/pages/ChannelDetailsPage/ChannelDetailsPage.stories.tsx
@@ -1,8 +1,6 @@
import { channel, channelCreateErrors } from "@dashboard/channels/fixtures";
import { countries } from "@dashboard/fixtures";
import { ChannelErrorFragment } from "@dashboard/graphql";
-import Decorator from "@dashboard/storybook/Decorator";
-import { storiesOf } from "@storybook/react";
import React from "react";
import ChannelDetailsPage, {
@@ -69,21 +67,26 @@ const props: ChannelDetailsPageProps = {
},
};
-storiesOf("Channels / Channel details", module)
- .addDecorator(Decorator)
- .add("default", () => )
- .add("disabled", () => )
- .add("loading", () => (
-
- ))
- .add("with data", () => )
- .add("without editable currency code", () => (
-
- ))
- .add("with errors", () => (
-
- ));
+export default {
+ title: "Channels / Channel details",
+};
+
+export const Default = () => ;
+
+export const Disabled = () => ;
+
+export const Loading = () => (
+
+);
+
+export const WithData = () => (
+
+);
+
+export const WithoutEditableCurrencyCode = () => (
+
+);
+
+export const WithErrors = () => (
+
+);
diff --git a/src/channels/pages/ChannelsListPage/ChannelsListPage.stories.tsx b/src/channels/pages/ChannelsListPage/ChannelsListPage.stories.tsx
index 04c93161d..193a94f56 100644
--- a/src/channels/pages/ChannelsListPage/ChannelsListPage.stories.tsx
+++ b/src/channels/pages/ChannelsListPage/ChannelsListPage.stories.tsx
@@ -1,7 +1,5 @@
import { channelsList } from "@dashboard/channels/fixtures";
import { limits, limitsReached } from "@dashboard/fixtures";
-import Decorator from "@dashboard/storybook/Decorator";
-import { storiesOf } from "@storybook/react";
import React from "react";
import ChannelsListPage, { ChannelsListPageProps } from "./ChannelsListPage";
@@ -12,11 +10,18 @@ const props: ChannelsListPageProps = {
onRemove: () => undefined,
};
-storiesOf("Channels / Channels list", module)
- .addDecorator(Decorator)
- .add("default", () => )
- .add("empty", () => )
- .add("no limits", () => )
- .add("limits reached", () => (
-
- ));
+export default {
+ title: "Channels / Channels list",
+};
+
+export const Default = () => ;
+
+export const Empty = () => ;
+
+export const NoLimits = () => (
+
+);
+
+export const LimitsReached = () => (
+
+);
diff --git a/src/collections/components/CollectionCreatePage/CollectionCreatePage.stories.tsx b/src/collections/components/CollectionCreatePage/CollectionCreatePage.stories.tsx
index f20592638..d0a9b8d03 100644
--- a/src/collections/components/CollectionCreatePage/CollectionCreatePage.stories.tsx
+++ b/src/collections/components/CollectionCreatePage/CollectionCreatePage.stories.tsx
@@ -1,8 +1,6 @@
import { channelsList } from "@dashboard/channels/fixtures";
import { createCollectionChannels } from "@dashboard/channels/utils";
import { CollectionErrorCode } from "@dashboard/graphql";
-import Decorator from "@dashboard/storybook/Decorator";
-import { storiesOf } from "@storybook/react";
import React from "react";
import CollectionCreatePage, {
@@ -23,27 +21,33 @@ const props: Omit = {
saveButtonBarState: "default",
};
-storiesOf("Collections / Create collection", module)
- .addDecorator(Decorator)
- .add("default", () => )
- .add("loading", () => )
- .add("form errors", () => (
- ({
- __typename: "CollectionError",
- ...err,
- }))}
- />
- ));
+export default {
+ title: "Collections / Create collection",
+};
+
+export const Default = () => ;
+
+export const Loading = () => (
+
+);
+
+export const FormErrors = () => (
+ ({
+ __typename: "CollectionError",
+ ...err,
+ }))}
+ />
+);
diff --git a/src/collections/components/CollectionDetailsPage/CollectionDetailsPage.stories.tsx b/src/collections/components/CollectionDetailsPage/CollectionDetailsPage.stories.tsx
index 775eaaa09..d796404ed 100644
--- a/src/collections/components/CollectionDetailsPage/CollectionDetailsPage.stories.tsx
+++ b/src/collections/components/CollectionDetailsPage/CollectionDetailsPage.stories.tsx
@@ -4,11 +4,9 @@ import { createCollectionChannelsData } from "@dashboard/channels/utils";
import { collection as collectionFixture } from "@dashboard/collections/fixtures";
import { listActionsProps, pageListProps } from "@dashboard/fixtures";
import { CollectionErrorCode } from "@dashboard/graphql";
-import Decorator from "@dashboard/storybook/Decorator";
-import { PaginatorContextDecorator } from "@dashboard/storybook/PaginatorContextDecorator";
-import { storiesOf } from "@storybook/react";
import React from "react";
+import { PaginatorContextDecorator } from "../../../../.storybook/decorators";
import CollectionDetailsPage, {
CollectionDetailsPageProps,
} from "./CollectionDetailsPage";
@@ -39,42 +37,47 @@ const props: Omit = {
selectedChannelId: "123",
};
-storiesOf("Collections / Collection detailsCollection details", module)
- .addDecorator(Decorator)
- .addDecorator(PaginatorContextDecorator)
- .add("default", () => )
- .add("loading", () => (
-
- ))
- .add("form errors", () => (
- ({
- __typename: "CollectionError",
- ...err,
- }))}
- />
- ))
- .add("no products", () => (
-
- ));
+export default {
+ title: "Collections / Collection detailsCollection details",
+ decorators: [PaginatorContextDecorator],
+};
+
+export const Default = () => ;
+
+export const Loading = () => (
+
+);
+
+export const FormErrors = () => (
+ ({
+ __typename: "CollectionError",
+ ...err,
+ }))}
+ />
+);
+
+export const NoProducts = () => (
+
+);
diff --git a/src/collections/components/CollectionListPage/CollectionListPage.stories.tsx b/src/collections/components/CollectionListPage/CollectionListPage.stories.tsx
index afc15a300..eb5a6365c 100644
--- a/src/collections/components/CollectionListPage/CollectionListPage.stories.tsx
+++ b/src/collections/components/CollectionListPage/CollectionListPage.stories.tsx
@@ -1,9 +1,7 @@
import { CollectionListUrlSortField } from "@dashboard/collections/urls";
-import Decorator from "@dashboard/storybook/Decorator";
-import { PaginatorContextDecorator } from "@dashboard/storybook/PaginatorContextDecorator";
-import { storiesOf } from "@storybook/react";
import React from "react";
+import { PaginatorContextDecorator } from "../../../../.storybook/decorators";
import CollectionListPage, {
CollectionListPageProps,
} from "../../../collections/components/CollectionListPage";
@@ -34,11 +32,15 @@ const props: CollectionListPageProps = {
filterOpts: collectionListFilterOpts,
};
-storiesOf("Collections / Collection list", module)
- .addDecorator(Decorator)
- .addDecorator(PaginatorContextDecorator)
- .add("default", () => )
- .add("loading", () => (
-
- ))
- .add("no data", () => );
+export default {
+ title: "Collections / Collection list",
+ decorators: [PaginatorContextDecorator],
+};
+
+export const Default = () => ;
+
+export const Loading = () => (
+
+);
+
+export const NoData = () => ;
diff --git a/src/collections/index.tsx b/src/collections/index.tsx
index da6e224c7..1ca74f98c 100644
--- a/src/collections/index.tsx
+++ b/src/collections/index.tsx
@@ -20,7 +20,7 @@ import CollectionDetailsView from "./views/CollectionDetails";
import CollectionListView from "./views/CollectionList";
const CollectionList: React.FC> = ({ location }) => {
- const qs = parseQs(location.search.substr(1));
+ const qs = parseQs(location.search.substr(1)) as any;
const params: CollectionListUrlQueryParams = asSortParams(
qs,
CollectionListUrlSortField,
@@ -31,9 +31,9 @@ const CollectionList: React.FC> = ({ location }) => {
interface CollectionDetailsRouteProps {
id: string;
}
-const CollectionDetails: React.FC> = ({ location, match }) => {
+const CollectionDetails: React.FC<
+ RouteComponentProps
+> = ({ location, match }) => {
const qs = parseQs(location.search.substr(1));
const params: CollectionUrlQueryParams = qs;
return (
diff --git a/src/components/ErrorPage/ErrorPage.stories.tsx b/src/components/ErrorPage/ErrorPage.stories.tsx
index 608bbdffd..4091c44f4 100644
--- a/src/components/ErrorPage/ErrorPage.stories.tsx
+++ b/src/components/ErrorPage/ErrorPage.stories.tsx
@@ -3,8 +3,6 @@ import {
AppStateContextType,
} from "@dashboard/containers/AppState";
import { initialAppState } from "@dashboard/containers/AppState/state";
-import Decorator from "@dashboard/storybook/Decorator";
-import { storiesOf } from "@storybook/react";
import React from "react";
import ErrorPage, { ErrorPageProps } from "./ErrorPage";
@@ -29,15 +27,18 @@ const props: Omit = {
onRefresh: () => undefined,
};
-storiesOf("Error / Error page", module)
- .addDecorator(Decorator)
- .add("default", () => (
-
-
-
- ))
- .add("with error id", () => (
-
-
-
- ));
+export default {
+ title: "Error / Error page",
+};
+
+export const Default = () => (
+
+
+
+);
+
+export const WithErrorId = () => (
+
+
+
+);
diff --git a/src/components/NotFoundPage/NotFoundPage.stories.tsx b/src/components/NotFoundPage/NotFoundPage.stories.tsx
index de0e619e9..058b51f1e 100644
--- a/src/components/NotFoundPage/NotFoundPage.stories.tsx
+++ b/src/components/NotFoundPage/NotFoundPage.stories.tsx
@@ -1,9 +1,9 @@
-import Decorator from "@dashboard/storybook/Decorator";
-import { storiesOf } from "@storybook/react";
import React from "react";
import NotFoundPage from "./NotFoundPage";
-storiesOf("Error / Not found", module)
- .addDecorator(Decorator)
- .add("default", () => undefined} />);
+export default {
+ title: "Error / Not found",
+};
+
+export const Default = () => undefined} />;
diff --git a/src/configuration/ConfigurationPage.stories.tsx b/src/configuration/ConfigurationPage.stories.tsx
index 13a4a57e1..c0a5cbec1 100644
--- a/src/configuration/ConfigurationPage.stories.tsx
+++ b/src/configuration/ConfigurationPage.stories.tsx
@@ -1,13 +1,15 @@
import { createConfigurationMenu } from "@dashboard/configuration";
import { UserFragment } from "@dashboard/graphql";
import { staffMember } from "@dashboard/staff/fixtures";
-import Decorator from "@dashboard/storybook/Decorator";
-import { storiesOf } from "@storybook/react";
import React from "react";
import { useIntl } from "react-intl";
import { ConfigurationPage } from "./ConfigurationPage";
+export default {
+ title: "Configuration / Configuration",
+};
+
const user = {
__typename: staffMember.__typename,
avatar: {
@@ -40,14 +42,13 @@ const Story: React.FC<{ user: UserFragment }> = ({ user }) => {
);
};
-storiesOf("Configuration", module)
- .addDecorator(Decorator)
- .add("default", () => )
- .add("partial access", () => (
-
- ));
+export const Default = () => ;
+
+export const PartialAccess = () => (
+
+);
diff --git a/src/custom-apps/components/WebhookDetailsPage/WebhookDetailsPage.stories.tsx b/src/custom-apps/components/WebhookDetailsPage/WebhookDetailsPage.stories.tsx
index 36bbc32dd..933929904 100644
--- a/src/custom-apps/components/WebhookDetailsPage/WebhookDetailsPage.stories.tsx
+++ b/src/custom-apps/components/WebhookDetailsPage/WebhookDetailsPage.stories.tsx
@@ -1,6 +1,4 @@
import { WebhookErrorCode } from "@dashboard/graphql";
-import Decorator from "@dashboard/storybook/Decorator";
-import { storiesOf } from "@storybook/react";
import React from "react";
import { webhook } from "../../fixtures";
@@ -18,21 +16,29 @@ const props: WebhookDetailsPageProps = {
webhook,
availableEvents: [],
};
-storiesOf("Apps / Webhooks / Webhook details", module)
- .addDecorator(Decorator)
- .add("default", () => )
- .add("undefined", () => )
- .add("loading", () => (
-
- ))
- .add("form errors", () => (
- ({
- __typename: "WebhookError",
- code: WebhookErrorCode.INVALID,
- field,
- message: "Webhook invalid",
- }))}
- />
- ));
+
+export default {
+ title: "Apps / Webhooks / Webhook details",
+};
+
+export const Default = () => ;
+
+export const Undefined = () => (
+
+);
+
+export const Loading = () => (
+
+);
+
+export const FormErrors = () => (
+ ({
+ __typename: "WebhookError",
+ code: WebhookErrorCode.INVALID,
+ field,
+ message: "Webhook invalid",
+ }))}
+ />
+);
diff --git a/src/customers/components/CustomerAddressListPage/CustomerAddressListPage.stories.tsx b/src/customers/components/CustomerAddressListPage/CustomerAddressListPage.stories.tsx
index 2d41d57be..0ea7b4dff 100644
--- a/src/customers/components/CustomerAddressListPage/CustomerAddressListPage.stories.tsx
+++ b/src/customers/components/CustomerAddressListPage/CustomerAddressListPage.stories.tsx
@@ -1,5 +1,3 @@
-import Decorator from "@dashboard/storybook/Decorator";
-import { storiesOf } from "@storybook/react";
import React from "react";
import { customer } from "../../fixtures";
@@ -14,15 +12,19 @@ const props: CustomerAddressListPageProps = {
onSetAsDefault: () => undefined,
};
-storiesOf("Customers / Address Book", module)
- .addDecorator(Decorator)
- .add("default", () => )
- .add("loading", () => (
-
- ))
- .add("no data", () => (
-
- ));
+export default {
+ title: "Customers / Address Book",
+};
+
+export const Default = () => ;
+
+export const Loading = () => (
+
+);
+
+export const NoData = () => (
+
+);
diff --git a/src/customers/components/CustomerCreatePage/CustomerCreatePage.stories.tsx b/src/customers/components/CustomerCreatePage/CustomerCreatePage.stories.tsx
index c93d7b01b..b435fd7cc 100644
--- a/src/customers/components/CustomerCreatePage/CustomerCreatePage.stories.tsx
+++ b/src/customers/components/CustomerCreatePage/CustomerCreatePage.stories.tsx
@@ -1,6 +1,4 @@
import { AccountErrorCode } from "@dashboard/graphql";
-import Decorator from "@dashboard/storybook/Decorator";
-import { storiesOf } from "@storybook/react";
import React from "react";
import CustomerCreatePage, {
@@ -19,14 +17,19 @@ const props: Omit = {
saveButtonBar: "default",
};
-storiesOf("Customers / Create customer", module)
- .addDecorator(Decorator)
- .add("default", () => )
- .add("loading", () => )
- .add("form errors", () => (
- ;
+
+export const Loading = () => ;
+
+export const FormErrors = () => (
+ ).map(field => ({
- __typename: "AccountError",
- code: AccountErrorCode.INVALID,
- field,
- addressType: null,
- message: "Account invalid error",
- }))}
- />
- ));
+ ] as Array
+ ).map(field => ({
+ __typename: "AccountError",
+ code: AccountErrorCode.INVALID,
+ field,
+ addressType: null,
+ message: "Account invalid error",
+ }))}
+ />
+);
diff --git a/src/customers/components/CustomerDetailsPage/CustomerDetailsPage.stories.tsx b/src/customers/components/CustomerDetailsPage/CustomerDetailsPage.stories.tsx
index ca3ba5815..79e930f98 100644
--- a/src/customers/components/CustomerDetailsPage/CustomerDetailsPage.stories.tsx
+++ b/src/customers/components/CustomerDetailsPage/CustomerDetailsPage.stories.tsx
@@ -1,9 +1,7 @@
import { AccountErrorCode } from "@dashboard/graphql";
-import Decorator from "@dashboard/storybook/Decorator";
-import { MockedUserProvider } from "@dashboard/storybook/MockedUserProvider";
-import { storiesOf } from "@storybook/react";
import React from "react";
+import { MockedUserProvider } from "../../../../.storybook/helpers";
import { customer } from "../../fixtures";
import CustomerDetailsPageComponent, {
CustomerDetailsPageProps,
@@ -32,84 +30,96 @@ const CustomerDetailsPage = props => (
);
-storiesOf("Customers / Customer details", module)
- .addDecorator(Decorator)
- .add("default", () => )
- .add("loading", () => (
-
- ))
- .add("form errors", () => (
- ;
+
+export const Loading = () => (
+
+);
+
+export const FormErrors = () => (
+ ).map(field => ({
- __typename: "AccountError",
- code: AccountErrorCode.INVALID,
- field,
- addressType: null,
- message: "Account invalid",
- }))}
- />
- ))
- .add("different addresses", () => (
-
- ))
- .add("never logged", () => (
-
- ))
- .add("never placed order", () => (
-
- ))
- .add("no default billing address", () => (
-
- ))
- .add("no default shipping address", () => (
-
- ))
- .add("no address at all", () => (
-
- ));
+ >
+ ).map(field => ({
+ __typename: "AccountError",
+ code: AccountErrorCode.INVALID,
+ field,
+ addressType: null,
+ message: "Account invalid",
+ }))}
+ />
+);
+
+export const DifferentAddresses = () => (
+
+);
+
+export const NeverLogged = () => (
+
+);
+
+export const NeverPlacedOrder = () => (
+
+);
+
+export const NoDefaultBillingAddress = () => (
+
+);
+
+export const NoDefaultShippingAddress = () => (
+
+);
+
+export const NoAddressAtAll = () => (
+
+);
diff --git a/src/customers/components/CustomerListPage/CustomerListPage.stories.tsx b/src/customers/components/CustomerListPage/CustomerListPage.stories.tsx
index 1348485cc..712b45d16 100644
--- a/src/customers/components/CustomerListPage/CustomerListPage.stories.tsx
+++ b/src/customers/components/CustomerListPage/CustomerListPage.stories.tsx
@@ -6,12 +6,10 @@ import {
sortPageProps,
tabPageProps,
} from "@dashboard/fixtures";
-import Decorator from "@dashboard/storybook/Decorator";
-import { MockedUserProvider } from "@dashboard/storybook/MockedUserProvider";
-import { PaginatorContextDecorator } from "@dashboard/storybook/PaginatorContextDecorator";
-import { storiesOf } from "@storybook/react";
import React from "react";
+import { PaginatorContextDecorator } from "../../../../.storybook/decorators";
+import { MockedUserProvider } from "../../../../.storybook/helpers";
import { customerList } from "../../fixtures";
import { CustomerListUrlSortField } from "../../urls";
import CustomerListPageComponent, {
@@ -55,11 +53,15 @@ const CustomerListPage = props => (
);
-storiesOf("Customers / Customer list", module)
- .addDecorator(Decorator)
- .addDecorator(PaginatorContextDecorator)
- .add("default", () => )
- .add("loading", () => (
-
- ))
- .add("no data", () => );
+export default {
+ title: "Customers / Customer list",
+ decorators: [PaginatorContextDecorator],
+};
+
+export const Default = () => ;
+
+export const Loading = () => (
+
+);
+
+export const NoData = () => ;
diff --git a/src/customers/index.tsx b/src/customers/index.tsx
index a0f34c707..585419cbd 100644
--- a/src/customers/index.tsx
+++ b/src/customers/index.tsx
@@ -22,7 +22,7 @@ import CustomerDetailsViewComponent from "./views/CustomerDetails";
import CustomerListViewComponent from "./views/CustomerList";
const CustomerListView: React.FC> = ({ location }) => {
- const qs = parseQs(location.search.substr(1));
+ const qs = parseQs(location.search.substr(1)) as any;
const params: CustomerListUrlQueryParams = asSortParams(
qs,
CustomerListUrlSortField,
@@ -34,9 +34,9 @@ const CustomerListView: React.FC> = ({ location }) => {
interface CustomerDetailsRouteParams {
id: string;
}
-const CustomerDetailsView: React.FC> = ({ location, match }) => {
+const CustomerDetailsView: React.FC<
+ RouteComponentProps
+> = ({ location, match }) => {
const qs = parseQs(location.search.substr(1));
const params: CustomerUrlQueryParams = qs;
@@ -51,9 +51,9 @@ const CustomerDetailsView: React.FC> = ({ match }) => {
+const CustomerAddressesView: React.FC<
+ RouteComponentProps
+> = ({ match }) => {
const qs = parseQs(location.search.substr(1));
const params: CustomerAddressesUrlQueryParams = qs;
diff --git a/src/discounts/components/SaleCreatePage/SaleCreatePage.stories.tsx b/src/discounts/components/SaleCreatePage/SaleCreatePage.stories.tsx
index 129978c28..44f72e9f6 100644
--- a/src/discounts/components/SaleCreatePage/SaleCreatePage.stories.tsx
+++ b/src/discounts/components/SaleCreatePage/SaleCreatePage.stories.tsx
@@ -1,8 +1,6 @@
import { channelsList } from "@dashboard/channels/fixtures";
import { createSaleChannels } from "@dashboard/channels/utils";
import { DiscountErrorCode } from "@dashboard/graphql";
-import Decorator from "@dashboard/storybook/Decorator";
-import { storiesOf } from "@storybook/react";
import React from "react";
import SaleCreatePage, { SaleCreatePageProps } from "./SaleCreatePage";
@@ -21,19 +19,23 @@ const props: SaleCreatePageProps = {
saveButtonBarState: "default",
};
-storiesOf("Discounts / Sale create", module)
- .addDecorator(Decorator)
- .add("default", () => )
- .add("loading", () => )
- .add("form errors", () => (
- ({
- __typename: "DiscountError",
- channels: [],
- code: DiscountErrorCode.INVALID,
- field,
- message: "Discount invalid",
- }))}
- />
- ));
+export default {
+ title: "Discounts / Sale create",
+};
+
+export const Default = () => ;
+
+export const Loading = () => ;
+
+export const FormErrors = () => (
+ ({
+ __typename: "DiscountError",
+ channels: [],
+ code: DiscountErrorCode.INVALID,
+ field,
+ message: "Discount invalid",
+ }))}
+ />
+);
diff --git a/src/discounts/components/SaleDetailsPage/SaleDetailsPage.stories.tsx b/src/discounts/components/SaleDetailsPage/SaleDetailsPage.stories.tsx
index 90b2d0e39..afd29ed3e 100644
--- a/src/discounts/components/SaleDetailsPage/SaleDetailsPage.stories.tsx
+++ b/src/discounts/components/SaleDetailsPage/SaleDetailsPage.stories.tsx
@@ -3,11 +3,9 @@ import { createSaleChannels } from "@dashboard/channels/utils";
import { sale } from "@dashboard/discounts/fixtures";
import { listActionsProps } from "@dashboard/fixtures";
import { DiscountErrorCode } from "@dashboard/graphql";
-import Decorator from "@dashboard/storybook/Decorator";
-import { PaginatorContextDecorator } from "@dashboard/storybook/PaginatorContextDecorator";
-import { storiesOf } from "@storybook/react";
import React from "react";
+import { PaginatorContextDecorator } from "../../../../.storybook/decorators";
import SaleDetailsPage, {
SaleDetailsPageProps,
SaleDetailsPageTab,
@@ -50,28 +48,34 @@ const props: SaleDetailsPageProps = {
...listActionsProps,
};
-storiesOf(" Discounts / Sale details", module)
- .addDecorator(Decorator)
- .addDecorator(PaginatorContextDecorator)
- .add("default", () => )
- .add("loading", () => (
-
- ))
- .add("form errors", () => (
- ({
- __typename: "DiscountError",
- channels: [],
- code: DiscountErrorCode.INVALID,
- field,
- message: "Discount invalid",
- }))}
- />
- ))
- .add("collections", () => (
-
- ))
- .add("products", () => (
-
- ));
+export default {
+ title: " Discounts / Sale details",
+ decorators: [PaginatorContextDecorator],
+};
+
+export const Default = () => ;
+
+export const Loading = () => (
+
+);
+
+export const FormErrors = () => (
+ ({
+ __typename: "DiscountError",
+ channels: [],
+ code: DiscountErrorCode.INVALID,
+ field,
+ message: "Discount invalid",
+ }))}
+ />
+);
+
+export const Collections = () => (
+
+);
+
+export const Products = () => (
+
+);
diff --git a/src/discounts/components/SaleListPage/SaleListPage.stories.tsx b/src/discounts/components/SaleListPage/SaleListPage.stories.tsx
index 2926277c2..0a76bec9d 100644
--- a/src/discounts/components/SaleListPage/SaleListPage.stories.tsx
+++ b/src/discounts/components/SaleListPage/SaleListPage.stories.tsx
@@ -8,11 +8,9 @@ import {
tabPageProps,
} from "@dashboard/fixtures";
import { DiscountStatusEnum, DiscountValueTypeEnum } from "@dashboard/graphql";
-import Decorator from "@dashboard/storybook/Decorator";
-import { PaginatorContextDecorator } from "@dashboard/storybook/PaginatorContextDecorator";
-import { storiesOf } from "@storybook/react";
import React from "react";
+import { PaginatorContextDecorator } from "../../../../.storybook/decorators";
import SaleListPage, { SaleListPageProps } from "./SaleListPage";
const props: SaleListPageProps = {
@@ -56,16 +54,21 @@ const props: SaleListPageProps = {
},
};
-storiesOf("Discounts / Sale list", module)
- .addDecorator(Decorator)
- .addDecorator(PaginatorContextDecorator)
- .add("default", () => )
- .add("loading", () => )
- .add("no data", () => )
- .add("no channels", () => (
- ({ ...sale, channelListings: [] }))}
- selectedChannelId=""
- />
- ));
+export default {
+ title: "Discounts / Sale list",
+ decorators: [PaginatorContextDecorator],
+};
+
+export const Default = () => ;
+
+export const Loading = () => ;
+
+export const NoData = () => ;
+
+export const NoChannels = () => (
+ ({ ...sale, channelListings: [] }))}
+ selectedChannelId=""
+ />
+);
diff --git a/src/discounts/components/VoucherCreatePage/VoucherCreatePage.stories.tsx b/src/discounts/components/VoucherCreatePage/VoucherCreatePage.stories.tsx
index 9229d63ff..463a3730d 100644
--- a/src/discounts/components/VoucherCreatePage/VoucherCreatePage.stories.tsx
+++ b/src/discounts/components/VoucherCreatePage/VoucherCreatePage.stories.tsx
@@ -1,8 +1,6 @@
import { channelsList } from "@dashboard/channels/fixtures";
import { createVoucherChannels } from "@dashboard/channels/utils";
import { DiscountErrorCode } from "@dashboard/graphql";
-import Decorator from "@dashboard/storybook/Decorator";
-import { storiesOf } from "@storybook/react";
import React from "react";
import VoucherCreatePage, {
@@ -23,13 +21,17 @@ const props: VoucherCreatePageProps = {
saveButtonBarState: "default",
};
-storiesOf("Discounts / Voucher create", module)
- .addDecorator(Decorator)
- .add("default", () => )
- .add("form errors", () => (
- ;
+
+export const FormErrors = () => (
+ ).map(field => ({
- __typename: "DiscountError",
- channels: [],
- code: DiscountErrorCode.INVALID,
- field,
- message: "Discount invalid",
- }))}
- />
- ));
+ ] as Array
+ ).map(field => ({
+ __typename: "DiscountError",
+ channels: [],
+ code: DiscountErrorCode.INVALID,
+ field,
+ message: "Discount invalid",
+ }))}
+ />
+);
diff --git a/src/discounts/components/VoucherDetailsPage/VoucherDetailsPage.stories.tsx b/src/discounts/components/VoucherDetailsPage/VoucherDetailsPage.stories.tsx
index 3b18e6e10..c08b471f8 100644
--- a/src/discounts/components/VoucherDetailsPage/VoucherDetailsPage.stories.tsx
+++ b/src/discounts/components/VoucherDetailsPage/VoucherDetailsPage.stories.tsx
@@ -2,11 +2,9 @@ import { channelsList } from "@dashboard/channels/fixtures";
import { createChannelsDataWithDiscountPrice } from "@dashboard/channels/utils";
import { listActionsProps, pageListProps } from "@dashboard/fixtures";
import { DiscountErrorCode } from "@dashboard/graphql";
-import Decorator from "@dashboard/storybook/Decorator";
-import { PaginatorContextDecorator } from "@dashboard/storybook/PaginatorContextDecorator";
-import { storiesOf } from "@storybook/react";
import React from "react";
+import { PaginatorContextDecorator } from "../../../../.storybook/decorators";
import { voucherDetails } from "../../fixtures";
import VoucherDetailsPage, {
VoucherDetailsPageFormData,
@@ -54,17 +52,22 @@ const props: VoucherDetailsPageProps = {
voucher: voucherDetails,
};
-storiesOf("Discounts / Voucher details", module)
- .addDecorator(Decorator)
- .addDecorator(PaginatorContextDecorator)
- .add("default", () => )
- .add("loading", () => (
-
- ))
- .add("form errors", () => (
- ;
+
+export const Loading = () => (
+
+);
+
+export const Error = () => (
+ ).map(field => ({
- __typename: "DiscountError",
- channels: [],
- code: DiscountErrorCode.INVALID,
- field,
- message: "Discount invalid",
- }))}
- />
- ));
+ ] as Array
+ ).map(field => ({
+ __typename: "DiscountError",
+ channels: [],
+ code: DiscountErrorCode.INVALID,
+ field,
+ message: "Discount invalid",
+ }))}
+ />
+);
diff --git a/src/discounts/components/VoucherListPage/VoucherListPage.stories.tsx b/src/discounts/components/VoucherListPage/VoucherListPage.stories.tsx
index a40cb9881..0b63ede6f 100644
--- a/src/discounts/components/VoucherListPage/VoucherListPage.stories.tsx
+++ b/src/discounts/components/VoucherListPage/VoucherListPage.stories.tsx
@@ -9,11 +9,9 @@ import {
tabPageProps,
} from "@dashboard/fixtures";
import { DiscountStatusEnum, VoucherDiscountType } from "@dashboard/graphql";
-import Decorator from "@dashboard/storybook/Decorator";
-import { PaginatorContextDecorator } from "@dashboard/storybook/PaginatorContextDecorator";
-import { storiesOf } from "@storybook/react";
import React from "react";
+import { PaginatorContextDecorator } from "../../../../.storybook/decorators";
import VoucherListPage, { VoucherListPageProps } from "./VoucherListPage";
const props: VoucherListPageProps = {
@@ -65,19 +63,24 @@ const props: VoucherListPageProps = {
vouchers: voucherList,
};
-storiesOf("Discounts / Voucher list", module)
- .addDecorator(Decorator)
- .addDecorator(PaginatorContextDecorator)
- .add("default", () => )
- .add("loading", () => )
- .add("no data", () => )
- .add("no channels", () => (
- ({
- ...voucher,
- channelListings: [],
- }))}
- />
- ));
+export default {
+ title: "Discounts / Voucher list",
+ decorators: [PaginatorContextDecorator],
+};
+
+export const Default = () => ;
+
+export const Loading = () => (
+
+);
+
+export const NoChannels = () => (
+ ({
+ ...voucher,
+ channelListings: [],
+ }))}
+ />
+);
diff --git a/src/discounts/index.tsx b/src/discounts/index.tsx
index 742a8161c..4ff9816e5 100644
--- a/src/discounts/index.tsx
+++ b/src/discounts/index.tsx
@@ -30,7 +30,7 @@ import VoucherDetailsViewComponent from "./views/VoucherDetails";
import VoucherListViewComponent from "./views/VoucherList";
const SaleListView: React.FC> = ({ location }) => {
- const qs = parseQs(location.search.substr(1));
+ const qs = parseQs(location.search.substr(1)) as any;
const params: SaleListUrlQueryParams = asSortParams(qs, SaleListUrlSortField);
return ;
};
@@ -58,7 +58,7 @@ const SaleCreateView: React.FC = ({ location }) => {
};
const VoucherListView: React.FC> = ({ location }) => {
- const qs = parseQs(location.search.substr(1));
+ const qs = parseQs(location.search.substr(1)) as any;
const params: VoucherListUrlQueryParams = asSortParams(
qs,
VoucherListUrlSortField,
diff --git a/src/giftCards/index.tsx b/src/giftCards/index.tsx
index 7b366d2ba..c6c3d7b05 100644
--- a/src/giftCards/index.tsx
+++ b/src/giftCards/index.tsx
@@ -31,7 +31,7 @@ const GiftCardUpdatePage: React.FC> = ({
};
const GiftCardList: React.FC> = () => {
- const qs = parseQs(location.search.substr(1));
+ const qs = parseQs(location.search.substr(1)) as any;
const params: GiftCardListUrlQueryParams = asSortParams(
qs,
GiftCardUrlSortField,
diff --git a/src/home/components/HomePage/HomePage.stories.tsx b/src/home/components/HomePage/HomePage.stories.tsx
index 3e72267b9..0439b298e 100644
--- a/src/home/components/HomePage/HomePage.stories.tsx
+++ b/src/home/components/HomePage/HomePage.stories.tsx
@@ -2,12 +2,10 @@ import placeholderImage from "@assets/images/placeholder60x60.png";
import { adminUserPermissions } from "@dashboard/fixtures";
import { PermissionEnum } from "@dashboard/graphql";
import { shop as shopFixture } from "@dashboard/home/fixtures";
-import Decorator from "@dashboard/storybook/Decorator";
-import { MockedUserProvider } from "@dashboard/storybook/MockedUserProvider";
import { mapEdgesToItems } from "@dashboard/utils/maps";
-import { storiesOf } from "@storybook/react";
import React from "react";
+import { MockedUserProvider } from "../../../../.storybook/helpers";
import HomePageComponent, { HomePageProps } from "./HomePage";
const shop = shopFixture(placeholderImage);
@@ -38,41 +36,48 @@ const HomePage = props => {
);
};
-storiesOf("Home", module)
- .addDecorator(Decorator)
- .add("default", () => )
- .add("loading", () => (
-
- ))
- .add("no data", () => (
-
- ))
- .add("no permissions", () => (
-
- ))
- .add("product permissions", () => (
- perm.code === PermissionEnum.MANAGE_PRODUCTS,
- )}
- />
- ))
- .add("order permissions", () => (
- perm.code === PermissionEnum.MANAGE_ORDERS,
- )}
- />
- ));
+export default {
+ title: "Home / Home",
+};
+
+export const Default = () => ;
+
+export const Loading = () => (
+
+);
+
+export const NoData = () => (
+
+);
+
+export const NoPermissions = () => (
+
+);
+
+export const ProductPermissions = () => (
+ perm.code === PermissionEnum.MANAGE_PRODUCTS,
+ )}
+ />
+);
+
+export const OrderPermissions = () => (
+ perm.code === PermissionEnum.MANAGE_ORDERS,
+ )}
+ />
+);
diff --git a/src/navigation/components/MenuDetailsPage/MenuDetailsPage.stories.tsx b/src/navigation/components/MenuDetailsPage/MenuDetailsPage.stories.tsx
index 7154b42ba..e4b0353fb 100644
--- a/src/navigation/components/MenuDetailsPage/MenuDetailsPage.stories.tsx
+++ b/src/navigation/components/MenuDetailsPage/MenuDetailsPage.stories.tsx
@@ -1,7 +1,5 @@
import { MenuErrorCode } from "@dashboard/graphql";
import { menu } from "@dashboard/navigation/fixtures";
-import Decorator from "@dashboard/storybook/Decorator";
-import { storiesOf } from "@storybook/react";
import React from "react";
import MenuDetailsPage, { MenuDetailsPageProps } from "./MenuDetailsPage";
@@ -18,29 +16,24 @@ const props: MenuDetailsPageProps = {
saveButtonState: "default",
};
-storiesOf("Navigation / Menu details", module)
- .addDecorator(Decorator)
- .add("default", () => )
- .add("loading", () => (
-
- ))
- .add("no data", () => (
-
- ))
- .add("form errors", () => (
- ({
- __typename: "MenuError",
- code: MenuErrorCode.INVALID,
- field,
- message: "Invalid field",
- }))}
- />
- ));
+export default {
+ title: "Navigation / Menu details",
+};
+
+export const Default = () => ;
+
+export const Loading = () => (
+
+);
+
+export const FormErrors = () => (
+ ({
+ __typename: "MenuError",
+ code: MenuErrorCode.INVALID,
+ field,
+ message: "Invalid field",
+ }))}
+ />
+);
diff --git a/src/navigation/components/MenuListPage/MenuListPage.stories.tsx b/src/navigation/components/MenuListPage/MenuListPage.stories.tsx
index c32eb92c8..6bc19c3b2 100644
--- a/src/navigation/components/MenuListPage/MenuListPage.stories.tsx
+++ b/src/navigation/components/MenuListPage/MenuListPage.stories.tsx
@@ -5,11 +5,9 @@ import {
} from "@dashboard/fixtures";
import { menuList } from "@dashboard/navigation/fixtures";
import { MenuListUrlSortField } from "@dashboard/navigation/urls";
-import Decorator from "@dashboard/storybook/Decorator";
-import { PaginatorContextDecorator } from "@dashboard/storybook/PaginatorContextDecorator";
-import { storiesOf } from "@storybook/react";
import React from "react";
+import { PaginatorContextDecorator } from "../../../../.storybook/decorators";
import MenuListPage, { MenuListPageProps } from "./MenuListPage";
const props: MenuListPageProps = {
@@ -24,11 +22,15 @@ const props: MenuListPageProps = {
},
};
-storiesOf("Navigation / Menu list", module)
- .addDecorator(Decorator)
- .addDecorator(PaginatorContextDecorator)
- .add("default", () => )
- .add("loading", () => (
-
- ))
- .add("no data", () => );
+export default {
+ title: "Navigation / Menu list",
+ decorators: [PaginatorContextDecorator],
+};
+
+export const Default = () => ;
+
+export const Loading = () => (
+
+);
+
+export const NoData = () => ;
diff --git a/src/navigation/index.tsx b/src/navigation/index.tsx
index a24ab968c..7266b9985 100644
--- a/src/navigation/index.tsx
+++ b/src/navigation/index.tsx
@@ -13,7 +13,7 @@ import MenuDetailsComponent from "./views/MenuDetails";
import MenuListComponent from "./views/MenuList";
const MenuList: React.FC> = ({ location }) => {
- const qs = parseQs(location.search.substr(1));
+ const qs = parseQs(location.search.substr(1)) as any;
const params: MenuListUrlQueryParams = asSortParams(qs, MenuListUrlSortField);
return ;
diff --git a/src/orders/components/OrderChangeWarehouseDialog/OrderChangeWarehouseDialog.tsx b/src/orders/components/OrderChangeWarehouseDialog/OrderChangeWarehouseDialog.tsx
index 3ace027f3..48f205533 100644
--- a/src/orders/components/OrderChangeWarehouseDialog/OrderChangeWarehouseDialog.tsx
+++ b/src/orders/components/OrderChangeWarehouseDialog/OrderChangeWarehouseDialog.tsx
@@ -46,13 +46,9 @@ export interface OrderChangeWarehouseDialogProps {
onClose();
}
-export const OrderChangeWarehouseDialog: React.FC = ({
- open,
- line,
- currentWarehouseId,
- onConfirm,
- onClose,
-}) => {
+export const OrderChangeWarehouseDialog: React.FC<
+ OrderChangeWarehouseDialogProps
+> = ({ open, line, currentWarehouseId, onConfirm, onClose }) => {
const classes = useStyles();
const intl = useIntl();
@@ -71,7 +67,11 @@ export const OrderChangeWarehouseDialog: React.FC
-
+
{filteredWarehouses ? (
{filteredWarehouses.map(warehouse => {
- const lineQuantityInWarehouse = getLineAvailableQuantityInWarehouse(
- line,
- warehouse,
- );
+ const lineQuantityInWarehouse =
+ getLineAvailableQuantityInWarehouse(line, warehouse);
return (
diff --git a/src/orders/components/OrderDetailsPage/OrderDetailsPage.stories.tsx b/src/orders/components/OrderDetailsPage/OrderDetailsPage.stories.tsx
index 561b4629e..6bceb9ed1 100644
--- a/src/orders/components/OrderDetailsPage/OrderDetailsPage.stories.tsx
+++ b/src/orders/components/OrderDetailsPage/OrderDetailsPage.stories.tsx
@@ -1,21 +1,14 @@
import {
FulfillmentStatus,
- GiftCardEventsEnum,
- OrderDetailsFragment,
OrderStatus,
PaymentChargeStatusEnum,
} from "@dashboard/graphql";
import {
- grantedRefunds,
order,
- ORDER_AMOUNT,
payments,
prepareMoney,
shop,
- transactions,
} from "@dashboard/orders/fixtures";
-import Decorator from "@dashboard/storybook/Decorator";
-import { storiesOf } from "@storybook/react";
import React from "react";
import OrderDetailsPage, { OrderDetailsPageProps } from "./OrderDetailsPage";
@@ -49,325 +42,159 @@ const props: Omit = {
saveButtonBarState: "default",
};
-storiesOf("Orders / Order details", module)
- .addDecorator(Decorator)
- .add("pending", () => (
-
- ))
- .add("authorized", () => (
-
- ))
- .add("completed", () => (
-
- ))
- .add("no payment", () => (
-
- ))
- .add("refunded", () => (
-
- ))
- .add("partial refund", () => (
-
- ))
- .add("rejected", () => (
-
- ));
+export default {
+ title: "Orders / Order details",
+};
-storiesOf("Views / Orders / Order details / transactions", module)
- .addDecorator(Decorator)
- .add("preauthorized", () => (
-
- ))
- .add("pending", () => (
-
- ))
- .add("success", () => (
-
- ))
- .add("partial capture", () => (
-
- ))
- .add("failed", () => (
-
- ))
- .add("refund requested", () => (
-
- ))
- .add("refund granted", () => (
-
- ))
- .add("refund completed", () => (
-
- ))
- .add("partial refund completed", () => (
-
- ))
- .add("paid with giftcard", () => (
-
- ));
+export const Pending = () => (
+
+);
-storiesOf("Views / Orders / Order details", module)
- .addDecorator(Decorator)
- .add("default", () => )
- .add("loading", () => )
- .add("cancelled", () => (
- ({
- ...fulfillment,
- status: FulfillmentStatus.CANCELED,
- })),
- status: OrderStatus.CANCELED,
- }}
- />
- ))
- .add("fulfilled", () => (
-
- ))
- .add("partially fulfilled", () => (
-
- ))
- .add("unfulfilled", () => (
-
- ))
- .add("no shipping address", () => (
-
- ))
- .add("no customer note", () => (
-
- ));
+export const Authorized = () => (
+
+);
+
+export const Completed = () => (
+
+);
+
+export const NoPayment = () => (
+
+);
+
+export const Refunded = () => (
+
+);
+
+export const PartialRefund = () => (
+
+);
+
+export const Rejected = () => (
+
+);
+
+export const Default = () => ;
+
+export const Loading = () => ;
+
+export const Cancelled = () => (
+ ({
+ ...fulfillment,
+ status: FulfillmentStatus.CANCELED,
+ })),
+ status: OrderStatus.CANCELED,
+ }}
+ />
+);
+
+export const Fulfilled = () => (
+
+);
+
+export const PartiallyFulfilled = () => (
+
+);
+
+export const Unfulfilled = () => (
+
+);
+
+export const NoShippingAddress = () => (
+
+);
+
+export const NoCustomerNote = () => (
+
+);
diff --git a/src/orders/components/OrderDetailsPage/OrderDetailsPageTransactions.stories.tsx b/src/orders/components/OrderDetailsPage/OrderDetailsPageTransactions.stories.tsx
new file mode 100644
index 000000000..eb94199e7
--- /dev/null
+++ b/src/orders/components/OrderDetailsPage/OrderDetailsPageTransactions.stories.tsx
@@ -0,0 +1,235 @@
+import {
+ GiftCardEventsEnum,
+ OrderDetailsFragment,
+ PaymentChargeStatusEnum,
+} from "@dashboard/graphql";
+import {
+ grantedRefunds,
+ order,
+ ORDER_AMOUNT,
+ prepareMoney,
+ shop,
+ transactions,
+} from "@dashboard/orders/fixtures";
+import React from "react";
+
+import OrderDetailsPage, { OrderDetailsPageProps } from "./OrderDetailsPage";
+
+const props: Omit = {
+ disabled: false,
+ onBillingAddressEdit: undefined,
+ onTransactionAction: () => undefined,
+ onFulfillmentApprove: () => undefined,
+ onFulfillmentCancel: () => undefined,
+ onFulfillmentTrackingNumberUpdate: () => undefined,
+ onInvoiceClick: () => undefined,
+ onInvoiceGenerate: () => undefined,
+ onInvoiceSend: () => undefined,
+ onNoteAdd: undefined,
+ onOrderCancel: undefined,
+ onOrderFulfill: undefined,
+ onOrderReturn: () => undefined,
+ onPaymentCapture: undefined,
+ onMarkAsPaid: undefined,
+ onPaymentVoid: undefined,
+ onPaymentRefund: undefined,
+ onProductClick: undefined,
+ onProfileView: () => undefined,
+ onShippingAddressEdit: undefined,
+ onSubmit: () => undefined,
+ onAddManualTransaction: () => undefined,
+ order: order(null),
+ errors: [],
+ shop,
+ saveButtonBarState: "default",
+};
+
+export default {
+ title: "Orders / Order details / transactions",
+};
+
+export const Preauthorized = () => (
+
+);
+
+export const Pending = () => (
+
+);
+
+export const Success = () => (
+
+);
+
+export const PartialCapture = () => (
+
+);
+
+export const Failed = () => (
+
+);
+
+export const RefundRequested = () => (
+
+);
+
+export const RefundGranted = () => (
+
+);
+
+export const RefundCompleted = () => (
+
+);
+
+export const PartialRefundCompleted = () => (
+
+);
+
+export const PaidWithGiftcard = () => (
+
+);
diff --git a/src/orders/components/OrderDraftListPage/OrderDraftListPage.stories.tsx b/src/orders/components/OrderDraftListPage/OrderDraftListPage.stories.tsx
index ce41c2bc1..014b3b2c9 100644
--- a/src/orders/components/OrderDraftListPage/OrderDraftListPage.stories.tsx
+++ b/src/orders/components/OrderDraftListPage/OrderDraftListPage.stories.tsx
@@ -9,11 +9,9 @@ import {
tabPageProps,
} from "@dashboard/fixtures";
import { OrderDraftListUrlSortField } from "@dashboard/orders/urls";
-import Decorator from "@dashboard/storybook/Decorator";
-import { PaginatorContextDecorator } from "@dashboard/storybook/PaginatorContextDecorator";
-import { storiesOf } from "@storybook/react";
import React from "react";
+import { PaginatorContextDecorator } from "../../../../.storybook/decorators";
import { orders } from "../../fixtures";
import OrderDraftListPage, {
OrderDraftListPageProps,
@@ -48,14 +46,19 @@ const props: OrderDraftListPageProps = {
},
};
-storiesOf("Orders / Draft order list", module)
- .addDecorator(Decorator)
- .addDecorator(PaginatorContextDecorator)
- .add("default", () => )
- .add("loading", () => (
-
- ))
- .add("when no data", () => )
- .add("limits reached", () => (
-
- ));
+export default {
+ title: "Orders / Draft order list",
+ decorators: [PaginatorContextDecorator],
+};
+
+export const Default = () => ;
+
+export const Loading = () => (
+
+);
+
+export const WhenNoData = () => ;
+
+export const LimitsReached = () => (
+
+);
diff --git a/src/orders/components/OrderDraftPage/OrderDraftPage.stories.tsx b/src/orders/components/OrderDraftPage/OrderDraftPage.stories.tsx
index 83a42c1f5..257ceb79c 100644
--- a/src/orders/components/OrderDraftPage/OrderDraftPage.stories.tsx
+++ b/src/orders/components/OrderDraftPage/OrderDraftPage.stories.tsx
@@ -6,11 +6,9 @@ import {
clients,
draftOrder,
} from "@dashboard/orders/fixtures";
-import Decorator from "@dashboard/storybook/Decorator";
-import { MockedUserProvider } from "@dashboard/storybook/MockedUserProvider";
-import { storiesOf } from "@storybook/react";
import React from "react";
+import { MockedUserProvider } from "../../../../.storybook/helpers";
import OrderDraftPageComponent, { OrderDraftPageProps } from "./OrderDraftPage";
import { getDiscountsProvidersWrapper } from "./storybook.utils";
@@ -79,24 +77,26 @@ const OrderDraftPage = props => {
);
};
-storiesOf("Orders / Order draft", module)
- .addDecorator(Decorator)
- .addDecorator(DiscountsDecorator)
- .add("default", () => )
- .add("loading", () => (
-
- ))
- .add("without lines", () => (
-
- ))
- .add("no user permissions", () => (
-
- ))
- .add("with errors", () => (
-
- ));
+export default {
+ title: "Orders / Order draft",
+ decorators: [DiscountsDecorator],
+};
+
+export const Default = () => ;
+
+export const Loading = () => (
+
+);
+
+export const NoUserPermissions = () => (
+
+);
+
+export const WithErrors = () => (
+
+);
diff --git a/src/orders/components/OrderFulfillPage/OrderFulfillPage.stories.tsx b/src/orders/components/OrderFulfillPage/OrderFulfillPage.stories.tsx
index 9c0cd1f85..86f0c1d86 100644
--- a/src/orders/components/OrderFulfillPage/OrderFulfillPage.stories.tsx
+++ b/src/orders/components/OrderFulfillPage/OrderFulfillPage.stories.tsx
@@ -1,7 +1,5 @@
import { OrderErrorCode } from "@dashboard/graphql";
-import Decorator from "@dashboard/storybook/Decorator";
import { warehouseList } from "@dashboard/warehouses/fixtures";
-import { storiesOf } from "@storybook/react";
import React from "react";
import { orderToFulfill } from "./fixtures";
@@ -18,26 +16,31 @@ const props: OrderFulfillPageProps = {
closeModal: () => undefined,
};
-storiesOf("Orders / Fulfill order", module)
- .addDecorator(Decorator)
- .add("default", () => )
- .add("loading", () => (
-
- ))
- .add("error", () => (
-
- ))
- .add("one warehouse", () => );
+export default {
+ title: "Orders / Fulfill order",
+};
+
+export const Default = () => ;
+
+export const Loading = () => (
+
+);
+
+export const Error = () => (
+
+);
+
+export const OneWarehouse = () => ;
diff --git a/src/orders/components/OrderGrantRefundPage/OrderGrantRefundPage.stories.tsx b/src/orders/components/OrderGrantRefundPage/OrderGrantRefundPage.stories.tsx
index bd17ac643..824b1f848 100644
--- a/src/orders/components/OrderGrantRefundPage/OrderGrantRefundPage.stories.tsx
+++ b/src/orders/components/OrderGrantRefundPage/OrderGrantRefundPage.stories.tsx
@@ -1,7 +1,5 @@
import placeholderImage from "@assets/images/placeholder60x60.png";
import { FulfillmentStatus } from "@dashboard/graphql";
-import Decorator from "@dashboard/storybook/Decorator";
-import { storiesOf } from "@storybook/react";
import React from "react";
import OrderGrantRefundPage, {
@@ -244,14 +242,17 @@ const props: OrderGrantRefundPageProps = {
onSubmit: data => console.log("onSubmit", data),
};
-storiesOf("Views / Orders / Grant refund order", module)
- .addDecorator(Decorator)
- .add("grant refund", () => )
- .add("loading", () => (
- undefined}
- />
- ));
+export default {
+ title: "Orders / Grant refund order",
+};
+
+export const GrantRefund = () => ;
+
+export const Loading = () => (
+ undefined}
+ />
+);
diff --git a/src/orders/components/OrderListPage/OrderListPage.stories.tsx b/src/orders/components/OrderListPage/OrderListPage.stories.tsx
index 392e7fa7b..492db2ed8 100644
--- a/src/orders/components/OrderListPage/OrderListPage.stories.tsx
+++ b/src/orders/components/OrderListPage/OrderListPage.stories.tsx
@@ -9,11 +9,9 @@ import {
import { OrderStatusFilter, PaymentChargeStatusEnum } from "@dashboard/graphql";
import { orders } from "@dashboard/orders/fixtures";
import { OrderListUrlSortField } from "@dashboard/orders/urls";
-import Decorator from "@dashboard/storybook/Decorator";
-import { PaginatorContextDecorator } from "@dashboard/storybook/PaginatorContextDecorator";
-import { storiesOf } from "@storybook/react";
import React from "react";
+import { PaginatorContextDecorator } from "../../../../.storybook/decorators";
import { OrderFilterGiftCard } from "./filters";
import OrderListPage, { OrderListPageProps } from "./OrderListPage";
@@ -86,20 +84,26 @@ const props: OrderListPageProps = {
onTabUpdate: () => undefined,
};
-storiesOf("Orders / Order list", module)
- .addDecorator(Decorator)
- .addDecorator(PaginatorContextDecorator)
- .add("default", () => )
- .add("loading", () => (
-
- ))
- .add("when no data", () => )
- .add("no limits", () => )
- .add("limits reached", () => (
-
- ));
+export default {
+ title: "Orders / Order list",
+ decorators: [PaginatorContextDecorator],
+};
+
+export const Default = () => ;
+
+export const Loading = () => (
+
+);
+
+export const WhenNoData = () => ;
+
+export const NoLimits = () => ;
+
+export const LimitsReached = () => (
+
+);
diff --git a/src/orders/components/OrderRefundPage/OrderRefundPage.stories.tsx b/src/orders/components/OrderRefundPage/OrderRefundPage.stories.tsx
index 09671a2e7..48a0d165c 100644
--- a/src/orders/components/OrderRefundPage/OrderRefundPage.stories.tsx
+++ b/src/orders/components/OrderRefundPage/OrderRefundPage.stories.tsx
@@ -1,6 +1,4 @@
import placeholderImage from "@assets/images/placeholder60x60.png";
-import Decorator from "@dashboard/storybook/Decorator";
-import { storiesOf } from "@storybook/react";
import React from "react";
import { orderToRefund } from "./fixtures";
@@ -14,14 +12,18 @@ const props: OrderRefundPageProps = {
order: orderToRefund(placeholderImage),
};
-storiesOf("Orders / Refund order", module)
- .addDecorator(Decorator)
- .add("products", () => (
-
- ))
- .add("miscellaneous", () => (
-
- ))
- .add("loading", () => (
-
- ));
+export default {
+ title: "Orders / Refund order",
+};
+
+export const Products = () => (
+
+);
+
+export const Miscellaneous = () => (
+
+);
+
+export const Loading = () => (
+
+);
diff --git a/src/orders/components/OrderSendRefundPage/OrderSendRefund.stories.tsx b/src/orders/components/OrderSendRefundPage/OrderSendRefund.stories.tsx
index d36b7b789..2b4d2d8e9 100644
--- a/src/orders/components/OrderSendRefundPage/OrderSendRefund.stories.tsx
+++ b/src/orders/components/OrderSendRefundPage/OrderSendRefund.stories.tsx
@@ -1,5 +1,3 @@
-import Decorator from "@dashboard/storybook/Decorator";
-import { storiesOf } from "@storybook/react";
import React from "react";
import { order as orderFixture, prepareMoney } from "../../fixtures";
@@ -13,19 +11,23 @@ const props: OrderSendRefundPageProps = {
addManualRefundError: undefined,
};
-storiesOf("Views / Orders / Send refund order", module)
- .addDecorator(Decorator)
- .add("settled", () => )
- .add("unsettled", () => (
-
- ))
- .add("loading", () => (
-
- ));
+export default {
+ title: "Orders / Send refund order",
+};
+
+export const Settled = () => ;
+
+export const Unsettled = () => (
+
+);
+
+export const Loading = () => (
+
+);
diff --git a/src/orders/components/OrderSettingsPage/OrderSettingsPage.stories.tsx b/src/orders/components/OrderSettingsPage/OrderSettingsPage.stories.tsx
index ad69f6c7a..fe402d919 100644
--- a/src/orders/components/OrderSettingsPage/OrderSettingsPage.stories.tsx
+++ b/src/orders/components/OrderSettingsPage/OrderSettingsPage.stories.tsx
@@ -2,8 +2,6 @@ import {
orderSettings as orderSettingsFixture,
shopOrderSettings as shopOrderSettingsFixture,
} from "@dashboard/orders/fixtures";
-import Decorator from "@dashboard/storybook/Decorator";
-import { storiesOf } from "@storybook/react";
import React from "react";
import OrderSettings, { OrderSettingsPageProps } from "./OrderSettingsPage";
@@ -16,14 +14,17 @@ const props: OrderSettingsPageProps = {
saveButtonBarState: "default",
};
-storiesOf(" Orders / Order settings", module)
- .addDecorator(Decorator)
- .add("default", () => )
- .add("loading", () => (
-
- ));
+export default {
+ title: " Orders / Order settings",
+};
+
+export const Default = () => ;
+
+export const Loading = () => (
+
+);
diff --git a/src/orders/components/OrderTransaction.stories.tsx b/src/orders/components/OrderTransaction.stories.tsx
index 6314a5e1f..386f5730a 100644
--- a/src/orders/components/OrderTransaction.stories.tsx
+++ b/src/orders/components/OrderTransaction.stories.tsx
@@ -5,8 +5,6 @@ import {
import OrderTransaction, {
OrderTransactionProps,
} from "@dashboard/orders/components/OrderTransaction";
-import Decorator from "@dashboard/storybook/Decorator";
-import { storiesOf } from "@storybook/react";
import React from "react";
import { prepareMoney } from "../fixtures";
@@ -150,7 +148,10 @@ const longAmountProps: OrderTransactionProps = {
},
};
-storiesOf("Orders / OrderTransaction", module)
- .addDecorator(Decorator)
- .add("default", () => )
- .add("long amounts", () => );
+export default {
+ title: "Orders / OrderTransaction",
+};
+
+export const Default = () => ;
+
+export const LongAmounts = () => ;
diff --git a/src/orders/index.tsx b/src/orders/index.tsx
index 2d375e606..633eb6f55 100644
--- a/src/orders/index.tsx
+++ b/src/orders/index.tsx
@@ -36,7 +36,7 @@ import OrderSendRefundComponent from "./views/OrderSendRefund";
import OrderSettings from "./views/OrderSettings";
const OrderList: React.FC> = ({ location }) => {
- const qs = parseQs(location.search.substr(1));
+ const qs = parseQs(location.search.substr(1)) as any;
const params: OrderListUrlQueryParams = asSortParams(
qs,
OrderListUrlSortField,
@@ -46,7 +46,7 @@ const OrderList: React.FC> = ({ location }) => {
return ;
};
const OrderDraftList: React.FC> = ({ location }) => {
- const qs = parseQs(location.search.substr(1));
+ const qs = parseQs(location.search.substr(1)) as any;
const params: OrderDraftListUrlQueryParams = asSortParams(
qs,
OrderDraftListUrlSortField,
@@ -61,7 +61,7 @@ const OrderDetails: React.FC> = ({
location,
match,
}) => {
- const qs = parseQs(location.search.substr(1));
+ const qs = parseQs(location.search.substr(1)) as any;
const params: OrderUrlQueryParams = qs;
const id = match.params.id;
@@ -72,7 +72,7 @@ const OrderFulfill: React.FC> = ({
location,
match,
}) => {
- const qs = parseQs(location.search.substr(1));
+ const qs = parseQs(location.search.substr(1)) as any;
const params: OrderFulfillUrlQueryParams = qs;
return (
= {
saveButtonBarState: "default",
};
-storiesOf("Page types / Create page type", module)
- .addDecorator(Decorator)
- .add("default", () => )
- .add("loading", () => )
- .add("form errors", () => (
- ({
- __typename: "PageError",
- ...err,
- }))}
- />
- ));
+export default {
+ title: "Page types / Create page type",
+};
+
+export const Default = () => ;
+
+export const Loading = () => ;
+
+export const FormErrors = () => (
+ ({
+ __typename: "PageError",
+ ...err,
+ }))}
+ />
+);
diff --git a/src/pageTypes/components/PageTypeDetailsPage/PageTypeDetailsPage.stories.tsx b/src/pageTypes/components/PageTypeDetailsPage/PageTypeDetailsPage.stories.tsx
index d71b591e2..23c2997ff 100644
--- a/src/pageTypes/components/PageTypeDetailsPage/PageTypeDetailsPage.stories.tsx
+++ b/src/pageTypes/components/PageTypeDetailsPage/PageTypeDetailsPage.stories.tsx
@@ -1,7 +1,5 @@
import { listActionsProps } from "@dashboard/fixtures";
import { PageErrorCode } from "@dashboard/graphql";
-import Decorator from "@dashboard/storybook/Decorator";
-import { storiesOf } from "@storybook/react";
import React from "react";
import { pageType } from "../../fixtures";
@@ -23,38 +21,33 @@ const props: Omit = {
saveButtonBarState: "default",
};
-storiesOf("Page types / Page type details", module)
- .addDecorator(Decorator)
- .add("default", () => )
- .add("loading", () => (
-
- ))
- .add("no attributes", () => (
-
- ))
- .add("form errors", () => (
- ({
- __typename: "PageError",
- ...err,
- }))}
- />
- ));
+export default {
+ title: "Page types / Page type details",
+};
+
+export const Default = () => ;
+
+export const Loading = () => (
+
+);
+
+export const FormErrors = () => (
+ ({
+ __typename: "PageError",
+ ...err,
+ }))}
+ />
+);
diff --git a/src/pageTypes/components/PageTypeListPage/PageTypeListPage.stories.tsx b/src/pageTypes/components/PageTypeListPage/PageTypeListPage.stories.tsx
index 364a7d0ab..dd39f674b 100644
--- a/src/pageTypes/components/PageTypeListPage/PageTypeListPage.stories.tsx
+++ b/src/pageTypes/components/PageTypeListPage/PageTypeListPage.stories.tsx
@@ -6,11 +6,9 @@ import {
tabPageProps,
} from "@dashboard/fixtures";
import { PageTypeListUrlSortField } from "@dashboard/pageTypes/urls";
-import Decorator from "@dashboard/storybook/Decorator";
-import { PaginatorContextDecorator } from "@dashboard/storybook/PaginatorContextDecorator";
-import { storiesOf } from "@storybook/react";
import React from "react";
+import { PaginatorContextDecorator } from "../../../../.storybook/decorators";
import { pageTypes } from "../../fixtures";
import PageTypeListPage, { PageTypeListPageProps } from "./PageTypeListPage";
@@ -27,11 +25,15 @@ const props: PageTypeListPageProps = {
pageTypes,
};
-storiesOf("Page types / Page types list", module)
- .addDecorator(Decorator)
- .addDecorator(PaginatorContextDecorator)
- .add("default", () => )
- .add("loading", () => (
-
- ))
- .add("no data", () => );
+export default {
+ title: "Page types / Page types list",
+ decorators: [PaginatorContextDecorator],
+};
+
+export const Default = () => ;
+
+export const Loading = () => (
+
+);
+
+export const NoData = () => ;
diff --git a/src/pageTypes/index.tsx b/src/pageTypes/index.tsx
index 45bd6b773..1facb576d 100644
--- a/src/pageTypes/index.tsx
+++ b/src/pageTypes/index.tsx
@@ -19,7 +19,7 @@ import PageTypeDetailsComponent from "./views/PageTypeDetails";
import PageTypeListComponent from "./views/PageTypeList";
const PageTypeList: React.FC> = ({ location }) => {
- const qs = parseQs(location.search.substr(1));
+ const qs = parseQs(location.search.substr(1)) as any;
const params: PageTypeListUrlQueryParams = asSortParams(
qs,
PageTypeListUrlSortField,
@@ -30,9 +30,9 @@ const PageTypeList: React.FC> = ({ location }) => {
interface PageTypeDetailsRouteParams {
id: string;
}
-const PageTypeDetails: React.FC> = ({ match }) => {
+const PageTypeDetails: React.FC<
+ RouteComponentProps
+> = ({ match }) => {
const qs = parseQs(location.search.substr(1));
const params: PageTypeUrlQueryParams = qs;
diff --git a/src/pages/components/PageDetailsPage/PageDetailsPage.stories.tsx b/src/pages/components/PageDetailsPage/PageDetailsPage.stories.tsx
index db5d6c167..a1b6a3c20 100644
--- a/src/pages/components/PageDetailsPage/PageDetailsPage.stories.tsx
+++ b/src/pages/components/PageDetailsPage/PageDetailsPage.stories.tsx
@@ -2,8 +2,6 @@ import { fetchMoreProps } from "@dashboard/fixtures";
import { PageErrorCode } from "@dashboard/graphql";
import { PageData } from "@dashboard/pages/components/PageDetailsPage/form";
import { page } from "@dashboard/pages/fixtures";
-import Decorator from "@dashboard/storybook/Decorator";
-import { storiesOf } from "@storybook/react";
import React from "react";
import PageDetailsPage, { PageDetailsPageProps } from "./PageDetailsPage";
@@ -25,16 +23,21 @@ const props: PageDetailsPageProps = {
fetchMoreAttributeValues: fetchMoreProps,
};
-storiesOf("Pages / Page details", module)
- .addDecorator(Decorator)
- .add("default", () => )
- .add("loading", () => (
-
- ))
- .add("form errors", () => (
- ;
+
+export const Loading = () => (
+
+);
+
+export const FormErrors = () => (
+ ).map(field => ({
- __typename: "PageError",
- attributes: [],
- code: PageErrorCode.INVALID,
- field,
- message: "Page field error",
- }))}
- />
- ));
+ ] as Array
+ ).map(field => ({
+ __typename: "PageError",
+ attributes: [],
+ code: PageErrorCode.INVALID,
+ field,
+ message: "Page field error",
+ }))}
+ />
+);
diff --git a/src/pages/components/PageListPage/PageListPage.stories.tsx b/src/pages/components/PageListPage/PageListPage.stories.tsx
index efdf41f7f..c1235c689 100644
--- a/src/pages/components/PageListPage/PageListPage.stories.tsx
+++ b/src/pages/components/PageListPage/PageListPage.stories.tsx
@@ -5,11 +5,9 @@ import {
} from "@dashboard/fixtures";
import { pageList } from "@dashboard/pages/fixtures";
import { PageListUrlSortField } from "@dashboard/pages/urls";
-import Decorator from "@dashboard/storybook/Decorator";
-import { PaginatorContextDecorator } from "@dashboard/storybook/PaginatorContextDecorator";
-import { storiesOf } from "@storybook/react";
import React from "react";
+import { PaginatorContextDecorator } from "../../../../.storybook/decorators";
import PageListPage, { PageListPageProps } from "./PageListPage";
const props: PageListPageProps = {
@@ -30,11 +28,15 @@ const props: PageListPageProps = {
},
};
-storiesOf("Pages / Page list", module)
- .addDecorator(Decorator)
- .addDecorator(PaginatorContextDecorator)
- .add("default", () => )
- .add("loading", () => (
-
- ))
- .add("no data", () => );
+export default {
+ title: "Pages / Page list",
+ decorators: [PaginatorContextDecorator],
+};
+
+export const Default = () => ;
+
+export const Loading = () => (
+
+);
+
+export const NoData = () => ;
diff --git a/src/pages/index.tsx b/src/pages/index.tsx
index c95859747..a8d5ea103 100644
--- a/src/pages/index.tsx
+++ b/src/pages/index.tsx
@@ -20,7 +20,7 @@ import PageDetailsComponent from "./views/PageDetails";
import PageListComponent from "./views/PageList";
const PageList: React.FC> = ({ location }) => {
- const qs = parseQs(location.search.substr(1));
+ const qs = parseQs(location.search.substr(1)) as any;
const params: PageListUrlQueryParams = asSortParams(
qs,
PageListUrlSortField,
diff --git a/src/permissionGroups/components/PermissionGroupCreatePage/PermissionGroupCreatePage.stories.tsx b/src/permissionGroups/components/PermissionGroupCreatePage/PermissionGroupCreatePage.stories.tsx
index 41b9580a7..442b60ede 100644
--- a/src/permissionGroups/components/PermissionGroupCreatePage/PermissionGroupCreatePage.stories.tsx
+++ b/src/permissionGroups/components/PermissionGroupCreatePage/PermissionGroupCreatePage.stories.tsx
@@ -1,6 +1,4 @@
import { permissions } from "@dashboard/fixtures";
-import Decorator from "@dashboard/storybook/Decorator";
-import { storiesOf } from "@storybook/react";
import React from "react";
import { errorsOfPermissionGroupCreate } from "../../fixtures";
@@ -16,15 +14,19 @@ const props: PermissionGroupCreatePageProps = {
saveButtonBarState: undefined,
};
-storiesOf("Permission Groups / Permission Group Create", module)
- .addDecorator(Decorator)
- .add("default", () => )
- .add("loading", () => (
-
- ))
- .add("errors", () => (
-
- ));
+export default {
+ title: "Permission Groups / Permission Group Create",
+};
+
+export const Default = () => ;
+
+export const Loading = () => (
+
+);
+
+export const Errors = () => (
+
+);
diff --git a/src/permissionGroups/components/PermissionGroupDetailsPage/PermissionGroupDetailsPage.stories.tsx b/src/permissionGroups/components/PermissionGroupDetailsPage/PermissionGroupDetailsPage.stories.tsx
index 3fef3f2f9..2c9c78bca 100644
--- a/src/permissionGroups/components/PermissionGroupDetailsPage/PermissionGroupDetailsPage.stories.tsx
+++ b/src/permissionGroups/components/PermissionGroupDetailsPage/PermissionGroupDetailsPage.stories.tsx
@@ -1,6 +1,4 @@
import { permissions } from "@dashboard/fixtures";
-import Decorator from "@dashboard/storybook/Decorator";
-import { storiesOf } from "@storybook/react";
import React from "react";
import { emptyPermissionGroup, permissionGroup, users } from "../../fixtures";
@@ -28,21 +26,25 @@ const props: PermissionGroupDetailsPageProps = {
toolbar: null,
};
-storiesOf("Permission Groups / Permission Group Details", module)
- .addDecorator(Decorator)
- .add("default", () => )
- .add("no members", () => (
-
- ))
- .add("loading", () => (
-
- ));
+export default {
+ title: "Permission Groups / Permission Group Details",
+};
+
+export const Default = () => ;
+
+export const NoMembers = () => (
+
+);
+
+export const Loading = () => (
+
+);
diff --git a/src/permissionGroups/components/PermissionGroupListPage/PermissionGroupListPage.stories.tsx b/src/permissionGroups/components/PermissionGroupListPage/PermissionGroupListPage.stories.tsx
index 402e5e650..2ec527154 100644
--- a/src/permissionGroups/components/PermissionGroupListPage/PermissionGroupListPage.stories.tsx
+++ b/src/permissionGroups/components/PermissionGroupListPage/PermissionGroupListPage.stories.tsx
@@ -3,11 +3,9 @@ import {
pageListProps,
sortPageProps,
} from "@dashboard/fixtures";
-import Decorator from "@dashboard/storybook/Decorator";
-import { PaginatorContextDecorator } from "@dashboard/storybook/PaginatorContextDecorator";
-import { storiesOf } from "@storybook/react";
import React from "react";
+import { PaginatorContextDecorator } from "../../../../.storybook/decorators";
import { permissionGroups } from "../../fixtures";
import { PermissionGroupListUrlSortField } from "../../urls";
import PermissionGroupListPage, {
@@ -27,17 +25,17 @@ const props: PermissionGroupListPageProps = {
},
};
-storiesOf("Permission Groups / Permission Group List", module)
- .addDecorator(Decorator)
- .addDecorator(PaginatorContextDecorator)
- .add("default", () => )
- .add("loading", () => (
-
- ))
- .add("no data", () => (
-
- ));
+export default {
+ title: "Permission Groups / Permission Group List",
+ decorators: [PaginatorContextDecorator],
+};
+
+export const Default = () => ;
+
+export const Loading = () => (
+
+);
diff --git a/src/permissionGroups/fixtures.ts b/src/permissionGroups/fixtures.ts
index e91754e0c..b948fddf1 100644
--- a/src/permissionGroups/fixtures.ts
+++ b/src/permissionGroups/fixtures.ts
@@ -1,4 +1,4 @@
-import * as avatarImg from "@assets/images/avatars/avatar1.png";
+import avatarImg from "@assets/images/avatars/avatar.png";
import {
PermissionEnum,
PermissionGroupDetailsFragment,
@@ -90,20 +90,21 @@ export const permissionGroups: PermissionGroupFragment[] = [
},
].map(edge => edge.node);
-export const userPermissionGroups: StaffMemberDetailsFragment["permissionGroups"] = [
- {
- id: "R3JvdXA6MQ==",
- name: "Full Access",
- userCanManage: false,
- __typename: "Group",
- },
- {
- id: "R3JvdXA6Mg==",
- name: "Customer Support",
- userCanManage: true,
- __typename: "Group",
- },
-];
+export const userPermissionGroups: StaffMemberDetailsFragment["permissionGroups"] =
+ [
+ {
+ id: "R3JvdXA6MQ==",
+ name: "Full Access",
+ userCanManage: false,
+ __typename: "Group",
+ },
+ {
+ id: "R3JvdXA6Mg==",
+ name: "Customer Support",
+ userCanManage: true,
+ __typename: "Group",
+ },
+ ];
export const emptyPermissionGroup: PermissionGroupDetailsFragment = {
id: "R3JvdXA6Mw==",
diff --git a/src/permissionGroups/index.tsx b/src/permissionGroups/index.tsx
index 5c2ad78aa..56dfcd0cd 100644
--- a/src/permissionGroups/index.tsx
+++ b/src/permissionGroups/index.tsx
@@ -22,7 +22,7 @@ import PermissionGroupListComponent from "./views/PermissionGroupList";
const permissionGroupList: React.FC> = ({
location,
}) => {
- const qs = parseQs(location.search.substr(1));
+ const qs = parseQs(location.search.substr(1)) as any;
const params: PermissionGroupListUrlQueryParams = asSortParams(
qs,
PermissionGroupListUrlSortField,
@@ -34,10 +34,10 @@ const permissionGroupList: React.FC> = ({
interface PermissionGroupDetailsRouteProps {
id: string;
}
-const PermissionGroupDetails: React.FC> = ({ match }) => {
- const qs = parseQs(location.search.substr(1));
+const PermissionGroupDetails: React.FC<
+ RouteComponentProps
+> = ({ match }) => {
+ const qs = parseQs(location.search.substr(1)) as any;
const params: PermissionGroupDetailsUrlQueryParams = asSortParams(
qs,
MembersListUrlSortField,
diff --git a/src/plugins/components/PluginsDetailsPage/PluginDetailsPage.stories.tsx b/src/plugins/components/PluginsDetailsPage/PluginDetailsPage.stories.tsx
index e5839b5e3..f81aa0069 100644
--- a/src/plugins/components/PluginsDetailsPage/PluginDetailsPage.stories.tsx
+++ b/src/plugins/components/PluginsDetailsPage/PluginDetailsPage.stories.tsx
@@ -1,6 +1,4 @@
import { PluginErrorCode } from "@dashboard/graphql";
-import Decorator from "@dashboard/storybook/Decorator";
-import { storiesOf } from "@storybook/react";
import React from "react";
import { plugin } from "../../fixtures";
@@ -20,38 +18,45 @@ const props: PluginsDetailsPageProps = {
setSelectedChannelId: () => undefined,
};
-storiesOf("Plugins / Plugin details", module)
- .addDecorator(Decorator)
- .add("default", () => )
- .add("loading", () => (
-
- ))
- .add("form errors", () => (
- ;
+
+export const Loading = () => (
+
+);
+
+export const FormErrors = () => (
+ ).map(field => ({
- __typename: "PluginError" as "PluginError",
- code: PluginErrorCode.INVALID,
- field,
- message: "Plugin invalid",
- })),
- {
- __typename: "PluginError" as "PluginError",
- code: PluginErrorCode.PLUGIN_MISCONFIGURED,
- field: null,
- message: "Plugin missconfigured",
- },
- ]}
- />
- ))
- .add("not configurable", () => (
-
- ));
+ >
+ ).map(field => ({
+ __typename: "PluginError" as "PluginError",
+ code: PluginErrorCode.INVALID,
+ field,
+ message: "Plugin invalid",
+ })),
+ {
+ __typename: "PluginError" as "PluginError",
+ code: PluginErrorCode.PLUGIN_MISCONFIGURED,
+ field: null,
+ message: "Plugin missconfigured",
+ },
+ ]}
+ />
+);
+
+export const NotConfigurable = () => (
+
+);
diff --git a/src/plugins/components/PluginsListPage/PluginsListPage.stories.tsx b/src/plugins/components/PluginsListPage/PluginsListPage.stories.tsx
index 60a83be24..d99a8d402 100644
--- a/src/plugins/components/PluginsListPage/PluginsListPage.stories.tsx
+++ b/src/plugins/components/PluginsListPage/PluginsListPage.stories.tsx
@@ -6,11 +6,9 @@ import {
import { PluginConfigurationType } from "@dashboard/graphql";
import { pluginList } from "@dashboard/plugins/fixtures";
import { PluginListUrlSortField } from "@dashboard/plugins/urls";
-import Decorator from "@dashboard/storybook/Decorator";
-import { PaginatorContextDecorator } from "@dashboard/storybook/PaginatorContextDecorator";
-import { storiesOf } from "@storybook/react";
import React from "react";
+import { PaginatorContextDecorator } from "../../../../.storybook/decorators";
import PluginsListPage, { PluginsListPageProps } from "./PluginsListPage";
const props: PluginsListPageProps = {
@@ -49,11 +47,9 @@ const props: PluginsListPageProps = {
},
};
-storiesOf("Plugins / Plugin list", module)
- .addDecorator(Decorator)
- .addDecorator(PaginatorContextDecorator)
- .add("default", () => )
- .add("loading", () => (
-
- ))
- .add("no data", () => );
+export default {
+ title: "Plugins / Plugin list",
+ decorators: [PaginatorContextDecorator],
+};
+
+export const Default = () => ;
diff --git a/src/plugins/index.tsx b/src/plugins/index.tsx
index 13596b63a..f01e049e3 100644
--- a/src/plugins/index.tsx
+++ b/src/plugins/index.tsx
@@ -17,7 +17,7 @@ import PluginsListComponent from "./views/PluginList";
import PluginsDetailsComponent from "./views/PluginsDetails";
const PluginList: React.FC> = ({ location }) => {
- const qs = parseQs(location.search.substr(1));
+ const qs = parseQs(location.search.substr(1)) as any;
const params: PluginListUrlQueryParams = asSortParams(
qs,
PluginListUrlSortField,
diff --git a/src/productTypes/components/ProductTypeCreatePage/ProductTypeCreatePage.stories.tsx b/src/productTypes/components/ProductTypeCreatePage/ProductTypeCreatePage.stories.tsx
index d9ab9c261..22161770a 100644
--- a/src/productTypes/components/ProductTypeCreatePage/ProductTypeCreatePage.stories.tsx
+++ b/src/productTypes/components/ProductTypeCreatePage/ProductTypeCreatePage.stories.tsx
@@ -1,13 +1,9 @@
import { ProductTypeKindEnum, WeightUnitsEnum } from "@dashboard/graphql";
-import Decorator from "@dashboard/storybook/Decorator";
-import { formError } from "@dashboard/storybook/formError";
import { taxClasses } from "@dashboard/taxes/fixtures";
-import { storiesOf } from "@storybook/react";
import React from "react";
import ProductTypeCreatePage, {
ProductTypeCreatePageProps,
- ProductTypeForm,
} from "./ProductTypeCreatePage";
const props: Omit = {
@@ -23,15 +19,12 @@ const props: Omit = {
onChangeKind: () => undefined,
};
-storiesOf("Product types / Create product type", module)
- .addDecorator(Decorator)
- .add("default", () => )
- .add("loading", () => (
-
- ))
- .add("form errors", () => (
- ).map(formError)}
- />
- ));
+export default {
+ title: "Product types / Create product type",
+};
+
+export const Default = () => ;
+
+export const Loading = () => (
+
+);
diff --git a/src/productTypes/components/ProductTypeDetailsPage/ProductTypeDetailsPage.stories.tsx b/src/productTypes/components/ProductTypeDetailsPage/ProductTypeDetailsPage.stories.tsx
index ce0ae663c..32cd9875a 100644
--- a/src/productTypes/components/ProductTypeDetailsPage/ProductTypeDetailsPage.stories.tsx
+++ b/src/productTypes/components/ProductTypeDetailsPage/ProductTypeDetailsPage.stories.tsx
@@ -1,11 +1,9 @@
import { listActionsProps } from "@dashboard/fixtures";
import { WeightUnitsEnum } from "@dashboard/graphql";
-import Decorator from "@dashboard/storybook/Decorator";
-import { formError } from "@dashboard/storybook/formError";
import { taxClasses } from "@dashboard/taxes/fixtures";
-import { storiesOf } from "@storybook/react";
import React from "react";
+import { formError } from "../../../../.storybook/helpers";
import { productType } from "../../fixtures";
import ProductTypeDetailsPage, {
ProductTypeDetailsPageProps,
@@ -33,29 +31,34 @@ const props: Omit = {
selectedVariantAttributes: [],
};
-storiesOf("Product types / Product type details", module)
- .addDecorator(Decorator)
- .add("default", () => )
- .add("loading", () => (
-
- ))
- .add("no attributes", () => (
-
- ))
- .add("form errors", () => (
- ).map(formError)}
- />
- ));
+export default {
+ title: "Product types / Product type details",
+};
+
+export const Default = () => ;
+
+export const Loading = () => (
+
+);
+
+export const NoAttributes = () => (
+
+);
+
+export const FormErrors = () => (
+ ).map(formError)}
+ />
+);
diff --git a/src/productTypes/components/ProductTypeListPage/ProductTypeListPage.stories.tsx b/src/productTypes/components/ProductTypeListPage/ProductTypeListPage.stories.tsx
index 0e1052585..ab0af40b0 100644
--- a/src/productTypes/components/ProductTypeListPage/ProductTypeListPage.stories.tsx
+++ b/src/productTypes/components/ProductTypeListPage/ProductTypeListPage.stories.tsx
@@ -8,11 +8,9 @@ import {
} from "@dashboard/fixtures";
import { ProductTypeConfigurable, ProductTypeEnum } from "@dashboard/graphql";
import { ProductTypeListUrlSortField } from "@dashboard/productTypes/urls";
-import Decorator from "@dashboard/storybook/Decorator";
-import { PaginatorContextDecorator } from "@dashboard/storybook/PaginatorContextDecorator";
-import { storiesOf } from "@storybook/react";
import React from "react";
+import { PaginatorContextDecorator } from "../../../../.storybook/decorators";
import { productTypes } from "../../fixtures";
import ProductTypeListPage, {
ProductTypeListPageProps,
@@ -42,11 +40,17 @@ const props: ProductTypeListPageProps = {
productTypes,
};
-storiesOf("Product types / Product types list", module)
- .addDecorator(Decorator)
- .addDecorator(PaginatorContextDecorator)
- .add("default", () => )
- .add("loading", () => (
-
- ))
- .add("no data", () => );
+export default {
+ title: "Product types / Product types list",
+ decorators: [PaginatorContextDecorator],
+};
+
+export const Default = () => ;
+
+export const Loading = () => (
+
+);
+
+export const NoData = () => (
+
+);
diff --git a/src/productTypes/index.tsx b/src/productTypes/index.tsx
index 2dd9de665..9c08d93c9 100644
--- a/src/productTypes/index.tsx
+++ b/src/productTypes/index.tsx
@@ -20,7 +20,7 @@ import ProductTypeListComponent from "./views/ProductTypeList";
import ProductTypeUpdateComponent from "./views/ProductTypeUpdate";
const ProductTypeList: React.FC> = ({ location }) => {
- const qs = parseQs(location.search.substr(1));
+ const qs = parseQs(location.search.substr(1)) as any;
const params: ProductTypeListUrlQueryParams = asSortParams(
qs,
ProductTypeListUrlSortField,
@@ -31,9 +31,9 @@ const ProductTypeList: React.FC> = ({ location }) => {
interface ProductTypeCreateRouteParams {
id: string;
}
-const ProductTypeCreate: React.FC> = ({ location }) => {
+const ProductTypeCreate: React.FC<
+ RouteComponentProps
+> = ({ location }) => {
const qs = parseQs(location.search.substr(1));
const params: ProductTypeAddUrlQueryParams = qs;
@@ -43,9 +43,9 @@ const ProductTypeCreate: React.FC> = ({ match }) => {
+const ProductTypeUpdate: React.FC<
+ RouteComponentProps
+> = ({ match }) => {
const qs = parseQs(location.search.substr(1));
const params: ProductTypeUrlQueryParams = qs;
diff --git a/src/products/components/ProductCreatePage/ProductCreatePage.stories.tsx b/src/products/components/ProductCreatePage/ProductCreatePage.stories.tsx
index 04258827e..a8688ed2d 100644
--- a/src/products/components/ProductCreatePage/ProductCreatePage.stories.tsx
+++ b/src/products/components/ProductCreatePage/ProductCreatePage.stories.tsx
@@ -1,15 +1,18 @@
import { channelsList } from "@dashboard/channels/fixtures";
import { createChannelsData } from "@dashboard/channels/utils";
import { fetchMoreProps } from "@dashboard/fixtures";
-import { ProductErrorCode } from "@dashboard/graphql";
+import {
+ ProductChannelListingErrorFragment,
+ ProductErrorCode,
+ ProductErrorWithAttributesFragment,
+} from "@dashboard/graphql";
import {
productTypes,
productTypeSearch,
} from "@dashboard/productTypes/fixtures";
-import Decorator from "@dashboard/storybook/Decorator";
import { taxClasses } from "@dashboard/taxes/fixtures";
import { warehouseList } from "@dashboard/warehouses/fixtures";
-import { storiesOf } from "@storybook/react";
+import { ConfirmButtonTransitionState } from "@saleor/macaw-ui";
import React from "react";
import { product as productFixture } from "../../fixtures";
@@ -19,132 +22,68 @@ import ProductCreatePage from "./ProductCreatePage";
const product = productFixture("");
const channels = createChannelsData(channelsList);
-storiesOf("Products / Create product", module)
- .addDecorator(Decorator)
- .add("default", () => (
- undefined}
- fetchCollections={() => undefined}
- fetchProductTypes={() => undefined}
- fetchAttributeValues={() => undefined}
- fetchMoreCategories={fetchMoreProps}
- fetchMoreCollections={fetchMoreProps}
- fetchMoreProductTypes={fetchMoreProps}
- fetchMoreAttributeValues={fetchMoreProps}
- productTypes={productTypes}
- categories={[product.category]}
- onChannelsChange={() => undefined}
- onSubmit={() => undefined}
- openChannelsModal={() => undefined}
- saveButtonBarState="default"
- warehouses={warehouseList}
- onWarehouseConfigure={() => undefined}
- taxClasses={taxClasses}
- fetchMoreTaxClasses={undefined}
- weightUnit="kg"
- referencePages={[]}
- referenceProducts={[]}
- attributeValues={[]}
- onAssignReferencesClick={() => undefined}
- onCloseDialog={() => undefined}
- onSelectProductType={() => undefined}
- onAttributeSelectBlur={() => undefined}
- />
- ))
- .add("When loading", () => (
- undefined}
- fetchCollections={() => undefined}
- fetchProductTypes={() => undefined}
- fetchAttributeValues={() => undefined}
- fetchMoreCategories={fetchMoreProps}
- fetchMoreCollections={fetchMoreProps}
- fetchMoreProductTypes={fetchMoreProps}
- fetchMoreAttributeValues={fetchMoreProps}
- productTypes={productTypes}
- categories={[product.category]}
- onChannelsChange={() => undefined}
- onSubmit={() => undefined}
- openChannelsModal={() => undefined}
- saveButtonBarState="default"
- warehouses={undefined}
- onWarehouseConfigure={() => undefined}
- taxClasses={taxClasses}
- fetchMoreTaxClasses={undefined}
- weightUnit="kg"
- referencePages={[]}
- referenceProducts={[]}
- attributeValues={[]}
- onAssignReferencesClick={() => undefined}
- onCloseDialog={() => undefined}
- onSelectProductType={() => undefined}
- onAttributeSelectBlur={() => undefined}
- />
- ))
- .add("form errors", () => (
- ).map(field => ({
- __typename: "ProductError",
- attributes:
- field === "attributes"
- ? [productTypeSearch.productAttributes[0].id]
- : null,
- code: ProductErrorCode.INVALID,
- field,
- message: "Attributes invalid",
- }))}
- header="Add product"
- collections={product.collections}
- fetchCategories={() => undefined}
- fetchCollections={() => undefined}
- fetchProductTypes={() => undefined}
- fetchAttributeValues={() => undefined}
- fetchMoreCategories={fetchMoreProps}
- fetchMoreCollections={fetchMoreProps}
- fetchMoreProductTypes={fetchMoreProps}
- selectedProductType={productTypeSearch}
- fetchMoreAttributeValues={fetchMoreProps}
- productTypes={productTypes}
- categories={[product.category]}
- onChannelsChange={() => undefined}
- onSubmit={() => undefined}
- openChannelsModal={() => undefined}
- saveButtonBarState="default"
- warehouses={warehouseList}
- onWarehouseConfigure={() => undefined}
- taxClasses={taxClasses}
- fetchMoreTaxClasses={undefined}
- weightUnit="kg"
- referencePages={[]}
- referenceProducts={[]}
- attributeValues={[]}
- onAssignReferencesClick={() => undefined}
- onCloseDialog={() => undefined}
- onSelectProductType={() => undefined}
- onAttributeSelectBlur={() => undefined}
- />
- ));
+export default {
+ title: "Products / Create product",
+};
+
+const props = {
+ channelsErrors: [] as ProductChannelListingErrorFragment[],
+ currentChannels: channels,
+ allChannelsCount: 5,
+ loading: false,
+ errors: [] as ProductErrorWithAttributesFragment[],
+ header: "Add product",
+ collections: product.collections,
+ fetchCategories: () => undefined,
+ fetchCollections: () => undefined,
+ fetchProductTypes: () => undefined,
+ fetchAttributeValues: () => undefined,
+ fetchMoreCategories: fetchMoreProps,
+ fetchMoreCollections: fetchMoreProps,
+ fetchMoreProductTypes: fetchMoreProps,
+ fetchMoreAttributeValues: fetchMoreProps,
+ productTypes,
+ categories: [product.category],
+ onChannelsChange: () => undefined,
+ onSubmit: () => undefined,
+ openChannelsModal: () => undefined,
+ saveButtonBarState: "default" as ConfirmButtonTransitionState,
+ warehouses: warehouseList,
+ onWarehouseConfigure: () => undefined,
+ taxClasses,
+ fetchMoreTaxClasses: undefined,
+ weightUnit: "kg",
+ referencePages: [],
+ referenceProducts: [],
+ attributeValues: [],
+ onAssignReferencesClick: () => undefined,
+ onCloseDialog: () => undefined,
+ onSelectProductType: () => undefined,
+ onAttributeSelectBlur: () => undefined,
+};
+
+export const Default = () => ;
+
+export const WhenLoading = () => (
+
+);
+
+export const FormErrors = () => (
+
+ ).map(field => ({
+ __typename: "ProductError",
+ attributes:
+ field === "attributes"
+ ? [productTypeSearch.productAttributes[0].id]
+ : null,
+ code: ProductErrorCode.INVALID,
+ field,
+ message: "Attributes invalid",
+ }))}
+ />
+);
diff --git a/src/products/components/ProductListPage/ProductListPage.stories.tsx b/src/products/components/ProductListPage/ProductListPage.stories.tsx
index 466d17354..eecfc68ee 100644
--- a/src/products/components/ProductListPage/ProductListPage.stories.tsx
+++ b/src/products/components/ProductListPage/ProductListPage.stories.tsx
@@ -13,12 +13,10 @@ import { products as productListFixture } from "@dashboard/products/fixtures";
import { ProductListUrlSortField } from "@dashboard/products/urls";
import { productListFilterOpts } from "@dashboard/products/views/ProductList/fixtures";
import { attributes } from "@dashboard/productTypes/fixtures";
-import Decorator from "@dashboard/storybook/Decorator";
-import { PaginatorContextDecorator } from "@dashboard/storybook/PaginatorContextDecorator";
import { ListViews } from "@dashboard/types";
-import { storiesOf } from "@storybook/react";
import React from "react";
+import { PaginatorContextDecorator } from "../../../../.storybook/decorators";
import ProductListPage, { ProductListPageProps } from "./ProductListPage";
const products = productListFixture(placeholderImage);
@@ -63,28 +61,38 @@ const props: ProductListPageProps = {
},
};
-storiesOf("Products / Product list", module)
- .addDecorator(Decorator)
- .addDecorator(PaginatorContextDecorator)
- .add("default", () => )
- .add("loading", () => (
-
- ))
- .add("with data", () => )
- .add("no data", () => )
- .add("no channels", () => (
- ({ ...product, channelListings: [] }))}
- />
- ))
- .add("no limits", () => )
- .add("limits reached", () => (
-
- ));
+export default {
+ title: "Products / Product list",
+ decorators: [PaginatorContextDecorator],
+};
+
+export const Default = () => ;
+
+export const Loading = () => (
+
+);
+
+export const WithData = () => (
+
+);
+
+export const NoData = () => ;
+
+export const NoChannels = () => (
+ ({ ...product, channelListings: [] }))}
+ />
+);
+
+export const NoLimits = () => ;
+
+export const LimitsReached = () => (
+
+);
diff --git a/src/products/components/ProductMediaPage/ProductMediaPage.stories.tsx b/src/products/components/ProductMediaPage/ProductMediaPage.stories.tsx
index c6518011e..73a823eab 100644
--- a/src/products/components/ProductMediaPage/ProductMediaPage.stories.tsx
+++ b/src/products/components/ProductMediaPage/ProductMediaPage.stories.tsx
@@ -1,7 +1,5 @@
import placeholder from "@assets/images/placeholder1080x1080.png";
import { ProductMediaType } from "@dashboard/graphql";
-import Decorator from "@dashboard/storybook/Decorator";
-import { storiesOf } from "@storybook/react";
import React from "react";
import ProductMediaPage from "./ProductMediaPage";
@@ -16,29 +14,32 @@ const media = (Array(8) as any)
.fill({ id: "img", url: placeholder, oembedData: "{}" })
.map((image, imageIndex) => ({ ...image, id: image.id + imageIndex }));
-storiesOf("Products / Product image details", module)
- .addDecorator(Decorator)
- .add("when loaded data", () => (
- undefined}
- onSubmit={() => undefined}
- saveButtonBarState="default"
- />
- ))
- .add("when loading data", () => (
- undefined}
- onSubmit={() => undefined}
- saveButtonBarState="default"
- />
- ));
+export default {
+ title: "Products / Product image details",
+};
+
+export const WhenLoadedData = () => (
+ undefined}
+ onSubmit={() => undefined}
+ saveButtonBarState="default"
+ />
+);
+
+export const WhenLoadingData = () => (
+ undefined}
+ onSubmit={() => undefined}
+ saveButtonBarState="default"
+ />
+);
diff --git a/src/products/components/ProductUpdatePage/ProductUpdatePage.stories.tsx b/src/products/components/ProductUpdatePage/ProductUpdatePage.stories.tsx
index 107737190..f833fce74 100644
--- a/src/products/components/ProductUpdatePage/ProductUpdatePage.stories.tsx
+++ b/src/products/components/ProductUpdatePage/ProductUpdatePage.stories.tsx
@@ -6,10 +6,8 @@ import {
ProductErrorCode,
ProductVariantBulkErrorCode,
} from "@dashboard/graphql";
-import Decorator from "@dashboard/storybook/Decorator";
import { taxClasses } from "@dashboard/taxes/fixtures";
import { warehouseList } from "@dashboard/warehouses/fixtures";
-import { storiesOf } from "@storybook/react";
import React from "react";
import { product as productFixture } from "../../fixtures";
@@ -67,119 +65,133 @@ const props: ProductUpdatePageProps = {
attributeValues: [],
};
-storiesOf("Products / Product edit", module)
- .addDecorator(Decorator)
- .add("when data is fully loaded", () => )
- .add("when product has no images", () => (
-
- ))
- .add("when product has no variants", () => (
-
- ))
- .add("when loading data", () => (
-
- ))
- .add("no variants", () => (
-
- ))
- .add("no stock and no variants", () => (
- ;
+
+export const WhenProductHasNoImages = () => (
+
+);
+
+export const WhenProductHasNoVariants = () => (
+
+);
+
+export const WhenLoadingData = () => (
+
+);
+
+export const NoVariants = () => (
+
+);
+
+export const NoStockAndNoVariants = () => (
+
- ))
- .add("no stock, no variants and no warehouses", () => (
-
+);
+
+export const NoStockNoVariantsAndNoWarehouses = () => (
+
- ))
- .add("no product attributes", () => (
-
- ))
- .add("form errors", () => (
-
- ).map(field => ({
- __typename: "ProductError",
- attributes:
- field === "attributes" ? [product.attributes[0].attribute.id] : null,
- code: ProductErrorCode.INVALID,
- field,
- message: "Attributes invalid",
- }))}
- />
- ))
- .add("no limits", () => )
- .add("limits reached", () => (
-
- ));
+ ],
+ }}
+ />
+);
+
+export const NoProductAttributes = () => (
+
+);
+
+export const FormErrors = () => (
+
+ ).map(field => ({
+ __typename: "ProductError",
+ attributes:
+ field === "attributes" ? [product.attributes[0].attribute.id] : null,
+ code: ProductErrorCode.INVALID,
+ field,
+ message: "Attributes invalid",
+ }))}
+ />
+);
+
+export const NoLimits = () => (
+
+);
+
+export const LimitsReached = () => (
+
+);
diff --git a/src/products/components/ProductVariantCreatePage/ProductVariantCreatePage.stories.tsx b/src/products/components/ProductVariantCreatePage/ProductVariantCreatePage.stories.tsx
index 0cf69ae3d..725f47a38 100644
--- a/src/products/components/ProductVariantCreatePage/ProductVariantCreatePage.stories.tsx
+++ b/src/products/components/ProductVariantCreatePage/ProductVariantCreatePage.stories.tsx
@@ -1,8 +1,6 @@
import placeholderImage from "@assets/images/placeholder255x255.png";
import { ProductErrorCode } from "@dashboard/graphql";
-import Decorator from "@dashboard/storybook/Decorator";
import { warehouseList } from "@dashboard/warehouses/fixtures";
-import { storiesOf } from "@storybook/react";
import React from "react";
import { product as productFixture } from "../../fixtures";
@@ -10,145 +8,151 @@ import ProductVariantCreatePage from "./ProductVariantCreatePage";
const product = productFixture(placeholderImage);
-storiesOf("Products / Create product variant", module)
- .addDecorator(Decorator)
- .add("default", () => (
- undefined}
- onVariantClick={undefined}
- onVariantReorder={() => undefined}
- saveButtonBarState="default"
- warehouses={warehouseList}
- onWarehouseConfigure={() => undefined}
- referencePages={[]}
- referenceProducts={[]}
- attributeValues={[]}
- fetchAttributeValues={() => undefined}
- onAssignReferencesClick={() => undefined}
- onCloseDialog={() => undefined}
- onAttributeSelectBlur={() => undefined}
- />
- ))
- .add("with errors", () => (
- ({
- __typename: "ProductError",
- ...error,
- }))}
- header="Add variant"
- product={product}
- onSubmit={() => undefined}
- onVariantClick={undefined}
- onVariantReorder={() => undefined}
- saveButtonBarState="default"
- warehouses={warehouseList}
- onWarehouseConfigure={() => undefined}
- referencePages={[]}
- referenceProducts={[]}
- attributeValues={[]}
- fetchAttributeValues={() => undefined}
- onAssignReferencesClick={() => undefined}
- onCloseDialog={() => undefined}
- onAttributeSelectBlur={() => undefined}
- />
- ))
- .add("when loading data", () => (
- undefined}
- onVariantClick={undefined}
- onVariantReorder={() => undefined}
- saveButtonBarState="default"
- warehouses={warehouseList}
- onWarehouseConfigure={() => undefined}
- referencePages={[]}
- referenceProducts={[]}
- attributeValues={[]}
- fetchAttributeValues={() => undefined}
- onAssignReferencesClick={() => undefined}
- onCloseDialog={() => undefined}
- onAttributeSelectBlur={() => undefined}
- />
- ))
- .add("add first variant", () => (
- undefined}
- onVariantClick={undefined}
- onVariantReorder={() => undefined}
- saveButtonBarState="default"
- warehouses={warehouseList}
- onWarehouseConfigure={() => undefined}
- referencePages={[]}
- referenceProducts={[]}
- attributeValues={[]}
- fetchAttributeValues={() => undefined}
- onAssignReferencesClick={() => undefined}
- onCloseDialog={() => undefined}
- onAttributeSelectBlur={() => undefined}
- />
- ))
- .add("no warehouses", () => (
- undefined}
- onVariantClick={undefined}
- onVariantReorder={() => undefined}
- saveButtonBarState="default"
- warehouses={[]}
- onWarehouseConfigure={() => undefined}
- referencePages={[]}
- referenceProducts={[]}
- attributeValues={[]}
- fetchAttributeValues={() => undefined}
- onAssignReferencesClick={() => undefined}
- onCloseDialog={() => undefined}
- onAttributeSelectBlur={() => undefined}
- />
- ));
+export default {
+ title: "Products / Create product variant",
+};
+
+export const Default = () => (
+ undefined}
+ onVariantClick={undefined}
+ onVariantReorder={() => undefined}
+ saveButtonBarState="default"
+ warehouses={warehouseList}
+ onWarehouseConfigure={() => undefined}
+ referencePages={[]}
+ referenceProducts={[]}
+ attributeValues={[]}
+ fetchAttributeValues={() => undefined}
+ onAssignReferencesClick={() => undefined}
+ onCloseDialog={() => undefined}
+ onAttributeSelectBlur={() => undefined}
+ />
+);
+
+export const WithErrors = () => (
+ ({
+ __typename: "ProductError",
+ ...error,
+ }))}
+ header="Add variant"
+ product={product}
+ onSubmit={() => undefined}
+ onVariantClick={undefined}
+ onVariantReorder={() => undefined}
+ saveButtonBarState="default"
+ warehouses={warehouseList}
+ onWarehouseConfigure={() => undefined}
+ referencePages={[]}
+ referenceProducts={[]}
+ attributeValues={[]}
+ fetchAttributeValues={() => undefined}
+ onAssignReferencesClick={() => undefined}
+ onCloseDialog={() => undefined}
+ onAttributeSelectBlur={() => undefined}
+ />
+);
+
+export const WhenLoadingData = () => (
+ undefined}
+ onVariantClick={undefined}
+ onVariantReorder={() => undefined}
+ saveButtonBarState="default"
+ warehouses={warehouseList}
+ onWarehouseConfigure={() => undefined}
+ referencePages={[]}
+ referenceProducts={[]}
+ attributeValues={[]}
+ fetchAttributeValues={() => undefined}
+ onAssignReferencesClick={() => undefined}
+ onCloseDialog={() => undefined}
+ onAttributeSelectBlur={() => undefined}
+ />
+);
+
+export const AddFirstVariant = () => (
+ undefined}
+ onVariantClick={undefined}
+ onVariantReorder={() => undefined}
+ saveButtonBarState="default"
+ warehouses={warehouseList}
+ onWarehouseConfigure={() => undefined}
+ referencePages={[]}
+ referenceProducts={[]}
+ attributeValues={[]}
+ fetchAttributeValues={() => undefined}
+ onAssignReferencesClick={() => undefined}
+ onCloseDialog={() => undefined}
+ onAttributeSelectBlur={() => undefined}
+ />
+);
+
+export const NoWarehouses = () => (
+ undefined}
+ onVariantClick={undefined}
+ onVariantReorder={() => undefined}
+ saveButtonBarState="default"
+ warehouses={[]}
+ onWarehouseConfigure={() => undefined}
+ referencePages={[]}
+ referenceProducts={[]}
+ attributeValues={[]}
+ fetchAttributeValues={() => undefined}
+ onAssignReferencesClick={() => undefined}
+ onCloseDialog={() => undefined}
+ onAttributeSelectBlur={() => undefined}
+ />
+);
diff --git a/src/products/components/ProductVariantPage/ProductVarinatPage.stories.tsx b/src/products/components/ProductVariantPage/ProductVarinatPage.stories.tsx
index bb38a9071..64ac699f4 100644
--- a/src/products/components/ProductVariantPage/ProductVarinatPage.stories.tsx
+++ b/src/products/components/ProductVariantPage/ProductVarinatPage.stories.tsx
@@ -1,9 +1,7 @@
import placeholderImage from "@assets/images/placeholder60x60.png";
import { createVariantChannels } from "@dashboard/channels/utils";
import { ProductErrorCode } from "@dashboard/graphql";
-import Decorator from "@dashboard/storybook/Decorator";
import { warehouseList } from "@dashboard/warehouses/fixtures";
-import { storiesOf } from "@storybook/react";
import React from "react";
import { variant as variantFixture } from "../../fixtures";
@@ -12,142 +10,147 @@ import ProductVariantPage from "./ProductVariantPage";
const variant = variantFixture(placeholderImage);
const channels = createVariantChannels(variant);
-storiesOf("Products / Product variant details", module)
- .addDecorator(Decorator)
- .add("when loaded data", () => (
- undefined}
- onSubmit={() => undefined}
- onVariantReorder={() => undefined}
- saveButtonBarState="default"
- variantDeactivatePreoderButtonState="default"
- warehouses={warehouseList}
- onWarehouseConfigure={() => undefined}
- referencePages={[]}
- referenceProducts={[]}
- attributeValues={[]}
- fetchAttributeValues={() => undefined}
- onAssignReferencesClick={() => undefined}
- onCloseDialog={() => undefined}
- onAttributeSelectBlur={() => undefined}
- onVariantPreorderDeactivate={() => undefined}
- />
- ))
- .add("when loading data", () => (
- undefined}
- onSubmit={() => undefined}
- onVariantReorder={() => undefined}
- saveButtonBarState="default"
- variantDeactivatePreoderButtonState="default"
- warehouses={warehouseList}
- onWarehouseConfigure={() => undefined}
- referencePages={[]}
- referenceProducts={[]}
- attributeValues={[]}
- fetchAttributeValues={() => undefined}
- onAssignReferencesClick={() => undefined}
- onCloseDialog={() => undefined}
- onAttributeSelectBlur={() => undefined}
- onVariantPreorderDeactivate={() => undefined}
- />
- ))
- .add("no warehouses", () => (
- undefined}
- onSubmit={() => undefined}
- onVariantReorder={() => undefined}
- saveButtonBarState="default"
- variantDeactivatePreoderButtonState="default"
- warehouses={[]}
- onWarehouseConfigure={() => undefined}
- referencePages={[]}
- referenceProducts={[]}
- attributeValues={[]}
- fetchAttributeValues={() => undefined}
- onAssignReferencesClick={() => undefined}
- onCloseDialog={() => undefined}
- onAttributeSelectBlur={() => undefined}
- onVariantPreorderDeactivate={() => undefined}
- />
- ))
- .add("attribute errors", () => (
- undefined}
- onSubmit={() => undefined}
- onVariantReorder={() => undefined}
- saveButtonBarState="default"
- variantDeactivatePreoderButtonState="default"
- errors={[
- {
- attributes: [variant.selectionAttributes[0].attribute.id],
- code: ProductErrorCode.REQUIRED,
- field: "attributes",
- },
- {
- attributes: null,
- code: ProductErrorCode.UNIQUE,
- field: "attributes",
- },
- {
- attributes: null,
- code: ProductErrorCode.ALREADY_EXISTS,
- field: "sku",
- },
- ].map(error => ({
- __typename: "ProductError",
- message: "Generic form error",
- ...error,
- }))}
- channelErrors={[
- {
- __typename: "ProductChannelListingError",
- channels: ["Q2hhbm5lbDox"],
- code: ProductErrorCode.INVALID,
- field: "price",
- message: "Product price cannot be lower than 0.",
- },
- ]}
- warehouses={warehouseList}
- onWarehouseConfigure={() => undefined}
- referencePages={[]}
- referenceProducts={[]}
- attributeValues={[]}
- fetchAttributeValues={() => undefined}
- onAssignReferencesClick={() => undefined}
- onCloseDialog={() => undefined}
- onAttributeSelectBlur={() => undefined}
- onVariantPreorderDeactivate={() => undefined}
- />
- ));
+export default {
+ title: "Products / Product variant details",
+};
+
+export const WhenLoadedData = () => (
+ undefined}
+ onSubmit={() => undefined}
+ onVariantReorder={() => undefined}
+ saveButtonBarState="default"
+ variantDeactivatePreoderButtonState="default"
+ warehouses={warehouseList}
+ onWarehouseConfigure={() => undefined}
+ referencePages={[]}
+ referenceProducts={[]}
+ attributeValues={[]}
+ fetchAttributeValues={() => undefined}
+ onAssignReferencesClick={() => undefined}
+ onCloseDialog={() => undefined}
+ onAttributeSelectBlur={() => undefined}
+ onVariantPreorderDeactivate={() => undefined}
+ />
+);
+
+export const WhenLoadingData = () => (
+ undefined}
+ onSubmit={() => undefined}
+ onVariantReorder={() => undefined}
+ saveButtonBarState="default"
+ variantDeactivatePreoderButtonState="default"
+ warehouses={warehouseList}
+ onWarehouseConfigure={() => undefined}
+ referencePages={[]}
+ referenceProducts={[]}
+ attributeValues={[]}
+ fetchAttributeValues={() => undefined}
+ onAssignReferencesClick={() => undefined}
+ onCloseDialog={() => undefined}
+ onAttributeSelectBlur={() => undefined}
+ onVariantPreorderDeactivate={() => undefined}
+ />
+);
+
+export const NoWarehouses = () => (
+ undefined}
+ onSubmit={() => undefined}
+ onVariantReorder={() => undefined}
+ saveButtonBarState="default"
+ variantDeactivatePreoderButtonState="default"
+ warehouses={[]}
+ onWarehouseConfigure={() => undefined}
+ referencePages={[]}
+ referenceProducts={[]}
+ attributeValues={[]}
+ fetchAttributeValues={() => undefined}
+ onAssignReferencesClick={() => undefined}
+ onCloseDialog={() => undefined}
+ onAttributeSelectBlur={() => undefined}
+ onVariantPreorderDeactivate={() => undefined}
+ />
+);
+
+export const AttributeErrors = () => (
+ undefined}
+ onSubmit={() => undefined}
+ onVariantReorder={() => undefined}
+ saveButtonBarState="default"
+ variantDeactivatePreoderButtonState="default"
+ errors={[
+ {
+ attributes: [variant.selectionAttributes[0].attribute.id],
+ code: ProductErrorCode.REQUIRED,
+ field: "attributes",
+ },
+ {
+ attributes: null,
+ code: ProductErrorCode.UNIQUE,
+ field: "attributes",
+ },
+ {
+ attributes: null,
+ code: ProductErrorCode.ALREADY_EXISTS,
+ field: "sku",
+ },
+ ].map(error => ({
+ __typename: "ProductError",
+ message: "Generic form error",
+ ...error,
+ }))}
+ channelErrors={[
+ {
+ __typename: "ProductChannelListingError",
+ channels: ["Q2hhbm5lbDox"],
+ code: ProductErrorCode.INVALID,
+ field: "price",
+ message: "Product price cannot be lower than 0.",
+ },
+ ]}
+ warehouses={warehouseList}
+ onWarehouseConfigure={() => undefined}
+ referencePages={[]}
+ referenceProducts={[]}
+ attributeValues={[]}
+ fetchAttributeValues={() => undefined}
+ onAssignReferencesClick={() => undefined}
+ onCloseDialog={() => undefined}
+ onAttributeSelectBlur={() => undefined}
+ onVariantPreorderDeactivate={() => undefined}
+ />
+);
diff --git a/src/products/index.tsx b/src/products/index.tsx
index c72eac52d..7fbf0c475 100644
--- a/src/products/index.tsx
+++ b/src/products/index.tsx
@@ -30,7 +30,7 @@ import ProductVariantComponent from "./views/ProductVariant";
import ProductVariantCreateComponent from "./views/ProductVariantCreate";
const ProductList: React.FC> = ({ location }) => {
- const qs = parseQs(location.search.substr(1));
+ const qs = parseQs(location.search.substr(1)) as any;
const params: ProductListUrlQueryParams = asSortParams(
{
...qs,
@@ -47,7 +47,7 @@ const ProductList: React.FC> = ({ location }) => {
};
const ProductUpdate: React.FC> = ({ match }) => {
- const qs = parseQs(location.search.substr(1));
+ const qs = parseQs(location.search.substr(1)) as any;
const params: ProductUrlQueryParams = qs;
return (
diff --git a/src/shipping/components/ShippingZoneCreatePage/ShippingZoneCreatePage.stories.tsx b/src/shipping/components/ShippingZoneCreatePage/ShippingZoneCreatePage.stories.tsx
index 82c758a02..7c2a4fc6d 100644
--- a/src/shipping/components/ShippingZoneCreatePage/ShippingZoneCreatePage.stories.tsx
+++ b/src/shipping/components/ShippingZoneCreatePage/ShippingZoneCreatePage.stories.tsx
@@ -1,7 +1,5 @@
import { ShippingErrorCode } from "@dashboard/graphql";
-import Decorator from "@dashboard/storybook/Decorator";
import { mapCountriesToCountriesCodes } from "@dashboard/utils/maps";
-import { storiesOf } from "@storybook/react";
import React from "react";
import ShippingZoneCreatePage, {
@@ -45,19 +43,25 @@ const props: ShippingZoneCreatePageProps = {
saveButtonBarState: "default",
};
-storiesOf("Shipping / Create shipping zone", module)
- .addDecorator(Decorator)
- .add("default", () => )
- .add("loading", () => )
- .add("form errors", () => (
- ({
- __typename: "ShippingError",
- channels: [],
- code: ShippingErrorCode.INVALID,
- field,
- message: "Name field invalid",
- }))}
- />
- ));
+export default {
+ title: "Shipping / Create shipping zone",
+};
+
+export const Default = () => ;
+
+export const Loading = () => (
+
+);
+
+export const FormErrors = () => (
+ ({
+ __typename: "ShippingError",
+ channels: [],
+ code: ShippingErrorCode.INVALID,
+ field,
+ message: "Name field invalid",
+ }))}
+ />
+);
diff --git a/src/shipping/components/ShippingZoneDetailsPage/ShippingZoneDetailsPage.stories.tsx b/src/shipping/components/ShippingZoneDetailsPage/ShippingZoneDetailsPage.stories.tsx
index 461e2cba5..4c23ea634 100644
--- a/src/shipping/components/ShippingZoneDetailsPage/ShippingZoneDetailsPage.stories.tsx
+++ b/src/shipping/components/ShippingZoneDetailsPage/ShippingZoneDetailsPage.stories.tsx
@@ -1,8 +1,6 @@
import { fetchMoreProps, searchPageProps } from "@dashboard/fixtures";
import { ShippingErrorCode } from "@dashboard/graphql";
-import Decorator from "@dashboard/storybook/Decorator";
import { warehouseList } from "@dashboard/warehouses/fixtures";
-import { storiesOf } from "@storybook/react";
import React from "react";
import { shippingZone } from "../../fixtures";
@@ -31,25 +29,29 @@ const props: ShippingZoneDetailsPageProps = {
warehouses: warehouseList,
};
-storiesOf("Shipping / Shipping zone details", module)
- .addDecorator(Decorator)
- .add("default", () => )
- .add("loading", () => (
-
- ))
- .add("form errors", () => (
- ({
- __typename: "ShippingError",
- channels: [],
- code: ShippingErrorCode.INVALID,
- field,
- message: "Name field invalid",
- }))}
- />
- ));
+export default {
+ title: "Shipping / Shipping zone details",
+};
+
+export const Default = () => ;
+
+export const Loading = () => (
+
+);
+
+export const FormErrors = () => (
+ ({
+ __typename: "ShippingError",
+ channels: [],
+ code: ShippingErrorCode.INVALID,
+ field,
+ message: "Name field invalid",
+ }))}
+ />
+);
diff --git a/src/shipping/components/ShippingZoneRatesCreatePage/ShippingZoneRatesCreatePage.stories.tsx b/src/shipping/components/ShippingZoneRatesCreatePage/ShippingZoneRatesCreatePage.stories.tsx
index fca70b4dd..4acefdd2d 100644
--- a/src/shipping/components/ShippingZoneRatesCreatePage/ShippingZoneRatesCreatePage.stories.tsx
+++ b/src/shipping/components/ShippingZoneRatesCreatePage/ShippingZoneRatesCreatePage.stories.tsx
@@ -2,9 +2,7 @@ import {
PostalCodeRuleInclusionTypeEnum,
ShippingMethodTypeEnum,
} from "@dashboard/graphql";
-import Decorator from "@dashboard/storybook//Decorator";
import { taxClasses } from "@dashboard/taxes/fixtures";
-import { storiesOf } from "@storybook/react";
import React from "react";
import ShippingZoneRatesCreatePage, {
@@ -78,20 +76,24 @@ const props: ShippingZoneRatesCreatePageProps = {
fetchMoreTaxClasses: undefined,
};
-storiesOf("Shipping / ShippingZoneRatesCreatePage", module)
- .addDecorator(Decorator)
- .add("create price", () => )
- .add("loading", () => (
-
- ))
- .add("create weight", () => (
-
- ));
+export default {
+ title: "Shipping / ShippingZoneRatesCreatePage",
+};
+
+export const CreatePrice = () => ;
+
+export const Loading = () => (
+
+);
+
+export const CreateWeight = () => (
+
+);
diff --git a/src/shipping/components/ShippingZoneRatesPage/ShippingZoneRatesPage.stories.tsx b/src/shipping/components/ShippingZoneRatesPage/ShippingZoneRatesPage.stories.tsx
index b92f929bb..41d9036ae 100644
--- a/src/shipping/components/ShippingZoneRatesPage/ShippingZoneRatesPage.stories.tsx
+++ b/src/shipping/components/ShippingZoneRatesPage/ShippingZoneRatesPage.stories.tsx
@@ -1,11 +1,9 @@
import { ShippingMethodTypeEnum } from "@dashboard/graphql";
import { shippingZone } from "@dashboard/shipping/fixtures";
-import Decorator from "@dashboard/storybook//Decorator";
-import { PaginatorContextDecorator } from "@dashboard/storybook/PaginatorContextDecorator";
import { taxClasses } from "@dashboard/taxes/fixtures";
-import { storiesOf } from "@storybook/react";
import React from "react";
+import { PaginatorContextDecorator } from "../../../../.storybook/decorators";
import ShippingZoneRatesPage, {
ShippingZoneRatesPageProps,
} from "./ShippingZoneRatesPage";
@@ -70,32 +68,38 @@ const props: ShippingZoneRatesPageProps = {
fetchMoreTaxClasses: undefined,
};
-storiesOf("Shipping / Shipping rate", module)
- .addDecorator(Decorator)
- .addDecorator(PaginatorContextDecorator)
- .add("create price rate", () => )
- .add("create weight rate", () => (
-
- ))
- .add("loading", () => (
-
- ))
- .add("update price rate", () => (
-
- ))
- .add("update weight rate", () => (
-
- ));
+export default {
+ title: "Shipping / Shipping rate",
+ decorators: [PaginatorContextDecorator],
+};
+
+export const CreatePriceRate = () => ;
+
+export const CreateWeightRate = () => (
+
+);
+
+export const Loading = () => (
+
+);
+
+export const UpdatePriceRate = () => (
+
+);
+
+export const UpdateWeightRate = () => (
+
+);
diff --git a/src/shipping/components/ShippingZonesListPage/ShippingZonesListPage.stories.tsx b/src/shipping/components/ShippingZonesListPage/ShippingZonesListPage.stories.tsx
index ba0bc2254..38682ce68 100644
--- a/src/shipping/components/ShippingZonesListPage/ShippingZonesListPage.stories.tsx
+++ b/src/shipping/components/ShippingZonesListPage/ShippingZonesListPage.stories.tsx
@@ -4,11 +4,9 @@ import {
pageListProps,
} from "@dashboard/fixtures";
import { WeightUnitsEnum } from "@dashboard/graphql";
-import Decorator from "@dashboard/storybook/Decorator";
-import { PaginatorContextDecorator } from "@dashboard/storybook/PaginatorContextDecorator";
-import { storiesOf } from "@storybook/react";
import React from "react";
+import { PaginatorContextDecorator } from "../../../../.storybook/decorators";
import { shippingZones } from "../../fixtures";
import ShippingZonesListPage, {
ShippingZonesListPageProps,
@@ -24,18 +22,21 @@ const props: ShippingZonesListPageProps = {
userPermissions: adminUserPermissions,
};
-storiesOf("Shipping / Shipping zones list", module)
- .addDecorator(Decorator)
- .addDecorator(PaginatorContextDecorator)
- .add("default", () => )
- .add("loading", () => (
-
- ))
- .add("no data", () => )
- .add("no site settings permissions", () => (
-
- ));
+export default {
+ title: "Shipping / Shipping zones list",
+ decorators: [PaginatorContextDecorator],
+};
+
+export const Default = () => ;
+
+export const Loading = () => (
+
+);
+
+export const NoData = () => (
+
+);
+
+export const NoSiteSettingsPermissions = () => (
+
+);
diff --git a/src/siteSettings/components/SiteSettingsPage/SiteSettingsPage.stories.tsx b/src/siteSettings/components/SiteSettingsPage/SiteSettingsPage.stories.tsx
index b1839fd04..392b7077d 100644
--- a/src/siteSettings/components/SiteSettingsPage/SiteSettingsPage.stories.tsx
+++ b/src/siteSettings/components/SiteSettingsPage/SiteSettingsPage.stories.tsx
@@ -1,7 +1,5 @@
import { ShopErrorCode } from "@dashboard/graphql";
import { shop } from "@dashboard/siteSettings/fixtures";
-import Decorator from "@dashboard/storybook/Decorator";
-import { storiesOf } from "@storybook/react";
import React from "react";
import SiteSettingsPage, { SiteSettingsPageProps } from "./SiteSettingsPage";
@@ -14,27 +12,31 @@ const props: Omit = {
shop,
};
-storiesOf("Site settings / Page", module)
- .addDecorator(Decorator)
- .add("default", () => )
- .add("loading", () => (
-
- ))
- .add("form errors", () => (
- ({
- __typename: "ShopError",
- code: ShopErrorCode.INVALID,
- field,
- message: "Shop form invalid",
- }))}
- />
- ));
+export default {
+ title: "Site settings / Page",
+};
+
+export const Default = () => ;
+
+export const Loading = () => (
+
+);
+
+export const FormErrors = () => (
+ ({
+ __typename: "ShopError",
+ code: ShopErrorCode.INVALID,
+ field,
+ message: "Shop form invalid",
+ }))}
+ />
+);
diff --git a/src/staff/components/StaffDetailsPage/StaffDetailsPage.stories.tsx b/src/staff/components/StaffDetailsPage/StaffDetailsPage.stories.tsx
index 13bb40eb9..fbe7acc53 100644
--- a/src/staff/components/StaffDetailsPage/StaffDetailsPage.stories.tsx
+++ b/src/staff/components/StaffDetailsPage/StaffDetailsPage.stories.tsx
@@ -1,7 +1,5 @@
import { userPermissionGroups } from "@dashboard/permissionGroups/fixtures";
import { staffMember } from "@dashboard/staff/fixtures";
-import Decorator from "@dashboard/storybook/Decorator";
-import { storiesOf } from "@storybook/react";
import React from "react";
import StaffDetailsPage, { StaffDetailsPageProps } from "./StaffDetailsPage";
@@ -26,19 +24,26 @@ const props: Omit = {
staffMember: { ...staffMember, permissionGroups: userPermissionGroups },
};
-storiesOf("Staff / Staff member details", module)
- .addDecorator(Decorator)
- .add("default", () => )
- .add("loading", () => (
-
- ))
- .add("not admin", () => )
- .add("himself", () => (
-
- ));
+export default {
+ title: "Staff / Staff member details",
+};
+
+export const Default = () => ;
+
+export const Loading = () => (
+
+);
+
+export const NotAdmin = () => (
+
+);
+
+export const Himself = () => (
+
+);
diff --git a/src/staff/components/StaffListPage/StaffListPage.stories.tsx b/src/staff/components/StaffListPage/StaffListPage.stories.tsx
index dbab56d75..f92628d5c 100644
--- a/src/staff/components/StaffListPage/StaffListPage.stories.tsx
+++ b/src/staff/components/StaffListPage/StaffListPage.stories.tsx
@@ -10,11 +10,9 @@ import {
import { StaffMemberStatus } from "@dashboard/graphql";
import { staffMembers } from "@dashboard/staff/fixtures";
import { StaffListUrlSortField } from "@dashboard/staff/urls";
-import Decorator from "@dashboard/storybook/Decorator";
-import { PaginatorContextDecorator } from "@dashboard/storybook/PaginatorContextDecorator";
-import { storiesOf } from "@storybook/react";
import React from "react";
+import { PaginatorContextDecorator } from "../../../../.storybook/decorators";
import StaffListPage, { StaffListPageProps } from "./StaffListPage";
const props: StaffListPageProps = {
@@ -38,14 +36,19 @@ const props: StaffListPageProps = {
staffMembers,
};
-storiesOf("Staff / Staff members", module)
- .addDecorator(Decorator)
- .addDecorator(PaginatorContextDecorator)
- .add("default", () => )
- .add("when loading", () => (
-
- ))
- .add("no limits", () => )
- .add("limits reached", () => (
-
- ));
+export default {
+ title: "Staff / Staff members",
+ decorators: [PaginatorContextDecorator],
+};
+
+export const Default = () => ;
+
+export const WhenLoading = () => (
+
+);
+
+export const NoLimits = () => ;
+
+export const LimitsReached = () => (
+
+);
diff --git a/src/staff/fixtures.ts b/src/staff/fixtures.ts
index 2c8d03d46..542037591 100644
--- a/src/staff/fixtures.ts
+++ b/src/staff/fixtures.ts
@@ -1,4 +1,4 @@
-import avatarImage from "@assets/images/avatars/avatar1.png";
+import avatarImage from "@assets/images/avatars/avatar.png";
import { permissions } from "@dashboard/fixtures";
import {
StaffListQuery,
diff --git a/src/staff/index.tsx b/src/staff/index.tsx
index ab7eb1b9f..eddd486d6 100644
--- a/src/staff/index.tsx
+++ b/src/staff/index.tsx
@@ -17,7 +17,7 @@ import StaffDetailsComponent from "./views/StaffDetails";
import StaffListComponent from "./views/StaffList";
const StaffList: React.FC> = ({ location }) => {
- const qs = parseQs(location.search.substr(1));
+ const qs = parseQs(location.search.substr(1)) as any;
const params: StaffListUrlQueryParams = asSortParams(
qs,
StaffListUrlSortField,
diff --git a/src/storybook/PaginatorContextDecorator.tsx b/src/storybook/PaginatorContextDecorator.tsx
deleted file mode 100644
index 2d10b9048..000000000
--- a/src/storybook/PaginatorContextDecorator.tsx
+++ /dev/null
@@ -1,9 +0,0 @@
-import { paginatorContextValues } from "@dashboard/fixtures";
-import { PaginatorContext } from "@dashboard/hooks/usePaginator";
-import React from "react";
-
-export const PaginatorContextDecorator = storyFn => (
-
- {storyFn()}
-
-);
diff --git a/src/storybook/config.js b/src/storybook/config.js
deleted file mode 100644
index 20829ccf3..000000000
--- a/src/storybook/config.js
+++ /dev/null
@@ -1,12 +0,0 @@
-/* eslint-disable */
-import { configure } from "@storybook/react";
-import requireContext from "require-context.macro";
-
-const req = requireContext("../", true, /.stories.tsx$/);
-
-function loadStories() {
- // Story autodiscovery
- req.keys().forEach(filename => req(filename));
-}
-
-configure(loadStories, module);
diff --git a/src/storybook/webpack.config.js b/src/storybook/webpack.config.js
deleted file mode 100644
index aa7f04fa1..000000000
--- a/src/storybook/webpack.config.js
+++ /dev/null
@@ -1,54 +0,0 @@
-/* eslint-disable @typescript-eslint/no-var-requires */
-const path = require("path");
-const CheckerPlugin = require("fork-ts-checker-webpack-plugin");
-const TsconfigPathsPlugin = require("tsconfig-paths-webpack-plugin");
-const webpack = require("webpack");
-
-module.exports = ({ config }) => {
- config.module.rules.push({
- exclude: /node_modules/,
- loader: "esbuild-loader",
- options: {
- loader: "tsx",
- target: "es2015",
- },
- test: /\.(jsx?|tsx?)$/,
- });
- config.optimization.removeAvailableModules = false;
- config.optimization.removeEmptyChunks = false;
- config.optimization.splitChunks = false;
- config.resolve.extensions.push(".ts", ".tsx");
- config.resolve.plugins = [
- new TsconfigPathsPlugin({
- configFile: "./tsconfig.json",
- }),
- ];
- // Resolve macaw ui's peer dependencies to our own node_modules
- // to make it work with npm link
- config.resolve.alias = {
- "@saleor/macaw-ui/next/style": path.resolve(
- "./node_modules/@saleor/macaw-ui/dist/style.css",
- ),
- "@saleor/macaw-ui/next": path.resolve(
- "./node_modules/@saleor/macaw-ui/dist/macaw-ui.js",
- ),
- "@saleor/macaw-ui": path.resolve(
- "./node_modules/@saleor/macaw-ui/legacy/dist/esm/index.js",
- ),
- react: path.resolve("./node_modules/react"),
- "react-dom": path.resolve("./node_modules/react-dom"),
- "@material-ui/core": path.resolve("./node_modules/@material-ui/core"),
- "@material-ui/icons": path.resolve("./node_modules/@material-ui/icons"),
- "@material-ui/styles": path.resolve("./node_modules/@material-ui/styles"),
- };
- config.plugins.push(
- new CheckerPlugin({
- eslint: true,
- }),
- new webpack.DefinePlugin({
- FLAGS_SERVICE_ENABLED: false,
- FLAGS: {},
- }),
- );
- return config;
-};
diff --git a/src/taxes/pages/TaxChannelsPage/TaxChannelsPage.stories.tsx b/src/taxes/pages/TaxChannelsPage/TaxChannelsPage.stories.tsx
index c014e3c5f..ec00d1cc8 100644
--- a/src/taxes/pages/TaxChannelsPage/TaxChannelsPage.stories.tsx
+++ b/src/taxes/pages/TaxChannelsPage/TaxChannelsPage.stories.tsx
@@ -1,8 +1,6 @@
import { countries } from "@dashboard/fixtures";
import { CountryFragment } from "@dashboard/graphql";
-import Decorator from "@dashboard/storybook/Decorator";
import { taxConfigurations } from "@dashboard/taxes/fixtures";
-import { storiesOf } from "@storybook/react";
import React from "react";
import TaxChannelsPage from "./TaxChannelsPage";
@@ -28,10 +26,15 @@ const props = {
disabled: false,
};
-storiesOf("Taxes / Channels view", module)
- .addDecorator(Decorator)
- .add("loading", () => (
-
- ))
- .add("default", () => )
- .add("add country", () => );
+export default {
+ title: "Taxes / Channels view",
+ excludeStories: ["castedCountries"],
+};
+
+export const Loading = () => (
+
+);
+
+export const AddCountry = () => (
+
+);
diff --git a/src/taxes/pages/TaxClassesPage/TaxClassesPage.stories.tsx b/src/taxes/pages/TaxClassesPage/TaxClassesPage.stories.tsx
index 398583d30..b6b569476 100644
--- a/src/taxes/pages/TaxClassesPage/TaxClassesPage.stories.tsx
+++ b/src/taxes/pages/TaxClassesPage/TaxClassesPage.stories.tsx
@@ -1,6 +1,4 @@
-import Decorator from "@dashboard/storybook/Decorator";
import { taxClasses } from "@dashboard/taxes/fixtures";
-import { storiesOf } from "@storybook/react";
import React from "react";
import TaxClassesPage from "./TaxClassesPage";
@@ -17,7 +15,10 @@ const props = {
onTaxClassDelete: () => undefined,
};
-storiesOf("Taxes / Tax classes view", module)
- .addDecorator(Decorator)
- .add("loading", () => )
- .add("default", () => );
+export default {
+ title: "Taxes / Tax classes view",
+};
+
+export const Loading = () => (
+
+);
diff --git a/src/taxes/pages/TaxCountriesPage/TaxCountriesPage.stories.tsx b/src/taxes/pages/TaxCountriesPage/TaxCountriesPage.stories.tsx
index 9734cb159..ba25c6300 100644
--- a/src/taxes/pages/TaxCountriesPage/TaxCountriesPage.stories.tsx
+++ b/src/taxes/pages/TaxCountriesPage/TaxCountriesPage.stories.tsx
@@ -1,6 +1,4 @@
-import Decorator from "@dashboard/storybook/Decorator";
import { taxCountryConfigurations } from "@dashboard/taxes/fixtures";
-import { storiesOf } from "@storybook/react";
import React from "react";
import TaxCountriesPage, { TaxCountriesPageProps } from "./TaxCountriesPage";
@@ -16,9 +14,10 @@ const props: TaxCountriesPageProps = {
disabled: false,
};
-storiesOf("Taxes / Countries view", module)
- .addDecorator(Decorator)
- .add("loading", () => (
-
- ))
- .add("default", () => );
+export default {
+ title: "Taxes / Countries view",
+};
+
+export const Loading = () => (
+
+);
diff --git a/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.stories.tsx b/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.stories.tsx
index b89c2e9f9..e7611a0a2 100644
--- a/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.stories.tsx
+++ b/src/translations/components/TranslationsEntitiesListPage/TranslationsEntitiesListPage.stories.tsx
@@ -1,10 +1,8 @@
import { pageListProps, searchPageProps } from "@dashboard/fixtures";
import { LanguageCodeEnum } from "@dashboard/graphql";
-import Decorator from "@dashboard/storybook/Decorator";
-import { PaginatorContextDecorator } from "@dashboard/storybook/PaginatorContextDecorator";
-import { storiesOf } from "@storybook/react";
import React from "react";
+import { PaginatorContextDecorator } from "../../../../.storybook/decorators";
import TranslationsEntitiesList from "../TranslationsEntitiesList";
import TranslationsEntitiesListPage, {
TranslationsEntitiesListPageProps,
@@ -33,26 +31,28 @@ const props: TranslationsEntitiesListPageProps = {
},
};
-storiesOf("Translations / Entity list", module)
- .addDecorator(Decorator)
- .addDecorator(PaginatorContextDecorator)
- .add("default", () => (
-
- ""}
- />
-
- ));
+export default {
+ title: "Translations / Entity list",
+ decorators: [PaginatorContextDecorator],
+};
+
+export const Default = () => (
+
+ ""}
+ />
+
+);
diff --git a/src/translations/components/TranslationsLanguageListPage/TranslationsLanguageListPage.stories.tsx b/src/translations/components/TranslationsLanguageListPage/TranslationsLanguageListPage.stories.tsx
index 3ce80ce99..9693b37ec 100644
--- a/src/translations/components/TranslationsLanguageListPage/TranslationsLanguageListPage.stories.tsx
+++ b/src/translations/components/TranslationsLanguageListPage/TranslationsLanguageListPage.stories.tsx
@@ -1,5 +1,3 @@
-import Decorator from "@dashboard/storybook/Decorator";
-import { storiesOf } from "@storybook/react";
import React from "react";
import TranslationsLanguageListPage, {
@@ -11,12 +9,16 @@ const props: TranslationsLanguageListPageProps = {
languages,
};
-storiesOf("Translations / Language list", module)
- .addDecorator(Decorator)
- .add("default", () => )
- .add("loading", () => (
-
- ))
- .add("no data", () => (
-
- ));
+export default {
+ title: "Translations / Language list",
+};
+
+export const Default = () => ;
+
+export const Loading = () => (
+
+);
+
+export const NoData = () => (
+
+);
diff --git a/src/translations/index.tsx b/src/translations/index.tsx
index 17605beb9..891a4cd34 100644
--- a/src/translations/index.tsx
+++ b/src/translations/index.tsx
@@ -69,7 +69,7 @@ const TranslationsCategories: React.FC = ({
}) => {
const qs = parseQs(location.search.substr(1));
const params: TranslationsCategoriesQueryParams = {
- activeField: qs.activeField,
+ activeField: qs.activeField as string,
};
return (
= ({
}) => {
const qs = parseQs(location.search.substr(1));
const params: TranslationsCollectionsQueryParams = {
- activeField: qs.activeField,
+ activeField: qs.activeField as string,
};
return (
= ({
}) => {
const qs = parseQs(location.search.substr(1));
const params: TranslationsProductsQueryParams = {
- activeField: qs.activeField,
+ activeField: qs.activeField as string,
};
return (
;
-const TranslationsProductVariants: React.FC = ({
- location,
- match,
-}) => {
+const TranslationsProductVariants: React.FC<
+ TranslationsProductVariantProps
+> = ({ location, match }) => {
const qs = parseQs(location.search.substr(1));
const params: TranslationsProductVariantsQueryParams = {
- activeField: qs.activeField,
+ activeField: qs.activeField as string,
};
return (
= ({
}) => {
const qs = parseQs(location.search.substr(1));
const params: TranslationsSalesQueryParams = {
- activeField: qs.activeField,
+ activeField: qs.activeField as string,
};
return (
= ({
}) => {
const qs = parseQs(location.search.substr(1));
const params: TranslationsVouchersQueryParams = {
- activeField: qs.activeField,
+ activeField: qs.activeField as string,
};
return (
= ({
}) => {
const qs = parseQs(location.search.substr(1));
const params: TranslationsPagesQueryParams = {
- activeField: qs.activeField,
+ activeField: qs.activeField as string,
};
return (
= ({
}) => {
const qs = parseQs(location.search.substr(1));
const params: TranslationsAttributesQueryParams = {
- activeField: qs.activeField,
+ activeField: qs.activeField as string,
};
return (
= ({
}) => {
const qs = parseQs(location.search.substr(1));
const params: TranslationsShippingMethodQueryParams = {
- activeField: qs.activeField,
+ activeField: qs.activeField as string,
};
return (
= ({
}) => {
const qs = parseQs(location.search.substr(1));
const params: TranslationsShippingMethodQueryParams = {
- activeField: qs.activeField,
+ activeField: qs.activeField as string,
};
return (
undefined,
saveButtonBarState: "default",
};
-storiesOf("Warehouses / Create warehouse", module)
- .addDecorator(Decorator)
- .add("default", () => )
- .add("loading", () => )
- .add("form errors", () => (
-
- ).map(field => ({
- __typename: "WarehouseError",
- code: WarehouseErrorCode.INVALID,
- field,
- message: "Warehouse invalid",
- }))}
- />
- ));
+
+export default {
+ title: "Warehouses / Create warehouse",
+};
+
+export const Default = () => ;
+
+export const Loading = () => ;
+
+export const FormErrors = () => (
+
+ ).map(field => ({
+ __typename: "WarehouseError",
+ code: WarehouseErrorCode.INVALID,
+ field,
+ message: "Warehouse invalid",
+ }))}
+ />
+);
diff --git a/src/warehouses/components/WarehouseDetailsPage/WarehouseDetailsPage.stories.tsx b/src/warehouses/components/WarehouseDetailsPage/WarehouseDetailsPage.stories.tsx
index 966618fc6..7968b4bed 100644
--- a/src/warehouses/components/WarehouseDetailsPage/WarehouseDetailsPage.stories.tsx
+++ b/src/warehouses/components/WarehouseDetailsPage/WarehouseDetailsPage.stories.tsx
@@ -1,7 +1,5 @@
import { countries } from "@dashboard/fixtures";
import { WarehouseErrorCode } from "@dashboard/graphql";
-import Decorator from "@dashboard/storybook/Decorator";
-import { storiesOf } from "@storybook/react";
import React from "react";
import { warehouse } from "../../fixtures";
@@ -23,33 +21,34 @@ const props: WarehouseDetailsPageProps = {
saveButtonBarState: "default",
warehouse,
};
-storiesOf("Warehouses / Warehouse details", module)
- .addDecorator(Decorator)
- .add("default", () => )
- .add("loading", () => (
-
- ))
- .add("form errors", () => (
-
- ).map(field => ({
- __typename: "WarehouseError",
- code: WarehouseErrorCode.INVALID,
- field,
- message: "Warehouse invalid",
- }))}
- />
- ));
+
+export default {
+ title: "Warehouses / Warehouse details",
+};
+
+export const Default = () => ;
+
+export const FormErrors = () => (
+
+ ).map(field => ({
+ __typename: "WarehouseError",
+ code: WarehouseErrorCode.INVALID,
+ field,
+ message: "Warehouse invalid",
+ }))}
+ />
+);
diff --git a/src/warehouses/components/WarehouseListPage/WarehouseListPage.stories.tsx b/src/warehouses/components/WarehouseListPage/WarehouseListPage.stories.tsx
index 0204851d5..4865c4538 100644
--- a/src/warehouses/components/WarehouseListPage/WarehouseListPage.stories.tsx
+++ b/src/warehouses/components/WarehouseListPage/WarehouseListPage.stories.tsx
@@ -6,12 +6,10 @@ import {
sortPageProps,
tabPageProps,
} from "@dashboard/fixtures";
-import Decorator from "@dashboard/storybook/Decorator";
-import { PaginatorContextDecorator } from "@dashboard/storybook/PaginatorContextDecorator";
import { WarehouseListUrlSortField } from "@dashboard/warehouses/urls";
-import { storiesOf } from "@storybook/react";
import React from "react";
+import { PaginatorContextDecorator } from "../../../../.storybook/decorators";
import { warehouseList } from "../../fixtures";
import WarehouseListPage, { WarehouseListPageProps } from "./WarehouseListPage";
@@ -29,15 +27,23 @@ const props: WarehouseListPageProps = {
warehouses: warehouseList,
};
-storiesOf("Warehouses / Warehouse list", module)
- .addDecorator(Decorator)
- .addDecorator(PaginatorContextDecorator)
- .add("default", () => )
- .add("loading", () => (
-
- ))
- .add("no data", () => )
- .add("no limits", () => )
- .add("limits reached", () => (
-
- ));
+export default {
+ title: "Warehouses / Warehouse list",
+ decorators: [PaginatorContextDecorator],
+};
+
+export const Default = () => ;
+
+export const Loading = () => (
+
+);
+
+export const NoData = () => ;
+
+export const NoLimits = () => (
+
+);
+
+export const LimitsReached = () => (
+
+);
diff --git a/src/warehouses/index.tsx b/src/warehouses/index.tsx
index 204a5b34b..05eac53ec 100644
--- a/src/warehouses/index.tsx
+++ b/src/warehouses/index.tsx
@@ -19,7 +19,7 @@ import WarehouseDetailsComponent from "./views/WarehouseDetails";
import WarehouseListComponent from "./views/WarehouseList";
const WarehouseList: React.FC = ({ location }) => {
- const qs = parseQs(location.search.substr(1));
+ const qs = parseQs(location.search.substr(1)) as any;
const params: WarehouseListUrlQueryParams = asSortParams(
qs,
WarehouseListUrlSortField,
diff --git a/testUtils/globalSetup.ts b/testUtils/globalSetup.ts
index 7027d24e0..745f6b1f1 100644
--- a/testUtils/globalSetup.ts
+++ b/testUtils/globalSetup.ts
@@ -1,3 +1,3 @@
-module.exports = async function () {
+module.exports = function () {
process.env.TZ = "UTC";
};
diff --git a/vite.config.js b/vite.config.js
index c99fb2f4b..e08b380f5 100644
--- a/vite.config.js
+++ b/vite.config.js
@@ -1,7 +1,7 @@
/* eslint-disable no-console */
import { NodeGlobalsPolyfillPlugin } from "@esbuild-plugins/node-globals-polyfill";
import react from "@vitejs/plugin-react-swc";
-import { copyFileSync } from "fs";
+import { copyFileSync, mkdirSync } from "fs";
import path from "path";
import nodePolyfills from "rollup-plugin-polyfill-node";
import { defineConfig, loadEnv, searchForWorkspaceRoot } from "vite";
@@ -13,7 +13,11 @@ const copyOgImage = () => ({
name: "copy-og-image",
apply: "build",
writeBundle: () => {
- copyFileSync("./assets/og.png", "./build/dashboard/og.png");
+ mkdirSync(path.resolve("build", "dashboard"), { recursive: true });
+ copyFileSync(
+ path.resolve("assets", "og.png"),
+ path.resolve("build", "dashboard", "og.png"),
+ );
},
});
@@ -57,7 +61,7 @@ export default defineConfig(({ command, mode }) => {
const plugins = [
react(),
createHtmlPlugin({
- entry: "/index.tsx",
+ entry: path.resolve(__dirname, "src", "index.tsx"),
template: "index.html",
inject: {
data: {
@@ -115,7 +119,7 @@ export default defineConfig(({ command, mode }) => {
Since "src" is exposed as a root,
sw.js has to be moved above, to preventing loading in a dev mode.
*/
- srcDir: "../",
+ srcDir: path.resolve(__dirname),
filename: "sw.js",
}),
);