Mirror: The highly customizable and versatile GraphQL client with which you add on features like normalized caching as you grow.

chore(storybook): Deprecate & Remove @urql/storybook-addon (#3067)

-56
packages/storybook-addon/CHANGELOG.md
···
-
# @urql/storybook-addon
-
-
## 2.0.1
-
-
### Patch Changes
-
-
- remove dependency on `react-urql` from storybook exchange, by [@JoviDeCroock](https://github.com/JoviDeCroock) (See [#2646](https://github.com/FormidableLabs/urql/pull/2646))
-
-
## 2.0.0
-
-
### Major Changes
-
-
- **Goodbye IE11!** 👋 This major release removes support for IE11. All code that is shipped will be transpiled much less and will _not_ be ES5-compatible anymore, by [@kitten](https://github.com/kitten) (See [#2504](https://github.com/FormidableLabs/urql/pull/2504))
-
- Upgrade to [Wonka v6](https://github.com/0no-co/wonka) (`wonka@^6.0.0`), which has no breaking changes but is built to target ES2015 and comes with other minor improvements.
-
The library has fully been migrated to TypeScript which will hopefully help with making contributions easier!, by [@kitten](https://github.com/kitten) (See [#2504](https://github.com/FormidableLabs/urql/pull/2504))
-
-
## 1.0.9
-
-
### Patch Changes
-
-
- ⚠️ Fix Node.js ESM re-export detection for `@urql/core` in `urql` package and CommonJS output for all other CommonJS-first packages. This ensures that Node.js' `cjs-module-lexer` can correctly identify re-exports and report them properly. Otherwise, this will lead to a runtime error, by [@kitten](https://github.com/kitten) (See [#2485](https://github.com/FormidableLabs/urql/pull/2485))
-
-
## 1.0.8
-
-
### Patch Changes
-
-
- Extend peer dependency range of `graphql` to include `^16.0.0`.
-
As always when upgrading across many packages of `urql`, especially including `@urql/core` we recommend you to deduplicate dependencies after upgrading, using `npm dedupe` or `npx yarn-deduplicate`, by [@kitten](https://github.com/kitten) (See [#2133](https://github.com/FormidableLabs/urql/pull/2133))
-
-
## 1.0.7
-
-
### Patch Changes
-
-
- Remove closure-compiler from the build step (See [#1570](https://github.com/FormidableLabs/urql/pull/1570))
-
-
## 1.0.6
-
-
### Patch Changes
-
-
- Add Storybook metadata to `package.json` for npm discoverability, by [@coderkevin](https://github.com/coderkevin) (See [#1469](https://github.com/FormidableLabs/urql/pull/1469))
-
-
## 1.0.5
-
-
### Patch Changes
-
-
- Add missing optional dependency (@urql/devtools), by [@andyrichardson](https://github.com/andyrichardson) (See [#1129](https://github.com/FormidableLabs/urql/pull/1129))
-
-
## 1.0.4
-
-
### Patch Changes
-
-
- - Add `@urql/devtools` to `@urql/storybook-addon`. Previously it was not included (See [#1092](https://github.com/FormidableLabs/urql/issues/1092)), but now the exchange works out of the box with Storybook, by [@r281GQ](https://github.com/r281GQ) (See [#1112](https://github.com/FormidableLabs/urql/pull/1112))
-
-
## 1.0.3
-
-
**Initial Release**
-82
packages/storybook-addon/README.md
···
-
# Urql Storybook Addon
-
-
Create fixtures to model all the states of your GraphQL requests with Urql.
-
-
## Installation
-
-
```sh
-
npm i -D @urql/storybook-addon
-
```
-
-
## Usage
-
-
Add the decorator in your preview file at `.storybook/preview`
-
-
```tsx
-
import { addDecorator } from '@storybook/react';
-
import { urqlDecorator } from '@urql/storybook-addon';
-
-
addDecorator(urqlDecorator);
-
```
-
-
Mock states by using the `urql` parameter on your stories.
-
-
```tsx
-
export const MyStory: Story = () => <Users />;
-
-
MyStory.parameters = {
-
urql: () => ({ data: { user: { id: 1234, name: 'Steve' } } }),
-
};
-
```
-
-
## Examples
-
-
### Fetching state
-
-
Setting a query in an infinitely fetching state.
-
-
```tsx
-
MyStory.parameters = {
-
urql: () => new Promise(() => {}),
-
};
-
```
-
-
### Error state
-
-
Returning an error for a query.
-
-
```tsx
-
MyStory.parameters = {
-
urql: () => ({ errors: ['Some error'] }),
-
};
-
```
-
-
### Single response
-
-
Returning data for a query (single request).
-
-
```tsx
-
MyStory.parameters = {
-
urql: () => ({ data: { user: { id: 1234, name: 'Steve' } } }),
-
};
-
```
-
-
### Multiple queries
-
-
Returning data for multiple queries (conditional response).
-
-
```tsx
-
import { getOperationName } from 'urql';
-
-
MyStory.parameters = {
-
urql: op => {
-
if (getOperationName(op.query) === 'GetUser') {
-
return { data: { user: { id: 1234, name: 'Steve' } } };
-
}
-
-
if (getOperationName(op.query) === 'GetFeed') {
-
return { data: { feed: [{ id: 1, title: 'Fake news' }] } };
-
}
-
},
-
};
-
```
-76
packages/storybook-addon/package.json
···
-
{
-
"name": "@urql/storybook-addon",
-
"version": "2.0.1",
-
"description": "Make stories in Storybook with urql",
-
"sideEffects": false,
-
"homepage": "https://github.com/urql-graphql/urql/tree/main/packages/storybook-addon",
-
"bugs": "https://github.com/urql-graphql/urql/issues",
-
"license": "MIT",
-
"repository": {
-
"type": "git",
-
"url": "https://github.com/urql-graphql/urql.git",
-
"directory": "packages/storybook-addon"
-
},
-
"keywords": [
-
"addon",
-
"storybook",
-
"urql",
-
"graphql",
-
"preact",
-
"react",
-
"storybook-addon",
-
"data-state"
-
],
-
"main": "dist/urql-storybook-addon.js",
-
"module": "dist/urql-storybook-addon.es.js",
-
"types": "dist/urql-storybook-addon.d.ts",
-
"source": "src/decorator/react.ts",
-
"files": [
-
"LICENSE",
-
"CHANGELOG.md",
-
"README.md",
-
"dist/"
-
],
-
"scripts": {
-
"clean": "rimraf dist",
-
"check": "tsc --noEmit",
-
"lint": "eslint --ext=js,jsx,ts,tsx .",
-
"build": "rollup -c ../../scripts/rollup/config.mjs",
-
"prepare": "node ../../scripts/prepare/index.js",
-
"prepublishOnly": "run-s clean build"
-
},
-
"dependencies": {
-
"@urql/core": "^3.2.2",
-
"wonka": "^6.0.0"
-
},
-
"devDependencies": {
-
"@babel/core": ">=7.20.2",
-
"@storybook/preact": ">=6.0.28",
-
"@storybook/react": ">=6.0.28",
-
"@types/webpack-env": "^1.15.3",
-
"@urql/core": "workspace:*",
-
"@urql/devtools": "^2.0.2",
-
"@urql/preact": "workspace:*",
-
"graphql": "^16.0.0",
-
"preact": "^10.5.5",
-
"react": "^17.0.2",
-
"react-dom": "^17.0.2",
-
"react-is": "^17.0.2",
-
"typescript": ">=4.7.3",
-
"urql": "workspace:*",
-
"webpack": ">=4.4.6",
-
"wonka": "^6.0.0"
-
},
-
"optionalDependencies": {
-
"@storybook/addons": ">=6.0.28",
-
"@urql/devtools": ">=2.0.0",
-
"react": ">= 16.8.0"
-
},
-
"publishConfig": {
-
"access": "public"
-
},
-
"storybook": {
-
"icon": "https://github.com/urql-graphql/urql/raw/main/packages/site/src/assets/sidebar-badge.svg",
-
"displayName": "urql"
-
}
-
}
-1
packages/storybook-addon/register.js
···
-
require('./dist/register');
-18
packages/storybook-addon/src/decorator/preact.ts
···
-
/** FUTURE EXPORT - NOT CURRENTLY BEING USED */
-
import { addDecorator } from '@storybook/preact';
-
import { Provider, createClient } from '@urql/preact';
-
import { devtoolsExchange } from '@urql/devtools';
-
import { createElement } from 'preact';
-
import { getStorybookExchange } from '../exchange';
-
-
export const urqlDecorator: Parameters<typeof addDecorator>[0] = (
-
Story,
-
context
-
) => {
-
const client = createClient({
-
url: '/graphql',
-
exchanges: [devtoolsExchange, getStorybookExchange(context)],
-
});
-
-
return createElement(Provider, { value: client, children: Story(context) });
-
};
-18
packages/storybook-addon/src/decorator/react.ts
···
-
import '../storybook';
-
import { addDecorator } from '@storybook/react';
-
import { createElement } from 'react';
-
import { Provider, createClient } from 'urql';
-
import { devtoolsExchange } from '@urql/devtools';
-
import { getStorybookExchange } from '../exchange';
-
-
export const urqlDecorator: Parameters<typeof addDecorator>[0] = (
-
Story,
-
context
-
) => {
-
const client = createClient({
-
url: 'storehhh',
-
exchanges: [devtoolsExchange, getStorybookExchange(context)],
-
});
-
-
return createElement(Provider, { value: client }, Story(context));
-
};
-15
packages/storybook-addon/src/exchange.ts
···
-
import { Exchange, makeResult } from '@urql/core';
-
import { pipe, map, mergeMap, fromPromise, fromValue } from 'wonka';
-
-
export const getStorybookExchange = <T extends { parameters: any }>(
-
context: T
-
): Exchange => () => op =>
-
pipe(
-
op,
-
map(operation => [operation, context.parameters.urql(operation)]),
-
mergeMap(([operation, result]) =>
-
'then' in result
-
? fromPromise(result.then((r: any) => makeResult(operation, r)))
-
: fromValue(makeResult(operation, result))
-
)
-
);
-6
packages/storybook-addon/src/register.ts
···
-
import addons from '@storybook/addons';
-
-
// We might use this in the future...
-
addons.register('storybook-addon-urql', () => {
-
return;
-
});
-11
packages/storybook-addon/src/storybook.ts
···
-
import { Operation, OperationResult } from '@urql/core';
-
-
declare module '@storybook/addons' {
-
type UrqlParameterResponse = Pick<OperationResult, 'data' | 'error'>;
-
-
export interface Parameters {
-
urql: (
-
o: Operation
-
) => UrqlParameterResponse | Promise<UrqlParameterResponse>;
-
}
-
}
-4
packages/storybook-addon/tsconfig.json
···
-
{
-
"extends": "../../tsconfig.json",
-
"include": ["src"]
-
}
+10 -2669
pnpm-lock.yaml
···
'@urql/core': link:../core
'@urql/exchange-graphcache': link:../../exchanges/graphcache
-
packages/storybook-addon:
-
specifiers:
-
'@babel/core': '>=7.20.2'
-
'@storybook/addons': '>=6.0.28'
-
'@storybook/preact': '>=6.0.28'
-
'@storybook/react': '>=6.0.28'
-
'@types/webpack-env': ^1.15.3
-
'@urql/core': ^3.2.2
-
'@urql/devtools': '>=2.0.0'
-
'@urql/preact': workspace:*
-
graphql: ^16.0.0
-
preact: ^10.5.5
-
react: ^17.0.2
-
react-dom: ^17.0.2
-
react-is: ^17.0.2
-
typescript: '>=4.7.3'
-
urql: workspace:*
-
webpack: '>=4.4.6'
-
wonka: ^6.2.4
-
dependencies:
-
'@urql/core': link:../core
-
wonka: 6.2.4
-
optionalDependencies:
-
'@storybook/addons': 6.2.9_sfoxds7t5ydpegc3knd667wn6m
-
'@urql/devtools': 2.0.3_6datu6bk5t3os3oamu6of3ptzi
-
react: 17.0.2
-
devDependencies:
-
'@babel/core': 7.20.2
-
'@storybook/preact': 6.2.9_laptue73bzetv6hwnkabr7ajj4
-
'@storybook/react': 6.2.9_uezg7gfbupdjysrqj3jm2wx4ca
-
'@types/webpack-env': 1.16.0
-
'@urql/preact': link:../preact-urql
-
graphql: 16.0.1
-
preact: 10.5.13
-
react-dom: 17.0.2_react@17.0.2
-
react-is: 17.0.2
-
typescript: 4.9.3
-
urql: link:../react-urql
-
webpack: 4.46.0
-
packages/svelte-urql:
specifiers:
'@urql/core': ^3.2.2
···
transitivePeerDependencies:
- supports-color
-
/@babel/code-frame/7.10.4:
-
resolution: {integrity: sha512-vG6SvB6oYEhvgisZNFRmRCUkLz11c7rp+tbNTynGqc6mS1d5ATd/sGyV6W0KZZnXRKMTzZDRgQT3Ou9jhpAfUg==}
-
dependencies:
-
'@babel/highlight': 7.18.6
-
dev: true
-
/@babel/code-frame/7.12.11:
resolution: {integrity: sha512-Zt1yodBx1UcyiePMSkWnU4hPqhwq7hGi2nFL1LeA3EUl+q2LQx16MISgJ0+z7dnmgvP9QtIleuETGOiOH1RcIw==}
dependencies:
···
'@babel/helper-annotate-as-pure': 7.18.6
regexpu-core: 4.7.1
-
/@babel/helper-define-polyfill-provider/0.1.5_@babel+core@7.20.2:
-
resolution: {integrity: sha512-nXuzCSwlJ/WKr8qxzW816gwyT6VZgiJG17zR40fou70yfAcqjoNyTLl/DQ+FExw5Hx5KNqshmN8Ldl/r2N7cTg==}
-
peerDependencies:
-
'@babel/core': ^7.4.0-0
-
dependencies:
-
'@babel/core': 7.20.2
-
'@babel/helper-compilation-targets': 7.20.0_@babel+core@7.20.2
-
'@babel/helper-module-imports': 7.18.6
-
'@babel/helper-plugin-utils': 7.20.2
-
'@babel/traverse': 7.20.1
-
debug: 4.3.4
-
lodash.debounce: 4.0.8
-
resolve: 1.22.1
-
semver: 6.3.0
-
transitivePeerDependencies:
-
- supports-color
-
dev: true
-
/@babel/helper-define-polyfill-provider/0.2.0_@babel+core@7.20.2:
resolution: {integrity: sha512-JT8tHuFjKBo8NnaUbblz7mIu1nnvUDiHVjXXkulZULyidvo/7P6TY7+YqpV37IfF+KUFxmlK04elKtGKXaiVgw==}
peerDependencies:
···
transitivePeerDependencies:
- supports-color
-
/@babel/plugin-proposal-decorators/7.13.15_@babel+core@7.20.2:
-
resolution: {integrity: sha512-ibAMAqUm97yzi+LPgdr5Nqb9CMkeieGHvwPg1ywSGjZrZHQEGqE01HmOio8kxRpA/+VtOHouIVy2FMpBbtltjA==}
-
peerDependencies:
-
'@babel/core': ^7.0.0-0
-
dependencies:
-
'@babel/core': 7.20.2
-
'@babel/helper-create-class-features-plugin': 7.13.11_@babel+core@7.20.2
-
'@babel/helper-plugin-utils': 7.20.2
-
'@babel/plugin-syntax-decorators': 7.12.13_@babel+core@7.20.2
-
transitivePeerDependencies:
-
- supports-color
-
dev: true
-
/@babel/plugin-proposal-dynamic-import/7.13.8_@babel+core@7.20.2:
resolution: {integrity: sha512-ONWKj0H6+wIRCkZi9zSbZtE/r73uOhMVHh256ys0UzfM7I3d4n+spZNWjOnJv2gzopumP2Wxi186vI8N0Y2JyQ==}
peerDependencies:
···
'@babel/core': 7.20.2
'@babel/helper-plugin-utils': 7.20.2
-
/@babel/plugin-syntax-decorators/7.12.13_@babel+core@7.20.2:
-
resolution: {integrity: sha512-Rw6aIXGuqDLr6/LoBBYE57nKOzQpz/aDkKlMqEwH+Vp0MXbG6H/TfRjaY343LKxzAKAMXIHsQ8JzaZKuDZ9MwA==}
-
peerDependencies:
-
'@babel/core': ^7.0.0-0
-
dependencies:
-
'@babel/core': 7.20.2
-
'@babel/helper-plugin-utils': 7.20.2
-
dev: true
-
/@babel/plugin-syntax-dynamic-import/7.8.3_@babel+core@7.20.2:
resolution: {integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==}
peerDependencies:
···
dependencies:
'@babel/core': 7.20.2
'@babel/helper-plugin-utils': 7.20.2
-
-
/@babel/plugin-syntax-flow/7.12.13_@babel+core@7.20.2:
-
resolution: {integrity: sha512-J/RYxnlSLXZLVR7wTRsozxKT8qbsx1mNKJzXEEjQ0Kjx1ZACcyHgbanNWNCFtc36IzuWhYWPpvJFFoexoOWFmA==}
-
peerDependencies:
-
'@babel/core': ^7.0.0-0
-
dependencies:
-
'@babel/core': 7.20.2
-
'@babel/helper-plugin-utils': 7.20.2
-
dev: true
/@babel/plugin-syntax-json-strings/7.8.3_@babel+core@7.20.2:
resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==}
···
'@babel/core': 7.20.2
'@babel/helper-plugin-utils': 7.20.2
-
/@babel/plugin-syntax-typescript/7.12.13_@babel+core@7.20.2:
-
resolution: {integrity: sha512-cHP3u1JiUiG2LFDKbXnwVad81GvfyIOmCD6HIEId6ojrY0Drfy2q1jw7BwN7dE84+kTnBjLkXoL3IEy/3JPu2w==}
-
peerDependencies:
-
'@babel/core': ^7.0.0-0
-
dependencies:
-
'@babel/core': 7.20.2
-
'@babel/helper-plugin-utils': 7.20.2
-
dev: true
-
/@babel/plugin-transform-arrow-functions/7.13.0_@babel+core@7.20.2:
resolution: {integrity: sha512-96lgJagobeVmazXFaDrbmCLQxBysKu7U6Do3mLsx27gf5Dk85ezysrs2BZUpXD703U/Su1xTBDxxar2oa4jAGg==}
peerDependencies:
···
'@babel/helper-builder-binary-assignment-operator-visitor': 7.12.13
'@babel/helper-plugin-utils': 7.20.2
-
/@babel/plugin-transform-flow-strip-types/7.13.0_@babel+core@7.20.2:
-
resolution: {integrity: sha512-EXAGFMJgSX8gxWD7PZtW/P6M+z74jpx3wm/+9pn+c2dOawPpBkUX7BrfyPvo6ZpXbgRIEuwgwDb/MGlKvu2pOg==}
-
peerDependencies:
-
'@babel/core': ^7.0.0-0
-
dependencies:
-
'@babel/core': 7.20.2
-
'@babel/helper-plugin-utils': 7.20.2
-
'@babel/plugin-syntax-flow': 7.12.13_@babel+core@7.20.2
-
dev: true
-
/@babel/plugin-transform-for-of/7.13.0_@babel+core@7.20.2:
resolution: {integrity: sha512-IHKT00mwUVYE0zzbkDgNRP6SRzvfGCYsOxIRz8KsiaaHCcT9BWIkO+H9QRJseHBLOGBZkHUdHiqj6r0POsdytg==}
peerDependencies:
···
'@babel/core': 7.20.2
'@babel/helper-plugin-utils': 7.20.2
-
/@babel/plugin-transform-typescript/7.13.0_@babel+core@7.20.2:
-
resolution: {integrity: sha512-elQEwluzaU8R8dbVuW2Q2Y8Nznf7hnjM7+DSCd14Lo5fF63C9qNLbwZYbmZrtV9/ySpSUpkRpQXvJb6xyu4hCQ==}
-
peerDependencies:
-
'@babel/core': ^7.0.0-0
-
dependencies:
-
'@babel/core': 7.20.2
-
'@babel/helper-create-class-features-plugin': 7.13.11_@babel+core@7.20.2
-
'@babel/helper-plugin-utils': 7.20.2
-
'@babel/plugin-syntax-typescript': 7.12.13_@babel+core@7.20.2
-
transitivePeerDependencies:
-
- supports-color
-
dev: true
-
/@babel/plugin-transform-unicode-escapes/7.12.13_@babel+core@7.20.2:
resolution: {integrity: sha512-0bHEkdwJ/sN/ikBHfSmOXPypN/beiGqjo+o4/5K+vxEFNPRPdImhviPakMKG4x96l85emoa0Z6cDflsdBusZbw==}
peerDependencies:
···
transitivePeerDependencies:
- supports-color
-
/@babel/preset-flow/7.13.13_@babel+core@7.20.2:
-
resolution: {integrity: sha512-MDtwtamMifqq3R2mC7l3A3uFalUb3NH5TIBQWjN/epEPlZktcLq4se3J+ivckKrLMGsR7H9LW8+pYuIUN9tsKg==}
-
peerDependencies:
-
'@babel/core': ^7.0.0-0
-
dependencies:
-
'@babel/core': 7.20.2
-
'@babel/helper-plugin-utils': 7.20.2
-
'@babel/helper-validator-option': 7.18.6
-
'@babel/plugin-transform-flow-strip-types': 7.13.0_@babel+core@7.20.2
-
dev: true
-
/@babel/preset-modules/0.1.4_@babel+core@7.20.2:
resolution: {integrity: sha512-J36NhwnfdzpmH41M1DrnkkgAqhZaqr/NBdPfQ677mLzlaXo+oDiv1deyCDtgAhz8p328otdob0Du7+xgHGZbKg==}
peerDependencies:
···
/@babel/preset-stage-0/7.8.3:
resolution: {integrity: sha512-+l6FlG1j73t4wh78W41StbcCz0/9a1/y+vxfnjtHl060kSmcgMfGzK9MEkLvrCOXfhp9RCX+d88sm6rOqxEIEQ==}
-
-
/@babel/preset-typescript/7.13.0_@babel+core@7.20.2:
-
resolution: {integrity: sha512-LXJwxrHy0N3f6gIJlYbLta1D9BDtHpQeqwzM0LIfjDlr6UE/D5Mc7W4iDiQzaE+ks0sTjT26ArcHWnJVt0QiHw==}
-
peerDependencies:
-
'@babel/core': ^7.0.0-0
-
dependencies:
-
'@babel/core': 7.20.2
-
'@babel/helper-plugin-utils': 7.20.2
-
'@babel/helper-validator-option': 7.18.6
-
'@babel/plugin-transform-typescript': 7.13.0_@babel+core@7.20.2
-
transitivePeerDependencies:
-
- supports-color
-
dev: true
/@babel/register/7.13.16_@babel+core@7.20.2:
resolution: {integrity: sha512-dh2t11ysujTwByQjXNgJ48QZ2zcXKQVdV8s0TbeMI0flmtGWCdTwK9tJiACHXPLmncm5+ktNn/diojA45JE4jg==}
···
- supports-color
dev: true
-
/@emotion/cache/10.0.29:
-
resolution: {integrity: sha512-fU2VtSVlHiF27empSbxi1O2JFdNWZO+2NFHfwO0pxgTep6Xa3uGb+3pVKfLww2l/IBGLNEZl5Xf/++A4wAYDYQ==}
-
dependencies:
-
'@emotion/sheet': 0.9.4
-
'@emotion/stylis': 0.8.5
-
'@emotion/utils': 0.11.3
-
'@emotion/weak-memoize': 0.2.5
-
-
/@emotion/core/10.1.1_react@17.0.2:
-
resolution: {integrity: sha512-ZMLG6qpXR8x031NXD8HJqugy/AZSkAuMxxqB46pmAR7ze47MhNJ56cdoX243QPZdGctrdfo+s08yZTiwaUcRKA==}
-
peerDependencies:
-
react: '>=16.3.0 || 17'
-
dependencies:
-
'@babel/runtime': 7.20.1
-
'@emotion/cache': 10.0.29
-
'@emotion/css': 10.0.27
-
'@emotion/serialize': 0.11.16
-
'@emotion/sheet': 0.9.4
-
'@emotion/utils': 0.11.3
-
react: 17.0.2
-
-
/@emotion/css/10.0.27:
-
resolution: {integrity: sha512-6wZjsvYeBhyZQYNrGoR5yPMYbMBNEnanDrqmsqS1mzDm1cOTu12shvl2j4QHNS36UaTE0USIJawCH9C8oW34Zw==}
-
dependencies:
-
'@emotion/serialize': 0.11.16
-
'@emotion/utils': 0.11.3
-
babel-plugin-emotion: 10.2.2
-
-
/@emotion/hash/0.8.0:
-
resolution: {integrity: sha512-kBJtf7PH6aWwZ6fka3zQ0p6SBYzx4fl1LoZXE2RrnYST9Xljm7WfKJrU4g/Xr3Beg72MLrp1AWNUmuYJTL7Cow==}
-
/@emotion/is-prop-valid/0.8.8:
resolution: {integrity: sha512-u5WtneEAr5IDG2Wv65yhunPSMLIpuKsbuOktRojfrEiEvRyC85LgPMZI63cr7NUqT8ZIGdSVg8ZKGxIug4lXcA==}
dependencies:
···
/@emotion/memoize/0.7.4:
resolution: {integrity: sha512-Ja/Vfqe3HpuzRsG1oBtWTHk2PGZ7GR+2Vz5iYGelAw8dx32K0y7PjVuxK6z1nMpZOqAFsRUPCkK1YjJ56qJlgw==}
-
/@emotion/serialize/0.11.16:
-
resolution: {integrity: sha512-G3J4o8by0VRrO+PFeSc3js2myYNOXVJ3Ya+RGVxnshRYgsvErfAOglKAiy1Eo1vhzxqtUvjCyS5gtewzkmvSSg==}
-
dependencies:
-
'@emotion/hash': 0.8.0
-
'@emotion/memoize': 0.7.4
-
'@emotion/unitless': 0.7.5
-
'@emotion/utils': 0.11.3
-
csstype: 2.6.21
-
-
/@emotion/sheet/0.9.4:
-
resolution: {integrity: sha512-zM9PFmgVSqBw4zL101Q0HrBVTGmpAxFZH/pYx/cjJT5advXguvcgjHFTCaIO3enL/xr89vK2bh0Mfyj9aa0ANA==}
-
-
/@emotion/styled-base/10.0.31_go5tdyoyk4iceqw7gzblglw2da:
-
resolution: {integrity: sha512-wTOE1NcXmqMWlyrtwdkqg87Mu6Rj1MaukEoEmEkHirO5IoHDJ8LgCQL4MjJODgxWxXibGR3opGp1p7YvkNEdXQ==}
-
peerDependencies:
-
'@emotion/core': ^10.0.28
-
react: '>=16.3.0 || 17'
-
dependencies:
-
'@babel/runtime': 7.20.1
-
'@emotion/core': 10.1.1_react@17.0.2
-
'@emotion/is-prop-valid': 0.8.8
-
'@emotion/serialize': 0.11.16
-
'@emotion/utils': 0.11.3
-
react: 17.0.2
-
-
/@emotion/styled/10.0.27_go5tdyoyk4iceqw7gzblglw2da:
-
resolution: {integrity: sha512-iK/8Sh7+NLJzyp9a5+vIQIXTYxfT4yB/OJbjzQanB2RZpvmzBQOHZWhpAMZWYEKRNNbsD6WfBw5sVWkb6WzS/Q==}
-
peerDependencies:
-
'@emotion/core': ^10.0.27
-
react: '>=16.3.0 || 17'
-
dependencies:
-
'@emotion/core': 10.1.1_react@17.0.2
-
'@emotion/styled-base': 10.0.31_go5tdyoyk4iceqw7gzblglw2da
-
babel-plugin-emotion: 10.2.2
-
react: 17.0.2
-
/@emotion/stylis/0.8.5:
resolution: {integrity: sha512-h6KtPihKFn3T9fuIrwvXXUOwlx3rfUvfZIcP5a6rh8Y7zjE3O06hT5Ss4S/YI1AYhuZ1kjaE/5EaOOI2NqSylQ==}
/@emotion/unitless/0.7.5:
resolution: {integrity: sha512-OWORNpfjMsSSUBVrRBVGECkhWcULOAJz9ZW8uK9qgxD+87M7jHRcvh/A96XXNhXTLmKcoYSQtBEX7lHMO7YRwg==}
-
-
/@emotion/utils/0.11.3:
-
resolution: {integrity: sha512-0o4l6pZC+hI88+bzuaX/6BgOvQVhbt2PfmxauVaYOGgbsAw14wdKyvMCZXnsnsHys94iadcF+RG/wZyx6+ZZBw==}
-
-
/@emotion/weak-memoize/0.2.5:
-
resolution: {integrity: sha512-6U71C2Wp7r5XtFtQzYrW5iKFT67OixrSxjI4MptCHzdSVlgabczzqLe0ZSgnub/5Kp4hSbpDB1tMytZY9pwxxA==}
/@esbuild/android-arm/0.15.15:
resolution: {integrity: sha512-JJjZjJi2eBL01QJuWjfCdZxcIgot+VoK6Fq7eKF9w4YHm9hwl7nhBR1o2Wnt/WcANk5l9SkpvrldW1PLuXxcbw==}
···
/@mdx-js/util/1.6.22:
resolution: {integrity: sha512-H1rQc1ZOHANWBvPcW+JpGwr+juXSxM8Q8YCkm3GhZd8REu1fHR3z99CErO1p9pkcfcxZnMdIZdIsXkOHY0NilA==}
-
/@mrmlnc/readdir-enhanced/2.2.1:
-
resolution: {integrity: sha512-bPHp6Ji8b41szTOcaP63VlnbbO5Ny6dwAATtY6JTjh5N2OLrb5Qk/Th5cRkRQhkWCt+EJsYrNB0MiL+Gpn6e3g==}
-
engines: {node: '>=4'}
-
dependencies:
-
call-me-maybe: 1.0.1
-
glob-to-regexp: 0.3.0
-
dev: true
-
/@next/env/11.0.1:
resolution: {integrity: sha512-yZfKh2U6R9tEYyNUrs2V3SBvCMufkJ07xMH5uWy8wqcl5gAXoEw6A/1LDqwX3j7pUutF9d1ZxpdGDA3Uag+aQQ==}
dev: true
···
run-parallel: 1.2.0
dev: true
-
/@nodelib/fs.stat/1.1.3:
-
resolution: {integrity: sha512-shAmDyaQC4H92APFoIaVDHCx5bStIocgvbwQyxPRrbUY20V1EYTbSDchWbuwlMG3V17cprZhA6+78JfB+3DTPw==}
-
engines: {node: '>= 6'}
-
dev: true
-
/@nodelib/fs.stat/2.0.5:
resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==}
engines: {node: '>= 8'}
···
dependencies:
'@nodelib/fs.scandir': 2.1.5
fastq: 1.11.0
-
dev: true
-
-
/@npmcli/move-file/1.1.2:
-
resolution: {integrity: sha512-1SUf/Cg2GzGDyaf15aR9St9TWlb+XvbZXWpDx8YKs7MLzMH/BCeopv+y9vzrzgkfykCGuWOlSu3mZhj2+FQcrg==}
-
engines: {node: '>=10'}
-
deprecated: This functionality has been moved to @npmcli/fs
-
dependencies:
-
mkdirp: 1.0.4
-
rimraf: 3.0.2
dev: true
/@octokit/auth-token/2.4.5:
···
dependencies:
'@octokit/openapi-types': 12.11.0
-
/@pmmmwh/react-refresh-webpack-plugin/0.4.3_cm7sgex5fx52t7b3g2lvgocuuy:
-
resolution: {integrity: sha512-br5Qwvh8D2OQqSXpd1g/xqXKnK0r+Jz6qVKBbWmpUcrbGOxUrf39V5oZ1876084CGn18uMdR5uvPqBv9UqtBjQ==}
-
engines: {node: '>= 10.x'}
-
peerDependencies:
-
'@types/webpack': 4.x
-
react-refresh: '>=0.8.3 <0.10.0'
-
sockjs-client: ^1.4.0
-
type-fest: ^0.13.1
-
webpack: '>=4.43.0 <6.0.0'
-
webpack-dev-server: 3.x
-
webpack-hot-middleware: 2.x
-
webpack-plugin-serve: 0.x || 1.x
-
peerDependenciesMeta:
-
'@types/webpack':
-
optional: true
-
sockjs-client:
-
optional: true
-
type-fest:
-
optional: true
-
webpack-dev-server:
-
optional: true
-
webpack-hot-middleware:
-
optional: true
-
webpack-plugin-serve:
-
optional: true
-
dependencies:
-
ansi-html: 0.0.7
-
error-stack-parser: 2.0.6
-
html-entities: 1.4.0
-
native-url: 0.2.6
-
react-refresh: 0.8.3
-
schema-utils: 2.7.1
-
source-map: 0.7.4
-
webpack: 4.46.0
-
dev: true
-
-
/@popperjs/core/2.9.2:
-
resolution: {integrity: sha512-VZMYa7+fXHdwIq1TDhSXoVmSPEGM/aa+6Aiq3nVVJ9bXr24zScr+NlKFKC3iPljA7ho/GAZr+d2jOf5GIRC30Q==}
-
dev: true
-
/@reach/router/1.3.4_sfoxds7t5ydpegc3knd667wn6m:
resolution: {integrity: sha512-+mtn9wjlB9NN2CNnnC/BRYtwdKBfSyyasPYraNAyvaV1occr/5NnB4CVzjEZipNHwYebQwcndGUmpFzxAUoqSA==}
peerDependencies:
···
resolution: {integrity: sha512-ONhaKPIufzzrlNbqtWFFd+jlnemX6lJAgq9ZeiZtS7I1PIf/la7CW4m83rTXRnVnsMbW2k56pGYu7AUFJD9Pow==}
engines: {node: '>=4'}
-
/@storybook/addons/6.2.9_sfoxds7t5ydpegc3knd667wn6m:
-
resolution: {integrity: sha512-GnmEKbJwiN1jncN9NSA8CuR1i2XAlasPcl/Zn0jkfV9WitQeczVcJCPw86SGH84AD+tTBCyF2i9UC0KaOV1YBQ==}
-
peerDependencies:
-
react: ^16.8.0 || ^17.0.0 || 17
-
react-dom: ^16.8.0 || ^17.0.0 || 17
-
dependencies:
-
'@storybook/api': 6.2.9_sfoxds7t5ydpegc3knd667wn6m
-
'@storybook/channels': 6.2.9
-
'@storybook/client-logger': 6.2.9
-
'@storybook/core-events': 6.2.9
-
'@storybook/router': 6.2.9_sfoxds7t5ydpegc3knd667wn6m
-
'@storybook/theming': 6.2.9_sfoxds7t5ydpegc3knd667wn6m
-
core-js: 3.11.1
-
global: 4.4.0
-
react: 17.0.2
-
react-dom: 17.0.2_react@17.0.2
-
regenerator-runtime: 0.13.11
-
-
/@storybook/api/6.2.9_sfoxds7t5ydpegc3knd667wn6m:
-
resolution: {integrity: sha512-okkA3HAScE9tGnYBrjTOcgzT+L1lRHNoEh3ZfGgh1u/XNEyHGNkj4grvkd6nX7BzRcYQ/l2VkcKCqmOjUnSkVQ==}
-
peerDependencies:
-
react: ^16.8.0 || ^17.0.0 || 17
-
react-dom: ^16.8.0 || ^17.0.0 || 17
-
dependencies:
-
'@reach/router': 1.3.4_sfoxds7t5ydpegc3knd667wn6m
-
'@storybook/channels': 6.2.9
-
'@storybook/client-logger': 6.2.9
-
'@storybook/core-events': 6.2.9
-
'@storybook/csf': 0.0.1
-
'@storybook/router': 6.2.9_sfoxds7t5ydpegc3knd667wn6m
-
'@storybook/semver': 7.3.2
-
'@storybook/theming': 6.2.9_sfoxds7t5ydpegc3knd667wn6m
-
'@types/reach__router': 1.3.7
-
core-js: 3.11.1
-
fast-deep-equal: 3.1.3
-
global: 4.4.0
-
lodash: 4.17.21
-
memoizerific: 1.11.3
-
qs: 6.10.1
-
react: 17.0.2
-
react-dom: 17.0.2_react@17.0.2
-
regenerator-runtime: 0.13.11
-
store2: 2.12.0
-
telejson: 5.1.1
-
ts-dedent: 2.1.1
-
util-deprecate: 1.0.2
-
-
/@storybook/builder-webpack4/6.2.9_wfh3mw2ke2bdr53qfq544ltemu:
-
resolution: {integrity: sha512-swECic1huVdj+B+iRJIQ8ds59HuPVE4fmhI+j/nhw0CQCsgAEKqDlOQVYEimW6nZX8GO4WxNm6tiiRzxixejbw==}
-
peerDependencies:
-
react: ^16.8.0 || ^17.0.0 || 17
-
react-dom: ^16.8.0 || ^17.0.0 || 17
-
typescript: '*'
-
peerDependenciesMeta:
-
typescript:
-
optional: true
-
dependencies:
-
'@babel/core': 7.20.2
-
'@babel/plugin-proposal-class-properties': 7.13.0_@babel+core@7.20.2
-
'@babel/plugin-proposal-decorators': 7.13.15_@babel+core@7.20.2
-
'@babel/plugin-proposal-export-default-from': 7.12.13_@babel+core@7.20.2
-
'@babel/plugin-proposal-nullish-coalescing-operator': 7.13.8_@babel+core@7.20.2
-
'@babel/plugin-proposal-object-rest-spread': 7.13.8_@babel+core@7.20.2
-
'@babel/plugin-proposal-optional-chaining': 7.13.12_@babel+core@7.20.2
-
'@babel/plugin-proposal-private-methods': 7.13.0_@babel+core@7.20.2
-
'@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.20.2
-
'@babel/plugin-transform-arrow-functions': 7.13.0_@babel+core@7.20.2
-
'@babel/plugin-transform-block-scoping': 7.20.2_@babel+core@7.20.2
-
'@babel/plugin-transform-classes': 7.13.0_@babel+core@7.20.2
-
'@babel/plugin-transform-destructuring': 7.13.17_@babel+core@7.20.2
-
'@babel/plugin-transform-for-of': 7.13.0_@babel+core@7.20.2
-
'@babel/plugin-transform-parameters': 7.13.0_@babel+core@7.20.2
-
'@babel/plugin-transform-shorthand-properties': 7.12.13_@babel+core@7.20.2
-
'@babel/plugin-transform-spread': 7.13.0_@babel+core@7.20.2
-
'@babel/plugin-transform-template-literals': 7.13.0_@babel+core@7.20.2
-
'@babel/preset-env': 7.13.15_@babel+core@7.20.2
-
'@babel/preset-react': 7.13.13_@babel+core@7.20.2
-
'@babel/preset-typescript': 7.13.0_@babel+core@7.20.2
-
'@storybook/addons': 6.2.9_sfoxds7t5ydpegc3knd667wn6m
-
'@storybook/api': 6.2.9_sfoxds7t5ydpegc3knd667wn6m
-
'@storybook/channel-postmessage': 6.2.9
-
'@storybook/channels': 6.2.9
-
'@storybook/client-api': 6.2.9_sfoxds7t5ydpegc3knd667wn6m
-
'@storybook/client-logger': 6.2.9
-
'@storybook/components': 6.2.9_sfoxds7t5ydpegc3knd667wn6m
-
'@storybook/core-common': 6.2.9_wfh3mw2ke2bdr53qfq544ltemu
-
'@storybook/core-events': 6.2.9
-
'@storybook/node-logger': 6.2.9
-
'@storybook/router': 6.2.9_sfoxds7t5ydpegc3knd667wn6m
-
'@storybook/semver': 7.3.2
-
'@storybook/theming': 6.2.9_sfoxds7t5ydpegc3knd667wn6m
-
'@storybook/ui': 6.2.9_sfoxds7t5ydpegc3knd667wn6m
-
'@types/node': 14.18.33
-
'@types/webpack': 4.41.27
-
autoprefixer: 9.8.6
-
babel-loader: 8.2.2_tktscwi5cl3qcx6vcfwkvrwn6i
-
babel-plugin-macros: 2.8.0
-
babel-plugin-polyfill-corejs3: 0.1.7_@babel+core@7.20.2
-
case-sensitive-paths-webpack-plugin: 2.4.0
-
core-js: 3.11.1
-
css-loader: 3.6.0_webpack@4.46.0
-
dotenv-webpack: 1.8.0_webpack@4.46.0
-
file-loader: 6.2.0_webpack@4.46.0
-
find-up: 5.0.0
-
fork-ts-checker-webpack-plugin: 4.1.6_4saukclyqastvrycwsozxxbldi
-
fs-extra: 9.1.0
-
glob: 7.1.6
-
glob-promise: 3.4.0_glob@7.1.6
-
global: 4.4.0
-
html-webpack-plugin: 4.5.2_webpack@4.46.0
-
pnp-webpack-plugin: 1.6.4_typescript@4.9.3
-
postcss: 7.0.35
-
postcss-flexbugs-fixes: 4.2.1
-
postcss-loader: 4.2.0_va2tfcrifoxmlipe46ek4ea33a
-
raw-loader: 4.0.2_webpack@4.46.0
-
react: 17.0.2
-
react-dev-utils: 11.0.4_4saukclyqastvrycwsozxxbldi
-
react-dom: 17.0.2_react@17.0.2
-
stable: 0.1.8
-
style-loader: 1.3.0_webpack@4.46.0
-
terser-webpack-plugin: 3.1.0_webpack@4.46.0
-
ts-dedent: 2.1.1
-
typescript: 4.9.3
-
url-loader: 4.1.1_lit45vopotvaqup7lrvlnvtxwy
-
util-deprecate: 1.0.2
-
webpack: 4.46.0
-
webpack-dev-middleware: 3.7.3_webpack@4.46.0
-
webpack-filter-warnings-plugin: 1.2.1_webpack@4.46.0
-
webpack-hot-middleware: 2.25.0
-
webpack-virtual-modules: 0.2.2
-
transitivePeerDependencies:
-
- '@types/react'
-
- bluebird
-
- eslint
-
- supports-color
-
- vue-template-compiler
-
- webpack-cli
-
- webpack-command
-
dev: true
-
-
/@storybook/channel-postmessage/6.2.9:
-
resolution: {integrity: sha512-OqV+gLeeCHR0KExsIz0B7gD17Cjd9D+I75qnBsLWM9inWO5kc/WZ5svw8Bvjlcm6snWpvxUaT8L+svuqcPSmww==}
-
dependencies:
-
'@storybook/channels': 6.2.9
-
'@storybook/client-logger': 6.2.9
-
'@storybook/core-events': 6.2.9
-
core-js: 3.11.1
-
global: 4.4.0
-
qs: 6.10.1
-
telejson: 5.1.1
-
dev: true
-
-
/@storybook/channels/6.2.9:
-
resolution: {integrity: sha512-6dC8Fb2ipNyOQXnUZMDeEUaJGH5DMLzyHlGLhVyDtrO5WR6bO8mQdkzf4+5dSKXgCBNX0BSkssXth4pDjn18rg==}
-
dependencies:
-
core-js: 3.11.1
-
ts-dedent: 2.1.1
-
util-deprecate: 1.0.2
-
-
/@storybook/client-api/6.2.9_sfoxds7t5ydpegc3knd667wn6m:
-
resolution: {integrity: sha512-aLvEUVkbvv6Qo/2mF4rFCecdqi2CGOUDdsV1a6EFIVS/9gXFdpirsOwKHo9qNjacGdWPlBYGCUcbrw+DvNaSFA==}
-
peerDependencies:
-
react: ^16.8.0 || ^17.0.0 || 17
-
react-dom: ^16.8.0 || ^17.0.0 || 17
-
dependencies:
-
'@storybook/addons': 6.2.9_sfoxds7t5ydpegc3knd667wn6m
-
'@storybook/channel-postmessage': 6.2.9
-
'@storybook/channels': 6.2.9
-
'@storybook/client-logger': 6.2.9
-
'@storybook/core-events': 6.2.9
-
'@storybook/csf': 0.0.1
-
'@types/qs': 6.9.6
-
'@types/webpack-env': 1.16.0
-
core-js: 3.11.1
-
global: 4.4.0
-
lodash: 4.17.21
-
memoizerific: 1.11.3
-
qs: 6.10.1
-
react: 17.0.2
-
react-dom: 17.0.2_react@17.0.2
-
regenerator-runtime: 0.13.11
-
stable: 0.1.8
-
store2: 2.12.0
-
ts-dedent: 2.1.1
-
util-deprecate: 1.0.2
-
dev: true
-
-
/@storybook/client-logger/6.2.9:
-
resolution: {integrity: sha512-IfOQZuvpjh66qBInQCJOb9S0dTGpzZ/Cxlcvokp+PYt95KztaWN3mPm+HaDQCeRsrWNe0Bpm1zuickcJ6dBOXg==}
-
dependencies:
-
core-js: 3.11.1
-
global: 4.4.0
-
-
/@storybook/components/6.2.9_sfoxds7t5ydpegc3knd667wn6m:
-
resolution: {integrity: sha512-hnV1MI2aB2g1sJ7NJphpxi7TwrMZQ/tpCJeHnkjmzyC6ez1MXqcBXGrEEdSXzRfAxjQTOEpu6H1mnns0xMP0Ag==}
-
peerDependencies:
-
react: ^16.8.0 || ^17.0.0 || 17
-
react-dom: ^16.8.0 || ^17.0.0 || 17
-
dependencies:
-
'@popperjs/core': 2.9.2
-
'@storybook/client-logger': 6.2.9
-
'@storybook/csf': 0.0.1
-
'@storybook/theming': 6.2.9_sfoxds7t5ydpegc3knd667wn6m
-
'@types/color-convert': 2.0.0
-
'@types/overlayscrollbars': 1.12.0
-
'@types/react-syntax-highlighter': 11.0.5
-
color-convert: 2.0.1
-
core-js: 3.11.1
-
fast-deep-equal: 3.1.3
-
global: 4.4.0
-
lodash: 4.17.21
-
markdown-to-jsx: 7.1.2_react@17.0.2
-
memoizerific: 1.11.3
-
overlayscrollbars: 1.13.1
-
polished: 4.1.2
-
prop-types: 15.8.1
-
react: 17.0.2
-
react-colorful: 5.1.4_sfoxds7t5ydpegc3knd667wn6m
-
react-dom: 17.0.2_react@17.0.2
-
react-popper-tooltip: 3.1.1_sfoxds7t5ydpegc3knd667wn6m
-
react-syntax-highlighter: 13.5.3_react@17.0.2
-
react-textarea-autosize: 8.3.2_react@17.0.2
-
regenerator-runtime: 0.13.11
-
ts-dedent: 2.1.1
-
util-deprecate: 1.0.2
-
transitivePeerDependencies:
-
- '@types/react'
-
dev: true
-
-
/@storybook/core-client/6.2.9_x724bwesb25ruwm3ydcuo2bxnu:
-
resolution: {integrity: sha512-jW841J5lCe1Ub5ZMtzYPgCy/OUddFxxVYeHLZyuNxlH5RoiQQxbDpuFlzuZMYGuIzD6eZw+ANE4w5vW/y5oBfA==}
-
peerDependencies:
-
react: ^16.8.0 || ^17.0.0 || 17
-
react-dom: ^16.8.0 || ^17.0.0 || 17
-
typescript: '*'
-
webpack: '*'
-
peerDependenciesMeta:
-
typescript:
-
optional: true
-
dependencies:
-
'@storybook/addons': 6.2.9_sfoxds7t5ydpegc3knd667wn6m
-
'@storybook/channel-postmessage': 6.2.9
-
'@storybook/client-api': 6.2.9_sfoxds7t5ydpegc3knd667wn6m
-
'@storybook/client-logger': 6.2.9
-
'@storybook/core-events': 6.2.9
-
'@storybook/csf': 0.0.1
-
'@storybook/ui': 6.2.9_sfoxds7t5ydpegc3knd667wn6m
-
ansi-to-html: 0.6.14
-
core-js: 3.11.1
-
global: 4.4.0
-
lodash: 4.17.21
-
qs: 6.10.1
-
react: 17.0.2
-
react-dom: 17.0.2_react@17.0.2
-
regenerator-runtime: 0.13.11
-
ts-dedent: 2.1.1
-
typescript: 4.9.3
-
unfetch: 4.2.0
-
util-deprecate: 1.0.2
-
webpack: 4.46.0
-
transitivePeerDependencies:
-
- '@types/react'
-
dev: true
-
-
/@storybook/core-common/6.2.9_wfh3mw2ke2bdr53qfq544ltemu:
-
resolution: {integrity: sha512-ve0Qb4EMit8jGibfZBprmaU2i4LtpB4vSMIzD9nB1YeBmw2cGhHubtmayZ0TwcV3fPQhtYH9wwRWuWyzzHyQyw==}
-
peerDependencies:
-
react: ^16.8.0 || ^17.0.0 || 17
-
react-dom: ^16.8.0 || ^17.0.0 || 17
-
typescript: '*'
-
peerDependenciesMeta:
-
typescript:
-
optional: true
-
dependencies:
-
'@babel/core': 7.20.2
-
'@babel/plugin-proposal-class-properties': 7.13.0_@babel+core@7.20.2
-
'@babel/plugin-proposal-decorators': 7.13.15_@babel+core@7.20.2
-
'@babel/plugin-proposal-export-default-from': 7.12.13_@babel+core@7.20.2
-
'@babel/plugin-proposal-nullish-coalescing-operator': 7.13.8_@babel+core@7.20.2
-
'@babel/plugin-proposal-object-rest-spread': 7.13.8_@babel+core@7.20.2
-
'@babel/plugin-proposal-optional-chaining': 7.13.12_@babel+core@7.20.2
-
'@babel/plugin-proposal-private-methods': 7.13.0_@babel+core@7.20.2
-
'@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.20.2
-
'@babel/plugin-transform-arrow-functions': 7.13.0_@babel+core@7.20.2
-
'@babel/plugin-transform-block-scoping': 7.20.2_@babel+core@7.20.2
-
'@babel/plugin-transform-classes': 7.13.0_@babel+core@7.20.2
-
'@babel/plugin-transform-destructuring': 7.13.17_@babel+core@7.20.2
-
'@babel/plugin-transform-for-of': 7.13.0_@babel+core@7.20.2
-
'@babel/plugin-transform-parameters': 7.13.0_@babel+core@7.20.2
-
'@babel/plugin-transform-shorthand-properties': 7.12.13_@babel+core@7.20.2
-
'@babel/plugin-transform-spread': 7.13.0_@babel+core@7.20.2
-
'@babel/preset-env': 7.13.15_@babel+core@7.20.2
-
'@babel/preset-react': 7.13.13_@babel+core@7.20.2
-
'@babel/preset-typescript': 7.13.0_@babel+core@7.20.2
-
'@babel/register': 7.13.16_@babel+core@7.20.2
-
'@storybook/node-logger': 6.2.9
-
'@storybook/semver': 7.3.2
-
'@types/glob-base': 0.3.0
-
'@types/micromatch': 4.0.1
-
'@types/node': 14.18.33
-
'@types/pretty-hrtime': 1.0.0
-
babel-loader: 8.2.2_tktscwi5cl3qcx6vcfwkvrwn6i
-
babel-plugin-macros: 3.0.1
-
babel-plugin-polyfill-corejs3: 0.1.7_@babel+core@7.20.2
-
chalk: 4.1.1
-
core-js: 3.11.1
-
express: 4.17.1
-
file-system-cache: 1.0.5
-
find-up: 5.0.0
-
fork-ts-checker-webpack-plugin: 6.2.5_4saukclyqastvrycwsozxxbldi
-
glob: 7.1.6
-
glob-base: 0.3.0
-
interpret: 2.2.0
-
json5: 2.2.1
-
lazy-universal-dotenv: 3.0.1
-
micromatch: 4.0.4
-
pkg-dir: 5.0.0
-
pretty-hrtime: 1.0.3
-
react: 17.0.2
-
react-dom: 17.0.2_react@17.0.2
-
resolve-from: 5.0.0
-
ts-dedent: 2.1.1
-
typescript: 4.9.3
-
util-deprecate: 1.0.2
-
webpack: 4.46.0
-
transitivePeerDependencies:
-
- eslint
-
- supports-color
-
- vue-template-compiler
-
- webpack-cli
-
- webpack-command
-
dev: true
-
-
/@storybook/core-events/6.2.9:
-
resolution: {integrity: sha512-xQmbX/oYQK1QsAGN8hriXX5SUKOoTUe3L4dVaVHxJqy7MReRWJpprJmCpbAPJzWS6WCbDFfCM5kVEexHLOzJlQ==}
-
dependencies:
-
core-js: 3.11.1
-
-
/@storybook/core-server/6.2.9_wfh3mw2ke2bdr53qfq544ltemu:
-
resolution: {integrity: sha512-DzihO73pj1Ro0Y4tq9hjw2mLMUYeSRPrx7CndCOBxcTHCKQ8Kd7Dee3wJ49t5/19V7TW1+4lYR59GAy73FeOAQ==}
-
peerDependencies:
-
'@storybook/builder-webpack5': 6.2.9
-
react: ^16.8.0 || ^17.0.0 || 17
-
react-dom: ^16.8.0 || ^17.0.0 || 17
-
typescript: '*'
-
peerDependenciesMeta:
-
'@storybook/builder-webpack5':
-
optional: true
-
typescript:
-
optional: true
-
dependencies:
-
'@babel/core': 7.20.2
-
'@babel/plugin-transform-template-literals': 7.13.0_@babel+core@7.20.2
-
'@babel/preset-react': 7.13.13_@babel+core@7.20.2
-
'@storybook/addons': 6.2.9_sfoxds7t5ydpegc3knd667wn6m
-
'@storybook/builder-webpack4': 6.2.9_wfh3mw2ke2bdr53qfq544ltemu
-
'@storybook/core-client': 6.2.9_x724bwesb25ruwm3ydcuo2bxnu
-
'@storybook/core-common': 6.2.9_wfh3mw2ke2bdr53qfq544ltemu
-
'@storybook/node-logger': 6.2.9
-
'@storybook/semver': 7.3.2
-
'@storybook/theming': 6.2.9_sfoxds7t5ydpegc3knd667wn6m
-
'@storybook/ui': 6.2.9_sfoxds7t5ydpegc3knd667wn6m
-
'@types/node': 14.18.33
-
'@types/node-fetch': 2.5.10
-
'@types/pretty-hrtime': 1.0.0
-
'@types/webpack': 4.41.27
-
airbnb-js-shims: 2.2.1
-
babel-loader: 8.2.2_tktscwi5cl3qcx6vcfwkvrwn6i
-
better-opn: 2.1.1
-
boxen: 4.2.0
-
case-sensitive-paths-webpack-plugin: 2.4.0
-
chalk: 4.1.1
-
cli-table3: 0.6.0
-
commander: 6.2.1
-
core-js: 3.11.1
-
cpy: 8.1.2
-
css-loader: 3.6.0_webpack@4.46.0
-
detect-port: 1.3.0
-
dotenv-webpack: 1.8.0_webpack@4.46.0
-
express: 4.17.1
-
file-loader: 6.2.0_webpack@4.46.0
-
file-system-cache: 1.0.5
-
find-up: 5.0.0
-
fs-extra: 9.1.0
-
global: 4.4.0
-
html-webpack-plugin: 4.5.2_webpack@4.46.0
-
ip: 1.1.5
-
node-fetch: 2.6.1
-
pnp-webpack-plugin: 1.6.4_typescript@4.9.3
-
pretty-hrtime: 1.0.3
-
prompts: 2.4.1
-
react: 17.0.2
-
react-dom: 17.0.2_react@17.0.2
-
read-pkg-up: 7.0.1
-
regenerator-runtime: 0.13.11
-
resolve-from: 5.0.0
-
serve-favicon: 2.5.0
-
style-loader: 1.3.0_webpack@4.46.0
-
telejson: 5.1.1
-
terser-webpack-plugin: 3.1.0_webpack@4.46.0
-
ts-dedent: 2.1.1
-
typescript: 4.9.3
-
url-loader: 4.1.1_lit45vopotvaqup7lrvlnvtxwy
-
util-deprecate: 1.0.2
-
webpack: 4.46.0
-
webpack-dev-middleware: 3.7.3_webpack@4.46.0
-
webpack-virtual-modules: 0.2.2
-
transitivePeerDependencies:
-
- '@types/react'
-
- bluebird
-
- eslint
-
- supports-color
-
- vue-template-compiler
-
- webpack-cli
-
- webpack-command
-
dev: true
-
-
/@storybook/core/6.2.9_x724bwesb25ruwm3ydcuo2bxnu:
-
resolution: {integrity: sha512-pzbyjWvj0t8m0kR2pC9GQne4sZn7Y/zfcbm6/31CL+yhzOQjfJEj3n4ZFUlxikXqQJPg1aWfypfyaeaLL0QyuA==}
-
peerDependencies:
-
'@storybook/builder-webpack5': 6.2.9
-
react: ^16.8.0 || ^17.0.0 || 17
-
react-dom: ^16.8.0 || ^17.0.0 || 17
-
typescript: '*'
-
peerDependenciesMeta:
-
'@storybook/builder-webpack5':
-
optional: true
-
typescript:
-
optional: true
-
dependencies:
-
'@storybook/core-client': 6.2.9_x724bwesb25ruwm3ydcuo2bxnu
-
'@storybook/core-server': 6.2.9_wfh3mw2ke2bdr53qfq544ltemu
-
react: 17.0.2
-
react-dom: 17.0.2_react@17.0.2
-
typescript: 4.9.3
-
transitivePeerDependencies:
-
- '@types/react'
-
- bluebird
-
- eslint
-
- supports-color
-
- vue-template-compiler
-
- webpack
-
- webpack-cli
-
- webpack-command
-
dev: true
-
-
/@storybook/csf/0.0.1:
-
resolution: {integrity: sha512-USTLkZze5gkel8MYCujSRBVIrUQ3YPBrLOx7GNk/0wttvVtlzWXAq9eLbQ4p/NicGxP+3T7KPEMVV//g+yubpw==}
-
dependencies:
-
lodash: 4.17.21
-
-
/@storybook/node-logger/6.2.9:
-
resolution: {integrity: sha512-ryRBChWZf1A5hOVONErJZosS25IdMweoMVFAUAcj91iC0ynoSA6YL2jmoE71jQchxEXEgkDeRkX9lR/GlqFGZQ==}
-
dependencies:
-
'@types/npmlog': 4.1.2
-
chalk: 4.1.1
-
core-js: 3.11.1
-
npmlog: 4.1.2
-
pretty-hrtime: 1.0.3
-
dev: true
-
-
/@storybook/preact/6.2.9_laptue73bzetv6hwnkabr7ajj4:
-
resolution: {integrity: sha512-AnbRtJfIyI6AGIIaduBe2Fnr4HPldycWr1fadqpytm9LBMQsYRCzXy2+AtBIfa0O5YDVqDcKda/uBsj1tNJzqw==}
-
engines: {node: '>=10.13.0'}
-
hasBin: true
-
peerDependencies:
-
'@babel/core': '*'
-
preact: ^8.0.0||^10.0.0
-
dependencies:
-
'@babel/core': 7.20.2
-
'@babel/plugin-transform-react-jsx': 7.19.0_@babel+core@7.20.2
-
'@storybook/addons': 6.2.9_sfoxds7t5ydpegc3knd667wn6m
-
'@storybook/core': 6.2.9_x724bwesb25ruwm3ydcuo2bxnu
-
'@storybook/core-common': 6.2.9_wfh3mw2ke2bdr53qfq544ltemu
-
'@types/webpack-env': 1.16.0
-
core-js: 3.11.1
-
global: 4.4.0
-
preact: 10.5.13
-
react: 17.0.2
-
react-dom: 17.0.2_react@17.0.2
-
read-pkg-up: 7.0.1
-
regenerator-runtime: 0.13.11
-
ts-dedent: 2.1.1
-
transitivePeerDependencies:
-
- '@storybook/builder-webpack5'
-
- '@types/react'
-
- bluebird
-
- eslint
-
- supports-color
-
- typescript
-
- vue-template-compiler
-
- webpack
-
- webpack-cli
-
- webpack-command
-
dev: true
-
-
/@storybook/react/6.2.9_uezg7gfbupdjysrqj3jm2wx4ca:
-
resolution: {integrity: sha512-glvw+o/Vek2oapYIXCYDK6gm3cuSnx0XdOpiJVcXk3KLb8JfLbdzGYYp6dcWUbyOBqGcGFRpXIgMmkcwgn+fvQ==}
-
engines: {node: '>=10.13.0'}
-
hasBin: true
-
peerDependencies:
-
'@babel/core': ^7.11.5
-
react: ^16.8.0 || ^17.0.0 || 17
-
react-dom: ^16.8.0 || ^17.0.0 || 17
-
typescript: '*'
-
peerDependenciesMeta:
-
'@babel/core':
-
optional: true
-
typescript:
-
optional: true
-
dependencies:
-
'@babel/core': 7.20.2
-
'@babel/preset-flow': 7.13.13_@babel+core@7.20.2
-
'@babel/preset-react': 7.13.13_@babel+core@7.20.2
-
'@pmmmwh/react-refresh-webpack-plugin': 0.4.3_cm7sgex5fx52t7b3g2lvgocuuy
-
'@storybook/addons': 6.2.9_sfoxds7t5ydpegc3knd667wn6m
-
'@storybook/core': 6.2.9_x724bwesb25ruwm3ydcuo2bxnu
-
'@storybook/core-common': 6.2.9_wfh3mw2ke2bdr53qfq544ltemu
-
'@storybook/node-logger': 6.2.9
-
'@storybook/semver': 7.3.2
-
'@types/webpack-env': 1.16.0
-
babel-plugin-add-react-displayname: 0.0.5
-
babel-plugin-named-asset-import: 0.3.7_@babel+core@7.20.2
-
babel-plugin-react-docgen: 4.2.1
-
core-js: 3.11.1
-
global: 4.4.0
-
lodash: 4.17.21
-
prop-types: 15.8.1
-
react: 17.0.2
-
react-dev-utils: 11.0.4_4saukclyqastvrycwsozxxbldi
-
react-docgen-typescript-plugin: 0.6.3_typescript@4.9.3
-
react-dom: 17.0.2_react@17.0.2
-
react-refresh: 0.8.3
-
read-pkg-up: 7.0.1
-
regenerator-runtime: 0.13.11
-
ts-dedent: 2.1.1
-
typescript: 4.9.3
-
webpack: 4.46.0
-
transitivePeerDependencies:
-
- '@storybook/builder-webpack5'
-
- '@types/react'
-
- '@types/webpack'
-
- bluebird
-
- eslint
-
- sockjs-client
-
- supports-color
-
- type-fest
-
- vue-template-compiler
-
- webpack-cli
-
- webpack-command
-
- webpack-dev-server
-
- webpack-hot-middleware
-
- webpack-plugin-serve
-
dev: true
-
-
/@storybook/router/6.2.9_sfoxds7t5ydpegc3knd667wn6m:
-
resolution: {integrity: sha512-7Bn1OFoItCl8whXRT8N1qp1Lky7kzXJ3aslWp5E8HcM8rxh4OYXfbaeiyJEJxBTGC5zxgY+tAEXHFjsAviFROg==}
-
peerDependencies:
-
react: ^16.8.0 || ^17.0.0 || 17
-
react-dom: ^16.8.0 || ^17.0.0 || 17
-
dependencies:
-
'@reach/router': 1.3.4_sfoxds7t5ydpegc3knd667wn6m
-
'@storybook/client-logger': 6.2.9
-
'@types/reach__router': 1.3.7
-
core-js: 3.11.1
-
fast-deep-equal: 3.1.3
-
global: 4.4.0
-
lodash: 4.17.21
-
memoizerific: 1.11.3
-
qs: 6.10.1
-
react: 17.0.2
-
react-dom: 17.0.2_react@17.0.2
-
ts-dedent: 2.1.1
-
-
/@storybook/semver/7.3.2:
-
resolution: {integrity: sha512-SWeszlsiPsMI0Ps0jVNtH64cI5c0UF3f7KgjVKJoNP30crQ6wUSddY2hsdeczZXEKVJGEn50Q60flcGsQGIcrg==}
-
engines: {node: '>=10'}
-
hasBin: true
-
dependencies:
-
core-js: 3.11.1
-
find-up: 4.1.0
-
-
/@storybook/theming/6.2.9_sfoxds7t5ydpegc3knd667wn6m:
-
resolution: {integrity: sha512-183oJW7AD7Fhqg5NT4ct3GJntwteAb9jZnQ6yhf9JSdY+fk8OhxRbPf7ov0au2gYACcGrWDd9K5pYQsvWlP5gA==}
-
peerDependencies:
-
react: ^16.8.0 || ^17.0.0 || 17
-
react-dom: ^16.8.0 || ^17.0.0 || 17
-
dependencies:
-
'@emotion/core': 10.1.1_react@17.0.2
-
'@emotion/is-prop-valid': 0.8.8
-
'@emotion/styled': 10.0.27_go5tdyoyk4iceqw7gzblglw2da
-
'@storybook/client-logger': 6.2.9
-
core-js: 3.11.1
-
deep-object-diff: 1.1.0
-
emotion-theming: 10.0.27_go5tdyoyk4iceqw7gzblglw2da
-
global: 4.4.0
-
memoizerific: 1.11.3
-
polished: 4.1.2
-
react: 17.0.2
-
react-dom: 17.0.2_react@17.0.2
-
resolve-from: 5.0.0
-
ts-dedent: 2.1.1
-
-
/@storybook/ui/6.2.9_sfoxds7t5ydpegc3knd667wn6m:
-
resolution: {integrity: sha512-jq2xmw3reIqik/6ibUSbNKGR+Xvr9wkAEwexiOl+5WQ5BeYJpw4dmDmsFQf+SQuWaSEUUPolbzkakRQM778Kdg==}
-
peerDependencies:
-
react: ^16.8.0 || ^17.0.0 || 17
-
react-dom: ^16.8.0 || ^17.0.0 || 17
-
dependencies:
-
'@emotion/core': 10.1.1_react@17.0.2
-
'@storybook/addons': 6.2.9_sfoxds7t5ydpegc3knd667wn6m
-
'@storybook/api': 6.2.9_sfoxds7t5ydpegc3knd667wn6m
-
'@storybook/channels': 6.2.9
-
'@storybook/client-logger': 6.2.9
-
'@storybook/components': 6.2.9_sfoxds7t5ydpegc3knd667wn6m
-
'@storybook/core-events': 6.2.9
-
'@storybook/router': 6.2.9_sfoxds7t5ydpegc3knd667wn6m
-
'@storybook/semver': 7.3.2
-
'@storybook/theming': 6.2.9_sfoxds7t5ydpegc3knd667wn6m
-
'@types/markdown-to-jsx': 6.11.3
-
copy-to-clipboard: 3.3.1
-
core-js: 3.11.1
-
core-js-pure: 3.11.1
-
downshift: 6.1.3_react@17.0.2
-
emotion-theming: 10.0.27_go5tdyoyk4iceqw7gzblglw2da
-
fuse.js: 3.6.1
-
global: 4.4.0
-
lodash: 4.17.21
-
markdown-to-jsx: 6.11.4_react@17.0.2
-
memoizerific: 1.11.3
-
polished: 4.1.2
-
qs: 6.10.1
-
react: 17.0.2
-
react-dom: 17.0.2_react@17.0.2
-
react-draggable: 4.4.3_sfoxds7t5ydpegc3knd667wn6m
-
react-helmet-async: 1.0.9_sfoxds7t5ydpegc3knd667wn6m
-
react-sizeme: 3.0.1_sfoxds7t5ydpegc3knd667wn6m
-
regenerator-runtime: 0.13.11
-
resolve-from: 5.0.0
-
store2: 2.12.0
-
transitivePeerDependencies:
-
- '@types/react'
-
dev: true
-
/@testing-library/dom/7.30.4:
resolution: {integrity: sha512-GObDVMaI4ARrZEXaRy4moolNAxWPKvEYNV/fa6Uc2eAzR/t4otS6A7EhrntPBIQLeehL9DbVhscvvv7gd6hWqA==}
engines: {node: '>=10'}
···
engines: {node: '>= 10'}
dev: true
-
/@types/anymatch/1.3.1:
-
resolution: {integrity: sha512-/+CRPXpBDpo2RK9C68N3b2cOvO0Cf5B9aPijHsoDQTHivnGSObdOF2BRQOYjojWTDy6nQvMjmqRXIxH55VjxxA==}
-
dev: true
-
/@types/aria-query/4.2.1:
resolution: {integrity: sha512-S6oPal772qJZHoRZLFc/XoZW2gFvwXusYUmXPXkgxJLuEk2vOt7jc4Yo6z/vtI0EBkbPBVrJJ0B+prLIKiWqHg==}
-
dev: true
-
-
/@types/braces/3.0.0:
-
resolution: {integrity: sha512-TbH79tcyi9FHwbyboOKeRachRq63mSuWYXOflsNO9ZyE5ClQ/JaozNKl+aWUq87qPNsXasXxi2AbgfwIJ+8GQw==}
dev: true
/@types/chai-subset/1.3.3:
···
'@types/node': 18.11.9
dev: true
-
/@types/color-convert/2.0.0:
-
resolution: {integrity: sha512-m7GG7IKKGuJUXvkZ1qqG3ChccdIM/qBBo913z+Xft0nKCX4hAU/IxKwZBU4cpRZ7GS5kV4vOblUkILtSShCPXQ==}
-
dependencies:
-
'@types/color-name': 1.1.1
-
dev: true
-
-
/@types/color-name/1.1.1:
-
resolution: {integrity: sha512-rr+OQyAjxze7GgWrSaJwydHStIhHq2lvY3BOC2Mj7KnzI7XK0Uw1TOOdI9lDoajEbSWLiYgoo4f1R51erQfhPQ==}
-
dev: true
-
/@types/enzyme-adapter-react-16/1.0.6:
resolution: {integrity: sha512-VonDkZ15jzqDWL8mPFIQnnLtjwebuL9YnDkqeCDYnB4IVgwUm0mwKkqhrxLL6mb05xm7qqa3IE95m8CZE9imCg==}
dependencies:
···
resolution: {integrity: sha512-WulqXMDUTYAXCjZnk6JtIHPigp55cVtDgDrO2gHRwhyJto21+1zbVCtOYB2L1F9w4qCQ0rOGWBnBe0FNTiEJIQ==}
dev: true
-
/@types/glob-base/0.3.0:
-
resolution: {integrity: sha512-NRCU51ALpNedUvwiwifAkDIWIC25MqF9+0STzAzvhlzR5U+iHTiaUlZ1iOMCwqZAU05X9UlqL63FVrZTZ6tySA==}
-
dev: true
-
/@types/glob/7.1.3:
resolution: {integrity: sha512-SEYeGAIQIQX8NN6LDKprLjbrd5dARM5EXsd8GI/A5l0apYI1fGMWgPHSe4ZKL4eozlAyI+doUE9XbYS4xCkQ1w==}
dependencies:
···
dependencies:
'@types/unist': 2.0.3
-
/@types/html-minifier-terser/5.1.1:
-
resolution: {integrity: sha512-giAlZwstKbmvMk1OO7WXSj4OZ0keXAcl2TQq4LWHiiPH2ByaH7WeUzng+Qej8UPxxv+8lRTuouo0iaNDBuzIBA==}
-
dev: true
-
/@types/is-ci/3.0.0:
resolution: {integrity: sha512-Q0Op0hdWbYd1iahB+IFNQcWXFq4O0Q5MwQP7uN0souuQ4rPg1vEYcnIOfr1gY+M+6rc8FGoRaBO1mOOvL29sEQ==}
dependencies:
ci-info: 3.8.0
dev: true
-
-
/@types/is-function/1.0.0:
-
resolution: {integrity: sha512-iTs9HReBu7evG77Q4EC8hZnqRt57irBDkK9nvmHroiOIVwYMQc4IvYvdRgwKfYepunIY7Oh/dBuuld+Gj9uo6w==}
/@types/istanbul-lib-coverage/2.0.3:
resolution: {integrity: sha512-sz7iLqvVUg1gIedBOvlkxPlc8/uVzyS5OwGz1cKjXzkl3FpL3al0crU8YGU1WoHkxn0Wxbw5tyi6hvzJKNzFsw==}
···
dependencies:
'@types/node': 18.11.9
-
/@types/markdown-to-jsx/6.11.3:
-
resolution: {integrity: sha512-30nFYpceM/ZEvhGiqWjm5quLUxNeld0HCzJEXMZZDpq53FPkS85mTwkWtCXzCqq8s5JYLgM5W392a02xn8Bdaw==}
-
dependencies:
-
'@types/react': 17.0.52
-
dev: true
-
/@types/mdast/3.0.3:
resolution: {integrity: sha512-SXPBMnFVQg1s00dlMCc/jCdvPqdE4mXaMMCeRlxLDmTAEoegHT53xKtkDnzDTOcmMHUfcjyf36/YYZ6SxRdnsw==}
dependencies:
'@types/unist': 2.0.3
-
-
/@types/micromatch/4.0.1:
-
resolution: {integrity: sha512-my6fLBvpY70KattTNzYOK6KU1oR1+UCz9ug/JbcF5UrEmeCt9P7DV2t7L8+t18mMPINqGQCE4O8PLOPbI84gxw==}
-
dependencies:
-
'@types/braces': 3.0.0
-
dev: true
/@types/minimatch/3.0.4:
resolution: {integrity: sha512-1z8k4wzFnNjVK/tlxvrWuK5WMt6mydWWP7+zvH5eFep4oj+UkrfiJTRtjCeBXNpwaA/FYqqtb4/QS4ianFpIRA==}
···
resolution: {integrity: sha512-f5j5b/Gf71L+dbqxIpQ4Z2WlmI/mPJ0fOkGGmFgtb6sAu97EPczzbS3/tJKxmcYDj55OX6ssqwDAWOHIYDRDGA==}
dev: true
-
/@types/npmlog/4.1.2:
-
resolution: {integrity: sha512-4QQmOF5KlwfxJ5IGXFIudkeLCdMABz03RcUXu+LCb24zmln8QW6aDjuGl4d4XPVLf2j+FnjelHTP7dvceAFbhA==}
-
dev: true
-
-
/@types/overlayscrollbars/1.12.0:
-
resolution: {integrity: sha512-h/pScHNKi4mb+TrJGDon8Yb06ujFG0mSg12wIO0sWMUF3dQIe2ExRRdNRviaNt9IjxIiOfnRr7FsQAdHwK4sMg==}
-
dev: true
-
/@types/parse-json/4.0.0:
resolution: {integrity: sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA==}
/@types/parse5/5.0.3:
resolution: {integrity: sha512-kUNnecmtkunAoQ3CnjmMkzNU/gtxG8guhi+Fk2U/kOpIKjIMKnXGp4IJCgQJrXSgMsWYimYG4TGjz/UzbGEBTw==}
-
/@types/pretty-hrtime/1.0.0:
-
resolution: {integrity: sha512-xl+5r2rcrxdLViAYkkiLMYsoUs3qEyrAnHFyEzYysgRxdVp3WbhysxIvJIxZp9FvZ2CYezh0TaHZorivH+voOQ==}
-
dev: true
-
/@types/prop-types/15.7.3:
resolution: {integrity: sha512-KfRL3PuHmqQLOG+2tGpRO26Ctg+Cq1E01D2DMriKEATHgWLfeNDmq9e29Q9WIky0dQ3NPkd1mzYH8Lm936Z9qw==}
+
dev: true
/@types/q/1.5.4:
resolution: {integrity: sha512-1HcDas8SEj4z1Wc696tH56G8OlRaH/sqZOynNNB+HF0WOeXPaxTtbYzJY2oEfiUxjSKjhCKr+MvR7dCHcEelug==}
-
/@types/qs/6.9.6:
-
resolution: {integrity: sha512-0/HnwIfW4ki2D8L8c9GVcG5I72s9jP5GSLVF0VIXDW00kmIpA6O33G7a8n59Tmh7Nz0WUC3rSb7PTY/sdW2JzA==}
-
dev: true
-
-
/@types/reach__router/1.3.7:
-
resolution: {integrity: sha512-cyBEb8Ef3SJNH5NYEIDGPoMMmYUxROatuxbICusVRQIqZUB85UCt6R2Ok60tKS/TABJsJYaHyNTW3kqbpxlMjg==}
-
dependencies:
-
'@types/react': 17.0.52
-
/@types/react-dom/17.0.18:
resolution: {integrity: sha512-rLVtIfbwyur2iFKykP2w0pl/1unw26b5td16d5xMgp7/yjTHomkyxPYChFoCr/FtEX1lN9wY6lFj1qvKdS5kDw==}
dependencies:
···
'@types/react': 17.0.52
dev: true
-
/@types/react-syntax-highlighter/11.0.5:
-
resolution: {integrity: sha512-VIOi9i2Oj5XsmWWoB72p3KlZoEbdRAcechJa8Ztebw7bDl2YmR+odxIqhtJGp1q2EozHs02US+gzxJ9nuf56qg==}
-
dependencies:
-
'@types/react': 17.0.52
-
dev: true
-
/@types/react-test-renderer/17.0.1:
resolution: {integrity: sha512-3Fi2O6Zzq/f3QR9dRnlnHso9bMl7weKCviFmfF6B4LS1Uat6Hkm15k0ZAQuDz+UBq6B3+g+NM6IT2nr5QgPzCw==}
dependencies:
···
'@types/prop-types': 15.7.3
'@types/scheduler': 0.16.1
csstype: 3.0.8
+
dev: true
/@types/resolve/1.20.2:
resolution: {integrity: sha512-60BCwRFOZCQhDncwQdxxeOEEkbc5dIMccYLwbxsS4TUNeVECQ/pBJ0j09mrHOl/JJvpRPGwO9SvE4nR2Nb/a4Q==}
···
/@types/scheduler/0.16.1:
resolution: {integrity: sha512-EaCxbanVeyxDRTQBkdLb3Bvl/HK7PBK6UJjsSixB0iHKoWxE5uu2Q/DgtpOhPIojN0Zl1whvOd7PoHs2P0s5eA==}
+
dev: true
/@types/semver/6.2.2:
resolution: {integrity: sha512-RxAwYt4rGwK5GyoRwuP0jT6ZHAVTdz2EqgsHmX0PYNjGsko+OeT4WFXXTs/lM3teJUJodM+SNtAL5/pXIJ61IQ==}
···
resolution: {integrity: sha512-JYM8x9EGF163bEyhdJBpR2QX1R5naCJHC8ucJylJ3w9/CVBaskdQ8WqBf8MmQrd1kRvp/a4TS8HJ+bxzR7ZJYQ==}
dev: true
-
/@types/source-list-map/0.1.2:
-
resolution: {integrity: sha512-K5K+yml8LTo9bWJI/rECfIPrGgxdpeNbj+d53lwN4QjW1MCwlkhUms+gtdzigTeUyBr09+u8BwOIY3MXvHdcsA==}
-
dev: true
-
-
/@types/tapable/1.0.7:
-
resolution: {integrity: sha512-0VBprVqfgFD7Ehb2vd8Lh9TG3jP98gvr8rgehQqzztZNI7o8zS8Ad4jyZneKELphpuE212D8J70LnSNQSyO6bQ==}
-
dev: true
-
-
/@types/uglify-js/3.13.0:
-
resolution: {integrity: sha512-EGkrJD5Uy+Pg0NUR8uA4bJ5WMfljyad0G+784vLCNUkD+QwOJXUbBYExXfVGf7YtyzdQp3L/XMYcliB987kL5Q==}
-
dependencies:
-
source-map: 0.6.1
-
dev: true
-
/@types/unist/2.0.3:
resolution: {integrity: sha512-FvUupuM3rlRsRtCN+fDudtmytGO6iHJuuRKS1Ss0pG5z8oX0diNEw94UEL7hgDbpN94rgaK5R7sWm6RrSkZuAQ==}
-
-
/@types/webpack-env/1.16.0:
-
resolution: {integrity: sha512-Fx+NpfOO0CpeYX2g9bkvX8O5qh9wrU1sOF4g8sft4Mu7z+qfe387YlyY8w8daDyDsKY5vUxM0yxkAYnbkRbZEw==}
-
dev: true
-
-
/@types/webpack-sources/2.1.0:
-
resolution: {integrity: sha512-LXn/oYIpBeucgP1EIJbKQ2/4ZmpvRl+dlrFdX7+94SKRUV3Evy3FsfMZY318vGhkWUS5MPhtOM3w1/hCOAOXcg==}
-
dependencies:
-
'@types/node': 18.11.9
-
'@types/source-list-map': 0.1.2
-
source-map: 0.7.4
-
dev: true
-
-
/@types/webpack/4.41.27:
-
resolution: {integrity: sha512-wK/oi5gcHi72VMTbOaQ70VcDxSQ1uX8S2tukBK9ARuGXrYM/+u4ou73roc7trXDNmCxCoerE8zruQqX/wuHszA==}
-
dependencies:
-
'@types/anymatch': 1.3.1
-
'@types/node': 18.11.9
-
'@types/tapable': 1.0.7
-
'@types/uglify-js': 3.13.0
-
'@types/webpack-sources': 2.1.0
-
source-map: 0.6.1
-
dev: true
/@types/yargs-parser/20.2.0:
resolution: {integrity: sha512-37RSHht+gzzgYeobbG+KWryeAW8J33Nhr69cjTqSYymXVZEN9NbRYWoYlRtDhHKPVT1FyNKwaTPC1NynKZpzRA==}
···
eslint-visitor-keys: 3.3.0
dev: true
-
/@urql/devtools/2.0.3_6datu6bk5t3os3oamu6of3ptzi:
-
resolution: {integrity: sha512-TktPLiBS9LcBPHD6qcnb8wqOVcg3Bx0iCtvQ80uPpfofwwBGJmqnQTjUdEFU6kwaLOFZULQ9+Uo4831G823mQw==}
-
requiresBuild: true
-
peerDependencies:
-
'@urql/core': '>= 1.14.0'
-
graphql: '>= 0.11.0'
-
dependencies:
-
'@urql/core': link:packages/core
-
graphql: 16.0.1
-
wonka: 6.2.4
-
dev: false
-
optional: true
-
/@vitest/expect/0.29.1:
resolution: {integrity: sha512-VFt1u34D+/L4pqjLA8VGPdHbdF8dgjX9Nq573L9KG6/7MIAL9jmbEIKpXudmxjoTwcyczOXRyDuUWBQHZafjoA==}
dependencies:
···
engines: {node: '>=0.4.0'}
hasBin: true
-
/address/1.1.2:
-
resolution: {integrity: sha512-aT6camzM4xEA54YVJYSqxz1kv4IHnQZRtThJJHhUMRExaU5spC7jX5ugSwTaTgJliIgs4VhZOk7htClvQ/LmRA==}
-
engines: {node: '>= 0.12.0'}
-
dev: true
-
/after/0.8.2:
resolution: {integrity: sha512-QbJ0NTQ/I9DI3uSJA4cbexiwQeRAfjPScqIbSjUDd9TOrcg6pTkdgziesOqxBMBzit8vFCTwrP27t13vFOORRA==}
···
indent-string: 4.0.0
dev: true
-
/airbnb-js-shims/2.2.1:
-
resolution: {integrity: sha512-wJNXPH66U2xjgo1Zwyjf9EydvJ2Si94+vSdk6EERcBfB2VZkeltpqIats0cqIZMLCXP3zcyaUKGYQeIBT6XjsQ==}
-
dependencies:
-
array-includes: 3.1.6
-
array.prototype.flat: 1.2.4
-
array.prototype.flatmap: 1.3.1
-
es5-shim: 4.5.15
-
es6-shim: 0.35.6
-
function.prototype.name: 1.1.5
-
globalthis: 1.0.2
-
object.entries: 1.1.6
-
object.fromentries: 2.0.6
-
object.getownpropertydescriptors: 2.1.2
-
object.values: 1.1.6
-
promise.allsettled: 1.0.4
-
promise.prototype.finally: 3.1.2
-
string.prototype.matchall: 4.0.8
-
string.prototype.padend: 3.1.2
-
string.prototype.padstart: 3.1.2
-
symbol.prototype.description: 1.0.4
-
dev: true
-
/airbnb-prop-types/2.16.0_react@17.0.2:
resolution: {integrity: sha512-7WHOFolP/6cS96PhKNrslCLMYAI8yB1Pp6u6XmxozQOiZbsI5ycglZr5cHhBFfuRcQQjzCMith5ZPZdYiJCxUg==}
peerDependencies:
···
dependencies:
string-width: 2.1.1
-
/ansi-align/3.0.0:
-
resolution: {integrity: sha512-ZpClVKqXN3RGBmKibdfWzqCY4lnjEuoNzU5T0oEFpfd/z5qJHVarukridD4juLO2FXMiwUQxr9WqQtaYa8XRYw==}
-
dependencies:
-
string-width: 3.1.0
-
dev: true
-
/ansi-colors/3.2.4:
resolution: {integrity: sha512-hHUXGagefjN2iRrID63xckIvotOXOojhQKWIPUZ4mNUZ9nLZW+7FMNoE1lOkEhNWYsx/7ysGIuJYCiMAA9FnrA==}
engines: {node: '>=6'}
···
engines: {node: '>=12'}
dev: true
-
/ansi-to-html/0.6.14:
-
resolution: {integrity: sha512-7ZslfB1+EnFSDO5Ju+ue5Y6It19DRnZXWv8jrGHgIlPna5Mh4jz7BV5jCbQneXNFurQcKoolaaAjHtgSBfOIuA==}
-
hasBin: true
-
dependencies:
-
entities: 1.1.2
-
dev: true
-
/any-promise/1.3.0:
resolution: {integrity: sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==}
dev: true
···
normalize-path: 3.0.0
picomatch: 2.3.1
-
/app-root-dir/1.0.2:
-
resolution: {integrity: sha512-jlpIfsOoNoafl92Sz//64uQHGSyMrD2vYG5d8o2a4qGvyNCvXur7bzIsWtAC/6flI2RYAp3kv8rsfBtaLm7w0g==}
-
dev: true
-
/aproba/1.2.0:
resolution: {integrity: sha512-Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw==}
···
engines: {node: '>=4'}
dependencies:
file-type: 4.4.0
-
-
/are-we-there-yet/1.1.5:
-
resolution: {integrity: sha512-5hYdAkZlcG8tOLujVDTgCT+uPX0VnpAH28gWsLfzpXYm7wP6mp5Q/gYyR7YQ0cKVJcXJnl3j2kpBan13PtQf6w==}
-
dependencies:
-
delegates: 1.0.0
-
readable-stream: 2.3.7
-
dev: true
/arg/2.0.0:
resolution: {integrity: sha512-XxNTUzKnz1ctK3ZIcI2XUPlD96wbHP2nGqkPKpvk/HNRlPveYrXIVSTk9m3LcqOgDPg3B1nMvdV/K8wZd7PG4w==}
···
es-shim-unscopables: 1.0.0
dev: true
-
/array.prototype.map/1.0.3:
-
resolution: {integrity: sha512-nNcb30v0wfDyIe26Yif3PcV1JXQp4zEeEfupG7L4SRjnD6HLbO5b2a7eVSba53bOx4YCHYMBHt+Fp4vYstneRA==}
-
engines: {node: '>= 0.4'}
-
dependencies:
-
call-bind: 1.0.2
-
define-properties: 1.1.4
-
es-abstract: 1.20.4
-
es-array-method-boxes-properly: 1.0.0
-
is-string: 1.0.7
-
dev: true
-
/array.prototype.tosorted/1.1.1:
resolution: {integrity: sha512-pZYPXPRl2PqWcsUs6LOMn+1f1532nEoPTYowBtqLwAW+W8vSVhkIGnmOX1t/UQjD6YGI0vcD2B1U7ZFGQH9jnQ==}
dependencies:
···
/arrify/1.0.1:
resolution: {integrity: sha512-3CYzex9M9FGQjCGMGyi6/31c8GJbgb0qGyrx5HWxPd0aCwh4cB2YjMb2Xf9UuoogrMrlO9cTqnB5rI5GHZTcUA==}
engines: {node: '>=0.10.0'}
-
dev: true
-
-
/arrify/2.0.1:
-
resolution: {integrity: sha512-3duEwti880xqi4eAMN8AyR4a0ByT90zoYdLlevfrvU43vb0YZwZVfxOgxWrLXXXpyugL0hNZc9G6BiB5B3nUug==}
-
engines: {node: '>=8'}
dev: true
/asn1.js/5.4.1:
···
engines: {node: '>=4'}
dev: true
-
/ast-types/0.14.2:
-
resolution: {integrity: sha512-O0yuUDnZeQDL+ncNGlJ78BiO4jnYI3bvMsD5prT0/nsgijG/LpNBIr63gTjVTNsiGkgQhiyCShTgxt8oXOrklA==}
-
engines: {node: '>=4'}
-
dependencies:
-
tslib: 2.4.0
-
dev: true
-
/astral-regex/2.0.0:
resolution: {integrity: sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==}
engines: {node: '>=8'}
···
schema-utils: 2.7.1
webpack: 4.46.0
-
/babel-plugin-add-react-displayname/0.0.5:
-
resolution: {integrity: sha512-LY3+Y0XVDYcShHHorshrDbt4KFWL4bSeniCtl4SYZbask+Syngk1uMPCeN9+nSiZo6zX5s0RTq/J9Pnaaf/KHw==}
-
dev: true
-
/babel-plugin-apply-mdx-type-prop/1.6.22_@babel+core@7.12.9:
resolution: {integrity: sha512-VefL+8o+F/DfK24lPZMtJctrCVOfgbqLAGZSkxwhazQv4VxPg3Za/i40fu22KR2m8eEda+IfSOlPLUSIiLcnCQ==}
peerDependencies:
···
dependencies:
object.assign: 4.1.4
-
/babel-plugin-emotion/10.2.2:
-
resolution: {integrity: sha512-SMSkGoqTbTyUTDeuVuPIWifPdUGkTk1Kf9BWRiXIOIcuyMfsdp2EjeiiFvOzX8NOBvEh/ypKYvUh2rkgAJMCLA==}
-
dependencies:
-
'@babel/helper-module-imports': 7.18.6
-
'@emotion/hash': 0.8.0
-
'@emotion/memoize': 0.7.4
-
'@emotion/serialize': 0.11.16
-
babel-plugin-macros: 2.8.0
-
babel-plugin-syntax-jsx: 6.18.0
-
convert-source-map: 1.7.0
-
escape-string-regexp: 1.0.5
-
find-root: 1.1.0
-
source-map: 0.5.7
-
/babel-plugin-extract-import-names/1.6.22:
resolution: {integrity: sha512-yJ9BsJaISua7d8zNT7oRG1ZLBJCIdZ4PZqmH8qa9N5AK01ifk3fnkc98AXhtzE7UkfCsEumvoQWgoYLhOnJ7jQ==}
dependencies:
···
cosmiconfig: 6.0.0
resolve: 1.22.1
-
/babel-plugin-macros/3.0.1:
-
resolution: {integrity: sha512-CKt4+Oy9k2wiN+hT1uZzOw7d8zb1anbQpf7KLwaaXRCi/4pzKdFKHf7v5mvoPmjkmxshh7eKZQuRop06r5WP4w==}
-
engines: {node: '>=10', npm: '>=6'}
-
dependencies:
-
'@babel/runtime': 7.20.1
-
cosmiconfig: 7.0.0
-
resolve: 1.22.1
-
dev: true
-
-
/babel-plugin-named-asset-import/0.3.7_@babel+core@7.20.2:
-
resolution: {integrity: sha512-squySRkf+6JGnvjoUtDEjSREJEBirnXi9NqP6rjSYsylxQxqBTz+pkmf395i9E2zsvmYUaI40BHo6SqZUdydlw==}
-
peerDependencies:
-
'@babel/core': ^7.1.0
-
dependencies:
-
'@babel/core': 7.20.2
-
dev: true
-
/babel-plugin-polyfill-corejs2/0.2.0_@babel+core@7.20.2:
resolution: {integrity: sha512-9bNwiR0dS881c5SHnzCmmGlMkJLl0OUZvxrxHo9w/iNoRuqaPjqlvBf4HrovXtQs/au5yKkpcdgfT1cC5PAZwg==}
peerDependencies:
···
transitivePeerDependencies:
- supports-color
-
/babel-plugin-polyfill-corejs3/0.1.7_@babel+core@7.20.2:
-
resolution: {integrity: sha512-u+gbS9bbPhZWEeyy1oR/YaaSpod/KDT07arZHb80aTpl8H5ZBq+uN1nN9/xtX7jQyfLdPfoqI4Rue/MQSWJquw==}
-
peerDependencies:
-
'@babel/core': ^7.0.0-0
-
dependencies:
-
'@babel/core': 7.20.2
-
'@babel/helper-define-polyfill-provider': 0.1.5_@babel+core@7.20.2
-
core-js-compat: 3.11.1
-
transitivePeerDependencies:
-
- supports-color
-
dev: true
-
/babel-plugin-polyfill-corejs3/0.2.0_@babel+core@7.20.2:
resolution: {integrity: sha512-zZyi7p3BCUyzNxLx8KV61zTINkkV65zVkDAFNZmrTCRVhjo1jAS+YLvDJ9Jgd/w2tsAviCwFHReYfxO3Iql8Yg==}
peerDependencies:
···
transitivePeerDependencies:
- supports-color
-
/babel-plugin-react-docgen/4.2.1:
-
resolution: {integrity: sha512-UQ0NmGHj/HAqi5Bew8WvNfCk8wSsmdgNd8ZdMjBCICtyCJCq9LiqgqvjCYe570/Wg7AQArSq1VQ60Dd/CHN7mQ==}
-
dependencies:
-
ast-types: 0.14.2
-
lodash: 4.17.21
-
react-docgen: 5.3.1
-
transitivePeerDependencies:
-
- supports-color
-
dev: true
-
/babel-plugin-styled-components/1.12.0_styled-components@5.2.3:
resolution: {integrity: sha512-FEiD7l5ZABdJPpLssKXjBUJMYqzbcNzBowfXDCdJhOpbhWiewapUaY+LZGT8R4Jg2TwOjGjG4RKeyrO5p9sBkA==}
peerDependencies:
···
resolution: {integrity: sha512-lGe34o6EHj9y3Kts9R4ZYs/Gr+6N7MCaMlIFA3F1R2O5/m7K06AxfSeO5530PEERE6/WyEg3lsuyw4GHlPZHog==}
engines: {node: ^4.5.0 || >= 5.9}
-
/batch-processor/1.0.0:
-
resolution: {integrity: sha512-xoLQD8gmmR32MeuBHgH0Tzd5PuSZx71ZsbhVxOCRbgktZEPe4SQy7s9Z50uPp0F/f7iw2XmkHN2xkgbMfckMDA==}
-
dev: true
-
/batch/0.6.1:
resolution: {integrity: sha512-x+VAiMRL6UPkx+kudNvxTl6hB2XNNCG2r+7wixVfIYwu/2HKRXimwQyaumLjMveWvT2Hkd/cAJw+QBMfJ/EKVw==}
···
/before-after-hook/2.2.1:
resolution: {integrity: sha512-/6FKxSTWoJdbsLDF8tdIjaRiFXiE6UHsEHE3OPI/cwPURCVi1ukP0gmLn7XWEiFk5TcwQjjY5PWsU+j+tgXgmw==}
-
-
/better-opn/2.1.1:
-
resolution: {integrity: sha512-kIPXZS5qwyKiX/HcRvDYfmBQUa8XP17I0mYZZ0y4UhpYOSvtsLHDYqmomS+Mj20aDvD3knEiQ0ecQy2nhio3yA==}
-
engines: {node: '>8.0.0'}
-
dependencies:
-
open: 7.4.2
-
dev: true
/better-path-resolve/1.0.0:
resolution: {integrity: sha512-pbnl5XzGBdrFU/wT4jqmJVPn2B6UHPBOhzMQkY/SPUPB6QtUXtmBHBIwCbXJol93mOpGMnQyP/+BB19q04xj7g==}
···
term-size: 1.2.0
widest-line: 2.0.1
-
/boxen/4.2.0:
-
resolution: {integrity: sha512-eB4uT9RGzg2odpER62bBwSLvUeGC+WbRjjyyFhGsKnc8wp/m0+hQsMUvUe3H2V0D5vw0nBdO1hCJoZo5mKeuIQ==}
-
engines: {node: '>=8'}
-
dependencies:
-
ansi-align: 3.0.0
-
camelcase: 5.3.1
-
chalk: 3.0.0
-
cli-boxes: 2.2.1
-
string-width: 4.2.3
-
term-size: 2.2.1
-
type-fest: 0.8.1
-
widest-line: 3.1.0
-
dev: true
-
/brace-expansion/1.1.11:
resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==}
dependencies:
···
dependencies:
pako: 1.0.11
-
/browserslist/4.14.2:
-
resolution: {integrity: sha512-HI4lPveGKUR0x2StIz+2FXfDk9SfVMrxn6PLh1JeGUwcuoDkdKZebWiyLRJ68iIPDpMI4JLVDf7S7XzslgWOhw==}
-
engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
-
hasBin: true
-
dependencies:
-
caniuse-lite: 1.0.30001431
-
electron-to-chromium: 1.4.284
-
escalade: 3.1.1
-
node-releases: 1.1.71
-
dev: true
-
/browserslist/4.16.6:
resolution: {integrity: sha512-Wspk/PqO+4W9qp5iUTJsa1B/QrYn1keNCcEP5OvP7WBwT4KaDly0uONYmC6Xa3Z5IqnUgS0KcgLYu1l74x0ZXQ==}
engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
···
unique-filename: 1.1.1
y18n: 4.0.3
-
/cacache/15.0.6:
-
resolution: {integrity: sha512-g1WYDMct/jzW+JdWEyjaX2zoBkZ6ZT9VpOyp2I/VMtDsNLffNat3kqPFfi1eDRSK9/SuKGyORDHcQMcPF8sQ/w==}
-
engines: {node: '>= 10'}
-
dependencies:
-
'@npmcli/move-file': 1.1.2
-
chownr: 2.0.0
-
fs-minipass: 2.1.0
-
glob: 7.1.6
-
infer-owner: 1.0.4
-
lru-cache: 6.0.0
-
minipass: 3.1.3
-
minipass-collect: 1.0.2
-
minipass-flush: 1.0.5
-
minipass-pipeline: 1.2.4
-
mkdirp: 1.0.4
-
p-map: 4.0.0
-
promise-inflight: 1.0.1
-
rimraf: 3.0.2
-
ssri: 8.0.1
-
tar: 6.1.0
-
unique-filename: 1.1.1
-
transitivePeerDependencies:
-
- bluebird
-
dev: true
-
/cache-base/1.0.1:
resolution: {integrity: sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ==}
engines: {node: '>=0.10.0'}
···
function-bind: 1.1.1
get-intrinsic: 1.1.3
-
/call-me-maybe/1.0.1:
-
resolution: {integrity: sha512-wCyFsDQkKPwwF8BDwOiWNx/9K45L/hvggQiDbve+viMNMQnWhrlYIuBk09offfwCRtCO9P6XwUttufzU11WCVw==}
-
dev: true
-
/caller-callsite/2.0.0:
resolution: {integrity: sha512-JuG3qI4QOftFsZyOn1qq87fq5grLIyk1JYd5lJmdA+fG7aQ9pA/i3JIJGcO3q0MrRcHlOt1U+ZeHW8Dq9axALQ==}
engines: {node: '>=4'}
···
dependencies:
no-case: 2.3.2
upper-case: 1.1.3
-
-
/camel-case/4.1.2:
-
resolution: {integrity: sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw==}
-
dependencies:
-
pascal-case: 3.1.2
-
tslib: 2.4.0
-
dev: true
/camelcase-css/2.0.1:
resolution: {integrity: sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==}
···
escape-string-regexp: 1.0.5
supports-color: 5.5.0
-
/chalk/3.0.0:
-
resolution: {integrity: sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==}
-
engines: {node: '>=8'}
-
dependencies:
-
ansi-styles: 4.3.0
-
supports-color: 7.2.0
-
dev: true
-
/chalk/4.0.0:
resolution: {integrity: sha512-N9oWFcegS0sFr9oh1oz2d7Npos6vNoWW9HvtCg5N1KRFpUhaAhvTv5Y58g880fZaEYSNm3qDz8SU1UrGvp+n7A==}
engines: {node: '>=10'}
···
resolution: {integrity: sha512-JR/iSQOSt+LQIWwrwEzJ9uk0xfN3mTVYMwt1Ir5mUcSN6pU+V4zQFFaJsclJbPuAUQH+yfWef6tm7l1quW3C8Q==}
dev: true
-
/classnames/2.3.1:
-
resolution: {integrity: sha512-OlQdbZ7gLfGarSqxesMesDa5uz7KFbID8Kpq/SxIoNGDqY8lSYs0D+hhtBXhcdB3rcbXArFr7vlHheLk1voeNA==}
-
dev: true
-
/clean-css/4.2.3:
resolution: {integrity: sha512-VcMWDN54ZN/DS+g58HYL5/n4Zrqe8vHJpGA8KdgUXFU4fuP/aHNw8eld9SyEIyabIMJX/0RaY/fplOo5hYLSFA==}
engines: {node: '>= 4.0'}
···
resolution: {integrity: sha512-3Fo5wu8Ytle8q9iCzS4D2MWVL2X7JVWRiS1BnXbTFDhS9c/REkM9vd1AmabsoZoY5/dGi5TT9iKL8Kb6DeBRQg==}
engines: {node: '>=0.10.0'}
-
/cli-boxes/2.2.1:
-
resolution: {integrity: sha512-y4coMcylgSCdVinjiDBuR8PCC2bLjyGTwEmPb9NHR/QaNU6EUOXcTY/s6VjGMD6ENSEaeQYHCY0GNGS5jfMwPw==}
-
engines: {node: '>=6'}
-
dev: true
-
/cli-cursor/2.1.0:
resolution: {integrity: sha512-8lgKz8LmCRYZZQDpRyT2m5rKJ08TnU4tR9FFFW2rxpxR1FzWi4PQ/NfyODchAatHaUgnSPVcx/R5w6NuTBzFiw==}
engines: {node: '>=4'}
···
colors: 1.4.0
dev: true
-
/cli-table3/0.6.0:
-
resolution: {integrity: sha512-gnB85c3MGC7Nm9I/FkiasNBOKjOiO1RNuXXarQms37q4QMpWdlbBgD/VnOStA2faG1dpXMv31RFApjX1/QdgWQ==}
-
engines: {node: 10.* || >= 12.*}
-
dependencies:
-
object-assign: 4.1.1
-
string-width: 4.2.3
-
optionalDependencies:
-
colors: 1.4.0
-
dev: true
-
/cli-table3/0.6.1:
resolution: {integrity: sha512-w0q/enDHhPLq44ovMGdQeeDLvwxwavsJX7oQGYt/LrBlYsyaxyDnp6z3QzFut/6kLLKnlcUVJLrpB7KBfgG/RA==}
engines: {node: 10.* || >= 12.*}
···
/cli-width/2.2.1:
resolution: {integrity: sha512-GRMWDxpOB6Dgk2E5Uo+3eEBvtOOlimMmpbFiKuLFnQzYDavtLFY3K5ona41jgN/WdRZtG7utuVSVTL4HbZHGkw==}
-
-
/clipboard/2.0.8:
-
resolution: {integrity: sha512-Y6WO0unAIQp5bLmk1zdThRhgJt/x3ks6f30s3oE3H1mgIEU33XyQjEf8gsf6DxC7NPX8Y1SsNWjUjL/ywLnnbQ==}
-
requiresBuild: true
-
dependencies:
-
good-listener: 1.2.2
-
select: 1.1.2
-
tiny-emitter: 2.1.0
-
dev: true
-
optional: true
/clipboardy/1.2.3:
resolution: {integrity: sha512-2WNImOvCRe6r63Gk9pShfkwXsVtKCroMAevIbiae021mS850UkWPbevxsBz3tnvjZIEGvlwaqCPsw+4ulzNgJA==}
···
'@types/q': 1.5.4
chalk: 2.4.2
q: 1.5.1
-
-
/code-point-at/1.1.0:
-
resolution: {integrity: sha512-RpAVKQA5T63xEj6/giIbUEtZwJ4UFIc3ZtvEkiaUERylqe8xb5IvqcgOurZLahv93CLKfxcw5YI+DZcUBRyLXA==}
-
engines: {node: '>=0.10.0'}
-
dev: true
/collapse-white-space/1.0.6:
resolution: {integrity: sha512-jEovNnrhMuqyCcjfEJA56v0Xq8SkIoPKDyaHahwo3POf4qcSXqMYuwNcOTzp74vTsR9Tn08z4MxWqAhcekogkQ==}
···
transitivePeerDependencies:
- supports-color
-
/compute-scroll-into-view/1.0.17:
-
resolution: {integrity: sha512-j4dx+Fb0URmzbwwMUrhqWM2BEWHdFGx+qZ9qqASHRPqvTYdqvWnHg0H1hIbcyLnvgnoNAVMlwkepyqM3DaIFUg==}
-
dev: true
-
/concat-map/0.0.1:
resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==}
···
/console-browserify/1.2.0:
resolution: {integrity: sha512-ZMkYO/LkF17QvCPqM0gxw8yUzigAOZOSWSHg91FH6orS7vcEj5dVZTidN2fQ14yBSdg97RqhSNwLUXInd52OTA==}
-
-
/console-control-strings/1.1.0:
-
resolution: {integrity: sha512-ty/fTekppD2fIwRvnZAVdeOiGd1c7YXEixbgJTNzqcxJWKQnjJ/V1bNEEE6hygpM3WjwHFUVK6HTjWSzV4a8sQ==}
-
dev: true
/constants-browserify/1.0.0:
resolution: {integrity: sha512-xFxOwqIzR/e1k1gLiWEophSCMqXcwVHIH7akf7b/vxcUeGunlj3hvZaaqxwHsTgn+IndtkQJgSztIDWeumWJDQ==}
···
/copy-descriptor/0.1.1:
resolution: {integrity: sha512-XgZ0pFcakEUlbwQEVNg3+QAis1FyTL3Qel9FYy8pSkQqoG3PNoT0bOCQtOXcOkur21r2Eq2kI+IE+gsmAEVlYw==}
engines: {node: '>=0.10.0'}
-
-
/copy-to-clipboard/3.3.1:
-
resolution: {integrity: sha512-i13qo6kIHTTpCm8/Wup+0b1mVWETvu2kIMzKoK8FpkLkFxlt0znUAHcMzox+T8sPlqtZXq3CulEjQHsYiGFJUw==}
-
dependencies:
-
toggle-selection: 1.0.6
-
dev: true
/core-js-compat/3.11.1:
resolution: {integrity: sha512-aZ0e4tmlG/aOBHj92/TuOuZwp6jFvn1WNabU5VOVixzhu5t5Ao+JZkQOPlgNXu6ynwLrwJxklT4Gw1G1VGEh+g==}
···
deprecated: core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.
requiresBuild: true
-
/core-js/3.11.1:
-
resolution: {integrity: sha512-k93Isqg7e4txZWMGNYwevZL9MiogLk8pd1PtwrmFmi8IBq4GXqUaVW/a33Llt6amSI36uSjd0GWwc9pTT9ALlQ==}
-
deprecated: core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.
-
requiresBuild: true
-
/core-util-is/1.0.2:
resolution: {integrity: sha512-3lqz5YjWTYnW6dlDa5TLaTCcShfar1e40rmcJVwCBJC6mWlFuj0eCHIElmG1g5kyuJ/GD+8Wn4FFCcz4gJPfaQ==}
···
yaml: 1.10.2
dev: true
-
/cp-file/7.0.0:
-
resolution: {integrity: sha512-0Cbj7gyvFVApzpK/uhCtQ/9kE9UnYpxMzaq5nQQC/Dh4iaj5fxp7iEFIullrYwzj8nf0qnsI1Qsx34hAeAebvw==}
-
engines: {node: '>=8'}
-
dependencies:
-
graceful-fs: 4.2.10
-
make-dir: 3.1.0
-
nested-error-stacks: 2.1.0
-
p-event: 4.2.0
-
dev: true
-
-
/cpy/8.1.2:
-
resolution: {integrity: sha512-dmC4mUesv0OYH2kNFEidtf/skUwv4zePmGeepjyyJ0qTo5+8KhA1o99oIAwVVLzQMAeDJml74d6wPPKb6EZUTg==}
-
engines: {node: '>=8'}
-
dependencies:
-
arrify: 2.0.1
-
cp-file: 7.0.0
-
globby: 9.2.0
-
has-glob: 1.0.0
-
junk: 3.1.0
-
nested-error-stacks: 2.1.0
-
p-all: 2.1.0
-
p-filter: 2.1.0
-
p-map: 3.0.0
-
transitivePeerDependencies:
-
- supports-color
-
dev: true
-
/create-ecdh/4.0.4:
resolution: {integrity: sha512-mf+TCx8wWc9VpuxfP2ht0iSISLZnt0JgWlrOKZiNqyUZWnjIaCIVNQArMHnCZKfEYRg6IM7A+NeJoN8gf/Ws0A==}
dependencies:
···
schema-utils: 1.0.0
webpack: 4.46.0
-
/css-loader/3.6.0_webpack@4.46.0:
-
resolution: {integrity: sha512-M5lSukoWi1If8dhQAUCvj4H8vUt3vOnwbQBH9DdTm/s4Ym2B/3dPMtYZeJmq7Q3S3Pa+I94DcZ7pc9bP14cWIQ==}
-
engines: {node: '>= 8.9.0'}
-
peerDependencies:
-
webpack: ^4.0.0 || ^5.0.0
-
dependencies:
-
camelcase: 5.3.1
-
cssesc: 3.0.0
-
icss-utils: 4.1.1
-
loader-utils: 1.4.0
-
normalize-path: 3.0.0
-
postcss: 7.0.35
-
postcss-modules-extract-imports: 2.0.0
-
postcss-modules-local-by-default: 3.0.3
-
postcss-modules-scope: 2.2.0
-
postcss-modules-values: 3.0.0
-
postcss-value-parser: 4.1.0
-
schema-utils: 2.7.1
-
semver: 6.3.0
-
webpack: 4.46.0
-
dev: true
-
/css-select-base-adapter/0.1.1:
resolution: {integrity: sha512-jQVeeRG70QI08vSTwf1jHxp74JoZsr2XSgETae8/xC8ovSnL2WF87GTLO86Sbwdt2lK4Umg4HnnwMO4YF3Ce7w==}
···
/csstype/2.6.21:
resolution: {integrity: sha512-Z1PhmomIfypOpoMjRQB70jfvy/wxT50qW08YXO5lMIJkrdq4yOTR+AW7FqutScmB9NkLwxo+jU+kZLbofZZq/w==}
+
dev: true
/csstype/3.0.8:
resolution: {integrity: sha512-jXKhWqXPmlUeoQnF/EhTtTl4C9SnrxSH/jZUih3jmO6lBKr99rP3/+FmrMj4EFpOXzMtXHAZkd3x0E6h6Fgflw==}
+
dev: true
/csv-generate/3.4.3:
resolution: {integrity: sha512-w/T+rqR0vwvHqWs/1ZyMDWtHHSJaN06klRqJXBEpDJaM/+dZkso0OKh1VcuuYvK3XM53KysVNq8Ko/epCK8wOw==}
···
resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==}
dev: true
-
/deep-object-diff/1.1.0:
-
resolution: {integrity: sha512-b+QLs5vHgS+IoSNcUE4n9HP2NwcHj7aqnJWsjPtuG75Rh5TOaGt0OjAYInh77d5T16V5cRDC+Pw/6ZZZiETBGw==}
-
/deepmerge/4.2.2:
resolution: {integrity: sha512-FJ3UgI4gIl+PHZm53knsuSFpE+nESMr7M4v9QcgB7S63Kj/6WqMiFQJpBBYz1Pt+66bZpP3Q7Lye0Oo9MPKEdg==}
engines: {node: '>=0.10.0'}
···
engines: {node: '>=0.4.0'}
dev: true
-
/delegate/3.2.0:
-
resolution: {integrity: sha512-IofjkYBZaZivn0V8nnsMJGBr4jVLxHDheKSW88PyxS5QC4Vo9ZbZVvhzlSxY87fVq3STR6r+4cGepyHkcWOQSw==}
-
dev: true
-
optional: true
-
-
/delegates/1.0.0:
-
resolution: {integrity: sha512-bd2L678uiWATM6m5Z1VzNCErI3jiGzt6HGY8OVICs40JQq/HALfbyNJmp0UDakEY4pMMaN0Ly5om/B1VI/+xfQ==}
-
dev: true
-
/depd/1.1.2:
resolution: {integrity: sha512-7emPTl6Dpo6JRXOXjLRxck+FlLRX5847cLKEn00PLAgc3g2hTZZgr+e4c2v6QpSmLeFP3n5yUo7ft6avBK/5jQ==}
engines: {node: '>= 0.6'}
···
/detect-node/2.0.5:
resolution: {integrity: sha512-qi86tE6hRcFHy8jI1m2VG+LaPUR1LhqDa5G8tVjuUXmOrpuAgqsA1pN0+ldgr3aKUH+QLI9hCY/OcRYisERejw==}
-
/detect-port-alt/1.1.6:
-
resolution: {integrity: sha512-5tQykt+LqfJFBEYaDITx7S7cR7mJ/zQmLXZ2qt5w04ainYZw6tBf9dBunMjVeVOdYVRUzUOE4HkY5J7+uttb5Q==}
-
engines: {node: '>= 4.2.1'}
-
hasBin: true
-
dependencies:
-
address: 1.1.2
-
debug: 2.6.9
-
transitivePeerDependencies:
-
- supports-color
-
dev: true
-
-
/detect-port/1.3.0:
-
resolution: {integrity: sha512-E+B1gzkl2gqxt1IhUzwjrxBKRqx1UzC3WLONHinn8S3T6lwV/agVCyitiFOsGJ/eYuEUBvD71MZHy3Pv1G9doQ==}
-
engines: {node: '>= 4.2.1'}
-
hasBin: true
-
dependencies:
-
address: 1.1.2
-
debug: 2.6.9
-
transitivePeerDependencies:
-
- supports-color
-
dev: true
-
/diff/5.1.0:
resolution: {integrity: sha512-D+mk+qE8VC/PAUrlAU34N+VfXev0ghe5ywmpqrawphmVZc1bEfn56uo9qpyGp1p4xpzOHkSW4ztBd6L7Xx4ACw==}
engines: {node: '>=0.3.1'}
···
bn.js: 4.12.0
miller-rabin: 4.0.1
randombytes: 2.1.0
-
-
/dir-glob/2.2.2:
-
resolution: {integrity: sha512-f9LBi5QWzIW3I6e//uxZoLBlUt9kcp66qo0sSCxL6YZKc75R1c4MFCoe/LaZiBGmgujvQdxc5Bn3QhfyvK5Hsw==}
-
engines: {node: '>=4'}
-
dependencies:
-
path-type: 3.0.0
-
dev: true
/dir-glob/3.0.1:
resolution: {integrity: sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==}
···
domhandler: 4.3.1
dev: true
-
/dot-case/3.0.4:
-
resolution: {integrity: sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==}
-
dependencies:
-
no-case: 3.0.4
-
tslib: 2.4.0
-
dev: true
-
/dot-prop/5.3.0:
resolution: {integrity: sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q==}
engines: {node: '>=8'}
dependencies:
is-obj: 2.0.0
-
/dotenv-defaults/1.1.1:
-
resolution: {integrity: sha512-6fPRo9o/3MxKvmRZBD3oNFdxODdhJtIy1zcJeUSCs6HCy4tarUpd+G67UTU9tF6OWXeSPqsm4fPAB+2eY9Rt9Q==}
-
dependencies:
-
dotenv: 6.2.0
-
dev: true
-
-
/dotenv-expand/5.1.0:
-
resolution: {integrity: sha512-YXQl1DSa4/PQyRfgrv6aoNjhasp/p4qs9FjJ4q4cQk+8m4r6k4ZSiEyytKG8f8W9gi8WsQtIObNmKd+tMzNTmA==}
-
dev: true
-
-
/dotenv-webpack/1.8.0_webpack@4.46.0:
-
resolution: {integrity: sha512-o8pq6NLBehtrqA8Jv8jFQNtG9nhRtVqmoD4yWbgUyoU3+9WBlPe+c2EAiaJok9RB28QvrWvdWLZGeTT5aATDMg==}
-
peerDependencies:
-
webpack: ^1 || ^2 || ^3 || ^4
-
dependencies:
-
dotenv-defaults: 1.1.1
-
webpack: 4.46.0
-
dev: true
-
-
/dotenv/6.2.0:
-
resolution: {integrity: sha512-HygQCKUBSFl8wKQZBSemMywRWcEDNidvNbjGVyZu3nbZ8qq9ubiPoGLMdRDpfSrpkkm9BXYFkpKxxFX38o/76w==}
-
engines: {node: '>=6'}
-
dev: true
-
/dotenv/8.2.0:
resolution: {integrity: sha512-8sJ78ElpbDJBHNeBzUbUVLsqKdccaa/BXF1uPTw3GrvQTBgrQrtObr2mUrE38vzYd8cEv+m/JBfDLioYcfXoaw==}
engines: {node: '>=8'}
···
p-event: 2.3.1
pify: 3.0.0
-
/downshift/6.1.3_react@17.0.2:
-
resolution: {integrity: sha512-RA1MuaNcTbt0j+sVLhSs8R2oZbBXYAtdQP/V+uHhT3DoDteZzJPjlC+LQVm9T07Wpvo84QXaZtUCePLDTDwGXg==}
-
peerDependencies:
-
react: '>=16.12.0 || 17'
-
dependencies:
-
'@babel/runtime': 7.20.1
-
compute-scroll-into-view: 1.0.17
-
prop-types: 15.8.1
-
react: 17.0.2
-
react-is: 17.0.2
-
dev: true
-
/duplexer/0.1.2:
resolution: {integrity: sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==}
···
/electron-to-chromium/1.4.330:
resolution: {integrity: sha512-PqyefhybrVdjAJ45HaPLtuVaehiSw7C3ya0aad+rvmV53IVyXmYRk3pwIOb2TxTDTnmgQdn46NjMMaysx79/6Q==}
-
dev: true
-
-
/element-resize-detector/1.2.2:
-
resolution: {integrity: sha512-+LOXRkCJc4I5WhEJxIDjhmE3raF8jtOMBDqSCgZTMz2TX3oXAX5pE2+MDeopJlGdXzP7KzPbBJaUGfNaP9HG4A==}
-
dependencies:
-
batch-processor: 1.0.0
dev: true
/elliptic/6.5.4:
···
resolution: {integrity: sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==}
engines: {node: '>= 4'}
-
/emotion-theming/10.0.27_go5tdyoyk4iceqw7gzblglw2da:
-
resolution: {integrity: sha512-MlF1yu/gYh8u+sLUqA0YuA9JX0P4Hb69WlKc/9OLo+WCXuX6sy/KoIa+qJimgmr2dWqnypYKYPX37esjDBbhdw==}
-
peerDependencies:
-
'@emotion/core': ^10.0.27
-
react: '>=16.3.0 || 17'
-
dependencies:
-
'@babel/runtime': 7.20.1
-
'@emotion/core': 10.1.1_react@17.0.2
-
'@emotion/weak-memoize': 0.2.5
-
hoist-non-react-statics: 3.3.2
-
react: 17.0.2
-
/encodeurl/1.0.2:
resolution: {integrity: sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==}
engines: {node: '>= 0.8'}
···
resolution: {integrity: sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==}
dependencies:
once: 1.4.0
-
-
/endent/2.0.1:
-
resolution: {integrity: sha512-mADztvcC+vCk4XEZaCz6xIPO2NHQuprv5CAEjuVAu6aZwqAj7nVNlMyl1goPFYqCCpS2OJV9jwpumJLkotZrNw==}
-
dependencies:
-
dedent: 0.7.0
-
fast-json-parse: 1.0.3
-
objectorarray: 1.0.4
-
dev: true
/engine.io-client/3.5.1:
resolution: {integrity: sha512-oVu9kBkGbcggulyVF0kz6BV3ganqUeqXvD79WOFKa+11oK692w1NyFkuEj4xrkFRpZhn92QOqTk4RQq5LiBXbQ==}
···
dependencies:
is-arrayish: 0.2.1
-
/error-stack-parser/2.0.6:
-
resolution: {integrity: sha512-d51brTeqC+BHlwF0BhPtcYgF5nlzf9ZZ0ZIUQNZpc9ZB9qw5IJ2diTrBY9jlCJkTLITYPjmiX6OWCwH+fuyNgQ==}
-
dependencies:
-
stackframe: 1.2.0
-
dev: true
-
/es-abstract/1.20.4:
resolution: {integrity: sha512-0UtvRN79eMe2L+UNEF1BwRe364sj/DXhQ/k5FmivgoSdpM90b8Jc0mDzKMGo7QS0BVbOP/bTwBKNnDc9rNzaPA==}
engines: {node: '>= 0.4'}
···
which-typed-array: 1.1.9
dev: true
-
/es-array-method-boxes-properly/1.0.0:
-
resolution: {integrity: sha512-wd6JXUmyHmt8T5a2xreUwKcGPq6f1f+WwIJkijUqiGcJz1qqnZgP6XIK+QyIWU5lT7imeNxUll48bziG+TSYcA==}
-
dev: true
-
-
/es-get-iterator/1.1.2:
-
resolution: {integrity: sha512-+DTO8GYwbMCwbywjimwZMHp8AuYXOS2JZFWoi2AlPOS3ebnII9w/NLpNZtA7A0YLaVDw+O7KFCeoIV7OPvM7hQ==}
-
dependencies:
-
call-bind: 1.0.2
-
get-intrinsic: 1.1.3
-
has-symbols: 1.0.3
-
is-arguments: 1.1.0
-
is-map: 2.0.2
-
is-set: 2.0.2
-
is-string: 1.0.7
-
isarray: 2.0.5
-
dev: true
-
/es-set-tostringtag/2.0.1:
resolution: {integrity: sha512-g3OMbtlwY3QewlqAiMLI47KywjWZoEytKr8pf6iTC8uJq5bIAH52Z9pnQ8pVL6whrCto53JZDuUIsifGeLorTg==}
engines: {node: '>= 0.4'}
···
is-date-object: 1.0.2
is-symbol: 1.0.3
-
/es5-shim/4.5.15:
-
resolution: {integrity: sha512-FYpuxEjMeDvU4rulKqFdukQyZSTpzhg4ScQHrAosrlVpR6GFyaw14f74yn2+4BugniIS0Frpg7TvwZocU4ZMTw==}
-
engines: {node: '>=0.4.0'}
-
dev: true
-
/es6-object-assign/1.1.0:
resolution: {integrity: sha512-MEl9uirslVwqQU369iHNWZXsI8yaZYGg/D65aOgZkeyFJwHYSxilf7rQzXKI7DdDuBPrBXbfk3sl9hJhmd5AUw==}
-
dev: true
-
-
/es6-shim/0.35.6:
-
resolution: {integrity: sha512-EmTr31wppcaIAgblChZiuN/l9Y7DPyw8Xtbg7fIVngn6zMW+IEBJDJngeKC3x6wr0V/vcA2wqeFnaw1bFJbDdA==}
dev: true
/esbuild-android-64/0.15.15:
···
resolution: {integrity: sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==}
engines: {node: '>=0.8.0'}
-
/escape-string-regexp/2.0.0:
-
resolution: {integrity: sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==}
-
engines: {node: '>=8'}
-
dev: true
-
/escape-string-regexp/4.0.0:
resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==}
engines: {node: '>=10'}
···
resolution: {integrity: sha512-xJuoT5+L99XlZ8twedaRf6Ax2TgQVxvgZOYoPKqZufmJib0tL2tegPBOZb1pVNgIhlqDlA0eO0c3wBvQcmzx4w==}
dev: true
-
/fast-glob/2.2.7:
-
resolution: {integrity: sha512-g1KuQwHOZAmOZMuBtHdxDtju+T2RT8jgCC9aANsbpdiDDTSnjgfuVsIBNKbUeJI3oKMRExcfNDtJl4OhbffMsw==}
-
engines: {node: '>=4.0.0'}
-
dependencies:
-
'@mrmlnc/readdir-enhanced': 2.2.1
-
'@nodelib/fs.stat': 1.1.3
-
glob-parent: 3.1.0
-
is-glob: 4.0.3
-
merge2: 1.4.1
-
micromatch: 3.1.10
-
transitivePeerDependencies:
-
- supports-color
-
dev: true
-
/fast-glob/3.2.12:
resolution: {integrity: sha512-DVj4CQIYYow0BlaelwK1pHl5n5cRSJfM60UA0zK891sVInoPri2Ekj7+e1CT3/3qxXenpI+nBBmQAcJPJgaj4w==}
engines: {node: '>=8.6.0'}
···
glob-parent: 5.1.2
merge2: 1.4.1
micromatch: 4.0.4
-
dev: true
-
-
/fast-json-parse/1.0.3:
-
resolution: {integrity: sha512-FRWsaZRWEJ1ESVNbDWmsAlqDk96gPQezzLghafp5J4GUKjbCz3OkAHuZs5TuPEtkbVQERysLp9xv6c24fBm8Aw==}
dev: true
/fast-json-stable-stringify/2.1.0:
···
resolution: {integrity: sha512-CJ0HCB5tL5fYTEA7ToAq5+kTwd++Borf1/bifxd9iT70QcXr4MRrO3Llf8Ifs70q+SJcGHFtnIE/Nw6giCtECA==}
dependencies:
format: 0.2.2
+
dev: false
/faye-websocket/0.11.3:
resolution: {integrity: sha512-D2y4bovYpzziGgbHYtGCMjlJM36vAl/y+xUyn1C+FVx8szd1E+86KwVw6XvYSzOP8iMpm1X0I4xJD+QtUb36OA==}
···
schema-utils: 1.0.0
webpack: 4.46.0
-
/file-loader/6.2.0_webpack@4.46.0:
-
resolution: {integrity: sha512-qo3glqyTa61Ytg4u73GultjHGjdRyig3tG6lPtyX/jOEJvHif9uB0/OCI2Kif6ctF3caQTW2G5gym21oAsI4pw==}
-
engines: {node: '>= 10.13.0'}
-
peerDependencies:
-
webpack: ^4.0.0 || ^5.0.0
-
dependencies:
-
loader-utils: 2.0.0
-
schema-utils: 3.0.0
-
webpack: 4.46.0
-
dev: true
-
-
/file-system-cache/1.0.5:
-
resolution: {integrity: sha512-w9jqeQdOeVaXBCgl4c90XJ6zI8MguJgSiC5LsLdhUu6eSCzcRHPPXUF3lkKMagpzHi+6GnDkjv9BtxMmXdvptA==}
-
dependencies:
-
bluebird: 3.7.2
-
fs-extra: 0.30.0
-
ramda: 0.21.0
-
dev: true
-
/file-type/3.9.0:
resolution: {integrity: sha512-RLoqTXE8/vPmMuTI88DAzhMYC99I8BWv7zYP4A1puo5HIjEJ5EX48ighy4ZyKMG9EDXxBgW6e++cn7d1xuFghA==}
engines: {node: '>=0.10.0'}
···
resolution: {integrity: sha512-7KjR1vv6qnicaPMi1iiTcI85CyYwRO/PSFCu6SvqL8jN2Wjt/NIYQTFtFs7fSDCYOstUkEWIQGFUg5YZQfjlcg==}
engines: {node: '>= 0.4.0'}
-
/filesize/6.1.0:
-
resolution: {integrity: sha512-LpCHtPQ3sFx67z+uh2HnSyWSLLu5Jxo21795uRDuar/EOuYWXib5EmPaGIBuSnRqH2IODiKA2k5re/K9OnN/Yg==}
-
engines: {node: '>= 0.4.0'}
-
dev: true
-
/filesize/6.3.0:
resolution: {integrity: sha512-ytx0ruGpDHKWVoiui6+BY/QMNngtDQ/pJaFwfBpQif0J63+E8DLdFyqS3NkKQn7vIruUEpoGD9JUJSg7Kp+I0g==}
engines: {node: '>= 0.4.0'}
···
commondir: 1.0.1
make-dir: 3.1.0
pkg-dir: 4.2.0
-
-
/find-root/1.1.0:
-
resolution: {integrity: sha512-NKfW6bec6GfKc0SGx1e07QZY9PE99u0Bft/0rzSD5k3sO/vwkVUpDUKVm5Gpp5Ue3YfShPFTX2070tDs5kB9Ng==}
/find-up/3.0.0:
resolution: {integrity: sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==}
···
resolution: {integrity: sha512-j0KLYPhm6zeac4lz3oJ3o65qvgQCcPubiyotZrXqEaG4hNagNYO8qdlUrX5vwqv9ohqeT/Z3j6+yW067yWWdUw==}
dev: true
-
/fork-ts-checker-webpack-plugin/4.1.6_4saukclyqastvrycwsozxxbldi:
-
resolution: {integrity: sha512-DUxuQaKoqfNne8iikd14SAkh5uw4+8vNifp6gmA73yYNS6ywLIWSLD/n/mBzHQRpW3J7rbATEakmiA8JvkTyZw==}
-
engines: {node: '>=6.11.5', yarn: '>=1.0.0'}
-
peerDependencies:
-
eslint: '>= 6'
-
typescript: '>= 2.7'
-
vue-template-compiler: '*'
-
webpack: '>= 4'
-
peerDependenciesMeta:
-
eslint:
-
optional: true
-
vue-template-compiler:
-
optional: true
-
dependencies:
-
'@babel/code-frame': 7.18.6
-
chalk: 2.4.2
-
micromatch: 3.1.10
-
minimatch: 3.1.2
-
semver: 5.7.1
-
tapable: 1.1.3
-
typescript: 4.9.3
-
webpack: 4.46.0
-
worker-rpc: 0.1.1
-
transitivePeerDependencies:
-
- supports-color
-
dev: true
-
-
/fork-ts-checker-webpack-plugin/6.2.5_4saukclyqastvrycwsozxxbldi:
-
resolution: {integrity: sha512-EqHkTmxOotb5WJEc8kjzJh8IRuRUpHxtBh+jGyOHJcEwwZzqTmlMNAJsVF3tvALohi9yJzV8C1j215DyK8Ta8w==}
-
engines: {node: '>=10', yarn: '>=1.0.0'}
-
peerDependencies:
-
eslint: '>= 6'
-
typescript: '>= 2.7'
-
vue-template-compiler: '*'
-
webpack: '>= 4'
-
peerDependenciesMeta:
-
eslint:
-
optional: true
-
vue-template-compiler:
-
optional: true
-
dependencies:
-
'@babel/code-frame': 7.18.6
-
'@types/json-schema': 7.0.11
-
chalk: 4.1.1
-
chokidar: 3.5.1
-
cosmiconfig: 6.0.0
-
deepmerge: 4.2.2
-
fs-extra: 9.1.0
-
memfs: 3.2.2
-
minimatch: 3.1.2
-
schema-utils: 2.7.0
-
semver: 7.3.8
-
tapable: 1.1.3
-
typescript: 4.9.3
-
webpack: 4.46.0
-
dev: true
-
/form-data/2.3.3:
resolution: {integrity: sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ==}
engines: {node: '>= 0.12'}
···
/format/0.2.2:
resolution: {integrity: sha512-wzsgA6WOq+09wrU1tsJ09udeR/YZRaeArL9e1wPbFg3GG2yDnC2ldKpxs4xunpFF9DgqCqOIra3bc1HWrJ37Ww==}
engines: {node: '>=0.4.x'}
+
dev: false
/formdata-polyfill/4.0.10:
resolution: {integrity: sha512-buewHzMvYL29jdeQTVILecSaZKnt/RJWjoZCF5OW60Z67/GmSLBkOFM7qh1PI3zFNtJbaZL5eQu1vLfazOwj4g==}
···
/fs-constants/1.0.0:
resolution: {integrity: sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==}
-
/fs-extra/0.30.0:
-
resolution: {integrity: sha512-UvSPKyhMn6LEd/WpUaV9C9t3zATuqoqfWc3QdPhPLb58prN9tqYPlPWi8Krxi44loBoUzlobqZ3+8tGpxxSzwA==}
-
dependencies:
-
graceful-fs: 4.2.10
-
jsonfile: 2.4.0
-
klaw: 1.3.1
-
path-is-absolute: 1.0.1
-
rimraf: 2.7.1
-
dev: true
-
/fs-extra/7.0.1:
resolution: {integrity: sha512-YJDaCJZEnBmcbw13fvdAM9AwNOJwOzrE4pqMqBq5nFiEqXUqHwlK4B+3pUw6JNvfSPtX05xFHtYy/1ni01eGCw==}
engines: {node: '>=6 <7 || >=8'}
···
engines: {node: '>= 8'}
dependencies:
minipass: 3.1.3
-
dev: true
-
-
/fs-monkey/1.0.3:
-
resolution: {integrity: sha512-cybjIfiiE+pTWicSCLFHSrXZ6EilF30oh91FDP9S2B051prEa7QWfrVTQm10/dDpswBDXZugPa1Ogu8Yh+HV0Q==}
dev: true
/fs-readdir-recursive/1.1.0:
···
/functions-have-names/1.2.2:
resolution: {integrity: sha512-bLgc3asbWdwPbx2mNk2S49kmJCuQeu0nfmaOgbs8WIyzzkw3r4htszdIi9Q9EMezDPTYuJx2wvjZ/EwgAthpnA==}
-
/fuse.js/3.6.1:
-
resolution: {integrity: sha512-hT9yh/tiinkmirKrlv4KWOjztdoZo1mx9Qh4KvWqC7isoXwdUY3PNWUxceF4/qO9R6riA2C29jdTOeQOIROjgw==}
-
engines: {node: '>=6'}
-
dev: true
-
/fuse.js/6.4.6:
resolution: {integrity: sha512-/gYxR/0VpXmWSfZOIPS3rWwU8SHgsRTwWuXhyb2O6s7aRuVtHtxCkR33bNYu3wyLyNx/Wpv0vU7FZy8Vj53VNw==}
engines: {node: '>=10'}
dev: false
-
-
/gauge/2.7.4:
-
resolution: {integrity: sha512-14x4kjc6lkD3ltw589k0NrPD6cCNTD6CWoVUNpB85+DrtONoZn+Rug6xZU5RvSC4+TZPxA5AnBibQYAvZn41Hg==}
-
dependencies:
-
aproba: 1.2.0
-
console-control-strings: 1.1.0
-
has-unicode: 2.0.1
-
object-assign: 4.1.1
-
signal-exit: 3.0.3
-
string-width: 1.0.2
-
strip-ansi: 3.0.1
-
wide-align: 1.1.3
-
dev: true
/gensync/1.0.0-beta.2:
resolution: {integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==}
···
emoji-regex: 6.1.1
dev: false
-
/glob-base/0.3.0:
-
resolution: {integrity: sha512-ab1S1g1EbO7YzauaJLkgLp7DZVAqj9M/dvKlTt8DkXA2tiOIcSMrlVI2J1RZyB5iJVccEscjGn+kpOG9788MHA==}
-
engines: {node: '>=0.10.0'}
-
dependencies:
-
glob-parent: 2.0.0
-
is-glob: 2.0.1
-
dev: true
-
-
/glob-parent/2.0.0:
-
resolution: {integrity: sha512-JDYOvfxio/t42HKdxkAYaCiBN7oYiuxykOxKxdaUW5Qn0zaYN3gRQWolrwdnf0shM9/EP0ebuuTmyoXNr1cC5w==}
-
dependencies:
-
is-glob: 2.0.1
-
dev: true
-
/glob-parent/3.1.0:
resolution: {integrity: sha512-E8Ak/2+dZY6fnzlR7+ueWvhsH1SjHr4jjss4YS/h4py44jY9MhK/VFdaZJAWDz6BbL21KeteKxFSFpq8OS5gVA==}
dependencies:
···
is-glob: 4.0.3
dev: true
-
/glob-promise/3.4.0_glob@7.1.6:
-
resolution: {integrity: sha512-q08RJ6O+eJn+dVanerAndJwIcumgbDdYiUT7zFQl3Wm1xD6fBKtah7H8ZJChj4wP+8C+QfeVy8xautR7rdmKEw==}
-
engines: {node: '>=4'}
-
peerDependencies:
-
glob: '*'
-
dependencies:
-
'@types/glob': 7.1.3
-
glob: 7.1.6
-
dev: true
-
-
/glob-to-regexp/0.3.0:
-
resolution: {integrity: sha512-Iozmtbqv0noj0uDDqoL0zNq0VBEfK2YFoMAZoxJe4cwphvLR+JskfF30QhXHOR4m3KrE6NLRYw+U9MRXvifyig==}
-
dev: true
-
/glob-to-regexp/0.4.1:
resolution: {integrity: sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==}
dev: true
···
ini: 2.0.0
dev: true
-
/global-modules/2.0.0:
-
resolution: {integrity: sha512-NGbfmJBp9x8IxyJSd1P+otYK8vonoJactOogrVfFRIAEY1ukil8RSKDz2Yo7wh1oihl51l/r6W4epkeKJHqL8A==}
-
engines: {node: '>=6'}
-
dependencies:
-
global-prefix: 3.0.0
-
dev: true
-
-
/global-prefix/3.0.0:
-
resolution: {integrity: sha512-awConJSVCHVGND6x3tmMaKcQvwXLhjdkmomy2W+Goaui8YPgYgXJZewhg3fWC+DlfqqQuWg8AwqjGTD2nAPVWg==}
-
engines: {node: '>=6'}
-
dependencies:
-
ini: 1.3.8
-
kind-of: 6.0.3
-
which: 1.3.1
-
dev: true
-
/global/4.4.0:
resolution: {integrity: sha512-wv/LAoHdRE3BeTGz53FAamhGlPLhlssK45usmGFThIi4XqnBmjKQ16u+RNbP7WvigRZDxUsM0J3gcQ5yicaL0w==}
dependencies:
···
type-fest: 0.20.2
dev: true
-
/globalthis/1.0.2:
-
resolution: {integrity: sha512-ZQnSFO1la8P7auIOQECnm0sSuoMeaSq0EEdXMBFF2QJO4uNcwbyhSgG3MruWNbFTqCLmxVwGOl7LZ9kASvHdeQ==}
-
engines: {node: '>= 0.4'}
-
dependencies:
-
define-properties: 1.1.4
-
dev: true
-
/globalthis/1.0.3:
resolution: {integrity: sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==}
engines: {node: '>= 0.4'}
···
define-properties: 1.2.0
dev: true
-
/globby/11.0.1:
-
resolution: {integrity: sha512-iH9RmgwCmUJHi2z5o2l3eTtGBtXek1OYlHrbcxOYugyHLmAsZrPj43OtHThd62Buh/Vv6VyCBD2bdyWcGNQqoQ==}
-
engines: {node: '>=10'}
-
dependencies:
-
array-union: 2.1.0
-
dir-glob: 3.0.1
-
fast-glob: 3.2.12
-
ignore: 5.2.1
-
merge2: 1.4.1
-
slash: 3.0.0
-
dev: true
-
/globby/11.1.0:
resolution: {integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==}
engines: {node: '>=10'}
···
pify: 2.3.0
pinkie-promise: 2.0.1
-
/globby/9.2.0:
-
resolution: {integrity: sha512-ollPHROa5mcxDEkwg6bPt3QbEf4pDQSNtd6JPL1YvOvAo/7/0VAm9TccUeoTmarjPw4pfUthSCqcyfNB1I3ZSg==}
-
engines: {node: '>=6'}
-
dependencies:
-
'@types/glob': 7.1.3
-
array-union: 1.0.2
-
dir-glob: 2.2.2
-
fast-glob: 2.2.7
-
glob: 7.1.6
-
ignore: 4.0.6
-
pify: 4.0.1
-
slash: 2.0.0
-
transitivePeerDependencies:
-
- supports-color
-
dev: true
-
/globrex/0.1.2:
resolution: {integrity: sha512-uHJgbwAMwNFf5mLst7IWLNg14x1CkeqglJb/K3doi4dw6q2IvAAmM/Y81kevy83wP+Sst+nutFTYOGg3d1lsxg==}
dev: true
-
/good-listener/1.2.2:
-
resolution: {integrity: sha512-goW1b+d9q/HIwbVYZzZ6SsTr4IgE+WA44A0GmPIQstuOrgsFcT7VEJ48nmr9GaRtNu0XTKacFLGnBPAM6Afouw==}
-
dependencies:
-
delegate: 3.2.0
-
dev: true
-
optional: true
-
/gopd/1.0.1:
resolution: {integrity: sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==}
dependencies:
···
/graphql/16.0.1:
resolution: {integrity: sha512-oPvCuu6dlLdiz8gZupJ47o1clgb72r1u8NDBcQYjcV6G/iEdmE11B1bBlkhXRvV0LisP/SXRFP7tT6AgaTjpzg==}
engines: {node: ^12.22.0 || ^14.16.0 || >=16.0.0}
+
dev: true
/gud/1.0.0:
resolution: {integrity: sha512-zGEOVKFM5sVPPrYs7J5/hYEw2Pof8KCyOwyhG8sAF26mCAeUFAcYPu1mwB7hhpIP29zOIBaDqwuHdLp0jvZXjw==}
···
resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==}
engines: {node: '>=8'}
-
/has-glob/1.0.0:
-
resolution: {integrity: sha512-D+8A457fBShSEI3tFCj65PAbT++5sKiFtdCdOam0gnfBgw9D277OERk+HM9qYJXmdVLZ/znez10SqHN0BBQ50g==}
-
engines: {node: '>=0.10.0'}
-
dependencies:
-
is-glob: 3.1.0
-
dev: true
-
/has-property-descriptors/1.0.0:
resolution: {integrity: sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==}
dependencies:
···
engines: {node: '>= 0.4'}
dependencies:
has-symbols: 1.0.3
-
-
/has-unicode/2.0.1:
-
resolution: {integrity: sha512-8Rf9Y83NBReMnx0gFzA8JImQACstCYWUplepDa9xprwwtmgEZUF0h/i5xSA625zB/I37EtrswSST6OXxwaaIJQ==}
-
dev: true
/has-value/0.3.1:
resolution: {integrity: sha512-gpG936j8/MzaeID5Yif+577c17TxaDmhuyVgSwtnL/q8UUTySg8Mecb+8Cf1otgLoD7DDH75axp86ER7LFsf3Q==}
···
/hex-color-regex/1.1.0:
resolution: {integrity: sha512-l9sfDFsuqtOqKDsQdqrMRk0U85RZc0RtOR9yPI7mRVOa4FsR/BVnZ0shmQRM96Ji99kYZP/7hn1cedc1+ApsTQ==}
-
/highlight.js/10.7.2:
-
resolution: {integrity: sha512-oFLl873u4usRM9K63j4ME9u3etNF0PLiJhSQ8rdfuL51Wn3zkD6drf9ZW0dOzjnZI22YYG24z30JcmfCZjMgYg==}
-
dev: true
-
/history/4.10.1:
resolution: {integrity: sha512-36nwAD620w12kuzPAsyINPWJqlNbij+hpK1k9XRloDtym8mxzGYl2c17LnV6IAGB2Dmg4tEa7G7DlawS0+qjew==}
dependencies:
···
/html-entities/1.4.0:
resolution: {integrity: sha512-8nxjcBcd8wovbeKx7h3wTji4e6+rhaVuPNpMqwWgnHh+N9ToqsCs6XztWRBPQ+UtzsoMAdKZtUENoVzU/EMtZA==}
-
/html-minifier-terser/5.1.1:
-
resolution: {integrity: sha512-ZPr5MNObqnV/T9akshPKbVgyOqLmy+Bxo7juKCfTfnjNniTAMdy4hz21YQqoofMBJD2kdREaqPPdThoR78Tgxg==}
-
engines: {node: '>=6'}
-
hasBin: true
-
dependencies:
-
camel-case: 4.1.2
-
clean-css: 4.2.3
-
commander: 4.1.1
-
he: 1.2.0
-
param-case: 3.0.4
-
relateurl: 0.2.7
-
terser: 4.8.0
-
dev: true
-
/html-minifier/3.5.21:
resolution: {integrity: sha512-LKUKwuJDhxNa3uf/LPR/KVjm/l3rBqtYeCOAekvG8F1vItxMUpueGd94i/asDDr8/1u7InxzFA5EeGjhhG5mMA==}
engines: {node: '>=4'}
···
util.promisify: 1.0.0
webpack: 4.46.0
-
/html-webpack-plugin/4.5.2_webpack@4.46.0:
-
resolution: {integrity: sha512-q5oYdzjKUIPQVjOosjgvCHQOv9Ett9CYYHlgvJeXG0qQvdSojnBq4vAdQBwn1+yGveAwHCoe/rMR86ozX3+c2A==}
-
engines: {node: '>=6.9'}
-
peerDependencies:
-
webpack: ^4.0.0 || ^5.0.0
-
dependencies:
-
'@types/html-minifier-terser': 5.1.1
-
'@types/tapable': 1.0.7
-
'@types/webpack': 4.41.27
-
html-minifier-terser: 5.1.1
-
loader-utils: 1.4.0
-
lodash: 4.17.21
-
pretty-error: 2.1.2
-
tapable: 1.1.3
-
util.promisify: 1.0.0
-
webpack: 4.46.0
-
dev: true
-
/htmlparser2/3.10.1:
resolution: {integrity: sha512-IgieNijUMbkDovyoKObU1DUhm1iwNYE/fuifEoEHfd1oZKZDaONBSkal7Y01shxsM49R4XaMdGez3WnF9UfiCQ==}
dependencies:
···
minimatch: 3.1.2
dev: true
-
/ignore/4.0.6:
-
resolution: {integrity: sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==}
-
engines: {node: '>= 4'}
-
dev: true
-
/ignore/5.2.1:
resolution: {integrity: sha512-d2qQLzTJ9WxQftPAuEQpSPmKqzxePjzVbpAVv62AQ64NTL+wR4JkrVqR/LqFsFEUsHDAiId52mJteHDFuDkElA==}
engines: {node: '>= 4'}
···
queue: 6.0.2
dev: true
-
/immer/8.0.1:
-
resolution: {integrity: sha512-aqXhGP7//Gui2+UrEtvxZxSquQVXTpZ7KDxfCcKAF3Vysvw0CViVaW9RZ1j1xlIYqaaaipBoqdqeibkc18PNvA==}
-
dev: true
-
/import-cwd/2.1.0:
resolution: {integrity: sha512-Ew5AZzJQFqrOV5BTW3EIoHAnoie1LojZLXKcCQ/yTRyVZosBhK1x1ViYjHGf5pAFOq8ZyChZp6m/fSN7pJyZtg==}
engines: {node: '>=4'}
···
get-intrinsic: 1.2.0
has: 1.0.3
side-channel: 1.0.4
-
dev: true
-
-
/interpret/2.2.0:
-
resolution: {integrity: sha512-Ju0Bz/cEia55xDwUWEa8+olFpCiQoypjnQySseKtmjNrnps3P+xfpUmGr90T7yjlVJmOtybRvPXhKMbHr+fWnw==}
-
engines: {node: '>= 0.10'}
dev: true
/intersection-observer/0.7.0:
···
dependencies:
is-plain-object: 2.0.4
-
/is-extglob/1.0.0:
-
resolution: {integrity: sha512-7Q+VbVafe6x2T+Tu6NcOf6sRklazEPmBoB3IWk3WdGZM2iGUwU/Oe3Wtq5lSEkDTTlpp8yx+5t4pzO/i9Ty1ww==}
-
engines: {node: '>=0.10.0'}
-
dev: true
-
/is-extglob/2.1.1:
resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==}
engines: {node: '>=0.10.0'}
-
-
/is-fullwidth-code-point/1.0.0:
-
resolution: {integrity: sha512-1pqUqRjkhPJ9miNq9SwMfdvi6lBJcd6eFxvfaivQhaH3SgisfiuudvFntdKOmxuee/77l+FPjKrQjWvmPjWrRw==}
-
engines: {node: '>=0.10.0'}
-
dependencies:
-
number-is-nan: 1.0.1
-
dev: true
/is-fullwidth-code-point/2.0.0:
resolution: {integrity: sha512-VHskAKYM8RfSFXwee5t5cbN5PZeq1Wrh6qd5bkyiXIf6UQcN6w/A0eXM9r6t8d+GYOh+o6ZhiEnb88LN/Y8m2w==}
···
resolution: {integrity: sha512-O4L094N2/dZ7xqVdrXhh9r1KODPJpFms8B5sGdJLPy664AgvXsreZUyCQQNItZRDlYug4xStLjNp/sz3HvBowQ==}
engines: {node: '>=12'}
dev: true
-
-
/is-function/1.0.2:
-
resolution: {integrity: sha512-lw7DUp0aWXYg+CBCN+JKkcE0Q2RayZnSvnZBlwgxHBQhqt5pZNVy4Ri7H9GmmXkdu7LUthszM+Tor1u/2iBcpQ==}
/is-generator-function/1.0.9:
resolution: {integrity: sha512-ZJ34p1uvIfptHCN7sFTjGibB9/oBg17sHqzDLfuwhvmN/qLVvIQXRQ8licZQ35WJ8KuEQt/etnnzQFI9C9Ue/A==}
engines: {node: '>= 0.4'}
dev: true
-
/is-glob/2.0.1:
-
resolution: {integrity: sha512-a1dBeB19NXsf/E0+FHqkagizel/LQw2DjSQpvQrj3zT+jYPpaUCryPnrQajXKFLCMuf4I6FhRpaGtw4lPrG6Eg==}
-
engines: {node: '>=0.10.0'}
-
dependencies:
-
is-extglob: 1.0.0
-
dev: true
-
/is-glob/3.1.0:
resolution: {integrity: sha512-UFpDDrPgM6qpnFNI+rh/p3bUaq9hKLZN8bMUWzxmcnZVS3omf4IPK+BrewlnWjO1WmUsMYuSjKh4UJuV4+Lqmw==}
engines: {node: '>=0.10.0'}
···
is-path-inside: 3.0.3
dev: true
-
/is-map/2.0.2:
-
resolution: {integrity: sha512-cOZFQQozTha1f4MxLFzlgKYPTyj26picdZTx82hbc/Xf4K/tZOOXSCkMvU4pKioRXGDLJRn0GM7Upe7kR721yg==}
-
dev: true
-
/is-module/1.0.0:
resolution: {integrity: sha512-51ypPSPCoTEIN9dy5Oy+h4pShgJmPCygKfyRCISBI+JoWT/2oJvK8QPxmwv7b/p239jXrm9M1mlQbyKJ5A152g==}
dev: true
···
resolution: {integrity: sha512-RUbUeKwvm3XG2VYamhJL1xFktgjvPzL0Hq8C+6yrWIswDy3BIXGqCxhxkc30N9jqK311gVU137K8Ei55/zVJRg==}
engines: {node: '>=0.10.0'}
-
/is-root/2.1.0:
-
resolution: {integrity: sha512-AGOriNp96vNBd3HtU+RzFEc75FfR5ymiYv8E553I71SCeXBiMsVDUtdio1OEFvrPyLIQ9tVR5RxXIFe5PUFjMg==}
-
engines: {node: '>=6'}
-
dev: true
-
-
/is-set/2.0.2:
-
resolution: {integrity: sha512-+2cnTEZeY5z/iXGbLhPrOAaK/Mau5k5eXq9j14CpRTftq0pAJu2MwVRSZhyZWBzx3o6X795Lz6Bpb6R0GKf37g==}
-
dev: true
-
/is-shared-array-buffer/1.0.2:
resolution: {integrity: sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==}
dependencies:
···
/isarray/2.0.1:
resolution: {integrity: sha512-c2cu3UxbI+b6kR3fy0nRnAhodsvR9dx7U5+znCOzdj6IfP3upFURTr0Xl5BlQZNKZjEtxrmVyfSdeE3O57smoQ==}
-
/isarray/2.0.5:
-
resolution: {integrity: sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==}
-
dev: true
-
/isexe/2.0.0:
resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==}
···
resolution: {integrity: sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==}
engines: {node: '>=0.10.0'}
-
/isobject/4.0.0:
-
resolution: {integrity: sha512-S/2fF5wH8SJA/kmwr6HYhK/RI/OkhD84k8ntalo0iJjZikgq1XFvR5M8NPT1x5F7fBwCG3qHfnzeP/Vh/ZxCUA==}
-
engines: {node: '>=0.10.0'}
-
/isstream/0.1.2:
resolution: {integrity: sha512-Yljz7ffyPbrLpLngrMtZ7NduUgVvi6wG9RJ9IUcyCd59YQ911PBJphODUcbOVbqYfxe1wuYf/LJ8PauMRwsM/g==}
dev: true
···
has-to-string-tag-x: 1.4.1
is-object: 1.0.2
-
/iterate-iterator/1.0.1:
-
resolution: {integrity: sha512-3Q6tudGN05kbkDQDI4CqjaBf4qf85w6W6GnuZDtUVYwKgtC1q8yxYX7CZed7N+tLzQqS6roujWvszf13T+n9aw==}
-
dev: true
-
-
/iterate-value/1.0.2:
-
resolution: {integrity: sha512-A6fMAio4D2ot2r/TYzr4yUWrmwNdsN5xL7+HUiyACE4DXm+q8HtPcnFTp+NnW3k4N05tZ7FVYFFb2CR13NxyHQ==}
-
dependencies:
-
es-get-iterator: 1.1.2
-
iterate-iterator: 1.0.1
-
dev: true
-
-
/jest-worker/26.6.2:
-
resolution: {integrity: sha512-KWYVV1c4i+jbMpaBC+U++4Va0cp8OisU185o73T1vo99hqi7w8tSJfUXYswwqqrjzwxa6KpRK54WhPvwf5w6PQ==}
-
engines: {node: '>= 10.13.0'}
-
dependencies:
-
'@types/node': 18.11.9
-
merge-stream: 2.0.0
-
supports-color: 7.2.0
-
dev: true
-
/jest-worker/27.0.0-next.5:
resolution: {integrity: sha512-mk0umAQ5lT+CaOJ+Qp01N6kz48sJG2kr2n1rX0koqKf6FIygQV0qLOdN9SCYID4IVeSigDOcPeGLozdMLYfb5g==}
engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
···
resolution: {integrity: sha512-gfFQZrcTc8CnKXp6Y4/CBT3fTc0OVuDofpre4aEeEpSBPV5X5v4+Vmx+8snU7RLPrNHPKSgLxGo9YuQzz20o+w==}
dev: true
-
/jsonfile/2.4.0:
-
resolution: {integrity: sha512-PKllAqbgLgxHaj8TElYymKCAgrASebJrWpTnEkOaTowt23VKXXN0sUeriJ+eh7y6ufb/CC5ap11pz71/cM0hUw==}
-
optionalDependencies:
-
graceful-fs: 4.2.10
-
dev: true
-
/jsonfile/4.0.0:
resolution: {integrity: sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==}
optionalDependencies:
-
graceful-fs: 4.2.6
+
graceful-fs: 4.2.10
/jsonfile/6.1.0:
resolution: {integrity: sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==}
dependencies:
universalify: 2.0.0
optionalDependencies:
-
graceful-fs: 4.2.6
+
graceful-fs: 4.2.10
dev: true
/jsprim/1.4.1:
···
object.assign: 4.1.4
dev: true
-
/junk/3.1.0:
-
resolution: {integrity: sha512-pBxcB3LFc8QVgdggvZWyeys+hnrNWg4OcZIU/1X59k5jQdLBlCsYGRQaz234SqoRLTCgMH00fY0xRJH+F9METQ==}
-
engines: {node: '>=8'}
-
dev: true
-
/keyv/3.0.0:
resolution: {integrity: sha512-eguHnq22OE3uVoSYG0LVWNP+4ppamWr9+zWBe1bsNcovIMy6huUJFPgy4mGwCd/rnl3vOLGW1MTlu4c57CT1xA==}
dependencies:
···
resolution: {integrity: sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==}
engines: {node: '>=0.10.0'}
-
/klaw/1.3.1:
-
resolution: {integrity: sha512-TED5xi9gGQjGpNnvRWknrwAB1eL5GciPfVFOt3Vk1OJCVDQbzuSfrF3hkUQKlsgKrG1F+0t5W0m+Fje1jIt8rw==}
-
optionalDependencies:
-
graceful-fs: 4.2.10
-
dev: true
-
-
/kleur/3.0.3:
-
resolution: {integrity: sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==}
-
engines: {node: '>=6'}
-
dev: true
-
/kleur/4.1.5:
resolution: {integrity: sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==}
engines: {node: '>=6'}
dev: true
-
/klona/2.0.4:
-
resolution: {integrity: sha512-ZRbnvdg/NxqzC7L9Uyqzf4psi1OM4Cuc+sJAkQPjO6XkQIJTNbfK2Rsmbw8fx1p2mkZdp2FZYo2+LwXYY/uwIA==}
-
engines: {node: '>= 8'}
-
dev: true
-
/last-call-webpack-plugin/3.0.0:
resolution: {integrity: sha512-7KI2l2GIZa9p2spzPIVZBYyNKkN+e/SQPpnjlTiPhdbDW3F86tdKKELxKpzJ5sgU19wQWsACULZmpTPYHeWO5w==}
dependencies:
···
/lazy-ass/1.6.0:
resolution: {integrity: sha512-cc8oEVoctTvsFZ/Oje/kGnHbpWHYBe8IAJe4C0QNc3t8uM/0Y8+erSz/7Y1ALuXTEZTMvxXwO6YbX1ey3ujiZw==}
engines: {node: '> 0.8'}
-
dev: true
-
-
/lazy-universal-dotenv/3.0.1:
-
resolution: {integrity: sha512-prXSYk799h3GY3iOWnC6ZigYzMPjxN2svgjJ9shk7oMadSNX3wXy0B6F32PMJv7qtMnrIbUxoEHzbutvxR2LBQ==}
-
engines: {node: '>=6.0.0', npm: '>=6.0.0', yarn: '>=1.0.0'}
-
dependencies:
-
'@babel/runtime': 7.20.1
-
app-root-dir: 1.0.2
-
core-js: 3.11.1
-
dotenv: 8.2.0
-
dotenv-expand: 5.1.0
dev: true
/levn/0.3.0:
···
/lower-case/1.1.4:
resolution: {integrity: sha512-2Fgx1Ycm599x+WGpIYwJOvsjmXFzTSc34IwDWALRA/8AopUKAVPwfJ+h5+f85BCp0PWmmJcWzEpxOpoXycMpdA==}
-
/lower-case/2.0.2:
-
resolution: {integrity: sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==}
-
dependencies:
-
tslib: 2.4.0
-
dev: true
-
/lowercase-keys/1.0.0:
resolution: {integrity: sha512-RPlX0+PHuvxVDZ7xX+EBVAp4RsVxP/TdDSN2mJYdiq1Lc4Hz7EUSjUI7RZrKKlmrIzVhf6Jo2stj7++gVarS0A==}
engines: {node: '>=0.10.0'}
···
/lowercase-keys/1.0.1:
resolution: {integrity: sha512-G2Lj61tXDnVFFOi8VZds+SoQjtQC3dgokKdDG2mTm1tx4m50NUHBOZSBwQQHyy0V12A0JTG4icfZQH+xPyh8VA==}
engines: {node: '>=0.10.0'}
-
-
/lowlight/1.20.0:
-
resolution: {integrity: sha512-8Ktj+prEb1RoCPkEOrPMYUN/nCggB7qAWe3a7OpMjWQkh3l2RD5wKRQ+o8Q8YuI9RG/xs95waaI/E6ym/7NsTw==}
-
dependencies:
-
fault: 1.0.4
-
highlight.js: 10.7.2
-
dev: true
/lru-cache/4.1.5:
resolution: {integrity: sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g==}
···
engines: {node: '>=8'}
dev: true
-
/map-or-similar/1.5.0:
-
resolution: {integrity: sha512-0aF7ZmVon1igznGI4VS30yugpduQW3y3GkcgGJOp7d8x8QrizhigUxjI/m2UojsXXto+jLAH3KSz+xOJTiORjg==}
-
/map-visit/1.0.0:
resolution: {integrity: sha512-4y7uGv8bd2WdM9vpQsiQNo41Ln1NvhvDRuVt0k2JZQ+ezN2uaQes7lZeZ+QQUHOLQAtDaBJ+7wCbi+ab/KFs+w==}
engines: {node: '>=0.10.0'}
···
repeat-string: 1.6.1
dev: true
-
/markdown-to-jsx/6.11.4_react@17.0.2:
-
resolution: {integrity: sha512-3lRCD5Sh+tfA52iGgfs/XZiw33f7fFX9Bn55aNnVNUd2GzLDkOWyKYYD8Yju2B1Vn+feiEdgJs8T6Tg0xNokPw==}
-
engines: {node: '>= 4'}
-
peerDependencies:
-
react: '>= 0.14.0 || 17'
-
dependencies:
-
prop-types: 15.8.1
-
react: 17.0.2
-
unquote: 1.1.1
-
dev: true
-
-
/markdown-to-jsx/7.1.2_react@17.0.2:
-
resolution: {integrity: sha512-O8DMCl32V34RrD+ZHxcAPc2+kYytuDIoQYjY36RVdsLK7uHjgNVvFec4yv0X6LgB4YEZgSvK5QtFi5YVqEpoMA==}
-
engines: {node: '>= 4'}
-
peerDependencies:
-
react: '>= 0.14.0 || 17'
-
dependencies:
-
react: 17.0.2
-
dev: true
-
/match-sorter/3.1.1:
resolution: {integrity: sha512-Qlox3wRM/Q4Ww9rv1cBmYKNJwWVX/WC+eA3+1S3Fv4EOhrqyp812ZEfVFKQk0AP6RfzmPUUOwEZBbJ8IRt8SOw==}
dependencies:
···
resolution: {integrity: sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==}
engines: {node: '>= 0.6'}
-
/memfs/3.2.2:
-
resolution: {integrity: sha512-RE0CwmIM3CEvpcdK3rZ19BC4E6hv9kADkMN5rPduRak58cNArWLi/9jFLsa4rhsjfVxMP3v0jO7FHXq7SvFY5Q==}
-
engines: {node: '>= 4.0.0'}
-
dependencies:
-
fs-monkey: 1.0.3
-
dev: true
-
-
/memoizerific/1.11.3:
-
resolution: {integrity: sha512-/EuHYwAPdLtXwAwSZkh/Gutery6pD2KYd44oQLhAvQp/50mpyduZh8Q7PYHXTCJ+wuXxt7oij2LXyIJOOYFPog==}
-
dependencies:
-
map-or-similar: 1.5.0
-
/memory-fs/0.4.1:
resolution: {integrity: sha512-cda4JKCxReDXFXRqOHPQscuIYg1PvxbE2S2GP45rnwfEK+vZaXC8C1OFvdHIbgw0DLzowXGVoxLaAmlgRy14GQ==}
dependencies:
···
/methods/1.1.2:
resolution: {integrity: sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==}
engines: {node: '>= 0.6'}
-
-
/microevent.ts/0.1.1:
-
resolution: {integrity: sha512-jo1OfR4TaEwd5HOrt5+tAZ9mqT4jmpNAusXtyfNzqVm9uiSYFZlKM1wYL4oU7azZW/PxQW53wM0S6OR1JHNa2g==}
-
dev: true
/micromatch/3.1.10:
resolution: {integrity: sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==}
···
/minimist/1.2.7:
resolution: {integrity: sha512-bzfL1YUZsP41gmu/qjrEk0Q6i2ix/cVeAhbCbqH9u3zYutS1cLg00qhrD0M2MVdCcx4Sc0UpP2eBWo9rotpq6g==}
-
/minipass-collect/1.0.2:
-
resolution: {integrity: sha512-6T6lH0H8OG9kITm/Jm6tdooIbogG9e0tLgpY6mphXSm/A9u8Nq1ryBG+Qspiub9LjWlBPsPS3tWQ/Botq4FdxA==}
-
engines: {node: '>= 8'}
-
dependencies:
-
minipass: 3.1.3
-
dev: true
-
-
/minipass-flush/1.0.5:
-
resolution: {integrity: sha512-JmQSYYpPUqX5Jyn1mXaRwOda1uQ8HP5KAT/oDSLCzt1BYRhQU0/hDtsB1ufZfEEzMZ9aAVmsBw8+FWsIXlClWw==}
-
engines: {node: '>= 8'}
-
dependencies:
-
minipass: 3.1.3
-
dev: true
-
-
/minipass-pipeline/1.2.4:
-
resolution: {integrity: sha512-xuIq7cIOt09RPRJ19gdi4b+RiNvDFYe5JH+ggNvBqGqpQXcru3PcRmOZuHBKWK1Txf9+cQ+HMVN4d6z46LZP7A==}
-
engines: {node: '>=8'}
-
dependencies:
-
minipass: 3.1.3
-
dev: true
-
/minipass/3.1.3:
resolution: {integrity: sha512-Mgd2GdMVzY+x3IJ+oHnVM+KG3lA5c8tnabyJKmHSaG2kAGpudxuOf8ToDkhumF7UzME7DecbQE9uOZhNm7PuJg==}
engines: {node: '>=8'}
···
transitivePeerDependencies:
- supports-color
-
/native-url/0.2.6:
-
resolution: {integrity: sha512-k4bDC87WtgrdD362gZz6zoiXQrl40kYlBmpfmSjwRO1VU0V5ccwJTlxuE72F6m3V0vc1xOf6n3UCP9QyerRqmA==}
-
dependencies:
-
querystring: 0.2.1
-
dev: true
-
/native-url/0.3.4:
resolution: {integrity: sha512-6iM8R99ze45ivyH8vybJ7X0yekIcPf5GgLV5K0ENCbmRcaRIDoj37BC8iLEmaaBfqqb8enuZ5p0uhY+lVAbAcA==}
dependencies:
···
/neo-async/2.6.2:
resolution: {integrity: sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==}
-
-
/nested-error-stacks/2.1.0:
-
resolution: {integrity: sha512-AO81vsIO1k1sM4Zrd6Hu7regmJN1NSiAja10gc4bX3F0wd+9rQmcuHQaHVQCYIEC8iFXnE+mavh23GOt7wBgug==}
-
dev: true
/netrc/0.1.4:
resolution: {integrity: sha512-ye8AIYWQcP9MvoM1i0Z2jV0qed31Z8EWXYnyGNkiUAd+Fo8J+7uy90xTV8g/oAbhtjkY7iZbNTizQaXdKUuwpQ==}
···
dependencies:
lower-case: 1.1.4
-
/no-case/3.0.4:
-
resolution: {integrity: sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==}
-
dependencies:
-
lower-case: 2.0.2
-
tslib: 2.4.0
-
dev: true
-
-
/node-dir/0.1.17:
-
resolution: {integrity: sha512-tmPX422rYgofd4epzrNoOXiE8XFZYOcCq1vD7MAXCDO+O+zndlA2ztdKKMa+EeuBG5tHETpr4ml4RGgpqDCCAg==}
-
engines: {node: '>= 0.10.5'}
-
dependencies:
-
minimatch: 3.1.2
-
dev: true
-
/node-domexception/1.0.0:
resolution: {integrity: sha512-/jKZoMpw0F8GRwl4/eLROPA3cfcXtLApP0QzLmUT/HuPCZWyB7IY9ZrMeKw2O/nFIqPQB3PVM9aYm0F312AXDQ==}
engines: {node: '>=10.5.0'}
···
path-key: 3.1.1
dev: true
-
/npmlog/4.1.2:
-
resolution: {integrity: sha512-2uUqazuKlTaSI/dC8AzicUck7+IrEaOnN/e0jd3Xtt1KcGpwx30v50mL7oPyr/h9bL3E4aZccVwpwP+5W9Vjkg==}
-
dependencies:
-
are-we-there-yet: 1.1.5
-
console-control-strings: 1.1.0
-
gauge: 2.7.4
-
set-blocking: 2.0.0
-
dev: true
-
/nth-check/1.0.2:
resolution: {integrity: sha512-WeBOdju8SnzPN5vTUJYxYUxLeXpCaVP5i5e0LF8fg7WORF2Wd7wFX/pk0tYZk7s8T+J7VLy0Da6J1+wCT0AtHg==}
dependencies:
···
/num2fraction/1.2.2:
resolution: {integrity: sha512-Y1wZESM7VUThYY+4W+X4ySH2maqcA+p7UR+w8VWNWVAd6lwuXXWz/w/Cz43J/dI2I+PS6wD5N+bJUF+gjWvIqg==}
-
/number-is-nan/1.0.1:
-
resolution: {integrity: sha512-4jbtZXNAsfZbAHiiqjLPBiCl16dES1zI4Hpzzxw61Tk+loF+sBDBKx1ICKKKwIqQ7M0mFn1TmkN7euSncWgHiQ==}
-
engines: {node: '>=0.10.0'}
-
dev: true
-
/nwsapi/2.2.2:
resolution: {integrity: sha512-90yv+6538zuvUMnN+zCr8LuV6bPFdq50304114vJYJ8RDyK8D5O9Phpbd6SZWgI7PwzmmfN1upeOJlvybDSgCw==}
dev: true
···
define-properties: 1.1.4
es-abstract: 1.20.4
-
/objectorarray/1.0.4:
-
resolution: {integrity: sha512-91k8bjcldstRz1bG6zJo8lWD7c6QXcB4nTDUqiEvIL1xAsLoZlOOZZG+nd6YPz+V7zY1580J4Xxh1vZtyv4i/w==}
-
dev: true
-
/obuf/1.1.2:
resolution: {integrity: sha512-PX1wu0AmAdPqOL1mWhqmlOd8kOIZQwGZw6rh7uby9fTc5lhaOWFLX3I6R1hrF9k3zUY40e6igsLGkDXK92LJNg==}
···
mimic-fn: 2.1.0
dev: true
-
/open/7.4.2:
-
resolution: {integrity: sha512-MVHddDVweXZF3awtlAS+6pgKLlm/JgxZ90+/NBurBoQctVOOB/zDdVjcyPzQ+0laDGbsWgrRkflI65sQeOgT9Q==}
-
engines: {node: '>=8'}
-
dependencies:
-
is-docker: 2.2.1
-
is-wsl: 2.2.0
-
dev: true
-
/open/8.4.2:
resolution: {integrity: sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ==}
engines: {node: '>=12'}
···
resolution: {integrity: sha512-/jHxFIzoMXdqPzTaCpFzAAWhpkSjZPF4Vsn6jAfNpmbH/ymsmd7Qc6VE9BGn0L6YMj6uwpQLxCECpus4ukKS9Q==}
dev: true
-
/overlayscrollbars/1.13.1:
-
resolution: {integrity: sha512-gIQfzgGgu1wy80EB4/6DaJGHMEGmizq27xHIESrzXq0Y/J0Ay1P3DWk6tuVmEPIZH15zaBlxeEJOqdJKmowHCQ==}
-
dev: true
-
-
/p-all/2.1.0:
-
resolution: {integrity: sha512-HbZxz5FONzz/z2gJfk6bFca0BCiSRF8jU3yCsWOen/vR6lZjfPOu/e7L3uFzTW1i0H8TlC3vqQstEJPQL4/uLA==}
-
engines: {node: '>=6'}
-
dependencies:
-
p-map: 2.1.0
-
dev: true
-
/p-cancelable/0.4.1:
resolution: {integrity: sha512-HNa1A8LvB1kie7cERyy21VNeHb2CWJJYqyyC2o3klWFfMGlFmWv2Z7sFgZH8ZiaYL95ydToKTFVXgMV/Os0bBQ==}
engines: {node: '>=4'}
···
engines: {node: '>=6'}
dependencies:
p-timeout: 2.0.1
-
-
/p-event/4.2.0:
-
resolution: {integrity: sha512-KXatOjCRXXkSePPb1Nbi0p0m+gQAwdlbhi4wQKJPI1HsMQS9g+Sqp2o+QHziPr7eYJyOZet836KoHEVM1mwOrQ==}
-
engines: {node: '>=8'}
-
dependencies:
-
p-timeout: 3.2.0
-
dev: true
/p-filter/2.1.0:
resolution: {integrity: sha512-ZBxxZ5sL2HghephhpGAQdoskxplTwr7ICaehZwLIlfL6acuVgZPm8yBNuRAFBGEqtD/hmUeq9eqLg2ys9Xr/yw==}
···
resolution: {integrity: sha512-y3b8Kpd8OAN444hxfBbFfj1FY/RjtTd8tzYwhUqNYXx0fXx2iX4maP4Qr6qhIKbQXI02wTLAda4fYUbDagTUFw==}
engines: {node: '>=6'}
-
/p-map/3.0.0:
-
resolution: {integrity: sha512-d3qXVTF/s+W+CdJ5A29wywV2n8CQQYahlgz2bFiA+4eVNJbHJodPZ+/gXwPGh0bOqA+j8S+6+ckmvLGPk1QpxQ==}
-
engines: {node: '>=8'}
-
dependencies:
-
aggregate-error: 3.1.0
-
dev: true
-
/p-map/4.0.0:
resolution: {integrity: sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==}
engines: {node: '>=10'}
···
dependencies:
p-finally: 1.0.0
-
/p-timeout/3.2.0:
-
resolution: {integrity: sha512-rhIwUycgwwKcP9yTOOFK/AKsAopjjCakVqLHePO3CC6Mir1Z99xT+R63jZxAT5lFZLa2inS5h+ZS2GvR99/FBg==}
-
engines: {node: '>=8'}
-
dependencies:
-
p-finally: 1.0.0
-
dev: true
-
/p-try/2.2.0:
resolution: {integrity: sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==}
engines: {node: '>=6'}
···
resolution: {integrity: sha512-eQE845L6ot89sk2N8liD8HAuH4ca6Vvr7VWAWwt7+kvvG5aBcPmmphQ68JsEG2qa9n1TykS2DLeMt363AAH8/w==}
dependencies:
no-case: 2.3.2
-
-
/param-case/3.0.4:
-
resolution: {integrity: sha512-RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A==}
-
dependencies:
-
dot-case: 3.0.4
-
tslib: 2.4.0
-
dev: true
/parent-module/1.0.1:
resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==}
···
/parseurl/1.3.3:
resolution: {integrity: sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==}
engines: {node: '>= 0.8'}
-
-
/pascal-case/3.1.2:
-
resolution: {integrity: sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g==}
-
dependencies:
-
no-case: 3.0.4
-
tslib: 2.4.0
-
dev: true
/pascalcase/0.1.1:
resolution: {integrity: sha512-XHXfu/yOQRy9vYOtUDVMN60OEJjW013GoObG1o+xwQTpB9eYJX/BjXMsdW13ZDPruFhYYn0AG22w0xgQMwl3Nw==}
···
pathe: 1.1.0
dev: true
-
/pkg-up/3.1.0:
-
resolution: {integrity: sha512-nDywThFk1i4BQK4twPQ6TA4RT8bDY96yeuCVBWL3ePARCiEKDRSrNGbFIgUJpLp+XeIR65v8ra7WuJOFUBtkMA==}
-
engines: {node: '>=8'}
-
dependencies:
-
find-up: 3.0.0
-
dev: true
-
/platform/1.3.6:
resolution: {integrity: sha512-fnWVljUchTro6RiCFvCXBbNhJc2NijN7oIQxbwsyL0buWJPG85v81ehlHI9fXrJsMNgTofEoWIQeClKpgxFLrg==}
dev: true
···
transitivePeerDependencies:
- typescript
dev: true
-
-
/pnp-webpack-plugin/1.6.4_typescript@4.9.3:
-
resolution: {integrity: sha512-7Wjy+9E3WwLOEL30D+m8TSTF7qJJUJLONBnwQp0518siuMxUQUbgZwssaFX+QKlZkjHZcw/IpZCt/H0srrntSg==}
-
engines: {node: '>=6'}
-
dependencies:
-
ts-pnp: 1.2.0_typescript@4.9.3
-
transitivePeerDependencies:
-
- typescript
-
dev: true
-
-
/polished/4.1.2:
-
resolution: {integrity: sha512-jq4t3PJUpVRcveC53nnbEX35VyQI05x3tniwp26WFdm1dwaNUBHAi5awa/roBlwQxx1uRhwNSYeAi/aMbfiJCQ==}
-
engines: {node: '>=10'}
-
dependencies:
-
'@babel/runtime': 7.20.1
/portfinder/1.0.28:
resolution: {integrity: sha512-Se+2isanIcEqf2XMHjyUKskczxbPH7dQnlMjXX6+dybayyHvAf/TCgyMRlzf/B6QDhAEFOGes0pzRo3by4AbMA==}
···
postcss-load-config: 2.1.2
schema-utils: 1.0.0
-
/postcss-loader/4.2.0_va2tfcrifoxmlipe46ek4ea33a:
-
resolution: {integrity: sha512-mqgScxHqbiz1yxbnNcPdKYo/6aVt+XExURmEbQlviFVWogDbM4AJ0A/B+ZBpYsJrTRxKw7HyRazg9x0Q9SWwLA==}
-
engines: {node: '>= 10.13.0'}
-
peerDependencies:
-
postcss: ^7.0.0 || ^8.0.1
-
webpack: ^4.0.0 || ^5.0.0
-
dependencies:
-
cosmiconfig: 7.0.0
-
klona: 2.0.4
-
loader-utils: 2.0.0
-
postcss: 7.0.35
-
schema-utils: 3.0.0
-
semver: 7.3.8
-
webpack: 4.46.0
-
dev: true
-
/postcss-merge-longhand/4.0.11:
resolution: {integrity: sha512-alx/zmoeXvJjp7L4mxEMjh8lxVlDFX1gqWHzaaQewwMZiVhLo42TEClKaeHbRf6J7j82ZOdTJ808RtN0ZOZwvw==}
engines: {node: '>=6.9.0'}
···
postcss-selector-parser: 6.0.5
postcss-value-parser: 3.3.1
-
/postcss-modules-local-by-default/3.0.3:
-
resolution: {integrity: sha512-e3xDq+LotiGesympRlKNgaJ0PCzoUIdpH0dj47iWAui/kyTgh3CiAr1qP54uodmJhl6p9rN6BoNcdEDVJx9RDw==}
-
engines: {node: '>= 6'}
-
dependencies:
-
icss-utils: 4.1.1
-
postcss: 7.0.35
-
postcss-selector-parser: 6.0.5
-
postcss-value-parser: 4.1.0
-
dev: true
-
/postcss-modules-scope/2.2.0:
resolution: {integrity: sha512-YyEgsTMRpNd+HmyC7H/mh3y+MeFWevy7V1evVhJWewmMbjDHIbZbOXICC2y+m1xI1UVfIT1HMW/O04Hxyu9oXQ==}
engines: {node: '>= 6'}
···
dependencies:
icss-replace-symbols: 1.1.0
postcss: 7.0.35
-
-
/postcss-modules-values/3.0.0:
-
resolution: {integrity: sha512-1//E5jCBrZ9DmRX+zCtmQtRSV6PV42Ix7Bzj9GbwJceduuf7IqP8MgeTXuRDHOWj2m0VzZD5+roFWDuU8RQjcg==}
-
dependencies:
-
icss-utils: 4.1.1
-
postcss: 7.0.35
-
dev: true
/postcss-normalize-charset/4.0.1:
resolution: {integrity: sha512-gMXCrrlWh6G27U0hF3vNvR3w8I1s2wOBILvA87iNXaPvSNo5uZAMYsZG7XjCUf1eVxuPfyL4TJ7++SGZLc9A3g==}
···
react-is: 17.0.2
dev: true
-
/pretty-hrtime/1.0.3:
-
resolution: {integrity: sha512-66hKPCr+72mlfiSjlEB1+45IjXSqvVAIy6mocupoww4tBFE9R9IhwwUGoI4G++Tc9Aq+2rxOt0RFU6gPcrte0A==}
-
engines: {node: '>= 0.8'}
-
dev: true
-
/prism-react-renderer/1.2.0_react@17.0.2:
resolution: {integrity: sha512-GHqzxLYImx1iKN1jJURcuRoA/0ygCcNhfGw1IT8nPIMzarmKQ3Nc+JcG0gi8JXQzuh0C5ShE4npMIoqNin40hg==}
peerDependencies:
···
react: 17.0.2
dev: false
-
/prismjs/1.23.0:
-
resolution: {integrity: sha512-c29LVsqOaLbBHuIbsTxaKENh1N2EQBOHaWv7gkHN4dgRbxSREqDnDbtFJYdpPauS4YCplMSNCABQ6Eeor69bAA==}
-
optionalDependencies:
-
clipboard: 2.0.8
-
dev: true
-
/process-nextick-args/2.0.1:
resolution: {integrity: sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==}
···
resolution: {integrity: sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==}
engines: {node: '>=0.4.0'}
-
/promise-inflight/1.0.1:
-
resolution: {integrity: sha512-6zWPyEOFaQBJYcGMHBKTKJ3u6TBsnMFOIZSa6ce1e/ZrrsOlnHRHbabMjLiBYKp+n44X9eUI6VUPaukCXHuG4g==}
-
peerDependencies:
-
bluebird: '*'
-
peerDependenciesMeta:
-
bluebird:
-
optional: true
-
dev: true
-
/promise-inflight/1.0.1_bluebird@3.7.2:
resolution: {integrity: sha512-6zWPyEOFaQBJYcGMHBKTKJ3u6TBsnMFOIZSa6ce1e/ZrrsOlnHRHbabMjLiBYKp+n44X9eUI6VUPaukCXHuG4g==}
peerDependencies:
···
dependencies:
bluebird: 3.7.2
-
/promise.allsettled/1.0.4:
-
resolution: {integrity: sha512-o73CbvQh/OnPFShxHcHxk0baXR2a1m4ozb85ha0H14VEoi/EJJLa9mnPfEWJx9RjA9MLfhdjZ8I6HhWtBa64Ag==}
-
engines: {node: '>= 0.4'}
-
dependencies:
-
array.prototype.map: 1.0.3
-
call-bind: 1.0.2
-
define-properties: 1.1.4
-
es-abstract: 1.20.4
-
get-intrinsic: 1.1.3
-
iterate-value: 1.0.2
-
dev: true
-
-
/promise.prototype.finally/3.1.2:
-
resolution: {integrity: sha512-A2HuJWl2opDH0EafgdjwEw7HysI8ff/n4lW4QEVBCUXFk9QeGecBWv0Deph0UmLe3tTNYegz8MOjsVuE6SMoJA==}
-
engines: {node: '>= 0.4'}
-
dependencies:
-
define-properties: 1.1.4
-
es-abstract: 1.20.4
-
function-bind: 1.1.1
-
dev: true
-
-
/prompts/2.4.0:
-
resolution: {integrity: sha512-awZAKrk3vN6CroQukBL+R9051a4R3zCZBlJm/HBfrSZ8iTpYix3VX1vU4mveiLpiwmOJT4wokTF9m6HUk4KqWQ==}
-
engines: {node: '>= 6'}
-
dependencies:
-
kleur: 3.0.3
-
sisteransi: 1.0.5
-
dev: true
-
-
/prompts/2.4.1:
-
resolution: {integrity: sha512-EQyfIuO2hPDsX1L/blblV+H7I0knhgAd82cVneCwcdND9B8AuCDuRcBH6yIcG4dFzlOUqbazQqwGjx5xmsNLuQ==}
-
engines: {node: '>= 6'}
-
dependencies:
-
kleur: 3.0.3
-
sisteransi: 1.0.5
-
dev: true
-
/prop-types-exact/1.2.0:
resolution: {integrity: sha512-K+Tk3Kd9V0odiXFP9fwDHUYRyvK3Nun3GVyPapSIs5OBkITAm15W0CPFD/YKTkMUAbc0b9CUwRQp2ybiBIq+eA==}
dependencies:
···
/q/1.5.1:
resolution: {integrity: sha512-kV/CThkXo6xyFEZUugw/+pIOywXcDbFYgSct5cT3gqlbkBE1SJdwy6UQoZvodiWF/ckQLZyDE/Bu1M6gVu5lVw==}
engines: {node: '>=0.6.0', teleport: '>=0.2.0'}
-
-
/qs/6.10.1:
-
resolution: {integrity: sha512-M528Hph6wsSVOBiYUnGf+K/7w0hNshs/duGsNXPUCLH5XAqjEtiPGwNONLV0tBH8NoGb0mvD5JubnUTrujKDTg==}
-
engines: {node: '>=0.6'}
-
dependencies:
-
side-channel: 1.0.4
/qs/6.5.2:
resolution: {integrity: sha512-N5ZAX4/LxJmF+7wN74pUD6qAh9/wnvdQcjq9TZjevvXzSUo7bfmw91saqMjzGS2xq91/odN2dW/WOl7qQHNDGA==}
···
resolution: {integrity: sha512-cz93DjNeLY0idrCNOH6PviZGRN9GJhsdm9hpn1YCS879fj4W+x5IFJhhkRZcwVgMmFF7R82UA/7Oh+R8lLZg6A==}
dev: true
-
/ramda/0.21.0:
-
resolution: {integrity: sha512-HGd5aczYKQXGILB+abY290V7Xz62eFajpa6AtMdwEmQSakJmgSO7ks4eI3HdR34j+X2Vz4Thp9VAJbrCAMbO2w==}
-
dev: true
-
/randexp/0.4.6:
resolution: {integrity: sha512-80WNmd9DA0tmZrw9qQa62GPPWfuXJknrmVmLcxvq4uZBdYqb1wYoKTmnlGUchvVWe0XiLupYkBoXVOxz3C8DYQ==}
engines: {node: '>=0.12'}
···
schema-utils: 2.7.1
webpack: 4.46.0
-
/raw-loader/4.0.2_webpack@4.46.0:
-
resolution: {integrity: sha512-ZnScIV3ag9A4wPX/ZayxL/jZH+euYb6FcUinPcgiQW0+UBtEv0O6Q3lGd3cqJ+GHH+rksEv3Pj99oxJ3u3VIKA==}
-
engines: {node: '>= 10.13.0'}
-
peerDependencies:
-
webpack: ^4.0.0 || ^5.0.0
-
dependencies:
-
loader-utils: 2.0.0
-
schema-utils: 3.0.0
-
webpack: 4.46.0
-
dev: true
-
/rc/1.2.8:
resolution: {integrity: sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==}
hasBin: true
···
minimist: 1.2.7
strip-json-comments: 2.0.1
-
/react-colorful/5.1.4_sfoxds7t5ydpegc3knd667wn6m:
-
resolution: {integrity: sha512-WOEpRNz8Oo2SEU4eYQ279jEKFSjpFPa9Vi2U/K0DGwP9wOQ8wYkJcNSd5Qbv1L8OFvyKDCbWekjftXaU5mbmtg==}
-
peerDependencies:
-
react: '>=16.8.0 || 17'
-
react-dom: '>=16.8.0 || 17'
-
dependencies:
-
react: 17.0.2
-
react-dom: 17.0.2_react@17.0.2
-
dev: true
-
-
/react-dev-utils/11.0.4_4saukclyqastvrycwsozxxbldi:
-
resolution: {integrity: sha512-dx0LvIGHcOPtKbeiSUM4jqpBl3TcY7CDjZdfOIcKeznE7BWr9dg0iPG90G5yfVQ+p/rGNMXdbfStvzQZEVEi4A==}
-
engines: {node: '>=10'}
-
peerDependencies:
-
typescript: '>=2.7'
-
webpack: '>=4'
-
peerDependenciesMeta:
-
typescript:
-
optional: true
-
dependencies:
-
'@babel/code-frame': 7.10.4
-
address: 1.1.2
-
browserslist: 4.14.2
-
chalk: 2.4.2
-
cross-spawn: 7.0.3
-
detect-port-alt: 1.1.6
-
escape-string-regexp: 2.0.0
-
filesize: 6.1.0
-
find-up: 4.1.0
-
fork-ts-checker-webpack-plugin: 4.1.6_4saukclyqastvrycwsozxxbldi
-
global-modules: 2.0.0
-
globby: 11.0.1
-
gzip-size: 5.1.1
-
immer: 8.0.1
-
is-root: 2.1.0
-
loader-utils: 2.0.0
-
open: 7.4.2
-
pkg-up: 3.1.0
-
prompts: 2.4.0
-
react-error-overlay: 6.0.9
-
recursive-readdir: 2.2.2
-
shell-quote: 1.7.2
-
strip-ansi: 6.0.0
-
text-table: 0.2.0
-
typescript: 4.9.3
-
webpack: 4.46.0
-
transitivePeerDependencies:
-
- eslint
-
- supports-color
-
- vue-template-compiler
-
dev: true
-
-
/react-docgen-typescript-plugin/0.6.3_typescript@4.9.3:
-
resolution: {integrity: sha512-av1S/fmWBNFGgNa4qtkidFjjOz23eEi6EdCtwSWo9WNhGzUMyMygbD/DosMWoeFlZpk9R3MXPkRE7PDH6j5GMQ==}
-
peerDependencies:
-
typescript: '>= 3.x'
-
dependencies:
-
debug: 4.3.4
-
endent: 2.0.1
-
micromatch: 4.0.4
-
react-docgen-typescript: 1.22.0_typescript@4.9.3
-
tslib: 2.4.0
-
typescript: 4.9.3
-
transitivePeerDependencies:
-
- supports-color
-
dev: true
-
-
/react-docgen-typescript/1.22.0_typescript@4.9.3:
-
resolution: {integrity: sha512-MPLbF8vzRwAG3GcjdL+OHQlhgtWsLTXs+7uJiHfEeT3Ur7IsZaNYqRTLQ9sj2nB6M6jylcPCeCmH7qbszJmecg==}
-
peerDependencies:
-
typescript: '>= 3.x'
-
dependencies:
-
typescript: 4.9.3
-
dev: true
-
-
/react-docgen/5.3.1:
-
resolution: {integrity: sha512-YG7YujVTwlLslr2Ny8nQiUfbBuEwKsLHJdQTSdEga1eY/nRFh/7LjCWUn6ogYhu2WDKg4z+6W/BJtUi+DPUIlA==}
-
engines: {node: '>=8.10.0'}
-
hasBin: true
-
dependencies:
-
'@babel/core': 7.20.2
-
'@babel/runtime': 7.20.1
-
ast-types: 0.14.2
-
commander: 2.20.3
-
doctrine: 3.0.0
-
neo-async: 2.6.2
-
node-dir: 0.1.17
-
strip-indent: 3.0.0
-
transitivePeerDependencies:
-
- supports-color
-
dev: true
-
/react-dom/17.0.2_react@17.0.2:
resolution: {integrity: sha512-s4h96KtLDUQlsENhMn1ar8t2bEa+q/YAtj8pPPdIjPDGBDIVNsrD9aXNWqspUe6AzKCIG0C1HZZLqLV7qpOBGA==}
peerDependencies:
···
react: 17.0.2
scheduler: 0.20.2
-
/react-draggable/4.4.3_sfoxds7t5ydpegc3knd667wn6m:
-
resolution: {integrity: sha512-jV4TE59MBuWm7gb6Ns3Q1mxX8Azffb7oTtDtBgFkxRvhDp38YAARmRplrj0+XGkhOJB5XziArX+4HUUABtyZ0w==}
-
peerDependencies:
-
react: '>= 16.3.0 || 17'
-
react-dom: '>= 16.3.0 || 17'
-
dependencies:
-
classnames: 2.3.1
-
prop-types: 15.8.1
-
react: 17.0.2
-
react-dom: 17.0.2_react@17.0.2
-
dev: true
-
/react-error-boundary/3.1.1_react@17.0.2:
resolution: {integrity: sha512-W3xCd9zXnanqrTUeViceufD3mIW8Ut29BUD+S2f0eO2XCOU8b6UrJfY46RDGe5lxCJzfe4j0yvIfh0RbTZhKJw==}
engines: {node: '>=10', npm: '>=6'}
···
react: 17.0.2
dev: true
-
/react-error-overlay/6.0.9:
-
resolution: {integrity: sha512-nQTTcUu+ATDbrSD1BZHr5kgSD4oF8OFjxun8uAaL8RwPBacGBNPf/yAuVVdx17N8XNzRDMrZ9XcKZHCjPW+9ew==}
-
dev: true
-
/react-fast-compare/2.0.4:
resolution: {integrity: sha512-suNP+J1VU1MWFKcyt7RtjiSWUjvidmQSlqu+eHslq+342xCbGTYmC0mEhPCOHxlW0CywylOC1u2DFAT+bv4dBw==}
-
/react-fast-compare/3.2.0:
-
resolution: {integrity: sha512-rtGImPZ0YyLrscKI9xTpV8psd6I8VAtjKCzQDlzyDvqJA8XOW78TXYQwNRNd8g8JZnDu8q9Fu/1v4HPAVwVdHA==}
-
dev: true
-
/react-from-dom/0.3.1_react@17.0.2:
resolution: {integrity: sha512-PeNBa8iuzoD7qHA9O7YpGnXFvC+XFFwStmFh2/r2zJAvEIaRg6EwOj+EPcDIFwyYBhqPIItxIx/dGdeWiFivjQ==}
peerDependencies:
···
resolution: {integrity: sha512-8gyj4TTxeP7eEyc2QKawEuQoAZdjKvMY4pgWfycGmqGByhs17fR+zEBs0JUDq4US/l+vbTl+6zvUIx27iDo/Vw==}
dev: false
-
/react-helmet-async/1.0.9_sfoxds7t5ydpegc3knd667wn6m:
-
resolution: {integrity: sha512-N+iUlo9WR3/u9qGMmP4jiYfaD6pe9IvDTapZLFJz2D3xlTlCM1Bzy4Ab3g72Nbajo/0ZyW+W9hdz8Hbe4l97pQ==}
-
peerDependencies:
-
react: ^16.6.0 || ^17.0.0 || 17
-
react-dom: ^16.6.0 || ^17.0.0 || 17
-
dependencies:
-
'@babel/runtime': 7.20.1
-
invariant: 2.2.4
-
prop-types: 15.8.1
-
react: 17.0.2
-
react-dom: 17.0.2_react@17.0.2
-
react-fast-compare: 3.2.0
-
shallowequal: 1.1.0
-
dev: true
-
/react-helmet/5.2.1_react@17.0.2:
resolution: {integrity: sha512-CnwD822LU8NDBnjCpZ4ySh8L6HYyngViTZLfBBb3NjtrpN8m49clH8hidHouq20I51Y6TpCTISCBbqiY5GamwA==}
peerDependencies:
···
/react-lifecycles-compat/3.0.4:
resolution: {integrity: sha512-fBASbA6LnOU9dOU2eW7aQ8xmYBSXUIWr+UmF9b1efZBazGNO+rcXT/icdKnYm2pTwcRylVUYwW7H1PHfLekVzA==}
-
/react-popper-tooltip/3.1.1_sfoxds7t5ydpegc3knd667wn6m:
-
resolution: {integrity: sha512-EnERAnnKRptQBJyaee5GJScWNUKQPDD2ywvzZyUjst/wj5U64C8/CnSYLNEmP2hG0IJ3ZhtDxE8oDN+KOyavXQ==}
-
peerDependencies:
-
react: ^16.6.0 || ^17.0.0 || 17
-
react-dom: ^16.6.0 || ^17.0.0 || 17
-
dependencies:
-
'@babel/runtime': 7.20.1
-
'@popperjs/core': 2.9.2
-
react: 17.0.2
-
react-dom: 17.0.2_react@17.0.2
-
react-popper: 2.2.5_ufxtanscm3hcgtxbdcfg2j6lma
-
dev: true
-
-
/react-popper/2.2.5_ufxtanscm3hcgtxbdcfg2j6lma:
-
resolution: {integrity: sha512-kxGkS80eQGtLl18+uig1UIf9MKixFSyPxglsgLBxlYnyDf65BiY9B3nZSc6C9XUNDgStROB0fMQlTEz1KxGddw==}
-
peerDependencies:
-
'@popperjs/core': ^2.0.0
-
react: ^16.8.0 || ^17 || 17
-
dependencies:
-
'@popperjs/core': 2.9.2
-
react: 17.0.2
-
react-fast-compare: 3.2.0
-
warning: 4.0.3
-
dev: true
-
/react-refresh/0.8.3:
resolution: {integrity: sha512-X8jZHc7nCMjaCqoU+V2I0cOhNW+QMBwSUkeXnTi8IPe6zaRWfn60ZzvFDZqWPfmSJfjub7dDW1SP0jaHWLu/hg==}
engines: {node: '>=0.10.0'}
···
react: 17.0.2
shallowequal: 1.1.0
-
/react-sizeme/3.0.1_sfoxds7t5ydpegc3knd667wn6m:
-
resolution: {integrity: sha512-9Hf1NLgSbny1bha77l9HwvwwxQUJxFUqi44Ih+y3evA+PezBpGdCGlnvye6avss2cIgs9PgdYgMnfuzJWn/RUw==}
-
peerDependencies:
-
react: ^0.14.0 || ^15.0.0-0 || ^16.0.0 || ^17.0.0 || 17
-
react-dom: ^0.14.0 || ^15.0.0-0 || ^16.0.0 || ^17.0.0 || 17
-
dependencies:
-
element-resize-detector: 1.2.2
-
invariant: 2.2.4
-
react: 17.0.2
-
react-dom: 17.0.2_react@17.0.2
-
shallowequal: 1.1.0
-
throttle-debounce: 3.0.1
-
dev: true
-
/react-ssr-prepass/1.4.0_react@17.0.2:
resolution: {integrity: sha512-0SzdmiQUtHvhxCabHg9BI/pkJfijGkQ0jQL6fC4YFy7idaDOuaiQLsajIkkNxffFXtJFHIWFITlve2WB88e0Jw==}
peerDependencies:
···
- webpack-cli
- webpack-command
-
/react-syntax-highlighter/13.5.3_react@17.0.2:
-
resolution: {integrity: sha512-crPaF+QGPeHNIblxxCdf2Lg936NAHKhNhuMzRL3F9ct6aYXL3NcZtCL0Rms9+qVo6Y1EQLdXGypBNSbPL/r+qg==}
-
peerDependencies:
-
react: '>= 0.14.0 || 17'
-
dependencies:
-
'@babel/runtime': 7.20.1
-
highlight.js: 10.7.2
-
lowlight: 1.20.0
-
prismjs: 1.23.0
-
react: 17.0.2
-
refractor: 3.3.1
-
dev: true
-
/react-test-renderer/16.14.0_react@17.0.2:
resolution: {integrity: sha512-L8yPjqPE5CZO6rKsKXRO/rVPiaCOy0tQQJbC+UjPNlobl5mad59lvPjwFsQHTvL03caVDIVr9x9/OSgDe6I5Eg==}
peerDependencies:
···
scheduler: 0.20.2
dev: true
-
/react-textarea-autosize/8.3.2_react@17.0.2:
-
resolution: {integrity: sha512-JrMWVgQSaExQByP3ggI1eA8zF4mF0+ddVuX7acUeK2V7bmrpjVOY72vmLz2IXFJSAXoY3D80nEzrn0GWajWK3Q==}
-
engines: {node: '>=10'}
-
peerDependencies:
-
react: ^16.8.0 || ^17.0.0 || 17
-
dependencies:
-
'@babel/runtime': 7.20.1
-
react: 17.0.2
-
use-composed-ref: 1.1.0_react@17.0.2
-
use-latest: 1.2.0_react@17.0.2
-
transitivePeerDependencies:
-
- '@types/react'
-
dev: true
-
/react-universal-component/4.5.0_react@17.0.2:
resolution: {integrity: sha512-dBUC6afvSAQhDcE4oh1eTmfU29W0O2eZhcGXnfGUTulXkU8ejuWqlJWXXrSMx5iV1H6LNgj2NJMj3BtBMfBNhA==}
peerDependencies:
···
dependencies:
picomatch: 2.3.1
-
/recursive-readdir/2.2.2:
-
resolution: {integrity: sha512-nRCcW9Sj7NuZwa2XvH9co8NPeXUBhZP7CRKJtU+cS6PW9FpCIFoI5ib0NT1ZrbNuPoRy0ylyCaUL8Gih4LSyFg==}
-
engines: {node: '>=0.10.0'}
-
dependencies:
-
minimatch: 3.0.4
-
dev: true
-
/redent/3.0.0:
resolution: {integrity: sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg==}
engines: {node: '>=8'}
···
/reflect.ownkeys/0.2.0:
resolution: {integrity: sha512-qOLsBKHCpSOFKK1NUOCGC5VyeufB6lEsFe92AL2bhIJsacZS1qdoOZSbPk3MYKuT2cFlRDnulKXuuElIrMjGUg==}
-
dev: true
-
-
/refractor/3.3.1:
-
resolution: {integrity: sha512-vaN6R56kLMuBszHSWlwTpcZ8KTMG6aUCok4GrxYDT20UIOXxOc5o6oDc8tNTzSlH3m2sI+Eu9Jo2kVdDcUTWYw==}
-
dependencies:
-
hastscript: 6.0.0
-
parse-entities: 2.0.0
-
prismjs: 1.23.0
dev: true
/regenerate-unicode-properties/8.2.0:
···
tslib: 2.4.0
dev: true
-
/safe-buffer/5.1.1:
-
resolution: {integrity: sha512-kKvNJn6Mm93gAczWVJg7wH+wGYWNrDHdWvpUmHyEsgCtIwwo3bqPtV4tR5tuPaUhTOo/kvhVwd8XwwOllGYkbg==}
-
dev: true
-
/safe-buffer/5.1.2:
resolution: {integrity: sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==}
···
ajv-errors: 1.0.1_ajv@6.12.6
ajv-keywords: 3.5.2_ajv@6.12.6
-
/schema-utils/2.7.0:
-
resolution: {integrity: sha512-0ilKFI6QQF5nxDZLFn2dMjvc4hjg/Wkg7rHd3jK6/A4a1Hl9VFdQWvgB1UMGoU94pad1P/8N7fMcEnLnSiju8A==}
-
engines: {node: '>= 8.9.0'}
-
dependencies:
-
'@types/json-schema': 7.0.11
-
ajv: 6.12.6
-
ajv-keywords: 3.5.2_ajv@6.12.6
-
dev: true
-
/schema-utils/2.7.1:
resolution: {integrity: sha512-SHiNtMOUGWBQJwzISiVYKu82GiV4QYGePp3odlY1tuKO7gPtphAT5R/py0fA6xtbgLL/RvtJZnU9b8s0F1q0Xg==}
engines: {node: '>= 8.9.0'}
···
ajv: 6.12.6
ajv-keywords: 3.5.2_ajv@6.12.6
-
/schema-utils/3.0.0:
-
resolution: {integrity: sha512-6D82/xSzO094ajanoOSbe4YvXWMfn2A//8Y1+MUqFAJul5Bs+yn36xbK9OtNDcRVSBJ9jjeoXftM6CfztsjOAA==}
-
engines: {node: '>= 10.13.0'}
-
dependencies:
-
'@types/json-schema': 7.0.11
-
ajv: 6.12.6
-
ajv-keywords: 3.5.2_ajv@6.12.6
-
dev: true
-
/seek-bzip/1.0.6:
resolution: {integrity: sha512-e1QtP3YL5tWww8uKaOCQ18UxIT2laNBXHjV/S2WYCiK4udiv8lkG89KRIoCjUagnAmCBurjF4zEVX2ByBbnCjQ==}
hasBin: true
···
/select-hose/2.0.0:
resolution: {integrity: sha512-mEugaLK+YfkijB4fx0e6kImuJdCIt2LxCRcbEYPqRGCs4F2ogyfZU5IAZRdjCP8JPq2AtdNoC/Dux63d9Kiryg==}
-
-
/select/1.1.2:
-
resolution: {integrity: sha512-OwpTSOfy6xSs1+pwcNrv0RBMOzI39Lp3qQKUTPVVPRjCdNa5JH/oPRiqsesIskK8TVgmRiHwO4KXlV2Li9dANA==}
-
dev: true
-
optional: true
/selfsigned/1.10.8:
resolution: {integrity: sha512-2P4PtieJeEwVgTU9QEcwIRDQ/mXJLX8/+I3ur+Pg16nS8oNbrGxEso9NyYWy8NAmXiNl4dlAp5MwoNeCWzON4w==}
···
resolution: {integrity: sha512-owoXEFjWRllis8/M1Q+Cw5k8ZH40e3zhp/ovX+Xr/vi1qj6QesbyXXViFbpNvWvPNAD62SutwEXavefrLJWj7w==}
dependencies:
randombytes: 2.1.0
-
dev: true
-
-
/serve-favicon/2.5.0:
-
resolution: {integrity: sha512-FMW2RvqNr03x+C0WxTyu6sOv21oOjkq5j8tjquWccwa6ScNyGFOGJVpuS1NmTVGBAHS07xnSKotgf2ehQmf9iA==}
-
engines: {node: '>= 0.8.0'}
-
dependencies:
-
etag: 1.8.1
-
fresh: 0.5.2
-
ms: 2.1.1
-
parseurl: 1.3.3
-
safe-buffer: 5.1.1
dev: true
/serve-handler/6.1.3:
···
dependencies:
is-arrayish: 0.3.2
-
/sisteransi/1.0.5:
-
resolution: {integrity: sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==}
-
dev: true
-
/slash/2.0.0:
resolution: {integrity: sha512-ZYKh3Wh2z1PpEXWr0MpSBZ0V6mZHAQfYevttO11c51CaWjGTaadiKZ+wVt1PbMlDV5qhMFslpZCemhwOK7C89A==}
engines: {node: '>=6'}
···
dependencies:
figgy-pudding: 3.5.2
-
/ssri/8.0.1:
-
resolution: {integrity: sha512-97qShzy1AiyxvPNIkLWoGua7xoQzzPjQ0HAH4B0rWKo7SZ6USuPcrUiAFrws0UH8RrbWmgq3LMTObhPIHbbBeQ==}
-
engines: {node: '>= 8'}
-
dependencies:
-
minipass: 3.1.3
-
dev: true
-
/stable/0.1.8:
resolution: {integrity: sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w==}
deprecated: 'Modern JS already guarantees Array#sort() is a stable sort, so this library is deprecated. See the compatibility table on MDN: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/sort#browser_compatibility'
/stackback/0.0.2:
resolution: {integrity: sha512-1XMJE5fQo1jGH6Y/7ebnwPOBEkIEnT4QF32d5R1+VXdXveM0IBMJt8zfaxX1P3QhVwrYe+576+jkANtSS2mBbw==}
-
dev: true
-
-
/stackframe/1.2.0:
-
resolution: {integrity: sha512-GrdeshiRmS1YLMYgzF16olf2jJ/IzxXY9lhKOskuVziubpTYcYqyOwYeJKzQkwy7uN0fYSsbsC4RQaXf9LCrYA==}
dev: true
/stacktrace-parser/0.1.10:
···
/std-env/3.3.2:
resolution: {integrity: sha512-uUZI65yrV2Qva5gqE0+A7uVAvO40iPo6jGhs7s8keRfHCmtg+uB2X6EiLGCI9IgL1J17xGhvoOqSz79lzICPTA==}
dev: true
-
-
/store2/2.12.0:
-
resolution: {integrity: sha512-7t+/wpKLanLzSnQPX8WAcuLCCeuSHoWdQuh9SB3xD0kNOM38DNf+0Oa+wmvxmYueRzkmh6IcdKFtvTa+ecgPDw==}
/stream-browserify/2.0.2:
resolution: {integrity: sha512-nX6hmklHs/gr2FuxYDltq8fJA1GDlxKQCz8O/IM4atRqBH8OORmBNgfvW5gG10GT/qQ9u0CzIvr2X5Pkt6ntqg==}
···
resolution: {integrity: sha512-kJUvRUFK49aub+a7T1nNE66EJbZBMnBgoC1UbCZ5n6bsZKBRga4KgBRTMn/pFkeCZSYtNeSyMxPDM0AXWELk2A==}
dev: true
-
/string-width/1.0.2:
-
resolution: {integrity: sha512-0XsVpQLnVCXHJfyEs8tC0zpTVIr5PKKsQtkT29IwupnPTjtPmQ3xT/4yCREF9hYkV/3M3kzcUTSAZT6a6h81tw==}
-
engines: {node: '>=0.10.0'}
-
dependencies:
-
code-point-at: 1.1.0
-
is-fullwidth-code-point: 1.0.0
-
strip-ansi: 3.0.1
-
dev: true
-
/string-width/2.1.1:
resolution: {integrity: sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw==}
engines: {node: '>=4'}
···
/string.prototype.padend/3.1.2:
resolution: {integrity: sha512-/AQFLdYvePENU3W5rgurfWSMU6n+Ww8n/3cUt7E+vPBB/D7YDG8x+qjoFs4M/alR2bW7Qg6xMjVwWUOvuQ0XpQ==}
-
engines: {node: '>= 0.4'}
-
dependencies:
-
call-bind: 1.0.2
-
define-properties: 1.1.4
-
es-abstract: 1.20.4
-
dev: true
-
-
/string.prototype.padstart/3.1.2:
-
resolution: {integrity: sha512-HDpngIP3pd0DeazrfqzuBrQZa+D2arKWquEHfGt5LzVjd+roLC3cjqVI0X8foaZz5rrrhcu8oJAQamW8on9dqw==}
engines: {node: '>= 0.4'}
dependencies:
call-bind: 1.0.2
···
loader-utils: 1.4.0
schema-utils: 1.0.0
-
/style-loader/1.3.0_webpack@4.46.0:
-
resolution: {integrity: sha512-V7TCORko8rs9rIqkSrlMfkqA63DfoGBBJmK1kKGCcSi+BWb4cqz0SRsnp4l6rU5iwOEd0/2ePv68SV22VXon4Q==}
-
engines: {node: '>= 8.9.0'}
-
peerDependencies:
-
webpack: ^4.0.0 || ^5.0.0
-
dependencies:
-
loader-utils: 2.0.0
-
schema-utils: 2.7.1
-
webpack: 4.46.0
-
dev: true
-
/style-to-object/0.3.0:
resolution: {integrity: sha512-CzFnRRXhzWIdItT3OmF8SQfWyahHhjq3HwcMNCNLn+N7klOOqPjMeG/4JSu77D7ypZdGvSzvkrbyeTMizz2VrA==}
dependencies:
···
resolution: {integrity: sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==}
dev: true
-
/symbol.prototype.description/1.0.4:
-
resolution: {integrity: sha512-fZkHwJ8ZNRVRzF/+/2OtygyyH06CjC0YZAQRHu9jKKw8RXlJpbizEHvGRUu22Qkg182wJk1ugb5Aovcv3UPrww==}
-
engines: {node: '>= 0.11.15'}
-
dependencies:
-
call-bind: 1.0.2
-
es-abstract: 1.20.4
-
has-symbols: 1.0.3
-
object.getownpropertydescriptors: 2.1.2
-
dev: true
-
/tapable/1.1.3:
resolution: {integrity: sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA==}
engines: {node: '>=6'}
···
inherits: 2.0.4
dev: true
-
/telejson/5.1.1:
-
resolution: {integrity: sha512-aU7x+nwodmODJPXhU9sC/REOcX/dx1tNbyeOFV1PCTh6e9Mj+bnyfQ7sr13zfJYya9BtpGwnUNn9Fd76Ybj2eg==}
-
dependencies:
-
'@types/is-function': 1.0.0
-
global: 4.4.0
-
is-function: 1.0.2
-
is-regex: 1.1.4
-
is-symbol: 1.0.3
-
isobject: 4.0.0
-
lodash: 4.17.21
-
memoizerific: 1.11.3
-
/term-size/1.2.0:
resolution: {integrity: sha512-7dPUZQGy/+m3/wjVz3ZW5dobSoD/02NxJpoXUX0WIyjfVS3l0c+b/+9phIDFA7FHzkYtwtMFgeGZ/Y8jVTeqQQ==}
engines: {node: '>=4'}
···
webpack-sources: 1.4.3
worker-farm: 1.7.0
-
/terser-webpack-plugin/3.1.0_webpack@4.46.0:
-
resolution: {integrity: sha512-cjdZte66fYkZ65rQ2oJfrdCAkkhJA7YLYk5eGOcGCSGlq0ieZupRdjedSQXYknMPo2IveQL+tPdrxUkERENCFA==}
-
engines: {node: '>= 10.13.0'}
-
peerDependencies:
-
webpack: ^4.0.0 || ^5.0.0
-
dependencies:
-
cacache: 15.0.6
-
find-cache-dir: 3.3.2
-
jest-worker: 26.6.2
-
p-limit: 3.1.0
-
schema-utils: 2.7.1
-
serialize-javascript: 4.0.0
-
source-map: 0.6.1
-
terser: 4.8.0
-
webpack: 4.46.0
-
webpack-sources: 1.4.3
-
transitivePeerDependencies:
-
- bluebird
-
dev: true
-
/terser/4.8.0:
resolution: {integrity: sha512-EAPipTNeWsb/3wLPeup1tVPaXfIaU68xMnVdPafIL1TV05OhASArYyIfFvnvJCNrR2NIOvDVNNTFRa+Re2MWyw==}
engines: {node: '>=6.0.0'}
···
resolution: {integrity: sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==}
dependencies:
any-promise: 1.3.0
-
dev: true
-
-
/throttle-debounce/3.0.1:
-
resolution: {integrity: sha512-dTEWWNu6JmeVXY0ZYoPuH5cRIwc0MeGbJwah9KUNYSJwommQpCzTySTpEe8Gs1J23aeWEuAobe4Ag7EHVt/LOg==}
-
engines: {node: '>=10'}
dev: true
/throttleit/1.0.0:
···
/timsort/0.3.0:
resolution: {integrity: sha512-qsdtZH+vMoCARQtyod4imc2nIJwg9Cc7lPRrw9CzF8ZKR0khdr8+2nX80PBhET3tcyTtJDxAffGh2rXH4tyU8A==}
-
/tiny-emitter/2.1.0:
-
resolution: {integrity: sha512-NB6Dk1A9xgQPMoGqC5CVXn123gWyte215ONT5Pp5a0yt4nlEoO1ZWeCwpncaekPHXO60i47ihFnZPiRPjRMq4Q==}
-
dev: true
-
optional: true
-
/tiny-invariant/1.1.0:
resolution: {integrity: sha512-ytxQvrb1cPc9WBEI/HSeYYoGD0kWnGEOR8RY6KomWLBVhqz0RgTwVO9dLrGz7dC+nN9llyI7OKAgRq8Vq4ZBSw==}
dev: false
···
vfile: 4.2.1
dev: false
-
/toggle-selection/1.0.6:
-
resolution: {integrity: sha512-BiZS+C1OS8g/q2RRbJmy59xpyghNBqrr6k5L/uKBGRsTfxmu3ffiRnd8mlGPUVayg8pvfi5urfnu8TU7DVOkLQ==}
-
dev: true
-
/toidentifier/1.0.0:
resolution: {integrity: sha512-yaOH/Pk/VEhBWWTlhI+qXxDFXlejDGcQipMlyxda9nthulaxLZUNcUqFxokp0vcYnvteJln5FNQDRrxj3YcbVw==}
engines: {node: '>=0.6'}
···
/tryer/1.0.1:
resolution: {integrity: sha512-c3zayb8/kWWpycWYg87P71E1S1ZL6b6IJxfb5fvsUgsf0S2MVGaDhDXXjDMpdCpfWXqptc+4mXwmiy1ypXqRAA==}
-
/ts-dedent/2.1.1:
-
resolution: {integrity: sha512-riHuwnzAUCfdIeTBNUq7+Yj+ANnrMXo/7+Z74dIdudS7ys2k8aSGMzpJRMFDF7CLwUTbtvi1ZZff/Wl+XxmqIA==}
-
engines: {node: '>=6.10'}
-
-
/ts-essentials/2.0.12:
-
resolution: {integrity: sha512-3IVX4nI6B5cc31/GFFE+i8ey/N2eA0CZDbo6n0yrz0zDX8ZJ8djmU1p+XRz7G3is0F3bB3pu2pAroFdAWQKU3w==}
-
dev: true
-
/ts-interface-checker/0.1.13:
resolution: {integrity: sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==}
dev: true
···
peerDependenciesMeta:
typescript:
optional: true
-
dev: true
-
-
/ts-pnp/1.2.0_typescript@4.9.3:
-
resolution: {integrity: sha512-csd+vJOb/gkzvcCHgTGSChYpy5f1/XKNsmvBGO4JXS+z1v2HobugDz4s1IeFXM3wZB44uczs+eazB5Q/ccdhQw==}
-
engines: {node: '>=6'}
-
peerDependencies:
-
typescript: '*'
-
peerDependenciesMeta:
-
typescript:
-
optional: true
-
dependencies:
-
typescript: 4.9.3
dev: true
/tsconfck/2.0.1_typescript@4.9.5:
···
/typedarray/0.0.6:
resolution: {integrity: sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA==}
-
/typescript/4.9.3:
-
resolution: {integrity: sha512-CIfGzTelbKNEnLpLdGFgdyKhG23CKdKgQPOBc+OUNrkJ2vr+KSzsSV5kq5iWhEQbok+quxgGzrAtGWCyU7tHnA==}
-
engines: {node: '>=4.2.0'}
-
hasBin: true
-
dev: true
-
/typescript/4.9.5:
resolution: {integrity: sha512-1FXk9E2Hm+QzZQ7z+McJiHL4NW1F2EzMu9Nq9i3zAaGqibafqYwCVU6WyWAuyQRRzOlxou8xZSyXLEN8oKj24g==}
engines: {node: '>=4.2.0'}
···
dependencies:
buffer: 5.7.1
through: 2.3.8
-
-
/unfetch/4.2.0:
-
resolution: {integrity: sha512-F9p7yYCn6cIW9El1zi0HI6vqpeIvBsr3dSuRO6Xuppb1u5rXpCPmMvLSyECLhybr9isec8Ohl0hPekMVrEinDA==}
-
dev: true
/unherit/1.1.3:
resolution: {integrity: sha512-Ft16BJcnapDKp0+J/rqFC3Rrk6Y/Ng4nzsC028k2jdDII/rdZ7Wd3pPT/6+vIIxRagwRc9K0IUX0Ra4fKvw+WQ==}
···
schema-utils: 2.7.1
webpack: 4.46.0
-
/url-loader/4.1.1_lit45vopotvaqup7lrvlnvtxwy:
-
resolution: {integrity: sha512-3BTV812+AVHHOJQO8O5MkWgZ5aosP7GnROJwvzLS9hWDj00lZ6Z0wNak423Lp9PBZN05N+Jk/N5Si8jRAlGyWA==}
-
engines: {node: '>= 10.13.0'}
-
peerDependencies:
-
file-loader: '*'
-
webpack: ^4.0.0 || ^5.0.0
-
peerDependenciesMeta:
-
file-loader:
-
optional: true
-
dependencies:
-
file-loader: 6.2.0_webpack@4.46.0
-
loader-utils: 2.0.0
-
mime-types: 2.1.30
-
schema-utils: 3.0.0
-
webpack: 4.46.0
-
dev: true
-
/url-parse-as-address/1.0.0:
resolution: {integrity: sha512-1WJ8YX1Kcec9wgxy8d/ATzGP1ayO6BRnd3iB6NlM+7cOnn6U8p5PKppRTCPLobh3CSdJ4d0TdPjopzyU2KcVFw==}
dev: true
···
dependencies:
punycode: 1.3.2
querystring: 0.2.0
-
-
/use-composed-ref/1.1.0_react@17.0.2:
-
resolution: {integrity: sha512-my1lNHGWsSDAhhVAT4MKs6IjBUtG6ZG11uUqexPH9PptiIZDQOzaF4f5tEbJ2+7qvNbtXNBbU3SfmN+fXlWDhg==}
-
peerDependencies:
-
react: ^16.8.0 || ^17.0.0 || 17
-
dependencies:
-
react: 17.0.2
-
ts-essentials: 2.0.12
-
dev: true
-
-
/use-isomorphic-layout-effect/1.1.1_react@17.0.2:
-
resolution: {integrity: sha512-L7Evj8FGcwo/wpbv/qvSfrkHFtOpCzvM5yl2KVyDJoylVuSvzphiiasmjgQPttIGBAy2WKiBNR98q8w7PiNgKQ==}
-
peerDependencies:
-
'@types/react': '*'
-
react: ^16.8.0 || ^17.0.0 || 17
-
peerDependenciesMeta:
-
'@types/react':
-
optional: true
-
dependencies:
-
react: 17.0.2
-
dev: true
-
-
/use-latest/1.2.0_react@17.0.2:
-
resolution: {integrity: sha512-d2TEuG6nSLKQLAfW3By8mKr8HurOlTkul0sOpxbClIv4SQ4iOd7BYr7VIzdbktUCnv7dua/60xzd8igMU6jmyw==}
-
peerDependencies:
-
'@types/react': '*'
-
react: ^16.8.0 || ^17.0.0 || 17
-
peerDependenciesMeta:
-
'@types/react':
-
optional: true
-
dependencies:
-
react: 17.0.2
-
use-isomorphic-layout-effect: 1.1.1_react@17.0.2
-
dev: true
/use-subscription/1.5.1_react@17.0.2:
resolution: {integrity: sha512-Xv2a1P/yReAjAbhylMfFplFKj9GssgTwN7RlcTxBujFQcloStWNDQdc4g4NRWH9xS4i/FDk04vQBptAXoF3VcA==}
···
- bufferutil
- utf-8-validate
-
/webpack-filter-warnings-plugin/1.2.1_webpack@4.46.0:
-
resolution: {integrity: sha512-Ez6ytc9IseDMLPo0qCuNNYzgtUl8NovOqjIq4uAU8LTD4uoa1w1KpZyyzFtLTEMZpkkOkLfL9eN+KGYdk1Qtwg==}
-
engines: {node: '>= 4.3 < 5.0.0 || >= 5.10'}
-
peerDependencies:
-
webpack: ^2.0.0 || ^3.0.0 || ^4.0.0
-
dependencies:
-
webpack: 4.46.0
-
dev: true
-
/webpack-flush-chunks/2.0.3_react@17.0.2:
resolution: {integrity: sha512-CXGOyXG5YjjxyI+Qyt3VlI//JX92UmGRNP65zN3o9CIntEzfzc1J30YTKRRvF1JsE/iEzbnp5u99yCkL9obotQ==}
peerDependencies:
···
dependencies:
react: 17.0.2
-
/webpack-hot-middleware/2.25.0:
-
resolution: {integrity: sha512-xs5dPOrGPCzuRXNi8F6rwhawWvQQkeli5Ro48PRuQh8pYPCPmNnltP9itiUPT4xI8oW+y0m59lyyeQk54s5VgA==}
-
dependencies:
-
ansi-html: 0.0.7
-
html-entities: 1.4.0
-
querystring: 0.2.1
-
strip-ansi: 3.0.1
-
dev: true
-
/webpack-log/2.0.0:
resolution: {integrity: sha512-cX8G2vR/85UYG59FgkoMamwHUIkSSlV3bBMRsbxVXVUk2j6NleCKjQ/WE9eYg9WY4w25O9w8wKP4rzNZFmUcUg==}
engines: {node: '>= 6'}
···
dependencies:
source-list-map: 2.0.1
source-map: 0.6.1
-
-
/webpack-virtual-modules/0.2.2:
-
resolution: {integrity: sha512-kDUmfm3BZrei0y+1NTHJInejzxfhtU8eDj2M7OKb2IWrPFAeO1SOH2KuQ68MSZu9IGEHcxbkKKR1v18FrUSOmA==}
-
dependencies:
-
debug: 3.2.7
-
transitivePeerDependencies:
-
- supports-color
-
dev: true
/webpack/4.46.0:
resolution: {integrity: sha512-6jJuJjg8znb/xRItk7bkT0+Q7AHCYjjFnvKIWQPkNIOyRqoCGvkOs0ipeQzrqz4l5FtN5ZI/ukEHroeX/o1/5Q==}
···
stackback: 0.0.2
dev: true
-
/wide-align/1.1.3:
-
resolution: {integrity: sha512-QGkOQc8XL6Bt5PwnsExKBPuMKBxnGxWWW3fU55Xt4feHozMUhdUMaBCk290qpm/wG5u/RSKzwdAC4i51YigihA==}
-
dependencies:
-
string-width: 2.1.1
-
dev: true
-
/widest-line/2.0.1:
resolution: {integrity: sha512-Ba5m9/Fa4Xt9eb2ELXt77JxVDV8w7qQrH0zS/TWSJdLyAwQjWoOzpzj5lwVftDz6n/EOu3tNACS84v509qwnJA==}
engines: {node: '>=4'}
dependencies:
string-width: 2.1.1
-
/widest-line/3.1.0:
-
resolution: {integrity: sha512-NsmoXalsWVDMGupxZ5R08ka9flZjjiLvHVAWYOKtiKM8ujtZWr9cRffak+uSE48+Ob8ObalXpwyeUiyDD6QFgg==}
-
engines: {node: '>=8'}
-
dependencies:
-
string-width: 4.2.3
-
dev: true
-
/windows-release/3.3.3:
resolution: {integrity: sha512-OSOGH1QYiW5yVor9TtmXKQvt2vjQqbYS+DqmsZw+r7xDwLXEeT3JGW0ZppFmHx4diyXmxt238KFR3N9jzevBRg==}
engines: {node: '>=6'}
···
resolution: {integrity: sha512-rvw3QTZc8lAxyVrqcSGVm5yP/IJ2UcB3U0graE3LCFoZ0Yn2x4EoVSqJKdB/T5M+FLcRPjz4TDacRf3OCfNUzw==}
dependencies:
errno: 0.1.8
-
-
/worker-rpc/0.1.1:
-
resolution: {integrity: sha512-P1WjMrUB3qgJNI9jfmpZ/htmBEjFh//6l/5y8SD9hg1Ef5zTTVVoRjTrTEzPrNBQvmhMxkoTsjOXN10GWU7aCg==}
-
dependencies:
-
microevent.ts: 0.1.1
-
dev: true
/wrap-ansi/5.1.0:
resolution: {integrity: sha512-QC1/iN/2/RPVJ5jYK8BGttj5z83LmSKmvbvrXPNCLZSEb32KKVDJDl/MOt2N01qU2H/FkzEa9PKto1BqDjtd7Q==}