Compare commits
13 Commits
@nhost/nex
...
@nhost/das
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
c994c8f05b | ||
|
|
2d3a77af76 | ||
|
|
ef05d69889 | ||
|
|
9b1d0f7a5b | ||
|
|
8733961026 | ||
|
|
3dc97f17ae | ||
|
|
6d2963ffa7 | ||
|
|
d1ec8c0781 | ||
|
|
8b205e9c08 | ||
|
|
e2792cd453 | ||
|
|
8871267b91 | ||
|
|
e3001ba4a5 | ||
|
|
1133b76a7e |
@@ -14,7 +14,7 @@ runs:
|
||||
steps:
|
||||
- uses: pnpm/action-setup@v2.2.4
|
||||
with:
|
||||
version: 8.6.0
|
||||
version: 8.5.1
|
||||
run_install: false
|
||||
- name: Get pnpm cache directory
|
||||
id: pnpm-cache-dir
|
||||
|
||||
@@ -1,5 +1,13 @@
|
||||
# @nhost/dashboard
|
||||
|
||||
## 0.17.4
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- 9b1d0f7a5: fix(deployments): use correct timestamp for deployment details
|
||||
- 6d2963ffa: chore(deps): bump `@types/react` to `v18.2.8`
|
||||
- 8871267b9: chore(deps): downgrade `pnpm` to `v8.5.1` because of no Turborepo support
|
||||
|
||||
## 0.17.3
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@@ -29,7 +29,7 @@ ENV NEXT_PUBLIC_NHOST_HASURA_CONSOLE_URL __NEXT_PUBLIC_NHOST_HASURA_CONSOLE_URL_
|
||||
ENV NEXT_PUBLIC_NHOST_HASURA_MIGRATIONS_API_URL __NEXT_PUBLIC_NHOST_HASURA_MIGRATIONS_API_URL__
|
||||
ENV NEXT_PUBLIC_NHOST_HASURA_API_URL __NEXT_PUBLIC_NHOST_HASURA_API_URL__
|
||||
|
||||
RUN yarn global add pnpm@8.6.0
|
||||
RUN yarn global add pnpm@8.5.1
|
||||
COPY .gitignore .gitignore
|
||||
COPY --from=pruner /app/out/json/ .
|
||||
COPY --from=pruner /app/out/pnpm-*.yaml .
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@nhost/dashboard",
|
||||
"version": "0.17.3",
|
||||
"version": "0.17.4",
|
||||
"private": true,
|
||||
"scripts": {
|
||||
"preinstall": "npx only-allow pnpm",
|
||||
@@ -104,7 +104,7 @@
|
||||
"@types/lodash.debounce": "^4.0.7",
|
||||
"@types/node": "^16.11.7",
|
||||
"@types/pluralize": "^0.0.29",
|
||||
"@types/react": "18.2.7",
|
||||
"@types/react": "18.2.8",
|
||||
"@types/react-dom": "18.2.4",
|
||||
"@types/react-table": "^7.7.12",
|
||||
"@types/testing-library__jest-dom": "^5.14.5",
|
||||
|
||||
@@ -140,7 +140,7 @@ export default function DeploymentDetailsPage() {
|
||||
{deployment.deploymentLogs.map((log) => (
|
||||
<div key={log.id} className="flex font-mono">
|
||||
<div className=" mr-2 flex-shrink-0">
|
||||
{format(parseISO(log.createdAt), 'KK:mm:ss')}:
|
||||
{format(parseISO(log.createdAt), 'HH:mm:ss')}:
|
||||
</div>
|
||||
<div className="break-all">{log.message}</div>
|
||||
</div>
|
||||
|
||||
108
docs/docs/cli/patching-local-environment.mdx
Normal file
108
docs/docs/cli/patching-local-environment.mdx
Normal file
@@ -0,0 +1,108 @@
|
||||
---
|
||||
title: 'Patching Local Environment'
|
||||
sidebar_label: 'Patching Local Environment'
|
||||
sidebar_position: 4
|
||||
---
|
||||
|
||||
In some cases you may need to modify your configuration file to accommodate minor deviations from your production environment. For instance, imagine your `nhost.toml` file looks like:
|
||||
|
||||
```
|
||||
[global]
|
||||
[[global.environment]]
|
||||
name = 'ENVIRONMENT'
|
||||
value = 'production'
|
||||
|
||||
... (omitted for brevity)
|
||||
|
||||
[hasura]
|
||||
version = 'v2.24.1-ce'
|
||||
|
||||
... (omitted for brevity)
|
||||
|
||||
[hasura.logs]
|
||||
level = 'warn'
|
||||
|
||||
... (omitted for brevity)
|
||||
|
||||
[auth.redirections]
|
||||
clientUrl = 'https://my.app.com'
|
||||
|
||||
... (omitted for brevity)
|
||||
|
||||
[auth.method.oauth]
|
||||
[auth.method.oauth.apple]
|
||||
enabled = true
|
||||
clientId = '{{ secrets.APPLE_CLIENT_ID }}'
|
||||
keyId = '{{ secrets.APPLE_KEY_ID }}'
|
||||
teamId = '{{ secrets.APPLE_TEAM_ID }}'
|
||||
privateKey = '{{ secrets.APPLE_PRIVATE_KEY }}'
|
||||
|
||||
... (omitted for brevity)
|
||||
|
||||
```
|
||||
|
||||
While this may work in production you may want to do minor tweaks in your local development. To do so we rely on [JSON patches RFC6902](https://datatracker.ietf.org/doc/html/rfc6902). To make use of it just drop a file under `nhost/overlays/local.yaml`. For instance, a file with the following contents would apply minor modifications to your local environment without affecting production:
|
||||
|
||||
```
|
||||
- op: replace
|
||||
path: /hasura/version # override hasura version
|
||||
value: "v2.25.1-ce"
|
||||
|
||||
- op: replace
|
||||
path: /global/environment/0 # replace first environment variables
|
||||
value:
|
||||
name: ENVIRONMENT
|
||||
value: development
|
||||
|
||||
- op: add # add a new env var
|
||||
path: /global/environment/-
|
||||
value:
|
||||
name: FUNCTION_LOG_LEVEL
|
||||
value: debug
|
||||
|
||||
- op: replace # change the client url to local
|
||||
path: /auth/redirections/clientUrl
|
||||
value: http://localhost:3000
|
||||
|
||||
- op: remove # remove apple authentication
|
||||
path: /auth/method/oauth/apple
|
||||
```
|
||||
|
||||
To verify that the file is being manipulated as we desire we can use the `nhost` cli:
|
||||
|
||||
```
|
||||
$ nhost config show
|
||||
[global]
|
||||
[[global.environment]]
|
||||
name = 'ENVIRONMENT'
|
||||
value = 'development'
|
||||
|
||||
[[global.environment]]
|
||||
name = 'FUNCTION_LOG_LEVEL'
|
||||
value = 'debug'
|
||||
|
||||
... (omitted for brevity)
|
||||
|
||||
[hasura]
|
||||
version = 'v2.25.1-ce'
|
||||
|
||||
... (omitted for brevity)
|
||||
|
||||
[auth.redirections]
|
||||
clientUrl = 'http://localhost:3000'
|
||||
|
||||
... (omitted for brevity)
|
||||
|
||||
[auth.method.oauth]
|
||||
[auth.method.oauth.apple]
|
||||
enabled = false
|
||||
|
||||
... (omitted for brevity)
|
||||
|
||||
```
|
||||
|
||||
Once you have finished making changes, don't forget to restart your development environment by running the command `nhost up` after modifying your configuration.
|
||||
|
||||
:::info
|
||||
While it may be convenient to modify your local environment for development, the further it deviates from production, the harder it is to detect issues before release. Therefore, we recommend keeping changes strictly necessary
|
||||
:::
|
||||
84
docs/docs/cli/seeds.mdx
Normal file
84
docs/docs/cli/seeds.mdx
Normal file
@@ -0,0 +1,84 @@
|
||||
---
|
||||
title: 'Seeds'
|
||||
sidebar_label: 'Seeds'
|
||||
sidebar_position: 5
|
||||
---
|
||||
|
||||
When developing locally, it is very useful to work with a known set of data as it can simplify testing and development, especially when working in larger teams with multiple developers.
|
||||
|
||||
With the CLI, it is easy to extract data from an existing environment and generate a "seed" that can be shared and used to pre-populate any development environment as it initializes.
|
||||
|
||||
As mentioned before, you can create a seed from any environment. In this guide, we will assume that we have already started a local development with a table called "animals". At this point, we can add some data ourselves as usual. Once we are satisfied and have the data we want, we can run the following command to create a seed:
|
||||
|
||||
```
|
||||
$ nhost dev hasura seed create some-initial-data \
|
||||
--endpoint https://local.hasura.nhost.run \
|
||||
--admin-secret nhost-admin-secret \
|
||||
--database-name default \
|
||||
--from-table animals
|
||||
|
||||
INFO created seed file successfully file=/app/seeds/default/1685692310174_some-initial-data.sql
|
||||
```
|
||||
|
||||
:::info
|
||||
In the previous command, we instructed the CLI to create a seed named `some-initial-data` while specifying the connection parameters for our local environment. You could also extract data from a cloud project by specifying the correct parameters. Finally, we are only extracting data from the `animals` table, but you could also extract data from any other table or even from all tables
|
||||
:::
|
||||
|
||||
We can now inspect the file and see its contents:
|
||||
|
||||
```
|
||||
$ cat nhost/seeds/default/1685692310174_some-initial-data.sql
|
||||
SET check_function_bodies = false;
|
||||
INSERT INTO public.animals (id, created_at, updated_at, name) VALUES ('d50ff2e8-ec2a-496b-a2e6-a50eecccdb16', '2023-05-16 14:01:59.072576+00', '2023-05-16 14:01:59.072576+00', 'dog');
|
||||
INSERT INTO public.animals (id, created_at, updated_at, name) VALUES ('8224ec02-6fed-48ff-8c06-6c36298d0fd0', '2023-05-16 14:02:06.300074+00', '2023-05-16 14:02:06.300074+00', 'cat');
|
||||
```
|
||||
|
||||
Now, when you start a new development environment you can pass the `--apply-seeds` argument to pre-populate your environment with the seeds:
|
||||
|
||||
|
||||
```
|
||||
$ nhost up --apply-seeds
|
||||
Setting up Nhost development environment...
|
||||
Starting Nhost development environment...
|
||||
|
||||
(...) omitted for brevity
|
||||
|
||||
Applying migrations...
|
||||
INFO migrations applied on database: default
|
||||
Applying metadata...
|
||||
INFO Metadata applied
|
||||
Applying seeds...
|
||||
INFO Seed data planted for database: default
|
||||
|
||||
(...) omitted for brevity
|
||||
```
|
||||
|
||||
Or you could also apply the seeds yourself after starting nhost:
|
||||
|
||||
```
|
||||
$ nhost up
|
||||
Setting up Nhost development environment...
|
||||
Starting Nhost development environment...
|
||||
|
||||
(...) omitted for brevity
|
||||
|
||||
Applying migrations...
|
||||
INFO migrations applied on database: default
|
||||
Applying metadata...
|
||||
INFO Metadata applied
|
||||
|
||||
(...) omitted for brevity
|
||||
|
||||
$ nhost dev hasura seed apply \
|
||||
--endpoint https://local.hasura.nhost.run \
|
||||
--admin-secret nhost-admin-secret \
|
||||
--database-name default
|
||||
INFO Help us improve Hasura! The cli collects anonymized usage stats which
|
||||
allow us to keep improving Hasura at warp speed. To opt-out or read more,
|
||||
visit https://hasura.io/docs/latest/graphql/core/guides/telemetry.html
|
||||
INFO Seeds planted
|
||||
```
|
||||
|
||||
:::info
|
||||
Seeds are different from migrations because seeds are not automatically applied. If there is data that you want to have in all of your environments, it is best to use a database migration.
|
||||
:::
|
||||
@@ -1,5 +1,11 @@
|
||||
# @nhost-examples/react-apollo
|
||||
|
||||
## 0.1.13
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- e3001ba4a: fix(examples): don't break E2E tests
|
||||
|
||||
## 0.1.12
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@@ -2,7 +2,7 @@ import { faker } from '@faker-js/faker'
|
||||
import { expect, test } from '@playwright/test'
|
||||
import { signUpWithEmailAndPassword, verifyEmail } from '../utils'
|
||||
|
||||
test('should be able to change email', async ({ page }) => {
|
||||
test('should be able to change email', async ({ page, browser }) => {
|
||||
const email = faker.internet.email()
|
||||
const password = faker.internet.password()
|
||||
|
||||
@@ -25,10 +25,12 @@ test('should be able to change email', async ({ page }) => {
|
||||
|
||||
await newPage.getByRole('button', { name: /sign out/i }).click()
|
||||
|
||||
const mailhogPage = await browser.newPage()
|
||||
|
||||
const updatedEmailPage = await verifyEmail({
|
||||
page: newPage,
|
||||
page: mailhogPage,
|
||||
email: newEmail,
|
||||
context: page.context(),
|
||||
context: mailhogPage.context(),
|
||||
linkText: /change email/i
|
||||
})
|
||||
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@nhost-examples/react-apollo",
|
||||
"version": "0.1.12",
|
||||
"version": "0.1.13",
|
||||
"private": true,
|
||||
"dependencies": {
|
||||
"@apollo/client": "^3.7.14",
|
||||
@@ -22,8 +22,8 @@
|
||||
"scripts": {
|
||||
"dev": "vite --host localhost --port 3000",
|
||||
"generate": "graphql-codegen --config graphql.config.yaml",
|
||||
"e2e": "start-test e2e:start-backend https-get://local.hasura.nhost.run e2e:test",
|
||||
"e2e:test": "npx playwright@1.34.0 install --with-deps && playwright test",
|
||||
"e2e": "pnpm e2e:start-backend && pnpm e2e:test",
|
||||
"e2e:test": "npx playwright@1.34.0 install --with-deps && playwright test; nhost down",
|
||||
"e2e:start-backend": "cp .secrets.example .secrets && nhost up",
|
||||
"e2e:start-ui": "run-s build preview",
|
||||
"build": "vite build",
|
||||
@@ -61,7 +61,6 @@
|
||||
"dotenv": "^16.0.3",
|
||||
"jsqr": "^1.4.0",
|
||||
"pngjs": "^7.0.0",
|
||||
"start-server-and-test": "^1.15.4",
|
||||
"totp-generator": "^0.0.13",
|
||||
"typescript": "^4.9.5",
|
||||
"vite": "^4.3.7",
|
||||
|
||||
277
examples/react-apollo/pnpm-lock.yaml
generated
277
examples/react-apollo/pnpm-lock.yaml
generated
@@ -87,9 +87,6 @@ devDependencies:
|
||||
pngjs:
|
||||
specifier: ^7.0.0
|
||||
version: 7.0.0
|
||||
start-server-and-test:
|
||||
specifier: ^1.15.4
|
||||
version: 1.15.4
|
||||
totp-generator:
|
||||
specifier: ^0.0.13
|
||||
version: 0.0.13
|
||||
@@ -1091,16 +1088,6 @@ packages:
|
||||
dependencies:
|
||||
graphql: 16.6.0
|
||||
|
||||
/@hapi/hoek@9.3.0:
|
||||
resolution: {integrity: sha512-/c6rf4UJlmHlC9b5BaNvzAcFv7HZ2QHaV0D4/HNlBdvFnvQq8RI4kYdhyPCl7Xj+oWvTWQ8ujhqS53LIgAe6KQ==}
|
||||
dev: true
|
||||
|
||||
/@hapi/topo@5.1.0:
|
||||
resolution: {integrity: sha512-foQZKJig7Ob0BMAYBfcJk8d77QtOe7Wo4ox7ff1lQYoNNAb6jwcY1ncdoy2e9wQZzvNy7ODZCYJkK8kzmcAnAg==}
|
||||
dependencies:
|
||||
'@hapi/hoek': 9.3.0
|
||||
dev: true
|
||||
|
||||
/@jridgewell/gen-mapping@0.3.3:
|
||||
resolution: {integrity: sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==}
|
||||
engines: {node: '>=6.0.0'}
|
||||
@@ -1470,20 +1457,6 @@ packages:
|
||||
resolution: {integrity: sha512-AW8PKd6iX3vAZ0vA43nOUOnbq/X5ihgU+mSXXqunMkeQADGiqw/PY0JNeYtD5sr0PAy51YPgAPbDoeapv9r8WA==}
|
||||
dev: true
|
||||
|
||||
/@sideway/address@4.1.4:
|
||||
resolution: {integrity: sha512-7vwq+rOHVWjyXxVlR76Agnvhy8I9rpzjosTESvmhNeXOXdZZB15Fl+TI9x1SiHZH5Jv2wTGduSxFDIaq0m3DUw==}
|
||||
dependencies:
|
||||
'@hapi/hoek': 9.3.0
|
||||
dev: true
|
||||
|
||||
/@sideway/formula@3.0.1:
|
||||
resolution: {integrity: sha512-/poHZJJVjx3L+zVD6g9KgHfYnb443oi7wLu/XKojDviHy6HOEOA6z1Trk5aR1dGcmPenJEgb2sK2I80LeS3MIg==}
|
||||
dev: true
|
||||
|
||||
/@sideway/pinpoint@2.0.0:
|
||||
resolution: {integrity: sha512-RNiOoTPkptFtSVzQevY/yWtZwf/RxyVnPy/OcA9HBM3MlGDnBEYL5B41H0MTn0Uec8Hi+2qUtTfG2WWZBmMejQ==}
|
||||
dev: true
|
||||
|
||||
/@tsconfig/node10@1.0.9:
|
||||
resolution: {integrity: sha512-jNsYVVxU8v5g43Erja32laIDHXeoNvFEpX33OK4d6hljo3jDhCBDhx5dhCCTMWUojscpAagGiRkBKxpdl9fxqA==}
|
||||
dev: true
|
||||
@@ -1836,10 +1809,6 @@ packages:
|
||||
resolution: {integrity: sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==}
|
||||
dev: true
|
||||
|
||||
/arg@5.0.2:
|
||||
resolution: {integrity: sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==}
|
||||
dev: true
|
||||
|
||||
/argparse@2.0.1:
|
||||
resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==}
|
||||
dev: true
|
||||
@@ -1863,10 +1832,6 @@ packages:
|
||||
engines: {node: '>=8'}
|
||||
dev: true
|
||||
|
||||
/asynckit@0.4.0:
|
||||
resolution: {integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==}
|
||||
dev: true
|
||||
|
||||
/attr-accept@2.2.2:
|
||||
resolution: {integrity: sha512-7prDjvt9HmqiZ0cl5CRjtS84sEyhsHP2coDkaZKRKVfCDo9s7iw7ChVmar78Gu9pC4SoR/28wFu/G5JJhTnqEg==}
|
||||
engines: {node: '>=4'}
|
||||
@@ -1875,20 +1840,11 @@ packages:
|
||||
/axios@0.25.0:
|
||||
resolution: {integrity: sha512-cD8FOb0tRH3uuEe6+evtAbgJtfxr7ly3fQjYcMcuPlgkwVS9xboaVIpcDV+cYQe+yGykgwZCs1pzjntcGa6l5g==}
|
||||
dependencies:
|
||||
follow-redirects: 1.15.2(debug@4.3.4)
|
||||
follow-redirects: 1.15.2
|
||||
transitivePeerDependencies:
|
||||
- debug
|
||||
dev: false
|
||||
|
||||
/axios@0.27.2(debug@4.3.4):
|
||||
resolution: {integrity: sha512-t+yRIyySRTp/wua5xEr+z1q60QmLq8ABsS5O9Me1AsE5dfKqgnCFzwiCZZ/cGNd1lq4/7akDWMxdhVlucjmnOQ==}
|
||||
dependencies:
|
||||
follow-redirects: 1.15.2(debug@4.3.4)
|
||||
form-data: 4.0.0
|
||||
transitivePeerDependencies:
|
||||
- debug
|
||||
dev: true
|
||||
|
||||
/backo2@1.0.2:
|
||||
resolution: {integrity: sha512-zj6Z6M7Eq+PBZ7PQxl5NT665MvJdAkzp0f60nAJ+sLaSCBPMwVak5ZegFbgVCzFcCJTKFoMizvM5Ld7+JrRJHA==}
|
||||
dev: false
|
||||
@@ -1913,10 +1869,6 @@ packages:
|
||||
readable-stream: 3.6.2
|
||||
dev: true
|
||||
|
||||
/bluebird@3.7.2:
|
||||
resolution: {integrity: sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==}
|
||||
dev: true
|
||||
|
||||
/brace-expansion@1.1.11:
|
||||
resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==}
|
||||
dependencies:
|
||||
@@ -2039,11 +1991,6 @@ packages:
|
||||
resolution: {integrity: sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==}
|
||||
dev: true
|
||||
|
||||
/check-more-types@2.24.0:
|
||||
resolution: {integrity: sha512-Pj779qHxV2tuapviy1bSZNEL1maXr13bPYpsvSDB68HlYcYuhlDrmGd63i0JHMCLKzc7rUSNIrpdJlhVlNwrxA==}
|
||||
engines: {node: '>= 0.8.0'}
|
||||
dev: true
|
||||
|
||||
/chokidar@3.5.3:
|
||||
resolution: {integrity: sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==}
|
||||
engines: {node: '>= 8.10.0'}
|
||||
@@ -2131,13 +2078,6 @@ packages:
|
||||
resolution: {integrity: sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==}
|
||||
dev: true
|
||||
|
||||
/combined-stream@1.0.8:
|
||||
resolution: {integrity: sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==}
|
||||
engines: {node: '>= 0.8'}
|
||||
dependencies:
|
||||
delayed-stream: 1.0.0
|
||||
dev: true
|
||||
|
||||
/common-tags@1.8.2:
|
||||
resolution: {integrity: sha512-gk/Z852D2Wtb//0I+kRFNKKE9dIIVirjoqPoA1wJU+XePVXZfGeBpk45+A1rKO4Q43prqWBNY/MiIeRLbPWUaA==}
|
||||
engines: {node: '>=4.0.0'}
|
||||
@@ -2205,15 +2145,6 @@ packages:
|
||||
- encoding
|
||||
dev: true
|
||||
|
||||
/cross-spawn@7.0.3:
|
||||
resolution: {integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==}
|
||||
engines: {node: '>= 8'}
|
||||
dependencies:
|
||||
path-key: 3.1.1
|
||||
shebang-command: 2.0.0
|
||||
which: 2.0.2
|
||||
dev: true
|
||||
|
||||
/csstype@3.0.9:
|
||||
resolution: {integrity: sha512-rpw6JPxK6Rfg1zLOYCSwle2GFOOsnjmDYDaBwEcwoOg4qlsIVCN789VkBZDJAGi4T07gI4YSutR43t9Zz4Lzuw==}
|
||||
dev: false
|
||||
@@ -2246,11 +2177,6 @@ packages:
|
||||
clone: 1.0.4
|
||||
dev: true
|
||||
|
||||
/delayed-stream@1.0.0:
|
||||
resolution: {integrity: sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==}
|
||||
engines: {node: '>=0.4.0'}
|
||||
dev: true
|
||||
|
||||
/detect-indent@6.1.0:
|
||||
resolution: {integrity: sha512-reYkTUJAZb9gUuZ2RvVCNhVHdg62RHnJ7WJl8ftMi4diZ6NWlciOzQN88pUhSELEwflJht4oQDv0F0BMlwaYtA==}
|
||||
engines: {node: '>=8'}
|
||||
@@ -2292,10 +2218,6 @@ packages:
|
||||
engines: {node: '>=4'}
|
||||
dev: true
|
||||
|
||||
/duplexer@0.1.2:
|
||||
resolution: {integrity: sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==}
|
||||
dev: true
|
||||
|
||||
/electron-to-chromium@1.4.416:
|
||||
resolution: {integrity: sha512-AUYh0XDTb2vrj0rj82jb3P9hHSyzQNdTPYWZIhPdCOui7/vpme7+HTE07BE5jwuqg/34TZ8ktlRz6GImJ4IXjA==}
|
||||
|
||||
@@ -2347,18 +2269,6 @@ packages:
|
||||
resolution: {integrity: sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==}
|
||||
engines: {node: '>=0.8.0'}
|
||||
|
||||
/event-stream@3.3.4:
|
||||
resolution: {integrity: sha512-QHpkERcGsR0T7Qm3HNJSyXKEEj8AHNxkY3PK8TS2KJvQ7NiSHe3DDpwVKKtoYprL/AreyzFBeIkBIWChAqn60g==}
|
||||
dependencies:
|
||||
duplexer: 0.1.2
|
||||
from: 0.1.7
|
||||
map-stream: 0.1.0
|
||||
pause-stream: 0.0.11
|
||||
split: 0.3.3
|
||||
stream-combiner: 0.0.4
|
||||
through: 2.3.8
|
||||
dev: true
|
||||
|
||||
/eventemitter3@3.1.2:
|
||||
resolution: {integrity: sha512-tvtQIeLVHjDkJYnzf2dgVMxfuSGJeM/7UCG17TT4EumTfNtF+0nebF/4zWOIkCreAbtNqhGEboB6BWrwqNaw4Q==}
|
||||
dev: false
|
||||
@@ -2367,21 +2277,6 @@ packages:
|
||||
resolution: {integrity: sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==}
|
||||
dev: false
|
||||
|
||||
/execa@5.1.1:
|
||||
resolution: {integrity: sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==}
|
||||
engines: {node: '>=10'}
|
||||
dependencies:
|
||||
cross-spawn: 7.0.3
|
||||
get-stream: 6.0.1
|
||||
human-signals: 2.1.0
|
||||
is-stream: 2.0.1
|
||||
merge-stream: 2.0.0
|
||||
npm-run-path: 4.0.1
|
||||
onetime: 5.1.2
|
||||
signal-exit: 3.0.7
|
||||
strip-final-newline: 2.0.0
|
||||
dev: true
|
||||
|
||||
/external-editor@3.1.0:
|
||||
resolution: {integrity: sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew==}
|
||||
engines: {node: '>=4'}
|
||||
@@ -2458,7 +2353,7 @@ packages:
|
||||
to-regex-range: 5.0.1
|
||||
dev: true
|
||||
|
||||
/follow-redirects@1.15.2(debug@4.3.4):
|
||||
/follow-redirects@1.15.2:
|
||||
resolution: {integrity: sha512-VQLG33o04KaQ8uYi2tVNbdrWp1QWxNNea+nmIB4EVM28v0hmP17z7aG1+wAkNzVq4KeXTq3221ye5qTJP91JwA==}
|
||||
engines: {node: '>=4.0'}
|
||||
peerDependencies:
|
||||
@@ -2466,21 +2361,7 @@ packages:
|
||||
peerDependenciesMeta:
|
||||
debug:
|
||||
optional: true
|
||||
dependencies:
|
||||
debug: 4.3.4
|
||||
|
||||
/form-data@4.0.0:
|
||||
resolution: {integrity: sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==}
|
||||
engines: {node: '>= 6'}
|
||||
dependencies:
|
||||
asynckit: 0.4.0
|
||||
combined-stream: 1.0.8
|
||||
mime-types: 2.1.35
|
||||
dev: true
|
||||
|
||||
/from@0.1.7:
|
||||
resolution: {integrity: sha512-twe20eF1OxVxp/ML/kq2p1uc6KvFK/+vs8WjEbeKmV2He22MKm7YF2ANIt+EOqhJ5L3K/SuuPhk0hWQDjOM23g==}
|
||||
dev: true
|
||||
dev: false
|
||||
|
||||
/fs.realpath@1.0.0:
|
||||
resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==}
|
||||
@@ -2503,11 +2384,6 @@ packages:
|
||||
engines: {node: 6.* || 8.* || >= 10.*}
|
||||
dev: true
|
||||
|
||||
/get-stream@6.0.1:
|
||||
resolution: {integrity: sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==}
|
||||
engines: {node: '>=10'}
|
||||
dev: true
|
||||
|
||||
/glob-parent@5.1.2:
|
||||
resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==}
|
||||
engines: {node: '>= 6'}
|
||||
@@ -2648,11 +2524,6 @@ packages:
|
||||
- supports-color
|
||||
dev: true
|
||||
|
||||
/human-signals@2.1.0:
|
||||
resolution: {integrity: sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==}
|
||||
engines: {node: '>=10.17.0'}
|
||||
dev: true
|
||||
|
||||
/iconv-lite@0.4.24:
|
||||
resolution: {integrity: sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==}
|
||||
engines: {node: '>=0.10.0'}
|
||||
@@ -2766,11 +2637,6 @@ packages:
|
||||
engines: {node: '>=0.12.0'}
|
||||
dev: true
|
||||
|
||||
/is-stream@2.0.1:
|
||||
resolution: {integrity: sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==}
|
||||
engines: {node: '>=8'}
|
||||
dev: true
|
||||
|
||||
/is-unicode-supported@0.1.0:
|
||||
resolution: {integrity: sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==}
|
||||
engines: {node: '>=10'}
|
||||
@@ -2782,10 +2648,6 @@ packages:
|
||||
tslib: 2.5.2
|
||||
dev: true
|
||||
|
||||
/isexe@2.0.0:
|
||||
resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==}
|
||||
dev: true
|
||||
|
||||
/isomorphic-ws@5.0.0(ws@8.13.0):
|
||||
resolution: {integrity: sha512-muId7Zzn9ywDsyXgTIafTry2sV3nySZeUDe6YedVd1Hvuuep5AsIlqK+XefWpYTyJG5e503F2xIuT2lcU6rCSw==}
|
||||
peerDependencies:
|
||||
@@ -2803,16 +2665,6 @@ packages:
|
||||
hasBin: true
|
||||
dev: true
|
||||
|
||||
/joi@17.9.2:
|
||||
resolution: {integrity: sha512-Itk/r+V4Dx0V3c7RLFdRh12IOjySm2/WGPMubBT92cQvRfYZhPM2W0hZlctjj72iES8jsRCwp7S/cRmWBnJ4nw==}
|
||||
dependencies:
|
||||
'@hapi/hoek': 9.3.0
|
||||
'@hapi/topo': 5.1.0
|
||||
'@sideway/address': 4.1.4
|
||||
'@sideway/formula': 3.0.1
|
||||
'@sideway/pinpoint': 2.0.0
|
||||
dev: true
|
||||
|
||||
/jose@4.14.4:
|
||||
resolution: {integrity: sha512-j8GhLiKmUAh+dsFXlX1aJCbt5KMibuKb+d7j1JaOJG6s2UjX1PQlW+OKB/sD4a/5ZYF4RcmYmLSndOoU3Lt/3g==}
|
||||
dev: true
|
||||
@@ -2872,11 +2724,6 @@ packages:
|
||||
resolution: {integrity: sha512-w9OtT4ALL+fbbwG3gw7erAO0jvS5nfvrukGPMWIAoea359B26ALXGpzy4YJSp9yGnpUvuvOw1nSjSoHDfWSr1w==}
|
||||
dev: true
|
||||
|
||||
/lazy-ass@1.6.0:
|
||||
resolution: {integrity: sha512-cc8oEVoctTvsFZ/Oje/kGnHbpWHYBe8IAJe4C0QNc3t8uM/0Y8+erSz/7Y1ALuXTEZTMvxXwO6YbX1ey3ujiZw==}
|
||||
engines: {node: '> 0.8'}
|
||||
dev: true
|
||||
|
||||
/lines-and-columns@1.2.4:
|
||||
resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==}
|
||||
dev: true
|
||||
@@ -2957,14 +2804,6 @@ packages:
|
||||
resolution: {integrity: sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==}
|
||||
dev: true
|
||||
|
||||
/map-stream@0.1.0:
|
||||
resolution: {integrity: sha512-CkYQrPYZfWnu/DAmVCpTSX/xHpKZ80eKh2lAkyA6AJTef6bW+6JpbQZN5rofum7da+SyN1bi5ctTm+lTfcCW3g==}
|
||||
dev: true
|
||||
|
||||
/merge-stream@2.0.0:
|
||||
resolution: {integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==}
|
||||
dev: true
|
||||
|
||||
/merge2@1.4.1:
|
||||
resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==}
|
||||
engines: {node: '>= 8'}
|
||||
@@ -2990,18 +2829,6 @@ packages:
|
||||
picomatch: 2.3.1
|
||||
dev: true
|
||||
|
||||
/mime-db@1.52.0:
|
||||
resolution: {integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==}
|
||||
engines: {node: '>= 0.6'}
|
||||
dev: true
|
||||
|
||||
/mime-types@2.1.35:
|
||||
resolution: {integrity: sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==}
|
||||
engines: {node: '>= 0.6'}
|
||||
dependencies:
|
||||
mime-db: 1.52.0
|
||||
dev: true
|
||||
|
||||
/mimic-fn@2.1.0:
|
||||
resolution: {integrity: sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==}
|
||||
engines: {node: '>=6'}
|
||||
@@ -3020,10 +2847,6 @@ packages:
|
||||
brace-expansion: 1.1.11
|
||||
dev: true
|
||||
|
||||
/minimist@1.2.8:
|
||||
resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==}
|
||||
dev: true
|
||||
|
||||
/ms@2.1.2:
|
||||
resolution: {integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==}
|
||||
|
||||
@@ -3071,13 +2894,6 @@ packages:
|
||||
engines: {node: '>=0.10.0'}
|
||||
dev: true
|
||||
|
||||
/npm-run-path@4.0.1:
|
||||
resolution: {integrity: sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==}
|
||||
engines: {node: '>=8'}
|
||||
dependencies:
|
||||
path-key: 3.1.1
|
||||
dev: true
|
||||
|
||||
/object-assign@4.1.1:
|
||||
resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==}
|
||||
engines: {node: '>=0.10.0'}
|
||||
@@ -3210,22 +3026,11 @@ packages:
|
||||
engines: {node: '>=0.10.0'}
|
||||
dev: false
|
||||
|
||||
/path-key@3.1.1:
|
||||
resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==}
|
||||
engines: {node: '>=8'}
|
||||
dev: true
|
||||
|
||||
/path-type@4.0.0:
|
||||
resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==}
|
||||
engines: {node: '>=8'}
|
||||
dev: true
|
||||
|
||||
/pause-stream@0.0.11:
|
||||
resolution: {integrity: sha512-e3FBlXLmN/D1S+zHzanP4E/4Z60oFAa3O051qt1pxa7DEJWKAyil6upYVXCWadEnuoqa4Pkc9oUx9zsxYeRv8A==}
|
||||
dependencies:
|
||||
through: 2.3.8
|
||||
dev: true
|
||||
|
||||
/picocolors@1.0.0:
|
||||
resolution: {integrity: sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==}
|
||||
|
||||
@@ -3269,14 +3074,6 @@ packages:
|
||||
react-is: 16.13.1
|
||||
dev: false
|
||||
|
||||
/ps-tree@1.2.0:
|
||||
resolution: {integrity: sha512-0VnamPPYHl4uaU/nSFeZZpR21QAWRz+sRv4iW9+v/GS/J5U5iZB5BNN6J0RMoOvdx2gWM2+ZFMIm58q24e4UYA==}
|
||||
engines: {node: '>= 0.10'}
|
||||
hasBin: true
|
||||
dependencies:
|
||||
event-stream: 3.3.4
|
||||
dev: true
|
||||
|
||||
/punycode@1.4.1:
|
||||
resolution: {integrity: sha512-jmYNElW7yvO7TV33CjSmvSiE2yco3bV2czu/OzDKdMNVZQWfxCblURLhf+47syQRBntjfLdd/H0egrzIG+oaFQ==}
|
||||
dev: true
|
||||
@@ -3542,18 +3339,6 @@ packages:
|
||||
upper-case-first: 2.0.2
|
||||
dev: true
|
||||
|
||||
/shebang-command@2.0.0:
|
||||
resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==}
|
||||
engines: {node: '>=8'}
|
||||
dependencies:
|
||||
shebang-regex: 3.0.0
|
||||
dev: true
|
||||
|
||||
/shebang-regex@3.0.0:
|
||||
resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==}
|
||||
engines: {node: '>=8'}
|
||||
dev: true
|
||||
|
||||
/shell-quote@1.8.1:
|
||||
resolution: {integrity: sha512-6j1W9l1iAs/4xYBI1SYOVZyFcCis9b4KCLQ8fgAGG07QvzaRLVVRQvAy85yNmmZSjYjg4MWh4gNvlPujU/5LpA==}
|
||||
dev: true
|
||||
@@ -3597,41 +3382,12 @@ packages:
|
||||
engines: {node: '>=0.10.0'}
|
||||
dev: true
|
||||
|
||||
/split@0.3.3:
|
||||
resolution: {integrity: sha512-wD2AeVmxXRBoX44wAycgjVpMhvbwdI2aZjCkvfNcH1YqHQvJVa1duWc73OyVGJUc05fhFaTZeQ/PYsrmyH0JVA==}
|
||||
dependencies:
|
||||
through: 2.3.8
|
||||
dev: true
|
||||
|
||||
/sponge-case@1.0.1:
|
||||
resolution: {integrity: sha512-dblb9Et4DAtiZ5YSUZHLl4XhH4uK80GhAZrVXdN4O2P4gQ40Wa5UIOPUHlA/nFd2PLblBZWUioLMMAVrgpoYcA==}
|
||||
dependencies:
|
||||
tslib: 2.5.2
|
||||
dev: true
|
||||
|
||||
/start-server-and-test@1.15.4:
|
||||
resolution: {integrity: sha512-ucQtp5+UCr0m4aHlY+aEV2JSYNTiMZKdSKK/bsIr6AlmwAWDYDnV7uGlWWEtWa7T4XvRI5cPYcPcQgeLqpz+Tg==}
|
||||
engines: {node: '>=6'}
|
||||
hasBin: true
|
||||
dependencies:
|
||||
arg: 5.0.2
|
||||
bluebird: 3.7.2
|
||||
check-more-types: 2.24.0
|
||||
debug: 4.3.4
|
||||
execa: 5.1.1
|
||||
lazy-ass: 1.6.0
|
||||
ps-tree: 1.2.0
|
||||
wait-on: 7.0.1(debug@4.3.4)
|
||||
transitivePeerDependencies:
|
||||
- supports-color
|
||||
dev: true
|
||||
|
||||
/stream-combiner@0.0.4:
|
||||
resolution: {integrity: sha512-rT00SPnTVyRsaSz5zgSPma/aHSOic5U1prhYdRy5HS2kTZviFpmDgzilbtsJsxiroqACmayynDN/9VzIbX5DOw==}
|
||||
dependencies:
|
||||
duplexer: 0.1.2
|
||||
dev: true
|
||||
|
||||
/streamsearch@1.1.0:
|
||||
resolution: {integrity: sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg==}
|
||||
engines: {node: '>=10.0.0'}
|
||||
@@ -3663,11 +3419,6 @@ packages:
|
||||
ansi-regex: 5.0.1
|
||||
dev: true
|
||||
|
||||
/strip-final-newline@2.0.0:
|
||||
resolution: {integrity: sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==}
|
||||
engines: {node: '>=6'}
|
||||
dev: true
|
||||
|
||||
/stylis@4.0.13:
|
||||
resolution: {integrity: sha512-xGPXiFVl4YED9Jh7Euv2V220mriG9u4B2TA6Ybjc1catrstKD2PpIdU3U0RKpkVBC2EhmL/F0sPCr9vrFTNRag==}
|
||||
dev: false
|
||||
@@ -3975,20 +3726,6 @@ packages:
|
||||
fsevents: 2.3.2
|
||||
dev: true
|
||||
|
||||
/wait-on@7.0.1(debug@4.3.4):
|
||||
resolution: {integrity: sha512-9AnJE9qTjRQOlTZIldAaf/da2eW0eSRSgcqq85mXQja/DW3MriHxkpODDSUEg+Gri/rKEcXUZHe+cevvYItaog==}
|
||||
engines: {node: '>=12.0.0'}
|
||||
hasBin: true
|
||||
dependencies:
|
||||
axios: 0.27.2(debug@4.3.4)
|
||||
joi: 17.9.2
|
||||
lodash: 4.17.21
|
||||
minimist: 1.2.8
|
||||
rxjs: 7.8.1
|
||||
transitivePeerDependencies:
|
||||
- debug
|
||||
dev: true
|
||||
|
||||
/warning@4.0.3:
|
||||
resolution: {integrity: sha512-rpJyN222KWIvHJ/F53XSZv0Zl/accqHR8et1kpaMTD/fLCRxtV8iX8czMzY7sVZupTI3zcUTg8eycS2kNF9l6w==}
|
||||
dependencies:
|
||||
@@ -4027,14 +3764,6 @@ packages:
|
||||
webidl-conversions: 3.0.1
|
||||
dev: true
|
||||
|
||||
/which@2.0.2:
|
||||
resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==}
|
||||
engines: {node: '>= 8'}
|
||||
hasBin: true
|
||||
dependencies:
|
||||
isexe: 2.0.0
|
||||
dev: true
|
||||
|
||||
/wrap-ansi@6.2.0:
|
||||
resolution: {integrity: sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==}
|
||||
engines: {node: '>=8'}
|
||||
|
||||
@@ -87,7 +87,7 @@
|
||||
"resolutions": {
|
||||
"graphql": "16.6.0"
|
||||
},
|
||||
"packageManager": "pnpm@8.6.0",
|
||||
"packageManager": "pnpm@8.5.1",
|
||||
"engines": {
|
||||
"node": ">=16 <17",
|
||||
"pnpm": ">=8.0.0"
|
||||
|
||||
292
pnpm-lock.yaml
generated
292
pnpm-lock.yaml
generated
@@ -1,8 +1,4 @@
|
||||
lockfileVersion: '6.1'
|
||||
|
||||
settings:
|
||||
autoInstallPeers: true
|
||||
excludeLinksFromLockfile: false
|
||||
lockfileVersion: '6.0'
|
||||
|
||||
overrides:
|
||||
graphql: 16.6.0
|
||||
@@ -121,13 +117,13 @@ importers:
|
||||
version: 11.10.5
|
||||
'@emotion/react':
|
||||
specifier: ^11.10.5
|
||||
version: 11.10.5(@babel/core@7.20.2)(@types/react@18.2.7)(react@18.2.0)
|
||||
version: 11.10.5(@babel/core@7.20.2)(@types/react@18.2.8)(react@18.2.0)
|
||||
'@emotion/server':
|
||||
specifier: ^11.4.0
|
||||
version: 11.4.0
|
||||
'@emotion/styled':
|
||||
specifier: ^11.10.5
|
||||
version: 11.10.5(@babel/core@7.20.2)(@emotion/react@11.10.5)(@types/react@18.2.7)(react@18.2.0)
|
||||
version: 11.10.5(@babel/core@7.20.2)(@emotion/react@11.10.5)(@types/react@18.2.8)(react@18.2.0)
|
||||
'@fontsource/inter':
|
||||
specifier: ^5.0.0
|
||||
version: 5.0.0
|
||||
@@ -136,7 +132,7 @@ importers:
|
||||
version: 5.0.0
|
||||
'@graphiql/react':
|
||||
specifier: ^0.17.0
|
||||
version: 0.17.0(@codemirror/language@6.3.1)(@types/node@16.18.11)(@types/react@18.2.7)(graphql-ws@5.11.2)(graphql@16.6.0)(react-dom@18.2.0)(react-is@18.2.0)(react@18.2.0)
|
||||
version: 0.17.0(@codemirror/language@6.3.1)(@types/node@16.18.11)(@types/react@18.2.8)(graphql-ws@5.11.2)(graphql@16.6.0)(react-dom@18.2.0)(react-is@18.2.0)(react@18.2.0)
|
||||
'@graphiql/toolkit':
|
||||
specifier: ^0.8.2
|
||||
version: 0.8.2(@types/node@16.18.11)(graphql-ws@5.11.2)(graphql@16.6.0)
|
||||
@@ -151,13 +147,13 @@ importers:
|
||||
version: 3.0.0(react-hook-form@7.42.1)
|
||||
'@mui/base':
|
||||
specifier: ^5.0.0-alpha.106
|
||||
version: 5.0.0-alpha.106(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
|
||||
version: 5.0.0-alpha.106(@types/react@18.2.8)(react-dom@18.2.0)(react@18.2.0)
|
||||
'@mui/material':
|
||||
specifier: ^5.10.14
|
||||
version: 5.10.14(@emotion/react@11.10.5)(@emotion/styled@11.10.5)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
|
||||
version: 5.10.14(@emotion/react@11.10.5)(@emotion/styled@11.10.5)(@types/react@18.2.8)(react-dom@18.2.0)(react@18.2.0)
|
||||
'@mui/system':
|
||||
specifier: ^5.10.14
|
||||
version: 5.10.14(@emotion/react@11.10.5)(@emotion/styled@11.10.5)(@types/react@18.2.7)(react@18.2.0)
|
||||
version: 5.10.14(@emotion/react@11.10.5)(@emotion/styled@11.10.5)(@types/react@18.2.8)(react@18.2.0)
|
||||
'@mui/x-date-pickers':
|
||||
specifier: ^5.0.8
|
||||
version: 5.0.8(@emotion/react@11.10.5)(@emotion/styled@11.10.5)(@mui/material@5.10.14)(@mui/system@5.10.14)(date-fns@2.29.3)(react-dom@18.2.0)(react@18.2.0)
|
||||
@@ -205,7 +201,7 @@ importers:
|
||||
version: 1.7.0
|
||||
graphiql:
|
||||
specifier: ^2.4.0
|
||||
version: 2.4.0(@codemirror/language@6.3.1)(@types/node@16.18.11)(@types/react@18.2.7)(graphql-ws@5.11.2)(graphql@16.6.0)(react-dom@18.2.0)(react-is@18.2.0)(react@18.2.0)
|
||||
version: 2.4.0(@codemirror/language@6.3.1)(@types/node@16.18.11)(@types/react@18.2.8)(graphql-ws@5.11.2)(graphql@16.6.0)(react-dom@18.2.0)(react-is@18.2.0)(react@18.2.0)
|
||||
graphql:
|
||||
specifier: 16.6.0
|
||||
version: 16.6.0
|
||||
@@ -323,7 +319,7 @@ importers:
|
||||
version: 6.5.14(@babel/core@7.20.2)(@storybook/builder-webpack5@6.5.14)(eslint@8.28.0)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5)(webpack@5.83.1)
|
||||
'@storybook/addon-interactions':
|
||||
specifier: ^6.5.14
|
||||
version: 6.5.14(@types/react@18.2.7)(eslint@8.28.0)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5)
|
||||
version: 6.5.14(@types/react@18.2.8)(eslint@8.28.0)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5)
|
||||
'@storybook/addon-links':
|
||||
specifier: ^6.5.14
|
||||
version: 6.5.14(react-dom@18.2.0)(react@18.2.0)
|
||||
@@ -364,8 +360,8 @@ importers:
|
||||
specifier: ^0.0.29
|
||||
version: 0.0.29
|
||||
'@types/react':
|
||||
specifier: 18.2.7
|
||||
version: 18.2.7
|
||||
specifier: 18.2.8
|
||||
version: 18.2.8
|
||||
'@types/react-dom':
|
||||
specifier: 18.2.4
|
||||
version: 18.2.4
|
||||
@@ -937,9 +933,6 @@ importers:
|
||||
pngjs:
|
||||
specifier: ^7.0.0
|
||||
version: 7.0.0
|
||||
start-server-and-test:
|
||||
specifier: ^1.15.4
|
||||
version: 1.15.4
|
||||
totp-generator:
|
||||
specifier: ^0.0.13
|
||||
version: 0.0.13
|
||||
@@ -5174,7 +5167,7 @@ packages:
|
||||
'@date-io/core': 2.16.0
|
||||
dev: false
|
||||
|
||||
/@design-systems/utils@2.12.0(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0):
|
||||
/@design-systems/utils@2.12.0(@types/react@18.2.8)(react-dom@18.2.0)(react@18.2.0):
|
||||
resolution: {integrity: sha512-Y/d2Zzr+JJfN6u1gbuBUb1ufBuLMJJRZQk+dRmw8GaTpqKx5uf7cGUYGTwN02dIb3I+Tf+cW8jcGBTRiFxdYFg==}
|
||||
peerDependencies:
|
||||
'@types/react': '*'
|
||||
@@ -5182,7 +5175,7 @@ packages:
|
||||
react-dom: '>= 16.8.6'
|
||||
dependencies:
|
||||
'@babel/runtime': 7.21.0
|
||||
'@types/react': 18.2.7
|
||||
'@types/react': 18.2.8
|
||||
clsx: 1.2.1
|
||||
focus-lock: 0.8.1
|
||||
react: 18.2.0
|
||||
@@ -5190,15 +5183,15 @@ packages:
|
||||
react-merge-refs: 1.1.0
|
||||
dev: true
|
||||
|
||||
/@devtools-ds/object-inspector@1.2.0(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0):
|
||||
/@devtools-ds/object-inspector@1.2.0(@types/react@18.2.8)(react-dom@18.2.0)(react@18.2.0):
|
||||
resolution: {integrity: sha512-VztcwqVwScSvYdvJVZBJYsVO/2Pew3JPpFV3T9fuCHQLlHcLYOV3aU/kBS2ScuE2O1JN0ZbobLqFLa3vQF54Fw==}
|
||||
peerDependencies:
|
||||
react: '>= 16.8.6'
|
||||
dependencies:
|
||||
'@babel/runtime': 7.7.2
|
||||
'@devtools-ds/object-parser': 1.2.0
|
||||
'@devtools-ds/themes': 1.2.0(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
|
||||
'@devtools-ds/tree': 1.2.0(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
|
||||
'@devtools-ds/themes': 1.2.0(@types/react@18.2.8)(react-dom@18.2.0)(react@18.2.0)
|
||||
'@devtools-ds/tree': 1.2.0(@types/react@18.2.8)(react-dom@18.2.0)(react@18.2.0)
|
||||
clsx: 1.1.0
|
||||
react: 18.2.0
|
||||
transitivePeerDependencies:
|
||||
@@ -5212,13 +5205,13 @@ packages:
|
||||
'@babel/runtime': 7.5.5
|
||||
dev: true
|
||||
|
||||
/@devtools-ds/themes@1.2.0(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0):
|
||||
/@devtools-ds/themes@1.2.0(@types/react@18.2.8)(react-dom@18.2.0)(react@18.2.0):
|
||||
resolution: {integrity: sha512-LimEITorE6yWZWWuMc6OiBfLQgPrQqWbyMEmfRUDPa3PHXoAY4SpDxczfg31fgyRDUNWnZhjaJH5bBbu8VEbIw==}
|
||||
peerDependencies:
|
||||
react: '>= 16.8.6'
|
||||
dependencies:
|
||||
'@babel/runtime': 7.5.5
|
||||
'@design-systems/utils': 2.12.0(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
|
||||
'@design-systems/utils': 2.12.0(@types/react@18.2.8)(react-dom@18.2.0)(react@18.2.0)
|
||||
clsx: 1.1.0
|
||||
react: 18.2.0
|
||||
transitivePeerDependencies:
|
||||
@@ -5226,13 +5219,13 @@ packages:
|
||||
- react-dom
|
||||
dev: true
|
||||
|
||||
/@devtools-ds/tree@1.2.0(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0):
|
||||
/@devtools-ds/tree@1.2.0(@types/react@18.2.8)(react-dom@18.2.0)(react@18.2.0):
|
||||
resolution: {integrity: sha512-hC4g4ocuo2eg7jsnzKdauxH0sDQiPW3KSM2+uK3kRgcmr9PzpBD5Kob+Y/WFSVKswFleftOGKL4BQLuRv0sPxA==}
|
||||
peerDependencies:
|
||||
react: '>= 16.8.6'
|
||||
dependencies:
|
||||
'@babel/runtime': 7.7.2
|
||||
'@devtools-ds/themes': 1.2.0(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
|
||||
'@devtools-ds/themes': 1.2.0(@types/react@18.2.8)(react-dom@18.2.0)(react@18.2.0)
|
||||
clsx: 1.1.0
|
||||
react: 18.2.0
|
||||
transitivePeerDependencies:
|
||||
@@ -5435,7 +5428,7 @@ packages:
|
||||
'@docusaurus/react-loadable': 5.5.2(react@18.2.0)
|
||||
'@docusaurus/types': 2.4.1(react-dom@18.2.0)(react@18.2.0)
|
||||
'@types/history': 4.7.11
|
||||
'@types/react': 18.2.6
|
||||
'@types/react': 18.2.8
|
||||
'@types/react-router-config': 5.0.6
|
||||
'@types/react-router-dom': 5.3.3
|
||||
react: 18.2.0
|
||||
@@ -5781,7 +5774,7 @@ packages:
|
||||
peerDependencies:
|
||||
react: '*'
|
||||
dependencies:
|
||||
'@types/react': 18.2.7
|
||||
'@types/react': 18.2.8
|
||||
prop-types: 15.8.1
|
||||
react: 18.2.0
|
||||
|
||||
@@ -5852,7 +5845,7 @@ packages:
|
||||
'@docusaurus/utils': 2.4.1(@docusaurus/types@2.4.1)
|
||||
'@docusaurus/utils-common': 2.4.1(@docusaurus/types@2.4.1)
|
||||
'@types/history': 4.7.11
|
||||
'@types/react': 18.2.7
|
||||
'@types/react': 18.2.8
|
||||
'@types/react-router-config': 5.0.6
|
||||
clsx: 1.2.1
|
||||
parse-numeric-range: 1.3.0
|
||||
@@ -5942,7 +5935,7 @@ packages:
|
||||
react-dom: ^16.8.4 || ^17.0.0
|
||||
dependencies:
|
||||
'@types/history': 4.7.11
|
||||
'@types/react': 18.2.7
|
||||
'@types/react': 18.2.8
|
||||
commander: 5.1.0
|
||||
joi: 17.7.0
|
||||
react: 18.2.0
|
||||
@@ -6119,7 +6112,7 @@ packages:
|
||||
resolution: {integrity: sha512-G/YwXTkv7Den9mXDO7AhLWkE3q+I92B+VqAE+dYG4NGPaHZGvt3G8Q0p9vmE+sq7rTGphUbAvmQ9YpbfMQGGlA==}
|
||||
dev: false
|
||||
|
||||
/@emotion/react@11.10.5(@babel/core@7.20.2)(@types/react@18.2.7)(react@18.2.0):
|
||||
/@emotion/react@11.10.5(@babel/core@7.20.2)(@types/react@18.2.8)(react@18.2.0):
|
||||
resolution: {integrity: sha512-TZs6235tCJ/7iF6/rvTaOH4oxQg2gMAcdHemjwLKIjKz4rRuYe1HJ2TQJKnAcRAfOUDdU8XoDadCe1rl72iv8A==}
|
||||
peerDependencies:
|
||||
'@babel/core': ^7.0.0
|
||||
@@ -6139,7 +6132,7 @@ packages:
|
||||
'@emotion/use-insertion-effect-with-fallbacks': 1.0.0(react@18.2.0)
|
||||
'@emotion/utils': 1.2.0
|
||||
'@emotion/weak-memoize': 0.3.0
|
||||
'@types/react': 18.2.7
|
||||
'@types/react': 18.2.8
|
||||
hoist-non-react-statics: 3.3.2
|
||||
react: 18.2.0
|
||||
dev: false
|
||||
@@ -6244,7 +6237,7 @@ packages:
|
||||
resolution: {integrity: sha512-zxRBwl93sHMsOj4zs+OslQKg/uhF38MB+OMKoCrVuS0nyTkqnau+BM3WGEoOptg9Oz45T/aIGs1qbVAsEFo3nA==}
|
||||
dev: false
|
||||
|
||||
/@emotion/styled@11.10.5(@babel/core@7.20.2)(@emotion/react@11.10.5)(@types/react@18.2.7)(react@18.2.0):
|
||||
/@emotion/styled@11.10.5(@babel/core@7.20.2)(@emotion/react@11.10.5)(@types/react@18.2.8)(react@18.2.0):
|
||||
resolution: {integrity: sha512-8EP6dD7dMkdku2foLoruPCNkRevzdcBaY6q0l0OsbyJK+x8D9HWjX27ARiSIKNF634hY9Zdoedh8bJCiva8yZw==}
|
||||
peerDependencies:
|
||||
'@babel/core': ^7.0.0
|
||||
@@ -6261,11 +6254,11 @@ packages:
|
||||
'@babel/runtime': 7.19.4
|
||||
'@emotion/babel-plugin': 11.10.5(@babel/core@7.20.2)
|
||||
'@emotion/is-prop-valid': 1.2.0
|
||||
'@emotion/react': 11.10.5(@babel/core@7.20.2)(@types/react@18.2.7)(react@18.2.0)
|
||||
'@emotion/react': 11.10.5(@babel/core@7.20.2)(@types/react@18.2.8)(react@18.2.0)
|
||||
'@emotion/serialize': 1.1.1
|
||||
'@emotion/use-insertion-effect-with-fallbacks': 1.0.0(react@18.2.0)
|
||||
'@emotion/utils': 1.2.0
|
||||
'@types/react': 18.2.7
|
||||
'@types/react': 18.2.8
|
||||
react: 18.2.0
|
||||
dev: false
|
||||
|
||||
@@ -7089,7 +7082,7 @@ packages:
|
||||
/@gqty/utils@1.0.0:
|
||||
resolution: {integrity: sha512-QJMlzts//d0H5mlekOZgx1a4KsTYXfxmRhhx8g/8mvzdaNVPxhFzCsv3+ljTOzbW3A08qy4jXQPWAMoTefSJDQ==}
|
||||
|
||||
/@graphiql/react@0.17.0(@codemirror/language@6.3.1)(@types/node@16.18.11)(@types/react@18.2.7)(graphql-ws@5.11.2)(graphql@16.6.0)(react-dom@18.2.0)(react-is@18.2.0)(react@18.2.0):
|
||||
/@graphiql/react@0.17.0(@codemirror/language@6.3.1)(@types/node@16.18.11)(@types/react@18.2.8)(graphql-ws@5.11.2)(graphql@16.6.0)(react-dom@18.2.0)(react-is@18.2.0)(react@18.2.0):
|
||||
resolution: {integrity: sha512-mn8FfucLJzFLQQ5OoJ9U1Dvnva1smOxBL89D2TSM2B6mmDyQIRhFXmjzUTPdsqwpauFiqkDaQZiqX7T/ZPrg/w==}
|
||||
peerDependencies:
|
||||
graphql: ^15.5.0 || ^16.0.0
|
||||
@@ -7098,7 +7091,7 @@ packages:
|
||||
dependencies:
|
||||
'@graphiql/toolkit': 0.8.2(@types/node@16.18.11)(graphql-ws@5.11.2)(graphql@16.6.0)
|
||||
'@reach/combobox': 0.17.0(react-dom@18.2.0)(react@18.2.0)
|
||||
'@reach/dialog': 0.17.0(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
|
||||
'@reach/dialog': 0.17.0(@types/react@18.2.8)(react-dom@18.2.0)(react@18.2.0)
|
||||
'@reach/listbox': 0.17.0(react-dom@18.2.0)(react@18.2.0)
|
||||
'@reach/menu-button': 0.17.0(react-dom@18.2.0)(react-is@18.2.0)(react@18.2.0)
|
||||
'@reach/tooltip': 0.17.0(react-dom@18.2.0)(react@18.2.0)
|
||||
@@ -9097,7 +9090,7 @@ packages:
|
||||
- supports-color
|
||||
dev: true
|
||||
|
||||
/@mui/base@5.0.0-alpha.106(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0):
|
||||
/@mui/base@5.0.0-alpha.106(@types/react@18.2.8)(react-dom@18.2.0)(react@18.2.0):
|
||||
resolution: {integrity: sha512-xJQQtwPCPwr6hGWTBdvDwHYwExn3Bw7nPQkN8Fuz8kHpZqoMVWQvvaFS557AIkkI2AFLV3DxVIMjbCvrIntBWg==}
|
||||
engines: {node: '>=12.0.0'}
|
||||
peerDependencies:
|
||||
@@ -9110,10 +9103,10 @@ packages:
|
||||
dependencies:
|
||||
'@babel/runtime': 7.20.1
|
||||
'@emotion/is-prop-valid': 1.2.0
|
||||
'@mui/types': 7.2.1(@types/react@18.2.7)
|
||||
'@mui/types': 7.2.1(@types/react@18.2.8)
|
||||
'@mui/utils': 5.10.14(react@18.2.0)
|
||||
'@popperjs/core': 2.11.6
|
||||
'@types/react': 18.2.7
|
||||
'@types/react': 18.2.8
|
||||
clsx: 1.2.1
|
||||
prop-types: 15.8.1
|
||||
react: 18.2.0
|
||||
@@ -9125,7 +9118,7 @@ packages:
|
||||
resolution: {integrity: sha512-qLgIJNOR9Dre8JiZ/neVzOf4jf88J6YtOkQqugtMrleLjbfRVUSS4LWl9CSOjNq76quYdmYWnSDgfQqOooT2cQ==}
|
||||
dev: false
|
||||
|
||||
/@mui/material@5.10.14(@emotion/react@11.10.5)(@emotion/styled@11.10.5)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0):
|
||||
/@mui/material@5.10.14(@emotion/react@11.10.5)(@emotion/styled@11.10.5)(@types/react@18.2.8)(react-dom@18.2.0)(react@18.2.0):
|
||||
resolution: {integrity: sha512-HWzKVAykePMx54WtxVwZyL1W4k3xlHYIqwMw0CaXAvgB3UE9yjABZuuGr8vG5Z6CSNWamzd+s1x8u7pQPFl9og==}
|
||||
engines: {node: '>=12.0.0'}
|
||||
peerDependencies:
|
||||
@@ -9143,14 +9136,14 @@ packages:
|
||||
optional: true
|
||||
dependencies:
|
||||
'@babel/runtime': 7.20.1
|
||||
'@emotion/react': 11.10.5(@babel/core@7.20.2)(@types/react@18.2.7)(react@18.2.0)
|
||||
'@emotion/styled': 11.10.5(@babel/core@7.20.2)(@emotion/react@11.10.5)(@types/react@18.2.7)(react@18.2.0)
|
||||
'@mui/base': 5.0.0-alpha.106(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
|
||||
'@emotion/react': 11.10.5(@babel/core@7.20.2)(@types/react@18.2.8)(react@18.2.0)
|
||||
'@emotion/styled': 11.10.5(@babel/core@7.20.2)(@emotion/react@11.10.5)(@types/react@18.2.8)(react@18.2.0)
|
||||
'@mui/base': 5.0.0-alpha.106(@types/react@18.2.8)(react-dom@18.2.0)(react@18.2.0)
|
||||
'@mui/core-downloads-tracker': 5.10.14
|
||||
'@mui/system': 5.10.14(@emotion/react@11.10.5)(@emotion/styled@11.10.5)(@types/react@18.2.7)(react@18.2.0)
|
||||
'@mui/types': 7.2.1(@types/react@18.2.7)
|
||||
'@mui/system': 5.10.14(@emotion/react@11.10.5)(@emotion/styled@11.10.5)(@types/react@18.2.8)(react@18.2.0)
|
||||
'@mui/types': 7.2.1(@types/react@18.2.8)
|
||||
'@mui/utils': 5.10.14(react@18.2.0)
|
||||
'@types/react': 18.2.7
|
||||
'@types/react': 18.2.8
|
||||
'@types/react-transition-group': 4.4.5
|
||||
clsx: 1.2.1
|
||||
csstype: 3.1.1
|
||||
@@ -9161,7 +9154,7 @@ packages:
|
||||
react-transition-group: 4.4.5(react-dom@18.2.0)(react@18.2.0)
|
||||
dev: false
|
||||
|
||||
/@mui/private-theming@5.10.14(@types/react@18.2.7)(react@18.2.0):
|
||||
/@mui/private-theming@5.10.14(@types/react@18.2.8)(react@18.2.0):
|
||||
resolution: {integrity: sha512-3aIBe8WK65CwAPDY8nB11hYnzE1CZMymi76UnaFrA/DdGDwl5Y8F6uB+StKrkVmsqF1po7Mp2odqVkHj320gXw==}
|
||||
engines: {node: '>=12.0.0'}
|
||||
peerDependencies:
|
||||
@@ -9173,7 +9166,7 @@ packages:
|
||||
dependencies:
|
||||
'@babel/runtime': 7.21.0
|
||||
'@mui/utils': 5.10.14(react@18.2.0)
|
||||
'@types/react': 18.2.7
|
||||
'@types/react': 18.2.8
|
||||
prop-types: 15.8.1
|
||||
react: 18.2.0
|
||||
dev: false
|
||||
@@ -9193,14 +9186,14 @@ packages:
|
||||
dependencies:
|
||||
'@babel/runtime': 7.21.0
|
||||
'@emotion/cache': 11.10.5
|
||||
'@emotion/react': 11.10.5(@babel/core@7.20.2)(@types/react@18.2.7)(react@18.2.0)
|
||||
'@emotion/styled': 11.10.5(@babel/core@7.20.2)(@emotion/react@11.10.5)(@types/react@18.2.7)(react@18.2.0)
|
||||
'@emotion/react': 11.10.5(@babel/core@7.20.2)(@types/react@18.2.8)(react@18.2.0)
|
||||
'@emotion/styled': 11.10.5(@babel/core@7.20.2)(@emotion/react@11.10.5)(@types/react@18.2.8)(react@18.2.0)
|
||||
csstype: 3.1.1
|
||||
prop-types: 15.8.1
|
||||
react: 18.2.0
|
||||
dev: false
|
||||
|
||||
/@mui/system@5.10.14(@emotion/react@11.10.5)(@emotion/styled@11.10.5)(@types/react@18.2.7)(react@18.2.0):
|
||||
/@mui/system@5.10.14(@emotion/react@11.10.5)(@emotion/styled@11.10.5)(@types/react@18.2.8)(react@18.2.0):
|
||||
resolution: {integrity: sha512-2de7XCjRb1j8Od0Stmo0LwFMLpOMNT4wzfINuExXI1TVSuyxXIXUxiC5FEgJW3GMvf/a7SUR8VOiMoKlKWzukw==}
|
||||
engines: {node: '>=12.0.0'}
|
||||
peerDependencies:
|
||||
@@ -9217,20 +9210,20 @@ packages:
|
||||
optional: true
|
||||
dependencies:
|
||||
'@babel/runtime': 7.20.1
|
||||
'@emotion/react': 11.10.5(@babel/core@7.20.2)(@types/react@18.2.7)(react@18.2.0)
|
||||
'@emotion/styled': 11.10.5(@babel/core@7.20.2)(@emotion/react@11.10.5)(@types/react@18.2.7)(react@18.2.0)
|
||||
'@mui/private-theming': 5.10.14(@types/react@18.2.7)(react@18.2.0)
|
||||
'@emotion/react': 11.10.5(@babel/core@7.20.2)(@types/react@18.2.8)(react@18.2.0)
|
||||
'@emotion/styled': 11.10.5(@babel/core@7.20.2)(@emotion/react@11.10.5)(@types/react@18.2.8)(react@18.2.0)
|
||||
'@mui/private-theming': 5.10.14(@types/react@18.2.8)(react@18.2.0)
|
||||
'@mui/styled-engine': 5.10.14(@emotion/react@11.10.5)(@emotion/styled@11.10.5)(react@18.2.0)
|
||||
'@mui/types': 7.2.1(@types/react@18.2.7)
|
||||
'@mui/types': 7.2.1(@types/react@18.2.8)
|
||||
'@mui/utils': 5.10.14(react@18.2.0)
|
||||
'@types/react': 18.2.7
|
||||
'@types/react': 18.2.8
|
||||
clsx: 1.2.1
|
||||
csstype: 3.1.1
|
||||
prop-types: 15.8.1
|
||||
react: 18.2.0
|
||||
dev: false
|
||||
|
||||
/@mui/types@7.2.1(@types/react@18.2.7):
|
||||
/@mui/types@7.2.1(@types/react@18.2.8):
|
||||
resolution: {integrity: sha512-c5mSM7ivD8EsqK6HUi9hQPr5V7TJ/IRThUQ9nWNYPdhCGriTSQV4vL6DflT99LkM+wLiIS1rVjphpEWxERep7A==}
|
||||
peerDependencies:
|
||||
'@types/react': '*'
|
||||
@@ -9238,7 +9231,7 @@ packages:
|
||||
'@types/react':
|
||||
optional: true
|
||||
dependencies:
|
||||
'@types/react': 18.2.7
|
||||
'@types/react': 18.2.8
|
||||
dev: false
|
||||
|
||||
/@mui/utils@5.10.14(react@18.2.0):
|
||||
@@ -9303,10 +9296,10 @@ packages:
|
||||
'@date-io/dayjs': 2.16.0
|
||||
'@date-io/luxon': 2.16.1
|
||||
'@date-io/moment': 2.16.1
|
||||
'@emotion/react': 11.10.5(@babel/core@7.20.2)(@types/react@18.2.7)(react@18.2.0)
|
||||
'@emotion/styled': 11.10.5(@babel/core@7.20.2)(@emotion/react@11.10.5)(@types/react@18.2.7)(react@18.2.0)
|
||||
'@mui/material': 5.10.14(@emotion/react@11.10.5)(@emotion/styled@11.10.5)(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
|
||||
'@mui/system': 5.10.14(@emotion/react@11.10.5)(@emotion/styled@11.10.5)(@types/react@18.2.7)(react@18.2.0)
|
||||
'@emotion/react': 11.10.5(@babel/core@7.20.2)(@types/react@18.2.8)(react@18.2.0)
|
||||
'@emotion/styled': 11.10.5(@babel/core@7.20.2)(@emotion/react@11.10.5)(@types/react@18.2.8)(react@18.2.0)
|
||||
'@mui/material': 5.10.14(@emotion/react@11.10.5)(@emotion/styled@11.10.5)(@types/react@18.2.8)(react-dom@18.2.0)(react@18.2.0)
|
||||
'@mui/system': 5.10.14(@emotion/react@11.10.5)(@emotion/styled@11.10.5)(@types/react@18.2.8)(react@18.2.0)
|
||||
'@mui/utils': 5.10.9(react@18.2.0)
|
||||
'@types/react-transition-group': 4.4.5
|
||||
clsx: 1.2.1
|
||||
@@ -10072,7 +10065,7 @@ packages:
|
||||
tslib: 2.5.0
|
||||
dev: false
|
||||
|
||||
/@reach/dialog@0.17.0(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0):
|
||||
/@reach/dialog@0.17.0(@types/react@18.2.8)(react-dom@18.2.0)(react@18.2.0):
|
||||
resolution: {integrity: sha512-AnfKXugqDTGbeG3c8xDcrQDE4h9b/vnc27Sa118oQSquz52fneUeX9MeFb5ZEiBJK8T5NJpv7QUTBIKnFCAH5A==}
|
||||
peerDependencies:
|
||||
react: ^16.8.0 || 17.x
|
||||
@@ -10083,8 +10076,8 @@ packages:
|
||||
prop-types: 15.8.1
|
||||
react: 18.2.0
|
||||
react-dom: 18.2.0(react@18.2.0)
|
||||
react-focus-lock: 2.9.2(@types/react@18.2.7)(react@18.2.0)
|
||||
react-remove-scroll: 2.5.5(@types/react@18.2.7)(react@18.2.0)
|
||||
react-focus-lock: 2.9.2(@types/react@18.2.8)(react@18.2.0)
|
||||
react-remove-scroll: 2.5.5(@types/react@18.2.8)(react@18.2.0)
|
||||
tslib: 2.5.0
|
||||
transitivePeerDependencies:
|
||||
- '@types/react'
|
||||
@@ -10613,7 +10606,7 @@ packages:
|
||||
- webpack-command
|
||||
dev: true
|
||||
|
||||
/@storybook/addon-interactions@6.5.14(@types/react@18.2.7)(eslint@8.28.0)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5):
|
||||
/@storybook/addon-interactions@6.5.14(@types/react@18.2.8)(eslint@8.28.0)(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5):
|
||||
resolution: {integrity: sha512-Stw/m3+T6ILrQPwyPgRNYtXZTBk9wE0KOSOUVrc6VixCcXm43nIYkUFiq4NL86lCBR4RKewfgl8U3Rn6chE8Tg==}
|
||||
peerDependencies:
|
||||
react: ^16.8.0 || ^17.0.0 || ^18.0.0
|
||||
@@ -10624,7 +10617,7 @@ packages:
|
||||
react-dom:
|
||||
optional: true
|
||||
dependencies:
|
||||
'@devtools-ds/object-inspector': 1.2.0(@types/react@18.2.7)(react-dom@18.2.0)(react@18.2.0)
|
||||
'@devtools-ds/object-inspector': 1.2.0(@types/react@18.2.8)(react-dom@18.2.0)(react@18.2.0)
|
||||
'@storybook/addons': 6.5.14(react-dom@18.2.0)(react@18.2.0)
|
||||
'@storybook/api': 6.5.14(react-dom@18.2.0)(react@18.2.0)
|
||||
'@storybook/client-logger': 6.5.14
|
||||
@@ -13085,39 +13078,39 @@ packages:
|
||||
/@types/react-is@17.0.3:
|
||||
resolution: {integrity: sha512-aBTIWg1emtu95bLTLx0cpkxwGW3ueZv71nE2YFBpL8k/z5czEW8yYpOo8Dp+UUAFAtKwNaOsh/ioSeQnWlZcfw==}
|
||||
dependencies:
|
||||
'@types/react': 18.2.7
|
||||
'@types/react': 18.2.8
|
||||
dev: false
|
||||
|
||||
/@types/react-router-config@5.0.6:
|
||||
resolution: {integrity: sha512-db1mx37a1EJDf1XeX8jJN7R3PZABmJQXR8r28yUjVMFSjkmnQo6X6pOEEmNl+Tp2gYQOGPdYbFIipBtdElZ3Yg==}
|
||||
dependencies:
|
||||
'@types/history': 4.7.11
|
||||
'@types/react': 18.2.7
|
||||
'@types/react': 18.2.8
|
||||
'@types/react-router': 5.1.18
|
||||
|
||||
/@types/react-router-dom@5.3.3:
|
||||
resolution: {integrity: sha512-kpqnYK4wcdm5UaWI3fLcELopqLrHgLqNsdpHauzlQktfkHL3npOSwtj1Uz9oKBAzs7lFtVkV8j83voAz2D8fhw==}
|
||||
dependencies:
|
||||
'@types/history': 4.7.11
|
||||
'@types/react': 18.2.7
|
||||
'@types/react': 18.2.8
|
||||
'@types/react-router': 5.1.18
|
||||
|
||||
/@types/react-router@5.1.18:
|
||||
resolution: {integrity: sha512-YYknwy0D0iOwKQgz9v8nOzt2J6l4gouBmDnWqUUznltOTaon+r8US8ky8HvN0tXvc38U9m6z/t2RsVsnd1zM0g==}
|
||||
dependencies:
|
||||
'@types/history': 4.7.11
|
||||
'@types/react': 18.2.7
|
||||
'@types/react': 18.2.8
|
||||
|
||||
/@types/react-table@7.7.12:
|
||||
resolution: {integrity: sha512-bRUent+NR/WwtDGwI/BqhZ8XnHghwHw0HUKeohzB5xN3K2qKWYE5w19e7GCuOkL1CXD9Gi1HFy7TIm2AvgWUHg==}
|
||||
dependencies:
|
||||
'@types/react': 18.2.7
|
||||
'@types/react': 18.2.8
|
||||
dev: true
|
||||
|
||||
/@types/react-transition-group@4.4.5:
|
||||
resolution: {integrity: sha512-juKD/eiSM3/xZYzjuzH6ZwpP+/lejltmiS3QEzV/vmb/Q8+HfDmxu+Baga8UEMGBqV88Nbg4l2hY/K2DkyaLLA==}
|
||||
dependencies:
|
||||
'@types/react': 18.2.7
|
||||
'@types/react': 18.2.8
|
||||
dev: false
|
||||
|
||||
/@types/react@18.0.34:
|
||||
@@ -13134,8 +13127,8 @@ packages:
|
||||
'@types/scheduler': 0.16.2
|
||||
csstype: 3.1.1
|
||||
|
||||
/@types/react@18.2.7:
|
||||
resolution: {integrity: sha512-ojrXpSH2XFCmHm7Jy3q44nXDyN54+EYKP2lBhJ2bqfyPj6cIUW/FZW/Csdia34NQgq7KYcAlHi5184m4X88+yw==}
|
||||
/@types/react@18.2.8:
|
||||
resolution: {integrity: sha512-lTyWUNrd8ntVkqycEEplasWy2OxNlShj3zqS0LuB1ENUGis5HodmhM7DtCoUGbxj3VW/WsGA0DUhpG6XrM7gPA==}
|
||||
dependencies:
|
||||
'@types/prop-types': 15.7.5
|
||||
'@types/scheduler': 0.16.2
|
||||
@@ -15209,7 +15202,7 @@ packages:
|
||||
engines: {node: '>=4'}
|
||||
dependencies:
|
||||
'@segment/loosely-validate-event': 2.0.0
|
||||
axios: 0.27.2(debug@4.3.4)
|
||||
axios: 0.27.2
|
||||
axios-retry: 3.2.0
|
||||
lodash.isstring: 4.0.1
|
||||
md5: 2.3.0
|
||||
@@ -15675,18 +15668,19 @@ packages:
|
||||
/axios@0.25.0:
|
||||
resolution: {integrity: sha512-cD8FOb0tRH3uuEe6+evtAbgJtfxr7ly3fQjYcMcuPlgkwVS9xboaVIpcDV+cYQe+yGykgwZCs1pzjntcGa6l5g==}
|
||||
dependencies:
|
||||
follow-redirects: 1.15.2(debug@4.3.4)
|
||||
follow-redirects: 1.15.2
|
||||
transitivePeerDependencies:
|
||||
- debug
|
||||
dev: false
|
||||
|
||||
/axios@0.27.2(debug@4.3.4):
|
||||
/axios@0.27.2:
|
||||
resolution: {integrity: sha512-t+yRIyySRTp/wua5xEr+z1q60QmLq8ABsS5O9Me1AsE5dfKqgnCFzwiCZZ/cGNd1lq4/7akDWMxdhVlucjmnOQ==}
|
||||
dependencies:
|
||||
follow-redirects: 1.15.2(debug@4.3.4)
|
||||
follow-redirects: 1.15.2
|
||||
form-data: 4.0.0
|
||||
transitivePeerDependencies:
|
||||
- debug
|
||||
dev: false
|
||||
|
||||
/axobject-query@2.2.0:
|
||||
resolution: {integrity: sha512-Td525n+iPOOyUQIeBfcASuG6uJsDOITl7Mds5gFyerkWiX7qhUTdYUBlSgNMyVqtSJqwpt1kXGLdUt6SykLMRA==}
|
||||
@@ -16671,11 +16665,6 @@ packages:
|
||||
resolution: {integrity: sha512-BrgHpW9NURQgzoNyjfq0Wu6VFO6D7IZEmJNdtgNqpzGG8RuNFHt2jQxWlAs4HMe119chBnv+34syEZtc6IhLtA==}
|
||||
dev: true
|
||||
|
||||
/check-more-types@2.24.0:
|
||||
resolution: {integrity: sha512-Pj779qHxV2tuapviy1bSZNEL1maXr13bPYpsvSDB68HlYcYuhlDrmGd63i0JHMCLKzc7rUSNIrpdJlhVlNwrxA==}
|
||||
engines: {node: '>= 0.8.0'}
|
||||
dev: true
|
||||
|
||||
/cheerio-select@2.1.0:
|
||||
resolution: {integrity: sha512-9v9kG0LvzrlcungtnJtpGNxY+fzECQKhK4EGJX2vByejiMX84MFNQw4UxPJl3bFbTMw+Dfs37XaIkCwTZfLh4g==}
|
||||
dependencies:
|
||||
@@ -20114,18 +20103,6 @@ packages:
|
||||
require-like: 0.1.2
|
||||
dev: false
|
||||
|
||||
/event-stream@3.3.4:
|
||||
resolution: {integrity: sha512-QHpkERcGsR0T7Qm3HNJSyXKEEj8AHNxkY3PK8TS2KJvQ7NiSHe3DDpwVKKtoYprL/AreyzFBeIkBIWChAqn60g==}
|
||||
dependencies:
|
||||
duplexer: 0.1.2
|
||||
from: 0.1.7
|
||||
map-stream: 0.1.0
|
||||
pause-stream: 0.0.11
|
||||
split: 0.3.3
|
||||
stream-combiner: 0.0.4
|
||||
through: 2.3.8
|
||||
dev: true
|
||||
|
||||
/event-target-polyfill@0.0.3:
|
||||
resolution: {integrity: sha512-ZMc6UuvmbinrCk4RzGyVmRyIsAyxMRlp4CqSrcQRO8Dy0A9ldbiRy5kdtBj4OtP7EClGdqGfIqo9JmOClMsGLQ==}
|
||||
|
||||
@@ -20668,7 +20645,7 @@ packages:
|
||||
tslib: 1.14.1
|
||||
dev: true
|
||||
|
||||
/follow-redirects@1.15.2(debug@4.3.4):
|
||||
/follow-redirects@1.15.2:
|
||||
resolution: {integrity: sha512-VQLG33o04KaQ8uYi2tVNbdrWp1QWxNNea+nmIB4EVM28v0hmP17z7aG1+wAkNzVq4KeXTq3221ye5qTJP91JwA==}
|
||||
engines: {node: '>=4.0'}
|
||||
peerDependencies:
|
||||
@@ -20676,8 +20653,7 @@ packages:
|
||||
peerDependenciesMeta:
|
||||
debug:
|
||||
optional: true
|
||||
dependencies:
|
||||
debug: 4.3.4
|
||||
dev: false
|
||||
|
||||
/for-each@0.3.3:
|
||||
resolution: {integrity: sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==}
|
||||
@@ -20886,10 +20862,6 @@ packages:
|
||||
readable-stream: 2.3.7
|
||||
dev: true
|
||||
|
||||
/from@0.1.7:
|
||||
resolution: {integrity: sha512-twe20eF1OxVxp/ML/kq2p1uc6KvFK/+vs8WjEbeKmV2He22MKm7YF2ANIt+EOqhJ5L3K/SuuPhk0hWQDjOM23g==}
|
||||
dev: true
|
||||
|
||||
/fs-constants@1.0.0:
|
||||
resolution: {integrity: sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==}
|
||||
dev: false
|
||||
@@ -21388,14 +21360,14 @@ packages:
|
||||
resolution: {integrity: sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==}
|
||||
dev: true
|
||||
|
||||
/graphiql@2.4.0(@codemirror/language@6.3.1)(@types/node@16.18.11)(@types/react@18.2.7)(graphql-ws@5.11.2)(graphql@16.6.0)(react-dom@18.2.0)(react-is@18.2.0)(react@18.2.0):
|
||||
/graphiql@2.4.0(@codemirror/language@6.3.1)(@types/node@16.18.11)(@types/react@18.2.8)(graphql-ws@5.11.2)(graphql@16.6.0)(react-dom@18.2.0)(react-is@18.2.0)(react@18.2.0):
|
||||
resolution: {integrity: sha512-lJ6OYDQkhAMZePrz8g6r9vMVmxa4SY9eEzzyJxsgE+jA+6PFKds2e8/tDAaCYfX0HNv84nc7W/th1vsHIdgYiA==}
|
||||
peerDependencies:
|
||||
graphql: ^15.5.0 || ^16.0.0
|
||||
react: ^16.8.0 || ^17.0.0 || ^18.0.0
|
||||
react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
|
||||
dependencies:
|
||||
'@graphiql/react': 0.17.0(@codemirror/language@6.3.1)(@types/node@16.18.11)(@types/react@18.2.7)(graphql-ws@5.11.2)(graphql@16.6.0)(react-dom@18.2.0)(react-is@18.2.0)(react@18.2.0)
|
||||
'@graphiql/react': 0.17.0(@codemirror/language@6.3.1)(@types/node@16.18.11)(@types/react@18.2.8)(graphql-ws@5.11.2)(graphql@16.6.0)(react-dom@18.2.0)(react-is@18.2.0)(react@18.2.0)
|
||||
'@graphiql/toolkit': 0.8.2(@types/node@16.18.11)(graphql-ws@5.11.2)(graphql@16.6.0)
|
||||
entities: 2.2.0
|
||||
graphql: 16.6.0
|
||||
@@ -22104,7 +22076,7 @@ packages:
|
||||
engines: {node: '>=8.0.0'}
|
||||
dependencies:
|
||||
eventemitter3: 4.0.7
|
||||
follow-redirects: 1.15.2(debug@4.3.4)
|
||||
follow-redirects: 1.15.2
|
||||
requires-port: 1.0.0
|
||||
transitivePeerDependencies:
|
||||
- debug
|
||||
@@ -23529,11 +23501,6 @@ packages:
|
||||
package-json: 6.5.0
|
||||
dev: false
|
||||
|
||||
/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'}
|
||||
@@ -24002,10 +23969,6 @@ packages:
|
||||
resolution: {integrity: sha512-0aF7ZmVon1igznGI4VS30yugpduQW3y3GkcgGJOp7d8x8QrizhigUxjI/m2UojsXXto+jLAH3KSz+xOJTiORjg==}
|
||||
dev: true
|
||||
|
||||
/map-stream@0.1.0:
|
||||
resolution: {integrity: sha512-CkYQrPYZfWnu/DAmVCpTSX/xHpKZ80eKh2lAkyA6AJTef6bW+6JpbQZN5rofum7da+SyN1bi5ctTm+lTfcCW3g==}
|
||||
dev: true
|
||||
|
||||
/map-visit@1.0.0:
|
||||
resolution: {integrity: sha512-4y7uGv8bd2WdM9vpQsiQNo41Ln1NvhvDRuVt0k2JZQ+ezN2uaQes7lZeZ+QQUHOLQAtDaBJ+7wCbi+ab/KFs+w==}
|
||||
engines: {node: '>=0.10.0'}
|
||||
@@ -25731,12 +25694,6 @@ packages:
|
||||
resolution: {integrity: sha512-Dp6zGqpTdETdR63lehJYPeIOqpiNBNtc7BpWSLrOje7UaIsE5aY92r/AunQA7rsXvet3lrJ3JnZX29UPTKXyKQ==}
|
||||
dev: true
|
||||
|
||||
/pause-stream@0.0.11:
|
||||
resolution: {integrity: sha512-e3FBlXLmN/D1S+zHzanP4E/4Z60oFAa3O051qt1pxa7DEJWKAyil6upYVXCWadEnuoqa4Pkc9oUx9zsxYeRv8A==}
|
||||
dependencies:
|
||||
through: 2.3.8
|
||||
dev: true
|
||||
|
||||
/pbkdf2@3.1.2:
|
||||
resolution: {integrity: sha512-iuh7L6jA7JEGu2WxDwtQP1ddOpaJNC4KlDEFfdQajSGgGPNi4OyDc2R7QnbY2bR9QjBVGwgvTdNJZoE7RaxUMA==}
|
||||
engines: {node: '>=0.12'}
|
||||
@@ -26867,14 +26824,6 @@ packages:
|
||||
resolution: {integrity: sha512-yPw4Sng1gWghHQWj0B3ZggWUm4qVbPwPFcRG8KyxiU7J2OHFSoEHKS+EZ3fv5l1t9CyCiop6l/ZYeWbrgoQejw==}
|
||||
dev: true
|
||||
|
||||
/ps-tree@1.2.0:
|
||||
resolution: {integrity: sha512-0VnamPPYHl4uaU/nSFeZZpR21QAWRz+sRv4iW9+v/GS/J5U5iZB5BNN6J0RMoOvdx2gWM2+ZFMIm58q24e4UYA==}
|
||||
engines: {node: '>= 0.10'}
|
||||
hasBin: true
|
||||
dependencies:
|
||||
event-stream: 3.3.4
|
||||
dev: true
|
||||
|
||||
/pseudomap@1.0.2:
|
||||
resolution: {integrity: sha512-b/YwNhb8lk1Zz2+bXXpS/LK9OisiZZ1SNsSLxN1x2OXVEhW2Ckr/7mWE5vrC1ZTiJlD9g19jWszTmJsB+oEpFQ==}
|
||||
dev: true
|
||||
@@ -27200,7 +27149,7 @@ packages:
|
||||
/react-fast-compare@3.2.0:
|
||||
resolution: {integrity: sha512-rtGImPZ0YyLrscKI9xTpV8psd6I8VAtjKCzQDlzyDvqJA8XOW78TXYQwNRNd8g8JZnDu8q9Fu/1v4HPAVwVdHA==}
|
||||
|
||||
/react-focus-lock@2.9.2(@types/react@18.2.7)(react@18.2.0):
|
||||
/react-focus-lock@2.9.2(@types/react@18.2.8)(react@18.2.0):
|
||||
resolution: {integrity: sha512-5JfrsOKyA5Zn3h958mk7bAcfphr24jPoMoznJ8vaJF6fUrPQ8zrtEd3ILLOK8P5jvGxdMd96OxWNjDzATfR2qw==}
|
||||
peerDependencies:
|
||||
'@types/react': ^16.8.0 || ^17.0.0 || ^18.0.0
|
||||
@@ -27210,13 +27159,13 @@ packages:
|
||||
optional: true
|
||||
dependencies:
|
||||
'@babel/runtime': 7.21.0
|
||||
'@types/react': 18.2.7
|
||||
'@types/react': 18.2.8
|
||||
focus-lock: 0.11.3
|
||||
prop-types: 15.8.1
|
||||
react: 18.2.0
|
||||
react-clientside-effect: 1.2.6(react@18.2.0)
|
||||
use-callback-ref: 1.3.0(@types/react@18.2.7)(react@18.2.0)
|
||||
use-sidecar: 1.1.2(@types/react@18.2.7)(react@18.2.0)
|
||||
use-callback-ref: 1.3.0(@types/react@18.2.8)(react@18.2.0)
|
||||
use-sidecar: 1.1.2(@types/react@18.2.8)(react@18.2.0)
|
||||
dev: false
|
||||
|
||||
/react-helmet-async@1.3.0(react-dom@18.2.0)(react@18.2.0):
|
||||
@@ -27366,7 +27315,7 @@ packages:
|
||||
engines: {node: '>=0.10.0'}
|
||||
dev: true
|
||||
|
||||
/react-remove-scroll-bar@2.3.4(@types/react@18.2.7)(react@18.2.0):
|
||||
/react-remove-scroll-bar@2.3.4(@types/react@18.2.8)(react@18.2.0):
|
||||
resolution: {integrity: sha512-63C4YQBUt0m6ALadE9XV56hV8BgJWDmmTPY758iIJjfQKt2nYwoUrPk0LXRXcB/yIj82T1/Ixfdpdk68LwIB0A==}
|
||||
engines: {node: '>=10'}
|
||||
peerDependencies:
|
||||
@@ -27376,13 +27325,13 @@ packages:
|
||||
'@types/react':
|
||||
optional: true
|
||||
dependencies:
|
||||
'@types/react': 18.2.7
|
||||
'@types/react': 18.2.8
|
||||
react: 18.2.0
|
||||
react-style-singleton: 2.2.1(@types/react@18.2.7)(react@18.2.0)
|
||||
react-style-singleton: 2.2.1(@types/react@18.2.8)(react@18.2.0)
|
||||
tslib: 2.5.0
|
||||
dev: false
|
||||
|
||||
/react-remove-scroll@2.5.5(@types/react@18.2.7)(react@18.2.0):
|
||||
/react-remove-scroll@2.5.5(@types/react@18.2.8)(react@18.2.0):
|
||||
resolution: {integrity: sha512-ImKhrzJJsyXJfBZ4bzu8Bwpka14c/fQt0k+cyFp/PBhTfyDnU5hjOtM4AG/0AMyy8oKzOTR0lDgJIM7pYXI0kw==}
|
||||
engines: {node: '>=10'}
|
||||
peerDependencies:
|
||||
@@ -27392,13 +27341,13 @@ packages:
|
||||
'@types/react':
|
||||
optional: true
|
||||
dependencies:
|
||||
'@types/react': 18.2.7
|
||||
'@types/react': 18.2.8
|
||||
react: 18.2.0
|
||||
react-remove-scroll-bar: 2.3.4(@types/react@18.2.7)(react@18.2.0)
|
||||
react-style-singleton: 2.2.1(@types/react@18.2.7)(react@18.2.0)
|
||||
react-remove-scroll-bar: 2.3.4(@types/react@18.2.8)(react@18.2.0)
|
||||
react-style-singleton: 2.2.1(@types/react@18.2.8)(react@18.2.0)
|
||||
tslib: 2.5.0
|
||||
use-callback-ref: 1.3.0(@types/react@18.2.7)(react@18.2.0)
|
||||
use-sidecar: 1.1.2(@types/react@18.2.7)(react@18.2.0)
|
||||
use-callback-ref: 1.3.0(@types/react@18.2.8)(react@18.2.0)
|
||||
use-sidecar: 1.1.2(@types/react@18.2.8)(react@18.2.0)
|
||||
dev: false
|
||||
|
||||
/react-router-config@5.1.1(react-router@5.3.4)(react@18.2.0):
|
||||
@@ -27475,7 +27424,7 @@ packages:
|
||||
react: 18.2.0
|
||||
dev: false
|
||||
|
||||
/react-style-singleton@2.2.1(@types/react@18.2.7)(react@18.2.0):
|
||||
/react-style-singleton@2.2.1(@types/react@18.2.8)(react@18.2.0):
|
||||
resolution: {integrity: sha512-ZWj0fHEMyWkHzKYUr2Bs/4zU6XLmq9HsgBURm7g5pAVfyn49DgUiNgY2d4lXRlYSiCif9YBGpQleewkcqddc7g==}
|
||||
engines: {node: '>=10'}
|
||||
peerDependencies:
|
||||
@@ -27485,7 +27434,7 @@ packages:
|
||||
'@types/react':
|
||||
optional: true
|
||||
dependencies:
|
||||
'@types/react': 18.2.7
|
||||
'@types/react': 18.2.8
|
||||
get-nonce: 1.0.1
|
||||
invariant: 2.2.4
|
||||
react: 18.2.0
|
||||
@@ -28902,12 +28851,6 @@ packages:
|
||||
engines: {node: '>= 10.x'}
|
||||
dev: false
|
||||
|
||||
/split@0.3.3:
|
||||
resolution: {integrity: sha512-wD2AeVmxXRBoX44wAycgjVpMhvbwdI2aZjCkvfNcH1YqHQvJVa1duWc73OyVGJUc05fhFaTZeQ/PYsrmyH0JVA==}
|
||||
dependencies:
|
||||
through: 2.3.8
|
||||
dev: true
|
||||
|
||||
/sponge-case@1.0.1:
|
||||
resolution: {integrity: sha512-dblb9Et4DAtiZ5YSUZHLl4XhH4uK80GhAZrVXdN4O2P4gQ40Wa5UIOPUHlA/nFd2PLblBZWUioLMMAVrgpoYcA==}
|
||||
dependencies:
|
||||
@@ -28949,23 +28892,6 @@ packages:
|
||||
resolution: {integrity: sha512-oeVtt7eWQS+Na6F//S4kJ2K2VbRlS9D43mAlMyVpVWovy9o+jfgH8O9agzANzaiLjclA0oYzUXEM4PurhSUChw==}
|
||||
dev: true
|
||||
|
||||
/start-server-and-test@1.15.4:
|
||||
resolution: {integrity: sha512-ucQtp5+UCr0m4aHlY+aEV2JSYNTiMZKdSKK/bsIr6AlmwAWDYDnV7uGlWWEtWa7T4XvRI5cPYcPcQgeLqpz+Tg==}
|
||||
engines: {node: '>=6'}
|
||||
hasBin: true
|
||||
dependencies:
|
||||
arg: 5.0.2
|
||||
bluebird: 3.7.2
|
||||
check-more-types: 2.24.0
|
||||
debug: 4.3.4
|
||||
execa: 5.1.1
|
||||
lazy-ass: 1.6.0
|
||||
ps-tree: 1.2.0
|
||||
wait-on: 7.0.1(debug@4.3.4)
|
||||
transitivePeerDependencies:
|
||||
- supports-color
|
||||
dev: true
|
||||
|
||||
/state-toggle@1.0.3:
|
||||
resolution: {integrity: sha512-d/5Z4/2iiCnHw6Xzghyhb+GcmF89bxwgXG60wjIiZaxnymbyOmI8Hk4VqHXiVVp6u2ysaskFfXg3ekCj4WNftQ==}
|
||||
|
||||
@@ -29020,12 +28946,6 @@ packages:
|
||||
readable-stream: 2.3.7
|
||||
dev: true
|
||||
|
||||
/stream-combiner@0.0.4:
|
||||
resolution: {integrity: sha512-rT00SPnTVyRsaSz5zgSPma/aHSOic5U1prhYdRy5HS2kTZviFpmDgzilbtsJsxiroqACmayynDN/9VzIbX5DOw==}
|
||||
dependencies:
|
||||
duplexer: 0.1.2
|
||||
dev: true
|
||||
|
||||
/stream-each@1.2.3:
|
||||
resolution: {integrity: sha512-vlMC2f8I2u/bZGqkdfLQW/13Zihpej/7PmSiMQsbYddxuTsJp8vRe2x2FvVExZg7FaOds43ROAuFJwPR4MTZLw==}
|
||||
dependencies:
|
||||
@@ -31103,7 +31023,7 @@ packages:
|
||||
- graphql
|
||||
dev: true
|
||||
|
||||
/use-callback-ref@1.3.0(@types/react@18.2.7)(react@18.2.0):
|
||||
/use-callback-ref@1.3.0(@types/react@18.2.8)(react@18.2.0):
|
||||
resolution: {integrity: sha512-3FT9PRuRdbB9HfXhEq35u4oZkvpJ5kuYbpqhCfmiZyReuRgpnhDlbr2ZEnnuS0RrJAPn6l23xjFg9kpDM+Ms7w==}
|
||||
engines: {node: '>=10'}
|
||||
peerDependencies:
|
||||
@@ -31113,7 +31033,7 @@ packages:
|
||||
'@types/react':
|
||||
optional: true
|
||||
dependencies:
|
||||
'@types/react': 18.2.7
|
||||
'@types/react': 18.2.8
|
||||
react: 18.2.0
|
||||
tslib: 2.5.0
|
||||
dev: false
|
||||
@@ -31180,7 +31100,7 @@ packages:
|
||||
use-isomorphic-layout-effect: 1.1.2(@types/react@18.2.6)(react@18.2.0)
|
||||
dev: false
|
||||
|
||||
/use-sidecar@1.1.2(@types/react@18.2.7)(react@18.2.0):
|
||||
/use-sidecar@1.1.2(@types/react@18.2.8)(react@18.2.0):
|
||||
resolution: {integrity: sha512-epTbsLuzZ7lPClpz2TyryBfztm7m+28DlEv2ZCQ3MDr5ssiwyOwGH/e5F9CkfWjJ1t4clvI58yF822/GUkjjhw==}
|
||||
engines: {node: '>=10'}
|
||||
peerDependencies:
|
||||
@@ -31190,7 +31110,7 @@ packages:
|
||||
'@types/react':
|
||||
optional: true
|
||||
dependencies:
|
||||
'@types/react': 18.2.7
|
||||
'@types/react': 18.2.8
|
||||
detect-node-es: 1.1.0
|
||||
react: 18.2.0
|
||||
tslib: 2.5.0
|
||||
@@ -32050,20 +31970,6 @@ packages:
|
||||
- debug
|
||||
dev: false
|
||||
|
||||
/wait-on@7.0.1(debug@4.3.4):
|
||||
resolution: {integrity: sha512-9AnJE9qTjRQOlTZIldAaf/da2eW0eSRSgcqq85mXQja/DW3MriHxkpODDSUEg+Gri/rKEcXUZHe+cevvYItaog==}
|
||||
engines: {node: '>=12.0.0'}
|
||||
hasBin: true
|
||||
dependencies:
|
||||
axios: 0.27.2(debug@4.3.4)
|
||||
joi: 17.7.0
|
||||
lodash: 4.17.21
|
||||
minimist: 1.2.7
|
||||
rxjs: 7.8.0
|
||||
transitivePeerDependencies:
|
||||
- debug
|
||||
dev: true
|
||||
|
||||
/walker@1.0.8:
|
||||
resolution: {integrity: sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==}
|
||||
dependencies:
|
||||
|
||||
Reference in New Issue
Block a user