diff --git a/docs/interact/README.md b/docs/bridge/README.md
similarity index 98%
rename from docs/interact/README.md
rename to docs/bridge/README.md
index 9b2fd28d..dae27cc8 100644
--- a/docs/interact/README.md
+++ b/docs/bridge/README.md
@@ -2,7 +2,7 @@
sidebar_position: 1
---
-# Overview
+# Intro
For bridging the origin chain of the token matters. It is not possible to mint a token on Aurora and move it to Ethereum.
diff --git a/docs/faq.md b/docs/faq.md
index 0baee0cc..85f40f4d 100644
--- a/docs/faq.md
+++ b/docs/faq.md
@@ -74,8 +74,8 @@ Yes! Since confirmation of transfer can take a while, you’ll be able to initia
## I have a few more questions. Where can I get help?
-For support and help with any questions, don't hesitate to reach out on Telegram channels: [official channel], [support channel], [development channel].
+For support and help with any questions, don't hesitate to reach out on Telegram channels: [official channel], [support in Discord], [development channel].
[official channel]: https://t.me/auroraisnear
-[support channel]: https://t.me/auroraisnearsupport
+[support in Discord]: https://discord.aurora.dev/
[development channel]: https://t.me/auroraisneardev
diff --git a/docs/integrate/_category_.json b/docs/integrate/_category_.json
deleted file mode 100644
index ce7579b7..00000000
--- a/docs/integrate/_category_.json
+++ /dev/null
@@ -1,4 +0,0 @@
-{
- "label": "Integrate",
- "position": 5
-}
diff --git a/docs/integrate/indexers/_category_.json b/docs/integrate/indexers/_category_.json
deleted file mode 100644
index 33357f5f..00000000
--- a/docs/integrate/indexers/_category_.json
+++ /dev/null
@@ -1,3 +0,0 @@
-{
- "label": "Indexers"
-}
diff --git a/docs/integrate/indexers/covalent.md b/docs/integrate/indexers/covalent.md
deleted file mode 100644
index 573e7114..00000000
--- a/docs/integrate/indexers/covalent.md
+++ /dev/null
@@ -1,135 +0,0 @@
----
-title: "Covalent"
-sidebar_position: 2
----
-
-## Introduction
-
-[Covalent](https://www.covalenthq.com/?utm_source=aurora&utm_medium=partner-docs) provides a unified API to bring full transparency
-and visibility to assets across all blockchains including Aurora's Mainnet and Testnet.
-
-To get started, sign up for an [**API Key**](https://www.covalenthq.com/platform/?utm_source=aurora&utm_medium=partner-docs).
-
-| *JSON support* | *CSV support* |
-| :-----------: | :-----------: |
-| ![Developer Mode](https://www.covalenthq.com/static/images/partner-docs/developer_mode.png) | ![Analyst Mode](https://www.covalenthq.com/static/images/partner-docs/analyst_mode.png)|
-
-The Covalent API is RESTful and offers the following out-of-the-box for *Aurora*:
-
-| **Covalent API** | |
-| ----------- | ----------- |
-| **Response formats** | JSON and CSV |
-| **Real time response** | 2 blocks |
-| **Batch response** | 30 minutes |
-| **Request volume limit** | None |
-| **Request rate limit** | 5 requests per second |
-| **Base URL** | |
-| **Networks & `chain_id`** | Mainnet - `1313161554`
Testnet: - `1313161556`|
-| **Supported Endpoints** | **Class A Universal**
[Balances](https://www.covalenthq.com/docs/api/#/0/Get%20token%20balances%20for%20address/USD/1313161554)
-
-- [Transactions](https://www.covalenthq.com/docs/api/#/0/Get%20transactions%20for%20address/USD/1313161554)
-- [Transfers](https://www.covalenthq.com/docs/api/#/0/Get%20ERC20%20token%20transfers%20for%20address/USD/1313161554)
-- [Token Holders](https://www.covalenthq.com/docs/api/#/0/Get%20token%20holders%20as%20of%20any%20block%20height/USD/1313161554)
-- [Log Events (Contract Address)](https://www.covalenthq.com/docs/api/#/0/Get%20log%20events%20by%20contract%20address/USD/1313161554)
-- [Log Events (Topic Hash)](https://www.covalenthq.com/docs/api/#/0/Get%20log%20events%20by%20topic%20hash(es)/USD/1313161554)
-
-Try the supported endpoints directly in your browser from our
-[API Reference](https://covalenthq.com/docs/api/?utm_source=aurora&utm_medium=partner-docs) or use the following code examples.
-**The JSON response format is the same for all endpoints:**
-
-```json
-❴
- "data": ...,
- "error": false,
- "error_message": null,
- "error_code": null
-❵
-```
-
-### Curl
-
-```bash
-curl -X GET "https://api.covalenthq.com/v1/{chain_id}/address/{address}/balances_v2/?key={YOUR API KEY}" -H "Accept: application/json"
-```
-
-### JavaScript
-
-```js
-const APIKEY = 'YOUR API KEY';
-const baseURL = 'https://api.covalenthq.com/v1'
-const auroraChainId = '1313161554'
-const demoAddress = '0xb0bD02F6a392aF548bDf1CfAeE5dFa0EefcC8EaB'
-
-async function getWalletBalance(chainId, address) {
- const url = new URL(`${baseURL}/${chainId}/address/${address}/balances_v2/?key=${APIKEY}`);
- const response = await fetch(url);
- const result = await response.json();
- const data = result.data;
- console.log(data)
- return data;
-}
-
-// Example address request
-getWalletBalance(auroraChainId, demoAddress);
-```
-
-### Python
-
-```python
-import requests
-
-API_KEY = 'YOUR API KEY'
-base_url = 'https://api.covalenthq.com/v1'
-aurora_chain_id = '1313161554'
-demo_address = '0xb0bD02F6a392aF548bDf1CfAeE5dFa0EefcC8EaB'
-
-def get_wallet_balance(chain_id, address):
- endpoint = f'/{chain_id}/address/{address}/balances_v2/?key={API_KEY}'
- url = base_url + endpoint
- result = requests.get(url).json()
- data = result["data"]
- print(data)
- return(data)
-
-
-# Example address request
-get_wallet_balance(aurora_chain_id, demo_address)
-```
-
-## Use Cases
-
-The Covalent API supports a broad range of Web3 data use cases including:
-
-| | | | |
-| :-----------: | :-----------: | :-----------: | :-----------: |
-| ![Gaming](https://www.covalenthq.com/static/images/partner-docs/gaming.png) | ![DeFi](https://www.covalenthq.com/static/images/partner-docs/defi.png) | ![KYC](https://www.covalenthq.com/static/images/partner-docs/kyc.png)| ![NFT](https://www.covalenthq.com/static/images/partner-docs/nft_icon.png)|
-| Gaming| DeFi Taxes | KYC | NFTs |
-| ![Wallets](https://www.covalenthq.com/static/images/partner-docs/wallets.png) | ![Dashboards](https://www.covalenthq.com/static/images/partner-docs/dashboards.png) | ![On-Chain Forensics](https://www.covalenthq.com/static/images/partner-docs/forensics.png)| ![DAO](https://www.covalenthq.com/static/images/partner-docs/dao.png)|
-| Wallets| Dashboards | On-Chain Forensics | DAO Data |
-| ![Trading](https://www.covalenthq.com/static/images/partner-docs/trading.png) | ![Predictions](https://www.covalenthq.com/static/images/partner-docs/predictions.png) | ![Governance](https://www.covalenthq.com/static/images/partner-docs/governance.png)| ![Pricing](https://www.covalenthq.com/static/images/partner-docs/pricing.png)|
-| DEXs & Trading| Predictive Analytics| Governance | Pricing |
-
-Check out our collection of ready-to-ship [**Code Templates**](https://github.com/covalenthq/web3-templates) you can use immediately to build Web3 data-powered dApps.
-
-## Resources
-
-Here are some additional resources to help you get started with the Covalent API:
-
-- [Aurora Network Details](https://www.covalenthq.com/docs/networks/aurora/?utm_source=aurora&utm_medium=partner-docs)
-- [Covalent API Reference](https://covalenthq.com/docs/api/?utm_source=aurora&utm_medium=partner-docs)
-- [Project Showcase](https://www.covalenthq.com/docs/project-showcase/?utm_source=aurora&utm_medium=partner-docs)
-- [API FAQs](https://www.covalenthq.com/docs/developer/faq/?utm_source=aurora&utm_medium=partner-docs)
-- [Discord Support](https://www.covalenthq.com/discord/?utm_source=aurora&utm_medium=partner-docs)
-
-## About Covalent
-
-Covalent provides the industry-leading Unified API bringing visibility to billions of Web3 data points.
-Developers use Covalent to build exciting multi-chain applications like crypto wallets, NFT galleries, and investor dashboard tools
-utilizing data from most major blockchains. Covalent is trusted by a community of 25,000+ developers and powers data for thousands of
-applications including 0x, Zerion, Rainbow Wallet, Rotki, Bitski and others.
-
-[Website](https://www.covalenthq.com/?utm_source=aurora&utm_medium=partner-docs) |
-[Discord](https://covalenthq.com/discord/?utm_source=aurora&utm_medium=partner-docs) |
-[Telegram](https://t.me/CovalentHQ) |
-[Twitter](https://twitter.com/covalent_hq) |
-[YouTube](https://www.youtube.com/channel/UCGn-T9qPiXAx490Wr6WPbOw/?utm_source=aurora&utm_medium=partner-docs)
diff --git a/docs/integrate/indexers/covalent.mdx b/docs/integrate/indexers/covalent.mdx
new file mode 100644
index 00000000..732bb2af
--- /dev/null
+++ b/docs/integrate/indexers/covalent.mdx
@@ -0,0 +1,12 @@
+---
+title: Covalent
+sidebar_position: 1
+---
+
+## Page moved to the DevPortal - Redirecting..
+
+import Redirect from '@site/src/components/Redirect';
+
+
+
+
diff --git a/docs/integrate/indexers/the-graph.md b/docs/integrate/indexers/the-graph.md
deleted file mode 100644
index f93f4218..00000000
--- a/docs/integrate/indexers/the-graph.md
+++ /dev/null
@@ -1,259 +0,0 @@
----
-title: "The Graph"
-sidebar_position: 1
----
-
-
-## Introduction
-
-[The Graph](https://thegraph.com/) is an indexing service which collects
-Ethereum events and exports them through GraphQL endpoints. It is widely
-used in the Ethereum ecosystem which supports fast and cheap queries for
-DApps.
-
-This tutorial covers the following topics:
-
-- Running a Graph node on Aurora.
-- Creating and deploying a subgraph.
-- Querying events from the subgraph.
-
-## Prerequisites
-
-Before delving into the tutorial, you need to make sure that you have setup
-the following tools on you machine:
-
-- [git](https://git-scm.com/downloads)
-- [Docker](https://docs.docker.com/get-docker/)
-- [Docker-Compose](https://docs.docker.com/compose/install/)
-- [Node 12+](https://nodejs.org/en/download/)
-- [jq](https://stedolan.github.io/jq/download/)
-
-## Running Graph Node
-
-### Clone
-
-Clone the graph node source code
-
-```bash
-git clone https://github.com/graphprotocol/graph-node.git
-cd graph-node
-```
-
-### Configure
-
-In order wire your local graph node with Aurora Testnet RPC, you should change
-the value of `ethereum` section in `docker/docker-compose.yaml` file from
- `mainnet:http://host.docker.internal:8545` to
- `'aurora:https://testnet.aurora.dev'`.
-
-```yaml
-....
- environment:
- postgres_host: postgres
- postgres_user: graph-node
- postgres_pass: let-me-in
- postgres_db: graph-node
- ipfs: 'ipfs:5001'
- ethereum: 'aurora:https://testnet.aurora.dev'
- GRAPH_LOG: info
-...
-```
-
-### Start
-
-The following commands will setup the environment and start the graph indexer.
-The indexing process might take long time to have 100% sync with the chain.
-This has nothing to do with our tutorial but keep this process running in a
-separate terminal.
-
-```bash
-cd graph-node/docker
-./setup.sh
-docker-compose up
-```
-
-## Create a subgraph
-
-Now we are done with starting our graph node, the next step is to create and
-deploy a subgraph. The subgraph defines how the data on Ethereum will be
-indexed and stored on the graph node.
-
-In this tutorial, we are going to use the subgraph example called
-[GravatarRegistry](https://github.com/aurora-is-near/example-subgraph) (a simple
-on-chain Gravatar). The GravatarRegistry contract has two events:
-
-```javascript
-event NewGravatar(uint id, address owner, string displayName, string imageUrl);
-event UpdatedGravatar(uint id, address owner, string displayName, string imageUrl);
-```
-
-The contract was already deployed on Aurora Testnet. The deployed `GravatarRegistry`
-contract address is `0x8773e6832f44b2C17AC78592ffCe407C62d8c36E` and the start
-block number is `74885768`.
-
-### Clone subgraph
-
-Clone subgraph example repo.
-
-```bash
-git clone https://github.com/aurora-is-near/example-subgraph.git
-cd example-subgraph
-```
-
-### Install
-
-```bash
-yarn install
-```
-
-### Configure the Subgraph
-
-Update the `address` and (the `startBlock` optional) in `subgraph.yaml` as follows:
-
-```yaml
- ...
- network: aurora
- source:
- address: '0x8773e6832f44b2C17AC78592ffCe407C62d8c36E'
- abi: Gravity
- startBlock: 74885768
- ...
-```
-
-Also make sure you are pointing into `aurora` as a network.
-
-### Generating types
-
-```bash
-yarn codegen
- Skip migration: Bump mapping apiVersion from 0.0.1 to 0.0.2
- Skip migration: Bump mapping apiVersion from 0.0.2 to 0.0.3
- Skip migration: Bump mapping apiVersion from 0.0.3 to 0.0.4
- Skip migration: Bump mapping apiVersion from 0.0.4 to 0.0.5
- Skip migration: Bump mapping specVersion from 0.0.1 to 0.0.2
-✔ Apply migrations
-⚠ Warnings while loading subgraph from subgraph.yaml: Warnings in subgraph.yaml:
-
- Path: repository
- The repository is still set to https://github.com/graphprotocol/example-subgraph.
- Please replace it with a link to your subgraph source code.
-
- Path: description
- The description is still the one from the example subgraph.
- Please update it to tell users more about your subgraph.
-
-✔ Load subgraph from subgraph.yaml
- Load contract ABI from abis/Gravity.json
-✔ Load contract ABIs
- Generate types for contract ABI: Gravity (abis/Gravity.json)
- Write types to generated/Gravity/Gravity.ts
-✔ Generate types for contract ABIs
-✔ Generate types for data source templates
-✔ Load data source template ABIs
-✔ Generate types for data source template ABIs
-✔ Load GraphQL schema from schema.graphql
- Write types to generated/schema.ts
-✔ Generate types for GraphQL schema
-
-Types generated successfully
-
-✨ Done in 3.38s.
-```
-
-### Mappings
-
-Maps Ethereum event data to the data that has been defined in the
-`schema.graphql`. For example `handleNewGravatar` parses the new event
-parameters, and save them in `gravatar`.
-
-```javascript
-export function handleNewGravatar(event: NewGravatar): void {
- let gravatar = new Gravatar(event.params.id.toHex())
- gravatar.owner = event.params.owner
- gravatar.displayName = event.params.displayName
- gravatar.imageUrl = event.params.imageUrl
- gravatar.save()
-}
-```
-
-## Deploy the Subgraph
-
-First, we need to register the subgraph name on the graph node. To do that
-run `yarn create-local`.
-
-```bash
-$ yarn create-local
-Created subgraph: example
-✨ Done in 2.12s.
-```
-
-Once the subgraph is registered, now you can deploy it by executing the
-following command:
-
-```bash
-$ yarn deploy-local
-✔ Version Label (e.g. v0.0.1) ·
- Skip migration: Bump mapping apiVersion from 0.0.1 to 0.0.2
- Skip migration: Bump mapping apiVersion from 0.0.2 to 0.0.3
- Skip migration: Bump mapping apiVersion from 0.0.3 to 0.0.4
- Skip migration: Bump mapping apiVersion from 0.0.4 to 0.0.5
- Skip migration: Bump mapping specVersion from 0.0.1 to 0.0.2
-✔ Apply migrations
-⚠ Warnings loading subgraph from subgraph.yaml: Warnings in subgraph.yaml:
-
- Path: repository
- The repository is still set to https://github.com/graphprotocol/example-subgraph.
- Please replace it with a link to your subgraph source code.
-
- Path: description
- The description is still the one from the example subgraph.
- Please update it to tell users more about your subgraph.
-
-✔ Load subgraph from subgraph.yaml
- Compile data source: Gravity => build/Gravity/Gravity.wasm
-✔ Compile subgraph
- Copy schema file build/schema.graphql
- Write subgraph file build/Gravity/abis/Gravity.json
- Write subgraph manifest build/subgraph.yaml
-✔ Write compiled subgraph to build/
- Add file to IPFS build/schema.graphql
- .. QmbSFRGGvHM7Cn8YSjDL41diDMxN4LQUDEMqaa5VVc5sC4
- Add file to IPFS build/Gravity/abis/Gravity.json
- .. QmajZTadknSpgsCWRz9fG6bXFHdpVXPMWpx9yMipz3VtMQ
- Add file to IPFS build/Gravity/Gravity.wasm
- .. QmbK8QL1GWmsdTsgFYawvxFCjLEFwBsPjMGWpeRh6yaXEk
-✔ Upload subgraph to IPFS
-
-Build completed: QmUiu7NRW7Lc89rxfacqUViaFLYwftrGUn54segMFgWggu
-
-Deployed to http://127.0.0.1:8000/subgraphs/name/example/graphql
-
-Subgraph endpoints:
-Queries (HTTP): http://127.0.0.1:8000/subgraphs/name/example
-Subscriptions (WS): http://127.0.0.1:8001/subgraphs/name/example
-
-✨ Done in 10.23s.
-```
-
-Now, you should be able to access your subgraph endpoint through `http://127.0.0.1:8000/subgraphs/name/example`.
-
-## Publish Events (optional)
-
-There were already published events starting from block number `74885768`,
-So you can skip this step.
-
-## Query Events
-
-To query events, TheGraph protocol provides a [GraphQL endpoint](http://127.0.0.1:8000/subgraphs/name/example)
-for your local graph node. Go to `http://127.0.0.1:8000/subgraphs/name/example`,
-it automatically will show up a predefined GraphQL query. Run this query to
-get the results as shown below:
-
-![image](https://user-images.githubusercontent.com/5428661/145963887-82f6877b-56c8-47d8-8f62-802fccf575aa.png)
-
-## Summary
-
-In this tutorial, we started a Graph node locally, then we wired our node to Aurora
-Testnet RPC. We also configured a subgraph example and deployed that subgraph
-on our local graph node. Finally the graph node was able to collect and index
-the subgraph example (GravatarRegistry) events from Aurora Testnet.
diff --git a/docs/integrate/indexers/the-graph.mdx b/docs/integrate/indexers/the-graph.mdx
new file mode 100644
index 00000000..8df4f1c3
--- /dev/null
+++ b/docs/integrate/indexers/the-graph.mdx
@@ -0,0 +1,12 @@
+---
+title: The Graph
+sidebar_position: 1
+---
+
+## Page moved to the DevPortal - Redirecting..
+
+import Redirect from '@site/src/components/Redirect';
+
+
+
+
diff --git a/docs/integrate/oracles/_category_.json b/docs/integrate/oracles/_category_.json
deleted file mode 100644
index 92e899d1..00000000
--- a/docs/integrate/oracles/_category_.json
+++ /dev/null
@@ -1,3 +0,0 @@
-{
- "label": "Oracles"
-}
diff --git a/docs/integrate/oracles/dia.md b/docs/integrate/oracles/dia.md
deleted file mode 100644
index aac15a28..00000000
--- a/docs/integrate/oracles/dia.md
+++ /dev/null
@@ -1,9 +0,0 @@
----
-title: DIA Oracle
-sidebar_position: 4
----
-
-DIA (Decentralised Information Asset) is a cross-chain, open-source data and oracle platform for the DeFi ecosystem.
-DIA provides extremely resilient and highly customizable data feeds, that are crowd-verified. DIA’s data sources and methodologies are transparent and publicly accessible for everyone.
-
-[See DIA Documentation](https://github.com/diadata-org/diadata/blob/master/documentation/oracle-documentation/aurora.md) to start building.
diff --git a/docs/integrate/oracles/dia.mdx b/docs/integrate/oracles/dia.mdx
new file mode 100644
index 00000000..2353f69d
--- /dev/null
+++ b/docs/integrate/oracles/dia.mdx
@@ -0,0 +1,12 @@
+---
+title: DIA
+sidebar_position: 1
+---
+
+## Page moved to the DevPortal - Redirecting..
+
+import Redirect from '@site/src/components/Redirect';
+
+
+
+
diff --git a/docs/integrate/oracles/flux-protocol.md b/docs/integrate/oracles/flux-protocol.md
deleted file mode 100644
index 6eec3574..00000000
--- a/docs/integrate/oracles/flux-protocol.md
+++ /dev/null
@@ -1,9 +0,0 @@
----
-title: Flux Protocol
-sidebar_position: 3
----
-
-Flux is the trustless data layer for web3. Flux is a cross-chain oracle that provides smart contracts
-with access to economically secure data feeds on anything.
-
-[See Flux documentation](https://docs.fluxprotocol.org/docs/getting-started-mainnet/first-party-oracles) to get started.
diff --git a/docs/integrate/oracles/flux-protocol.mdx b/docs/integrate/oracles/flux-protocol.mdx
new file mode 100644
index 00000000..4fb0396d
--- /dev/null
+++ b/docs/integrate/oracles/flux-protocol.mdx
@@ -0,0 +1,12 @@
+---
+title: Flux Protocol
+sidebar_position: 1
+---
+
+## Page moved to the DevPortal - Redirecting..
+
+import Redirect from '@site/src/components/Redirect';
+
+
+
+
diff --git a/docs/integrate/oracles/pyth.md b/docs/integrate/oracles/pyth.md
deleted file mode 100644
index e2bcfddb..00000000
--- a/docs/integrate/oracles/pyth.md
+++ /dev/null
@@ -1,12 +0,0 @@
----
-title: Pyth
-sidebar_position: 2
----
-
-Pyth is an oracle that publishes financial market data to multiple blockchains.
-Pyth uses an on-demand price update model that is slightly different from other oracles you may be more familiar with.
-Pyth price updates are streamed off-chain via the Wormhole Network, a cross-chain messaging protocol. These updates are signed such that the Pyth on-chain program can verify their authenticity.
-Updating the on-chain price is a permissionless operation: anyone can submit a valid Wormhole message to the Pyth contract to update the price.
-
-[See Pyth documentation](https://docs.pyth.network/) to get started.
-[Join Pyth Discord](https://discord.gg/invite/PythNetwork) if you have any questions or requests.
diff --git a/docs/integrate/oracles/pyth.mdx b/docs/integrate/oracles/pyth.mdx
new file mode 100644
index 00000000..08e266ba
--- /dev/null
+++ b/docs/integrate/oracles/pyth.mdx
@@ -0,0 +1,12 @@
+---
+title: Pyth
+sidebar_position: 1
+---
+
+## Page moved to the DevPortal - Redirecting..
+
+import Redirect from '@site/src/components/Redirect';
+
+
+
+
diff --git a/docs/integrate/rpc-node-providers/omnia.md b/docs/integrate/rpc-node-providers/omnia.md
deleted file mode 100644
index bef38231..00000000
--- a/docs/integrate/rpc-node-providers/omnia.md
+++ /dev/null
@@ -1,41 +0,0 @@
----
-title: "Omnia Protocol"
-sidebar_position: 1
----
-
-## Introduction
-
-[OMNIA Protocol](https://omniatech.io) is a blockchain infrastructure provider that delivers optimal performance without sacrificing privacy, security, or compliance.
-
-## Privacy and Consumer Protection
-
-Transactions can be tracked even before they are validated and added to the blockchain, compromising privacy in the face of malicious actors who track your behavior.
-OMNIA prevents this by obfuscating your off-chain data, thus safeguarding you against scams, hacks, and front-running attacks.
-
-All the data and metadata remain private to the users. No third party is able to access, analyze or track it.
-OMNIA leverages different technologies and approaches to guarantee the privacy of their users, from front-running protection and private mempools, to obfuscation and random dispatching.
-
-## Sanctions and Crypto Compliance
-
-Global regulations are increasingly scrutinizing blockchain transactions to clamp down on financial crimes such as money laundering, sanctions, hacks, etc.
-OMNIA is the first blockchain infrastructure provider to protect your systems in real-time from illicit activities.
-
-## Secure and Reliable Infrastructure
-
-OMNIA’s availability is guaranteed by thousands of nodes distributed worldwide that provide a decentralized infrastructure.
-The protocol utilizes geolocation-based request routing, a multi-cloud approach, and data integrity checks for maximum performance and resilience.
-
-## Public RPC Endpoints
-
-- Aurora Mainnet: `https://endpoints.omniatech.io/v1/aurora/mainnet/public`
-- Aurora Testnet: `https://endpoints.omniatech.io/v1/aurora/testnet/public`
-
-Easily create your own RPC Endpoints on our [Dapp](https://app.omniatech.io)
-
-[Website](https://omniatech.io) |
-[Discord](https://discord.com/invite/omniaprotocol) |
-[Telegram](https://t.me/Omnia_protocol) |
-[Twitter](https://twitter.com/omnia_protocol) |
-[Medium](https://medium.com/omniaprotocol) |
-[GitHub](https://github.com/omniaprotocol) |
-[YouTube](https://www.youtube.com/@omniaprotocol)
diff --git a/docs/integrate/rpc-node-providers/omnia.mdx b/docs/integrate/rpc-node-providers/omnia.mdx
new file mode 100644
index 00000000..c0376ba8
--- /dev/null
+++ b/docs/integrate/rpc-node-providers/omnia.mdx
@@ -0,0 +1,10 @@
+---
+title: Omnia Protocol
+sidebar_position: 1
+---
+
+## Page has moved to the DevPortal - Redirecting..
+
+import Redirect from '@site/src/components/Redirect';
+
+
\ No newline at end of file
diff --git a/docs/interact/block-explorer.md b/docs/interact/block-explorer.md
deleted file mode 100644
index c798e273..00000000
--- a/docs/interact/block-explorer.md
+++ /dev/null
@@ -1,19 +0,0 @@
----
-title: Block Explorer
-sidebar_position: 2
----
-
-While the Aurora Labs team works on the new Aurora block explorer - whose launch is expected to take place
-in the upcoming months (Q2'2023) — users will in the meantime be able to rely on our Blockscout-based interim
-solution to perform their usual tasks, located at [explorer.aurora.dev](https://explorer.aurora.dev/) for a Mainnet.
-There is an active development to deliver a Testnet instance of it soon.
-
-By using Block Explorer, users and developers can get access to the developer tools and network statistics that provide
-extended insights into Aurora's EVM.
-
-Blockscout is one of the most well-known block explorers for Ethereum, capable of delivering statistics,
-token transfers and lists, smart contract source code verification, and issuing read & write calls directly from the UI.
-
-Users are able to view transactions, addresses, and blocks.
-Developers can get a wide range of charts and statistics related to smart contract execution,
-collator data, specific transfers between tokens, and a list of ERC-20 tokens on Aurora.
diff --git a/docs/interact/block-explorer.mdx b/docs/interact/block-explorer.mdx
new file mode 100644
index 00000000..82aa8475
--- /dev/null
+++ b/docs/interact/block-explorer.mdx
@@ -0,0 +1,12 @@
+---
+title: Block Explorer
+sidebar_position: 1
+---
+
+## Page moved to the DevPortal - Redirecting..
+
+import Redirect from '@site/src/components/Redirect';
+
+
+
+
diff --git a/docs/interact/hardhat.md b/docs/interact/hardhat.md
deleted file mode 100644
index 24d9f07e..00000000
--- a/docs/interact/hardhat.md
+++ /dev/null
@@ -1,248 +0,0 @@
----
-title: Hardhat
-sidebar_position: 6
----
-
-# Getting Started with Hardhat
-
-## Introduction
-
-[Hardhat](https://hardhat.org/) is yet another Ethereum development environment.
-It is known for debugging the Solidity code and the explicit error messages.
-Moreover it has extra nice features such as the interactive JavaScript console
-and the user defined tasks.
-
-The main objective of this tutorial is to show how to deploy and interact with
-the Solidity smart contracts on Aurora using Hardhat. This tutorial assumes that
-you are familiar with `Hardhat` and the ERC-20 tokens. For more details about
-the fungible token standard, please refer to
-the [ERC-20 Standard specification](https://eips.ethereum.org/EIPS/eip-20).
-
-## Installation
-
-This tutorial assumes that you have Node.js 12+ and Yarn. Please refer to
-the [Yarn installation how-to](https://classic.yarnpkg.com/en/docs/install#mac-stable)
-if you don't yet have the yarn command installed locally.
-
-- To install the prerequisite packages, clone the examples repository:
-
-```bash
-git clone https://github.com/aurora-is-near/aurora-examples.git
-cd aurora-examples/hardhat/erc20/
-```
-
-- Add your Aurora Private key (from MetaMask) to __.env__ file and
-then run yarn :
-
-```bash
-echo "AURORA_PRIVATE_KEY=YOUR_AURORA_PRIVATE_KEY_HERE" >> .env
-yarn install
-```
-
-## Deploy ERC-20
-
-The ERC-20 example is about a native Watermelon token 🍉. You can exchange
-them into actual Watermelons 🍉🍉🍉. The total supply is `1000000`, the
-minter is the contract deployer address, and the decimals are `0`
-(One token --> One watermelon).
-
-To deploy the `ERC-20` token contract, use the following command:
-
-```bash
-$ make deploy NETWORK=testnet_aurora
-yarn hardhat run scripts/deploy.js --network testnet_aurora
-yarn run v1.22.10
-Deploying contracts with the account: 0x6A33382de9f73B846878a57500d055B981229ac4
-Account balance: 2210010200000000000
-WatermelonToken deployed to: 0xD7f2A76F5DA173043E6c61a0A18D835809A07766
-✨ Done in 14.96s.
-
-# export the token address
-$ export TOKEN_ADDRESS='YOUR OUTPUT FROM DEPLOY (e.g. 0xD7f2A76F5DA173043E6c61a0A18D835809A07766)'
-```
-
-## Hardhat Tasks
-
-Hardhat tasks take care of parsing the values provided for each parameter.
-It gets the values, performs the type validation and converts them into your desired type.
-
-In this example, we will go through a set of pre-defined Hardhat tasks
-that uses the Hardhat Runtime Environment ([HRE](https://hardhat.org/advanced/hardhat-runtime-environment.html)). In order to complete the tutorial,
-you should use them in the same order:
-
-### ETH Balance
-
-The following Hardhat task uses the `Web3` plugin to get the account’s balance:
-
-```javascript
-task("balance", "Prints an account's balance")
- .addParam("account", "The account's address")
- .setAction(async taskArgs => {
- const account = web3.utils.toChecksumAddress(taskArgs.account);
- const balance = await web3.eth.getBalance(account);
-
- console.log(web3.utils.fromWei(balance, "ether"), "ETH");
- });
-```
-
-To get the `ETH` balance, use the following command:
-
-```bash
-npx hardhat balance --network testnet_aurora --account 0x6A33382de9f73B846878a57500d055B981229ac4
-2.2100102 ETH
-```
-
-You should notice that `--network` is a global built-in option (parameter)
-in Hardhat. We will use it for the following commands as well.
-
-### Total Supply
-
-The following task script gets the total supply of the Watermelon ERC-20 token.
-First it attaches the
-token contract, gets the sender address and finally retrieves the total supply
-by calling `totalSupply()` method in our ERC-20 contract. The `--token`
-address is the ERC-20 contract address.
-
-```javascript
-task("totalSupply", "Total supply of ERC-20 token")
-.addParam("token", "Token address")
-.setAction(async function ({ token }, { ethers: { getSigners } }, runSuper) {
- const watermelonToken = await ethers.getContractFactory("WatermelonToken")
- const watermelon = watermelonToken.attach(token)
- const [minter] = await ethers.getSigners();
- const totalSupply = (await (await watermelon.connect(minter)).totalSupply()).toNumber()
- console.log(`Total Supply is ${totalSupply}`);
-});
-```
-
-To get the `totalSupply`, use the following command:
-
-```bash
-$ npx hardhat totalSupply --token $TOKEN_ADDRESS --network testnet_aurora
-Total Supply is 1000000
-```
-
-### Transfer ERC-20
-
-The `transfer` option allows anyone holding an ERC-20 tokens to transfer
-them to any Ethereum address. In the following script, the minter address
-will mint (implicitly) and transfer `10 WTM` tokens to the `spender` address:
-
-```javascript
-task("transfer", "ERC-20 transfer")
- .addParam("token", "Token address")
- .addParam("spender", "Spender address")
- .addParam("amount", "Token amount")
- .setAction(async function ({ token, spender, amount }, { ethers: { getSigners } }, runSuper) {
- const watermelonToken = await ethers.getContractFactory("WatermelonToken")
- const watermelon = watermelonToken.attach(token)
- const [minter] = await ethers.getSigners();
- await (await watermelon.connect(minter).transfer(spender, amount)).wait()
- console.log(`${minter.address} has transferred ${amount} to ${spender}`);
- });
-```
-
-To call `transfer`, use the following command:
-
-```bash
-$ npx hardhat transfer --token $TOKEN_ADDRESS --amount 10 --spender 0x2531a4D108619a20ACeE88C4354a50e9aC48ecfe --network testnet_aurora
-0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266 has transferred 10 tokens to 0x2531a4D108619a20ACeE88C4354a50e9aC48ecfe
-```
-
-### BalanceOf ERC-20
-
-We can prove that the `spender` has received the exact amount of tokens
-by calling the `balanceOf` as shown below:
-
-```javascript
-task("balanceOf", "Total supply of ERC-20 token")
-.addParam("token", "Token address")
-.addParam("account", "Account address")
-.setAction(async function ({ token, account }, { ethers: { getSigners } }, runSuper) {
- const watermelonToken = await ethers.getContractFactory("WatermelonToken")
- const watermelon = watermelonToken.attach(token)
- const [minter] = await ethers.getSigners();
- const balance = (await (await watermelon.connect(minter)).balanceOf(account)).toNumber()
- console.log(`Account ${account} has a total token balance: ${balance} WTM`);
-});
-```
-
-To get the `balance`, use the following command:
-
-```bash
-$ npx hardhat balanceOf --token $TOKEN_ADDRESS --account 0x6A33382de9f73B846878a57500d055B981229ac4 --network testnet_aurora
-Account 0x6A33382de9f73B846878a57500d055B981229ac4 has a total token balance: 999970 WTM
-```
-
-### Approve ERC-20
-
-In some cases, instead of calling the `transfer` directly, the sender
-can approve a specific amount of tokens to be withdrawn from his account
-to specific recipient address later. This can be done by calling `approve`
-then calling `transferFrom`.
-
-```javascript
-task("approve", "ERC-20 approve")
- .addParam("token", "Token address")
- .addParam("spender", "Spender address")
- .addParam("amount", "Token amount")
- .setAction(async function ({ token, spender, amount }, { ethers: { getSigners } }, runSuper) {
- const watermelonToken = await ethers.getContractFactory("WatermelonToken")
- const watermelon = watermelonToken.attach(token)
- const [sender] = await ethers.getSigners();
- await (await watermelon.connect(sender).approve(spender, amount)).wait()
- console.log(`${sender.address} has approved ${amount} tokens to ${spender}`);
- });
-
-module.exports = {};
-```
-
-To call `approve`, use the following command:
-
-```bash
-npx hardhat approve --token $TOKEN_ADDRESS --spender 0x8722C88e82AbCC639148Ab6128Cd63333B2Ad771 --amount 10 --network testnet_aurora
-0x6A33382de9f73B846878a57500d055B981229ac4 has approved 10 tokens to 0x8722C88e82AbCC639148Ab6128Cd63333B2Ad771
-```
-
-### TransferFrom ERC-20
-
-After approving the tokens, a recipient can call `transferFrom` to move
-the `allowance` to his account.
-
-```javascript
-task("transferFrom", "ERC-20 transferFrom")
- .addParam("token", "Token address")
- .addParam("sender", "Sender address")
- .addParam("amount", "Token amount")
- .setAction(async function ({ token, sender, amount }, { ethers: { getSigners } }, runSuper) {
- const watermelonToken = await ethers.getContractFactory("WatermelonToken")
- const watermelon = watermelonToken.attach(token)
- const [recipient] = await ethers.getSigners()
- console.log(recipient.address);
- await (await watermelon.connect(recipient).transferFrom(sender, recipient.address, amount)).wait()
- console.log(`${recipient.address} has received ${amount} tokens from ${sender}`)
- });
-```
-
-To call `transferFrom`, use the following command:
-
-```bash
-# export the recipient private key
-AURORA_PRIVATE_KEY="THE RECIPIENT PRIVATE KEY" npx hardhat transferFrom --token $TOKEN_ADDRESS --sender 0x6A33382de9f73B846878a57500d055B981229ac4 --amount 10 --network testnet_aurora
-0x8722C88e82AbCC639148Ab6128Cd63333B2Ad771 has received 10 tokens from 0x6A33382de9f73B846878a57500d055B981229ac4
-```
-
-Checking the balance of `0x8722C88e82AbCC639148Ab6128Cd63333B2Ad771`:
-
-```bash
-npx hardhat balanceOf --token $TOKEN_ADDRESS --account 0x8722C88e82AbCC639148Ab6128Cd63333B2Ad771 --network testnet_aurora
-Account 0x8722C88e82AbCC639148Ab6128Cd63333B2Ad771 has a total token balance: 10 WTM
-```
-
-## Conclusion
-
-In this tutorial we deployed an ERC-20 token using Hardhat on the Aurora
-Testnet, transferred, and approved ERC-20 tokens. Moreover, we added other
-utility tasks such as getting the total supply, and the account balance.
-The only difference is we changed the Ethereum Mainnet to the Aurora
-RPC endpoint.
diff --git a/docs/interact/hardhat.mdx b/docs/interact/hardhat.mdx
new file mode 100644
index 00000000..08b54498
--- /dev/null
+++ b/docs/interact/hardhat.mdx
@@ -0,0 +1,12 @@
+---
+title: Hardhat
+sidebar_position: 1
+---
+
+## Page moved to the DevPortal - Redirecting..
+
+import Redirect from '@site/src/components/Redirect';
+
+
+
+
diff --git a/docs/interact/metamask.md b/docs/interact/metamask.md
deleted file mode 100644
index a28c0566..00000000
--- a/docs/interact/metamask.md
+++ /dev/null
@@ -1,162 +0,0 @@
----
-title: MetaMask
-sidebar_position: 1
----
-
-# Getting Started with MetaMask
-
-## Introduction
-
-[MetaMask] is a convenient UI for interacting with Ethereum-compatible blockchains (such as Aurora).
-For the purpose of this guide, we will assume you are already familiar with MetaMask and have it installed.
-If you need help getting started with MetaMask itself, [check out their documentation](https://metamask.io/faqs.html).
-
-In this tutorial we will walk through connecting MetaMask to the Aurora Testnet, deploying a simple ERC-20 contract using [Remix], and transferring the new token using MetaMask.
-
-:::note
-Screenshots in this tutorial are taken from the MetaMask browser extension version 9.5.5.
-:::
-
-## Connecting MetaMask to Aurora
-
-In the top-right corner of the MetaMask interface, click the network selection drop-down and then click `Custom RPC`.
-
-![MetaMask-network-select](/img/metamask_choose_network.png)
-
-Fill in the form with the following information:
-
-* Network Name: Aurora Testnet
-* New RPC URL: `https://testnet.aurora.dev/`
-* Chain ID: 1313161555
-* Currency Symbol: ETH
-
-![MetaMask-create-aurora-rpc](/img/metamask_create_aurora_rpc.png)
-
-:::note
-All the Aurora RPC endpoint URLs and chain IDs can be found on our [Networks](../getting-started/network-endpoints.md) page.
-:::
-
-Click `Save`, and you should see `Aurora Testnet` is now the network selected in MetaMask.
-To see MetaMask in action, we will connect it to [Remix] and perform some transactions.
-
-## Deploying an ERC-20 Token using Remix
-
-In a new tab, open the Remix IDE at [remix.ethereum.org](https://remix.ethereum.org).
-It might take a minute to load, but once it has, create a new file `ERC20Token.sol` in the workspace panel on the left:
-
-![Remix-new-file](/img/remix_new_file.png)
-
-Copy and paste the following code into the central editor panel:
-
-```solidity
-// SPDX-License-Identifier: MIT
-pragma solidity ^0.8.0;
-
-import "https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.0.0/contracts/token/ERC20/ERC20.sol";
-
-contract MyToken is ERC20 {
- constructor (string memory name, string memory symbol) ERC20(name, symbol) {
- // Mint 100 tokens to msg.sender
- // Similar to how
- // 1 dollar = 100 cents
- // 1 token = 1 * (10 ** decimals)
- _mint(msg.sender, 100 * 10 ** uint(decimals()));
- }
-}
-```
-
-This code is a slightly modified (the Solidity compiler and [OpenZeppelin] versions are newer) version of the [example from Solidity by Example].
-
-Click the `Solidity Compile` button on the far left panel (the second icon down);
-ensure your selected Solidity compiler version is 0.8 (minor versions within 0.8, e.g., 0.8.4 work too), and click `Compile ERC20Token.sol`.
-
-![Remix-solidity-compile](/img/remix_solidity_compile.png)
-
-Once the contract is compiled, click the `Deploy & run transactions` button in the far left panel (the icon below the Solidity compiler).
-In the `ENVIRONMENT` drop-down select `Injected Web3`.
-
-![Remix-inject-web3](/img/remix_injected_web3.png)
-
-You will see a MetaMask pop-up window asking you to give the Remix IDE permission to access it.
-Click `Next` and then `Connect` to grant access.
-
-![Remix-connect-MetaMask](/img/remix_connect_with_metamask.png)
-
-Back in the Remix interface, click the arrow next to the `DEPLOY` section of the left panel.
-Fill in the token details with whatever you like (`MyToken` and `MT` in the example), and click `transact`.
-
-![Remix-deploy-contract](/img/remix_deploy_contract.png)
-
-Another MetaMask pop-up will appear asking you to confirm the transaction.
-Click `Confirm`.
-
-![Remix-deploy-contract-MetaMask-confirm](/img/remix_deploy_contract_metamask_confirm.png)
-
-:::note
-Transaction cost ~$0.02
-:::
-
-After a few moments the transaction will be confirmed by the network.
-You will see a success message in the bottom panel and the contract listed under `Deployed Contracts` on the left panel.
-Click the copy button to copy the address of the newly deployed contract.
-
-![Remix-deploy-contract-confirmed](/img/remix_deploy_contract_confirmed.png)
-
-Now that the contract is deployed on the Aurora network, we can interact with it via MetaMask.
-
-## Adding an ERC-20 Token to MetaMask
-
-In the MetaMask interface (with the Aurora Testnet network still selected), click the `Add Token` button:
-
-![MetaMask-add-token-button](/img/metamask_add_token_button.png)
-
-Paste the token address copied from Remix in the previous step.
-The remaining token details should fill in automatically as MetaMask finds the contract on-chain.
-Click `Next`:
-
-![MetaMask-add-token](/img/metamask_add_token.png)
-
-On the next screen you see the balance (100 tokens), as minted in our contract constructor.
-Click `Add Tokens`:
-
-![MetaMask-add-token-confirm](/img/metamask_add_token_confirm.png)
-
-The token has now been added to MetaMask and we can use the MetaMask interface to view the token balance and to transfer the token to others.
-
-## Transferring an ERC-20 Token with MetaMask
-
-Continuing from the previous step, click the `Send` button in the MetaMask interface:
-
-![MetaMask-my-token](/img/metamask_my_token.png)
-
-Select a recipient (if you have multiple accounts in MetaMask you can simply select another account), and an amount of tokens to send.
-Click `Next`:
-
-![MetaMask-send-my-token](/img/metamask_send_my_token.png)
-
-:::note
-Once again the gas price should be set to zero, but this will change going forward.
-:::
-
-Click `Confirm` to send the transaction to the network:
-
-![MetaMask-send-my-token-confirm](/img/metamask_send_my_token_confirm.png)
-
-After a few moments the transaction will be confirmed by the network.
-You can see the updated balance your account holds in the MetaMask interface:
-
-![MetaMask-my-token-sent-account1](/img/metamask_my_token_sent_account1.png)
-
-If you transferred to another MetaMask account you hold then you can follow the aforementioned instructions for adding the token to MetaMask on the other account, and view its balance also.
-
-![MetaMask-add-token-account2](/img/metamask_add_token_account2.png)
-
-## Summary
-
-In this tutorial we connected MetaMask to the Aurora Testnet, deployed an ERC-20 token contract using Remix, and transferred that token using MetaMask.
-The only difference to doing this on the original Ethereum network was setting the RPC endpoint to be Aurora's.
-
-[MetaMask]: https://metamask.io
-[Remix]: https://remix.ethereum.org
-[OpenZeppelin]: https://openzeppelin.com/contracts/
-[example from Solidity by Example]: https://solidity-by-example.org/app/erc20/
diff --git a/docs/interact/metamask.mdx b/docs/interact/metamask.mdx
new file mode 100644
index 00000000..bfbe3b09
--- /dev/null
+++ b/docs/interact/metamask.mdx
@@ -0,0 +1,12 @@
+---
+title: Metamask
+sidebar_position: 1
+---
+
+## Page moved to the DevPortal - Redirecting..
+
+import Redirect from '@site/src/components/Redirect';
+
+
+
+
diff --git a/docs/interact/truffle.md b/docs/interact/truffle.md
deleted file mode 100644
index 055aeac1..00000000
--- a/docs/interact/truffle.md
+++ /dev/null
@@ -1,225 +0,0 @@
----
-title: Truffle
-sidebar_position: 5
----
-
-# Deploying a Contract Using Truffle
-
-## Introduction
-
-[Truffle](https://www.trufflesuite.com/) is a widely used development
-environment and testing framework for Ethereum smart contracts. In this
-tutorial, we will show by example how to use Truffle with the Aurora Testnet.
-
-This tutorial assumes that you are familiar with Truffle and the non-fungible
-tokens (NFT) concept. For more details about the non-fungible token standard,
-please refer to the [ERC-721 Non-Fungible Token
-Standard](https://ethereum.org/en/developers/docs/standards/tokens/erc-721/)
-specification.
-
-## NFT Example
-
-This example is originally forked from the [OpenZeppelin
-examples](https://docs.openzeppelin.com/contracts/4.x/erc721). However, the code
-has been changed to fit the use case of this tutorial. The use case is about how
-to deploy and manage the life cycle of a simple COVID-19 vaccine NFT token 💊💊
-using Truffle on the Aurora Testnet.
-
-![Truffle NFT example](/img/truffle_nft_example.png)
-
-1. The minter address (which is managed by the vaccination program manager) can
-distribute (mint) the vaccine tickets (NFT tokens 💊💊💊) to the people who are
-part of the vaccination program.
-
-2. When participants receive the tokens 💊, they can get access to the vaccine
-by spending the NFT token.
-
-3. This means either burning the NFT token or sending it back to the minter
-address.
-
-4. If the participant chooses to send it back then the minter can redistribute
-that token 🎫 to another participant in the line.
-
-5. Then the new participant will have access to the same vaccine token that has
-been used by the previous participant.
-
-## Installing Prerequisites
-
-This tutorial assumes that you have Node.js 12+ and Yarn. Please refer to the
-[Yarn installation how-to](https://classic.yarnpkg.com/en/docs/install) if you
-don't yet have the `yarn` command installed locally.
-
-To install the prerequisite packages, clone the examples repository and then run
-`yarn`:
-
-### Install Truffle
-
-```bash
-npm install -g truffle
-```
-
-### Install dependencies
-
-```bash
-git clone https://github.com/aurora-is-near/aurora-examples.git
-
-cd aurora-examples/truffle/erc721-example/
-
-yarn
-```
-
-## Connecting Truffle to Aurora
-
-Export your `MNEMONIC` as follows:
-
-```bash
-export MNEMONIC='YOUR MNEMONIC HERE'
-```
-
-Now in `truffle-config.js`, you will need to change the `from` address as shown
-below in the `aurora` network section:
-
-```json
-...
-aurora: {
- provider: () => setupWallet('https://testnet.aurora.dev'),
- network_id: 0x4e454153,
- gas: 10000000,
- from: '0x6A33382de9f73B846878a57500d055B981229ac4' // CHANGE THIS ADDRESS
-},
-```
-
-The `truffle-config.js` configuration will pick up your `MNEMONIC` environment
-variable and recover the address that will be used for sending and signing
-transactions on the Aurora network.
-
-## Deploying the Contract
-
-To deploy the `CovidVaccineToken` contract, you can run the `yarn` command as
-follows:
-
-```bash
-yarn deploy:aurora
-....
-_deploy_contracts.js
-=====================
-
- Deploying 'CovidVaccineToken'
- -----------------------------
- > transaction hash: 0x282012c791d65d0ce2fd1fd9fcc41179dba5bd06c3b02e31e53dbe9cc8af62c1
- > Blocks: 7 Seconds: 5
- > contract address: 0x3635D999d8CdA2fAf304b390fb26a9c2f364dFbd
- > block number: 49151611
- > block timestamp: 1622034185
- > account: 0x6A33382de9f73B846878a57500d055B981229ac4
- > balance: 0
- > gas used: 2576274 (0x274f92)
- > gas price: 20 gwei
- > value sent: 0 ETH
- > total cost: 0.05152548 ETH
-....
-```
-
-## Playing with the Truffle Console
-
-Now you can test the flow as mentioned in the [NFT Example](#nft-example)
-section:
-
-### Mint tokens
-
-The minter mints and transfers NFT tokens for the vaccine program participant.
-In this example, the new participant address is
-`accounts[1]` and the minter address is `accounts[0]`.
-
-Please make sure that you are using the same deployer address as a minter
-address, otherwise the `mint` transaction will revert.
-
-```bash
-% truffle console --network aurora
-truffle(aurora)> const cvt = await CovidVaccineToken.deployed()
-truffle(aurora)> const minter = accounts[0]
-truffle(aurora)> const participant = accounts[1]
-truffle(aurora)> await cvt.minter() == minter
-true
-truffle(aurora)> await cvt.mint(participant, {from: minter})
-```
-
-You should notice that none of the participants are allowed to transfer their
-NFT tokens to anyone except back to the minter.
-
-So let's try to use any participant address to validate this. To do that, change
-the value of `from` to `accounts[1]`, so that the sender will be the first
-participant (e.g., the participant address
-`0x2531a4D108619a20ACeE88C4354a50e9aC48ecfe`).
-
-In the Truffle console:
-
-```bash
-truffle(aurora)> await cvt.safeTransferFrom(participant, accounts[2], 1, {from: participant})
-Uncaught Error: execution reverted:
-...
-reason: 'Invalid Transfer',
- hijackedStack: 'Error: execution reverted:\n'
-```
-
-This is exactly the same error message we have in our NFT contract in
-`safeTransferFrom`:
-
-```solidity
-function safeTransferFrom(
- address from,
- address to,
- uint256 tokenId
-)
- public
- virtual
- override
- {
- require(
- minter == msg.sender || to == minter,
- 'Invalid Transfer'
- );
- safeTransferFrom(from, to, tokenId, "");
- }
-```
-
-### Transfer tokens
-
-Participants can transfer the token to the minter after receiving the vaccine.
-As shown below, a participant can only send the NFT token if the receiver for
-this token is the minter (`accounts[0]`).
-
-```bash
-truffle(aurora)> const tokenID = 1
-truffle(aurora)> await cvt.ownerOf(tokenID) == participant
-true
-truffle(aurora)> await cvt.safeTransferFrom(participant, minter, tokenID, {from: participant})
-truffle(aurora)> await cvt.ownerOf(tokenID) == minter
-true
-```
-
-### Burn tokens
-
-This is an alternative scenario for the NFT token lifecycle. Instead of
-transferring the token back to the minter, the participant can decide to burn the
-NFT token by calling the `burn` function:
-
-```bash
-truffle(aurora)> await cvt.burn(1, {from: participant}) // 1 is the tokenID
-```
-
-### Redistribute tokens
-
-Finally, the minter can send the same token (if not burnt) to a new participant
-in the line:
-
-```bash
-truffle(aurora)> await cvt.safeTransferFrom(minter, accounts[2], 1, {from: minter})
-truffle(aurora)> await cvt.ownerOf(1) == accounts[2]
-true
-```
-
-## Summary
-
-In this simple tutorial, we deployed an NFT contract to the Aurora Testnet using
-Truffle and interacted with the contract's functions.
diff --git a/docs/interact/truffle.mdx b/docs/interact/truffle.mdx
new file mode 100644
index 00000000..df30ae08
--- /dev/null
+++ b/docs/interact/truffle.mdx
@@ -0,0 +1,10 @@
+---
+title: Truffle
+sidebar_position: 1
+---
+
+import Redirect from '@site/src/components/Redirect';
+
+
+
+
diff --git a/docs/interact/verify-contract.mdx b/docs/interact/verify-contract.mdx
deleted file mode 100644
index 3f5ae990..00000000
--- a/docs/interact/verify-contract.mdx
+++ /dev/null
@@ -1,52 +0,0 @@
----
-title: Verify a contract
-sidebar_position: 7
----
-
-## BlockScout Explorer
-
-import ThemedImage from '@theme/ThemedImage';
-import useBaseUrl from '@docusaurus/useBaseUrl';
-
-### Verification through flattened source code
-
-[Example](https://explorer.mainnet.aurora.dev/address/0x9c821E39610376E755D903AEBfB0c5713A651622/verify-via-flattened-code/new)
-
-
-
-### Verification using Standard input JSON file
-
-[Example](https://explorer.mainnet.aurora.dev/address/0x9c821E39610376E755D903AEBfB0c5713A651622/verify-via-standard-json-input/new)
-
-[Compiler Input JSON Description](https://docs.soliditylang.org/en/latest/using-the-compiler.html#input-description)
-
-
-
-### Verification of Vyper contract
-
-[Example](https://explorer.mainnet.aurora.dev/address/0x9c821E39610376E755D903AEBfB0c5713A651622/contract_verifications/new)
-
-
-
-### Verification through Sourcify
-
-- if smart-contract is already verified on [Sourcify](https://sourcify.dev/), it will automatically fetch the data from the [repo](https://repo.sourcify.dev/select-contract/);
-- otherwise, you will be asked to upload source files and JSON metadata file(s).
diff --git a/docs/public-apis/other-api-support.md b/docs/public-apis.md
similarity index 92%
rename from docs/public-apis/other-api-support.md
rename to docs/public-apis.md
index 51d47000..45785e3a 100644
--- a/docs/public-apis/other-api-support.md
+++ b/docs/public-apis.md
@@ -1,6 +1,6 @@
---
-title: Other API supports
-sidebar_position: 2
+title: Other APIs support
+sidebar_position: 1
---
In the effort to support more community APIs some projects are underway to support these APIs
diff --git a/docs/tools/black-ide.md b/docs/tools/black-ide.md
deleted file mode 100644
index 2d7b2be7..00000000
--- a/docs/tools/black-ide.md
+++ /dev/null
@@ -1,14 +0,0 @@
----
-title: Black IDE
----
-
-Black IDE is a multi-platform graphic IDE for smart contract development on Aurora, Ethereum and EVM-compatible blockchains.
-It is one of the most powerful solidity IDE on the market
-that has integrated some most popular toolkits in the Ethereum world, including Truffle, Hardhat, Waffle, Geth, web3.js/ethers.js, Etherscan API, and MetaMask.
-Together with our self-built Keypair Manager and Contract Inspector,
-Black IDE covers almost every step in the solidity smart contract development flow and runs on all major OS like Windows, macOS, Linux, and modern web browsers as well.
-With built-in connections to Aurora mainnet and testnet, developers can now easily deploy smart contract projects to Aurora directly from Black IDE.
-
-[Black IDE Web](https://eth.ide.black)
-
-[Black IDE Code Repo & Desktop](https://github.com/ObsidianLabs/Black-IDE)
diff --git a/docs/tools/verify-contract.mdx b/docs/tools/verify-contract.mdx
new file mode 100644
index 00000000..935e31a8
--- /dev/null
+++ b/docs/tools/verify-contract.mdx
@@ -0,0 +1,10 @@
+---
+title: Verify Contract
+sidebar_position: 1
+---
+
+## Page moved to the DevPortal - Redirecting..
+
+import Redirect from '@site/src/components/Redirect';
+
+
\ No newline at end of file
diff --git a/package.json b/package.json
index 015fbaad..3169f445 100644
--- a/package.json
+++ b/package.json
@@ -15,10 +15,10 @@
},
"dependencies": {
"@algolia/client-search": "^4.15.0",
- "@docusaurus/core": "2.3.1",
- "@docusaurus/plugin-client-redirects": "2.3.1",
- "@docusaurus/preset-classic": "2.3.1",
- "@docusaurus/theme-common": "2.3.1",
+ "@docusaurus/core": "2.4.0",
+ "@docusaurus/plugin-client-redirects": "2.4.0",
+ "@docusaurus/preset-classic": "2.4.0",
+ "@docusaurus/theme-common": "2.4.0",
"@fortawesome/fontawesome-svg-core": "^6.3.0",
"@fortawesome/free-brands-svg-icons": "^6.3.0",
"@fortawesome/react-fontawesome": "^0.2.0",
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index 9a05a69b..e1d8dfdd 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -1,56 +1,73 @@
-lockfileVersion: 5.4
-
-specifiers:
- '@algolia/client-search': ^4.15.0
- '@docusaurus/core': 2.3.1
- '@docusaurus/plugin-client-redirects': 2.3.1
- '@docusaurus/preset-classic': 2.3.1
- '@docusaurus/theme-common': 2.3.1
- '@fortawesome/fontawesome-svg-core': ^6.3.0
- '@fortawesome/free-brands-svg-icons': ^6.3.0
- '@fortawesome/react-fontawesome': ^0.2.0
- '@mdx-js/react': ^1.6.21
- '@types/react': ^17.0.45
- clsx: ^1.2.1
- docusaurus-plugin-sass: ^0.2.3
- prism-react-renderer: ^1.3.5
- react: ^17.0.1
- react-dom: ^17.0.1
- sass: ^1.59.3
- sass-loader: ^13.2.1
- typescript: ^5.0.2
- webpack: ^5.76.3
+lockfileVersion: '6.0'
dependencies:
- '@algolia/client-search': 4.15.0
- '@docusaurus/core': 2.3.1_icpz55ch5zovp2aqeb3azvztt4
- '@docusaurus/plugin-client-redirects': 2.3.1_icpz55ch5zovp2aqeb3azvztt4
- '@docusaurus/preset-classic': 2.3.1_pevf2x5qm5pm4aa7mpz72vvxge
- '@docusaurus/theme-common': 2.3.1_icpz55ch5zovp2aqeb3azvztt4
- '@fortawesome/fontawesome-svg-core': 6.3.0
- '@fortawesome/free-brands-svg-icons': 6.3.0
- '@fortawesome/react-fontawesome': 0.2.0_wxf7upq5ukhivvyfqw3zxxlt4u
- '@mdx-js/react': 1.6.22_react@17.0.2
- '@types/react': 17.0.48
- clsx: 1.2.1
- docusaurus-plugin-sass: 0.2.3_7pmn55ks6lkiapwwmc5sfohrmq
- prism-react-renderer: 1.3.5_react@17.0.2
- react: 17.0.2
- react-dom: 17.0.2_react@17.0.2
- sass: 1.59.3
- sass-loader: 13.2.1_sass@1.59.3+webpack@5.76.3
- typescript: 5.0.2
- webpack: 5.76.3
+ '@algolia/client-search':
+ specifier: ^4.15.0
+ version: 4.15.0
+ '@docusaurus/core':
+ specifier: 2.4.0
+ version: 2.4.0(@docusaurus/types@2.4.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.0.2)
+ '@docusaurus/plugin-client-redirects':
+ specifier: 2.4.0
+ version: 2.4.0(react-dom@17.0.2)(react@17.0.2)(typescript@5.0.2)
+ '@docusaurus/preset-classic':
+ specifier: 2.4.0
+ version: 2.4.0(@algolia/client-search@4.15.0)(@types/react@17.0.48)(react-dom@17.0.2)(react@17.0.2)(typescript@5.0.2)
+ '@docusaurus/theme-common':
+ specifier: 2.4.0
+ version: 2.4.0(@docusaurus/types@2.4.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.0.2)
+ '@fortawesome/fontawesome-svg-core':
+ specifier: ^6.3.0
+ version: 6.3.0
+ '@fortawesome/free-brands-svg-icons':
+ specifier: ^6.3.0
+ version: 6.3.0
+ '@fortawesome/react-fontawesome':
+ specifier: ^0.2.0
+ version: 0.2.0(@fortawesome/fontawesome-svg-core@6.3.0)(react@17.0.2)
+ '@mdx-js/react':
+ specifier: ^1.6.21
+ version: 1.6.22(react@17.0.2)
+ '@types/react':
+ specifier: ^17.0.45
+ version: 17.0.48
+ clsx:
+ specifier: ^1.2.1
+ version: 1.2.1
+ docusaurus-plugin-sass:
+ specifier: ^0.2.3
+ version: 0.2.3(@docusaurus/core@2.4.0)(sass@1.59.3)(webpack@5.76.3)
+ prism-react-renderer:
+ specifier: ^1.3.5
+ version: 1.3.5(react@17.0.2)
+ react:
+ specifier: ^17.0.1
+ version: 17.0.2
+ react-dom:
+ specifier: ^17.0.1
+ version: 17.0.2(react@17.0.2)
+ sass:
+ specifier: ^1.59.3
+ version: 1.59.3
+ sass-loader:
+ specifier: ^13.2.1
+ version: 13.2.1(sass@1.59.3)(webpack@5.76.3)
+ typescript:
+ specifier: ^5.0.2
+ version: 5.0.2
+ webpack:
+ specifier: ^5.76.3
+ version: 5.76.3
packages:
- /@algolia/autocomplete-core/1.7.4:
+ /@algolia/autocomplete-core@1.7.4:
resolution: {integrity: sha512-daoLpQ3ps/VTMRZDEBfU8ixXd+amZcNJ4QSP3IERGyzqnL5Ch8uSRFt/4G8pUvW9c3o6GA4vtVv4I4lmnkdXyg==}
dependencies:
'@algolia/autocomplete-shared': 1.7.4
dev: false
- /@algolia/autocomplete-preset-algolia/1.7.4_54vqn5ucj5r6a67cmv5tg3mbje:
+ /@algolia/autocomplete-preset-algolia@1.7.4(@algolia/client-search@4.15.0)(algoliasearch@4.15.0):
resolution: {integrity: sha512-s37hrvLEIfcmKY8VU9LsAXgm2yfmkdHT3DnA3SgHaY93yjZ2qL57wzb5QweVkYuEBZkT2PIREvRoLXC2sxTbpQ==}
peerDependencies:
'@algolia/client-search': '>= 4.9.1 < 6'
@@ -61,27 +78,27 @@ packages:
algoliasearch: 4.15.0
dev: false
- /@algolia/autocomplete-shared/1.7.4:
+ /@algolia/autocomplete-shared@1.7.4:
resolution: {integrity: sha512-2VGCk7I9tA9Ge73Km99+Qg87w0wzW4tgUruvWAn/gfey1ZXgmxZtyIRBebk35R1O8TbK77wujVtCnpsGpRy1kg==}
dev: false
- /@algolia/cache-browser-local-storage/4.15.0:
+ /@algolia/cache-browser-local-storage@4.15.0:
resolution: {integrity: sha512-uxxFhTWh4JJDb2+FFSmNMfEQ8p9o2vjSpU7iW007QX3OvqljPPN68lk3bpZVaG8pwr5MU1DqpkZ71FcQdVTjgQ==}
dependencies:
'@algolia/cache-common': 4.15.0
dev: false
- /@algolia/cache-common/4.15.0:
+ /@algolia/cache-common@4.15.0:
resolution: {integrity: sha512-Me3PbI4QurAM+3D+htIE0l1xt6+bl/18SG6Wc7bPQEZAtN7DTGz22HqhKNyLF2lR/cOfpaH7umXZlZEhIHf7gQ==}
dev: false
- /@algolia/cache-in-memory/4.15.0:
+ /@algolia/cache-in-memory@4.15.0:
resolution: {integrity: sha512-B9mg1wd7CKMfpkbiTQ8KlcKkH6ut/goVaI6XmDCUczOOqeuZlV34tuEi7o3Xo1j66KWr/d9pMjjGYcoVPCVeOA==}
dependencies:
'@algolia/cache-common': 4.15.0
dev: false
- /@algolia/client-account/4.15.0:
+ /@algolia/client-account@4.15.0:
resolution: {integrity: sha512-8wqI33HRZy5ydfFt6F5vMhtkOiAUhVfSCYXx4U3Go5RALqWLgVUp6wzOo0mr1z08POCkHDpbQMQvyayb1CZ/kw==}
dependencies:
'@algolia/client-common': 4.15.0
@@ -89,7 +106,7 @@ packages:
'@algolia/transporter': 4.15.0
dev: false
- /@algolia/client-analytics/4.15.0:
+ /@algolia/client-analytics@4.15.0:
resolution: {integrity: sha512-jrPjEeNEIIQKeA1XCZXx3f3aybtwF7wjYlnfHbLARuZ9AuHzimOKjX0ZwqvMmvTsHivpcZ2rqY+j1E8HoH1ELA==}
dependencies:
'@algolia/client-common': 4.15.0
@@ -98,14 +115,14 @@ packages:
'@algolia/transporter': 4.15.0
dev: false
- /@algolia/client-common/4.15.0:
+ /@algolia/client-common@4.15.0:
resolution: {integrity: sha512-PlsJMObZuYw4JlG5EhYv1PHDOv7n5mD5PzqFyoNfSOYaEPRZepa3W579ya29yOu3FZ0VGMNJmB7Q5v/+/fwvIw==}
dependencies:
'@algolia/requester-common': 4.15.0
'@algolia/transporter': 4.15.0
dev: false
- /@algolia/client-personalization/4.15.0:
+ /@algolia/client-personalization@4.15.0:
resolution: {integrity: sha512-Bf0bhRAiNL9LWurzyHRH8UBi4fDt3VbCNkInxVngKQT1uCZWXecwoPWGhcSSpdanBqFJA/1WBt+BWx7a50Bhlg==}
dependencies:
'@algolia/client-common': 4.15.0
@@ -113,7 +130,7 @@ packages:
'@algolia/transporter': 4.15.0
dev: false
- /@algolia/client-search/4.15.0:
+ /@algolia/client-search@4.15.0:
resolution: {integrity: sha512-dTwZD4u53WdmexnMcoO2Qd/+YCP3ESXKOtD2MryQ1a9dHwB2Y3Qob0kyS1PG82idwM3enbznvscI9Sf4o9PUWQ==}
dependencies:
'@algolia/client-common': 4.15.0
@@ -121,37 +138,37 @@ packages:
'@algolia/transporter': 4.15.0
dev: false
- /@algolia/events/4.0.1:
+ /@algolia/events@4.0.1:
resolution: {integrity: sha512-FQzvOCgoFXAbf5Y6mYozw2aj5KCJoA3m4heImceldzPSMbdyS4atVjJzXKMsfX3wnZTFYwkkt8/z8UesLHlSBQ==}
dev: false
- /@algolia/logger-common/4.15.0:
+ /@algolia/logger-common@4.15.0:
resolution: {integrity: sha512-D8OFwn/HpvQz66goIcjxOKsYBMuxiruxJ3cA/bnc0EiDvSA2P2z6bNQWgS5gbstuTZIJmbhr+53NyOxFkmMNAA==}
dev: false
- /@algolia/logger-console/4.15.0:
+ /@algolia/logger-console@4.15.0:
resolution: {integrity: sha512-pQOvVaRSEJQJRXKTnxEA6nN1hipSQadJJ4einw0nIlfMOGZh/kps1ybh8vRUlUGyfEuN/3dyFs0W3Ac7hIItlg==}
dependencies:
'@algolia/logger-common': 4.15.0
dev: false
- /@algolia/requester-browser-xhr/4.15.0:
+ /@algolia/requester-browser-xhr@4.15.0:
resolution: {integrity: sha512-va186EfALF+6msYZXaoBSxcnFCg3SoWJ+uv1yMyhQRJRe7cZSHWSVT3s40vmar90gxlBu80KMVwVlsvJhJv6ew==}
dependencies:
'@algolia/requester-common': 4.15.0
dev: false
- /@algolia/requester-common/4.15.0:
+ /@algolia/requester-common@4.15.0:
resolution: {integrity: sha512-w0UUzxElbo4hrKg4QP/jiXDNbIJuAthxdlkos9nS8KAPK2XI3R9BlUjLz/ZVs4F9TDGI0mhjrNHhZ12KXcoyhg==}
dev: false
- /@algolia/requester-node-http/4.15.0:
+ /@algolia/requester-node-http@4.15.0:
resolution: {integrity: sha512-eeEOhFtgwKcgAlKAZpgBRZJ0ILSEBCXxZ9uwfVWPD24W1b6z08gVoTJ6J7lCeCnJmudg+tMElDnGzHkjup9CJA==}
dependencies:
'@algolia/requester-common': 4.15.0
dev: false
- /@algolia/transporter/4.15.0:
+ /@algolia/transporter@4.15.0:
resolution: {integrity: sha512-JoWR+ixG3EmA0UPntQFN/FV5TasYcYu93d5+oKzHFeZ6Z7rtW5Im9iy/Oh/ggk1AAN5fTdqKewtbBpdaYDbKsQ==}
dependencies:
'@algolia/cache-common': 4.15.0
@@ -159,7 +176,7 @@ packages:
'@algolia/requester-common': 4.15.0
dev: false
- /@ampproject/remapping/2.2.0:
+ /@ampproject/remapping@2.2.0:
resolution: {integrity: sha512-qRmjj8nj9qmLTQXXmaR1cck3UXSRMPrbsLJAasZpF+t3riI71BXed5ebIOYwQntykeZuhjsdweEc9BxH5Jc26w==}
engines: {node: '>=6.0.0'}
dependencies:
@@ -167,19 +184,19 @@ packages:
'@jridgewell/trace-mapping': 0.3.17
dev: false
- /@babel/code-frame/7.18.6:
+ /@babel/code-frame@7.18.6:
resolution: {integrity: sha512-TDCmlK5eOvH+eH7cdAFlNXeVJqWIQ7gW9tY1GJIpUtFb6CmjVyq2VM3u71bOyR8CRihcCgMUYoDNyLXao3+70Q==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/highlight': 7.18.6
dev: false
- /@babel/compat-data/7.21.0:
+ /@babel/compat-data@7.21.0:
resolution: {integrity: sha512-gMuZsmsgxk/ENC3O/fRw5QY8A9/uxQbbCEypnLIiYYc/qVJtEV7ouxC3EllIIwNzMqAQee5tanFabWsUOutS7g==}
engines: {node: '>=6.9.0'}
dev: false
- /@babel/core/7.12.9:
+ /@babel/core@7.12.9:
resolution: {integrity: sha512-gTXYh3M5wb7FRXQy+FErKFAv90BnlOuNn1QkCK2lREoPAjrQCO49+HVSrFoe5uakFAF5eenS75KbO2vQiLrTMQ==}
engines: {node: '>=6.9.0'}
dependencies:
@@ -203,14 +220,14 @@ packages:
- supports-color
dev: false
- /@babel/core/7.21.3:
+ /@babel/core@7.21.3:
resolution: {integrity: sha512-qIJONzoa/qiHghnm0l1n4i/6IIziDpzqc36FBs4pzMhDUraHqponwJLiAKm1hGLP3OSB/TVNz6rMwVGpwxxySw==}
engines: {node: '>=6.9.0'}
dependencies:
'@ampproject/remapping': 2.2.0
'@babel/code-frame': 7.18.6
'@babel/generator': 7.21.3
- '@babel/helper-compilation-targets': 7.20.7_@babel+core@7.21.3
+ '@babel/helper-compilation-targets': 7.20.7(@babel/core@7.21.3)
'@babel/helper-module-transforms': 7.21.2
'@babel/helpers': 7.21.0
'@babel/parser': 7.21.3
@@ -226,7 +243,7 @@ packages:
- supports-color
dev: false
- /@babel/generator/7.21.3:
+ /@babel/generator@7.21.3:
resolution: {integrity: sha512-QS3iR1GYC/YGUnW7IdggFeN5c1poPUurnGttOV/bZgPGV+izC/D8HnD6DLwod0fsatNyVn1G3EVWMYIF0nHbeA==}
engines: {node: '>=6.9.0'}
dependencies:
@@ -236,14 +253,14 @@ packages:
jsesc: 2.5.2
dev: false
- /@babel/helper-annotate-as-pure/7.18.6:
+ /@babel/helper-annotate-as-pure@7.18.6:
resolution: {integrity: sha512-duORpUiYrEpzKIop6iNbjnwKLAKnJ47csTyRACyEmWj0QdUrm5aqNJGHSSEQSUAvNW0ojX0dOmK9dZduvkfeXA==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': 7.21.3
dev: false
- /@babel/helper-builder-binary-assignment-operator-visitor/7.18.9:
+ /@babel/helper-builder-binary-assignment-operator-visitor@7.18.9:
resolution: {integrity: sha512-yFQ0YCHoIqarl8BCRwBL8ulYUaZpz3bNsA7oFepAzee+8/+ImtADXNOmO5vJvsPff3qi+hvpkY/NYBTrBQgdNw==}
engines: {node: '>=6.9.0'}
dependencies:
@@ -251,7 +268,7 @@ packages:
'@babel/types': 7.21.3
dev: false
- /@babel/helper-compilation-targets/7.20.7_@babel+core@7.21.3:
+ /@babel/helper-compilation-targets@7.20.7(@babel/core@7.21.3):
resolution: {integrity: sha512-4tGORmfQcrc+bvrjb5y3dG9Mx1IOZjsHqQVUz7XCNHO+iTmqxWnVg3KRygjGmpRLJGdQSKuvFinbIb0CnZwHAQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -265,7 +282,7 @@ packages:
semver: 6.3.0
dev: false
- /@babel/helper-create-class-features-plugin/7.21.0_@babel+core@7.21.3:
+ /@babel/helper-create-class-features-plugin@7.21.0(@babel/core@7.21.3):
resolution: {integrity: sha512-Q8wNiMIdwsv5la5SPxNYzzkPnjgC0Sy0i7jLkVOCdllu/xcVNkr3TeZzbHBJrj+XXRqzX5uCyCoV9eu6xUG7KQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -284,7 +301,7 @@ packages:
- supports-color
dev: false
- /@babel/helper-create-regexp-features-plugin/7.21.0_@babel+core@7.21.3:
+ /@babel/helper-create-regexp-features-plugin@7.21.0(@babel/core@7.21.3):
resolution: {integrity: sha512-N+LaFW/auRSWdx7SHD/HiARwXQju1vXTW4fKr4u5SgBUTm51OKEjKgj+cs00ggW3kEvNqwErnlwuq7Y3xBe4eg==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -295,13 +312,13 @@ packages:
regexpu-core: 5.3.2
dev: false
- /@babel/helper-define-polyfill-provider/0.3.3_@babel+core@7.21.3:
+ /@babel/helper-define-polyfill-provider@0.3.3(@babel/core@7.21.3):
resolution: {integrity: sha512-z5aQKU4IzbqCC1XH0nAqfsFLMVSo22SBKUc0BxGrLkolTdPTructy0ToNnlO2zA4j9Q/7pjMZf0DSY+DSTYzww==}
peerDependencies:
'@babel/core': ^7.4.0-0
dependencies:
'@babel/core': 7.21.3
- '@babel/helper-compilation-targets': 7.20.7_@babel+core@7.21.3
+ '@babel/helper-compilation-targets': 7.20.7(@babel/core@7.21.3)
'@babel/helper-plugin-utils': 7.20.2
debug: 4.3.4
lodash.debounce: 4.0.8
@@ -311,19 +328,19 @@ packages:
- supports-color
dev: false
- /@babel/helper-environment-visitor/7.18.9:
+ /@babel/helper-environment-visitor@7.18.9:
resolution: {integrity: sha512-3r/aACDJ3fhQ/EVgFy0hpj8oHyHpQc+LPtJoY9SzTThAsStm4Ptegq92vqKoE3vD706ZVFWITnMnxucw+S9Ipg==}
engines: {node: '>=6.9.0'}
dev: false
- /@babel/helper-explode-assignable-expression/7.18.6:
+ /@babel/helper-explode-assignable-expression@7.18.6:
resolution: {integrity: sha512-eyAYAsQmB80jNfg4baAtLeWAQHfHFiR483rzFK+BhETlGZaQC9bsfrugfXDCbRHLQbIA7U5NxhhOxN7p/dWIcg==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': 7.21.3
dev: false
- /@babel/helper-function-name/7.21.0:
+ /@babel/helper-function-name@7.21.0:
resolution: {integrity: sha512-HfK1aMRanKHpxemaY2gqBmL04iAPOPRj7DxtNbiDOrJK+gdwkiNRVpCpUJYbUT+aZyemKN8brqTOxzCaG6ExRg==}
engines: {node: '>=6.9.0'}
dependencies:
@@ -331,28 +348,28 @@ packages:
'@babel/types': 7.21.3
dev: false
- /@babel/helper-hoist-variables/7.18.6:
+ /@babel/helper-hoist-variables@7.18.6:
resolution: {integrity: sha512-UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': 7.21.3
dev: false
- /@babel/helper-member-expression-to-functions/7.21.0:
+ /@babel/helper-member-expression-to-functions@7.21.0:
resolution: {integrity: sha512-Muu8cdZwNN6mRRNG6lAYErJ5X3bRevgYR2O8wN0yn7jJSnGDu6eG59RfT29JHxGUovyfrh6Pj0XzmR7drNVL3Q==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': 7.21.3
dev: false
- /@babel/helper-module-imports/7.18.6:
+ /@babel/helper-module-imports@7.18.6:
resolution: {integrity: sha512-0NFvs3VkuSYbFi1x2Vd6tKrywq+z/cLeYC/RJNFrIX/30Bf5aiGYbtvGXolEktzJH8o5E5KJ3tT+nkxuuZFVlA==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': 7.21.3
dev: false
- /@babel/helper-module-transforms/7.21.2:
+ /@babel/helper-module-transforms@7.21.2:
resolution: {integrity: sha512-79yj2AR4U/Oqq/WOV7Lx6hUjau1Zfo4cI+JLAVYeMV5XIlbOhmjEk5ulbTc9fMpmlojzZHkUUxAiK+UKn+hNQQ==}
engines: {node: '>=6.9.0'}
dependencies:
@@ -368,23 +385,23 @@ packages:
- supports-color
dev: false
- /@babel/helper-optimise-call-expression/7.18.6:
+ /@babel/helper-optimise-call-expression@7.18.6:
resolution: {integrity: sha512-HP59oD9/fEHQkdcbgFCnbmgH5vIQTJbxh2yf+CdM89/glUNnuzr87Q8GIjGEnOktTROemO0Pe0iPAYbqZuOUiA==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': 7.21.3
dev: false
- /@babel/helper-plugin-utils/7.10.4:
+ /@babel/helper-plugin-utils@7.10.4:
resolution: {integrity: sha512-O4KCvQA6lLiMU9l2eawBPMf1xPP8xPfB3iEQw150hOVTqj/rfXz0ThTb4HEzqQfs2Bmo5Ay8BzxfzVtBrr9dVg==}
dev: false
- /@babel/helper-plugin-utils/7.20.2:
+ /@babel/helper-plugin-utils@7.20.2:
resolution: {integrity: sha512-8RvlJG2mj4huQ4pZ+rU9lqKi9ZKiRmuvGuM2HlWmkmgOhbs6zEAw6IEiJ5cQqGbDzGZOhwuOQNtZMi/ENLjZoQ==}
engines: {node: '>=6.9.0'}
dev: false
- /@babel/helper-remap-async-to-generator/7.18.9_@babel+core@7.21.3:
+ /@babel/helper-remap-async-to-generator@7.18.9(@babel/core@7.21.3):
resolution: {integrity: sha512-dI7q50YKd8BAv3VEfgg7PS7yD3Rtbi2J1XMXaalXO0W0164hYLnh8zpjRS0mte9MfVp/tltvr/cfdXPvJr1opA==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -399,7 +416,7 @@ packages:
- supports-color
dev: false
- /@babel/helper-replace-supers/7.20.7:
+ /@babel/helper-replace-supers@7.20.7:
resolution: {integrity: sha512-vujDMtB6LVfNW13jhlCrp48QNslK6JXi7lQG736HVbHz/mbf4Dc7tIRh1Xf5C0rF7BP8iiSxGMCmY6Ci1ven3A==}
engines: {node: '>=6.9.0'}
dependencies:
@@ -413,43 +430,43 @@ packages:
- supports-color
dev: false
- /@babel/helper-simple-access/7.20.2:
+ /@babel/helper-simple-access@7.20.2:
resolution: {integrity: sha512-+0woI/WPq59IrqDYbVGfshjT5Dmk/nnbdpcF8SnMhhXObpTq2KNBdLFRFrkVdbDOyUmHBCxzm5FHV1rACIkIbA==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': 7.21.3
dev: false
- /@babel/helper-skip-transparent-expression-wrappers/7.20.0:
+ /@babel/helper-skip-transparent-expression-wrappers@7.20.0:
resolution: {integrity: sha512-5y1JYeNKfvnT8sZcK9DVRtpTbGiomYIHviSP3OQWmDPU3DeH4a1ZlT/N2lyQ5P8egjcRaT/Y9aNqUxK0WsnIIg==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': 7.21.3
dev: false
- /@babel/helper-split-export-declaration/7.18.6:
+ /@babel/helper-split-export-declaration@7.18.6:
resolution: {integrity: sha512-bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': 7.21.3
dev: false
- /@babel/helper-string-parser/7.19.4:
+ /@babel/helper-string-parser@7.19.4:
resolution: {integrity: sha512-nHtDoQcuqFmwYNYPz3Rah5ph2p8PFeFCsZk9A/48dPc/rGocJ5J3hAAZ7pb76VWX3fZKu+uEr/FhH5jLx7umrw==}
engines: {node: '>=6.9.0'}
dev: false
- /@babel/helper-validator-identifier/7.19.1:
+ /@babel/helper-validator-identifier@7.19.1:
resolution: {integrity: sha512-awrNfaMtnHUr653GgGEs++LlAvW6w+DcPrOliSMXWCKo597CwL5Acf/wWdNkf/tfEQE3mjkeD1YOVZOUV/od1w==}
engines: {node: '>=6.9.0'}
dev: false
- /@babel/helper-validator-option/7.21.0:
+ /@babel/helper-validator-option@7.21.0:
resolution: {integrity: sha512-rmL/B8/f0mKS2baE9ZpyTcTavvEuWhTTW8amjzXNvYG4AwBsqTLikfXsEofsJEfKHf+HQVQbFOHy6o+4cnC/fQ==}
engines: {node: '>=6.9.0'}
dev: false
- /@babel/helper-wrap-function/7.20.5:
+ /@babel/helper-wrap-function@7.20.5:
resolution: {integrity: sha512-bYMxIWK5mh+TgXGVqAtnu5Yn1un+v8DDZtqyzKRLUzrh70Eal2O3aZ7aPYiMADO4uKlkzOiRiZ6GX5q3qxvW9Q==}
engines: {node: '>=6.9.0'}
dependencies:
@@ -461,7 +478,7 @@ packages:
- supports-color
dev: false
- /@babel/helpers/7.21.0:
+ /@babel/helpers@7.21.0:
resolution: {integrity: sha512-XXve0CBtOW0pd7MRzzmoyuSj0e3SEzj8pgyFxnTT1NJZL38BD1MK7yYrm8yefRPIDvNNe14xR4FdbHwpInD4rA==}
engines: {node: '>=6.9.0'}
dependencies:
@@ -472,7 +489,7 @@ packages:
- supports-color
dev: false
- /@babel/highlight/7.18.6:
+ /@babel/highlight@7.18.6:
resolution: {integrity: sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g==}
engines: {node: '>=6.9.0'}
dependencies:
@@ -481,15 +498,14 @@ packages:
js-tokens: 4.0.0
dev: false
- /@babel/parser/7.21.3:
+ /@babel/parser@7.21.3:
resolution: {integrity: sha512-lobG0d7aOfQRXh8AyklEAgZGvA4FShxo6xQbUrrT/cNBPUdIDojlokwJsQyCC/eKia7ifqM0yP+2DRZ4WKw2RQ==}
engines: {node: '>=6.0.0'}
- hasBin: true
dependencies:
'@babel/types': 7.21.3
dev: false
- /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/7.18.6_@babel+core@7.21.3:
+ /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.18.6(@babel/core@7.21.3):
resolution: {integrity: sha512-Dgxsyg54Fx1d4Nge8UnvTrED63vrwOdPmyvPzlNN/boaliRP54pm3pGzZD1SJUwrBA+Cs/xdG8kXX6Mn/RfISQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -499,7 +515,7 @@ packages:
'@babel/helper-plugin-utils': 7.20.2
dev: false
- /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/7.20.7_@babel+core@7.21.3:
+ /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.20.7(@babel/core@7.21.3):
resolution: {integrity: sha512-sbr9+wNE5aXMBBFBICk01tt7sBf2Oc9ikRFEcem/ZORup9IMUdNhW7/wVLEbbtlWOsEubJet46mHAL2C8+2jKQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -508,10 +524,10 @@ packages:
'@babel/core': 7.21.3
'@babel/helper-plugin-utils': 7.20.2
'@babel/helper-skip-transparent-expression-wrappers': 7.20.0
- '@babel/plugin-proposal-optional-chaining': 7.21.0_@babel+core@7.21.3
+ '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.21.3)
dev: false
- /@babel/plugin-proposal-async-generator-functions/7.20.7_@babel+core@7.21.3:
+ /@babel/plugin-proposal-async-generator-functions@7.20.7(@babel/core@7.21.3):
resolution: {integrity: sha512-xMbiLsn/8RK7Wq7VeVytytS2L6qE69bXPB10YCmMdDZbKF4okCqY74pI/jJQ/8U0b/F6NrT2+14b8/P9/3AMGA==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -520,40 +536,40 @@ packages:
'@babel/core': 7.21.3
'@babel/helper-environment-visitor': 7.18.9
'@babel/helper-plugin-utils': 7.20.2
- '@babel/helper-remap-async-to-generator': 7.18.9_@babel+core@7.21.3
- '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.21.3
+ '@babel/helper-remap-async-to-generator': 7.18.9(@babel/core@7.21.3)
+ '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.21.3)
transitivePeerDependencies:
- supports-color
dev: false
- /@babel/plugin-proposal-class-properties/7.18.6_@babel+core@7.21.3:
+ /@babel/plugin-proposal-class-properties@7.18.6(@babel/core@7.21.3):
resolution: {integrity: sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.21.3
- '@babel/helper-create-class-features-plugin': 7.21.0_@babel+core@7.21.3
+ '@babel/helper-create-class-features-plugin': 7.21.0(@babel/core@7.21.3)
'@babel/helper-plugin-utils': 7.20.2
transitivePeerDependencies:
- supports-color
dev: false
- /@babel/plugin-proposal-class-static-block/7.21.0_@babel+core@7.21.3:
+ /@babel/plugin-proposal-class-static-block@7.21.0(@babel/core@7.21.3):
resolution: {integrity: sha512-XP5G9MWNUskFuP30IfFSEFB0Z6HzLIUcjYM4bYOPHXl7eiJ9HFv8tWj6TXTN5QODiEhDZAeI4hLok2iHFFV4hw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.12.0
dependencies:
'@babel/core': 7.21.3
- '@babel/helper-create-class-features-plugin': 7.21.0_@babel+core@7.21.3
+ '@babel/helper-create-class-features-plugin': 7.21.0(@babel/core@7.21.3)
'@babel/helper-plugin-utils': 7.20.2
- '@babel/plugin-syntax-class-static-block': 7.14.5_@babel+core@7.21.3
+ '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.21.3)
transitivePeerDependencies:
- supports-color
dev: false
- /@babel/plugin-proposal-dynamic-import/7.18.6_@babel+core@7.21.3:
+ /@babel/plugin-proposal-dynamic-import@7.18.6(@babel/core@7.21.3):
resolution: {integrity: sha512-1auuwmK+Rz13SJj36R+jqFPMJWyKEDd7lLSdOj4oJK0UTgGueSAtkrCvz9ewmgyU/P941Rv2fQwZJN8s6QruXw==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -561,10 +577,10 @@ packages:
dependencies:
'@babel/core': 7.21.3
'@babel/helper-plugin-utils': 7.20.2
- '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.21.3
+ '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.21.3)
dev: false
- /@babel/plugin-proposal-export-namespace-from/7.18.9_@babel+core@7.21.3:
+ /@babel/plugin-proposal-export-namespace-from@7.18.9(@babel/core@7.21.3):
resolution: {integrity: sha512-k1NtHyOMvlDDFeb9G5PhUXuGj8m/wiwojgQVEhJ/fsVsMCpLyOP4h0uGEjYJKrRI+EVPlb5Jk+Gt9P97lOGwtA==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -572,10 +588,10 @@ packages:
dependencies:
'@babel/core': 7.21.3
'@babel/helper-plugin-utils': 7.20.2
- '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.21.3
+ '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.21.3)
dev: false
- /@babel/plugin-proposal-json-strings/7.18.6_@babel+core@7.21.3:
+ /@babel/plugin-proposal-json-strings@7.18.6(@babel/core@7.21.3):
resolution: {integrity: sha512-lr1peyn9kOdbYc0xr0OdHTZ5FMqS6Di+H0Fz2I/JwMzGmzJETNeOFq2pBySw6X/KFL5EWDjlJuMsUGRFb8fQgQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -583,10 +599,10 @@ packages:
dependencies:
'@babel/core': 7.21.3
'@babel/helper-plugin-utils': 7.20.2
- '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.21.3
+ '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.21.3)
dev: false
- /@babel/plugin-proposal-logical-assignment-operators/7.20.7_@babel+core@7.21.3:
+ /@babel/plugin-proposal-logical-assignment-operators@7.20.7(@babel/core@7.21.3):
resolution: {integrity: sha512-y7C7cZgpMIjWlKE5T7eJwp+tnRYM89HmRvWM5EQuB5BoHEONjmQ8lSNmBUwOyy/GFRsohJED51YBF79hE1djug==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -594,10 +610,10 @@ packages:
dependencies:
'@babel/core': 7.21.3
'@babel/helper-plugin-utils': 7.20.2
- '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.21.3
+ '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.21.3)
dev: false
- /@babel/plugin-proposal-nullish-coalescing-operator/7.18.6_@babel+core@7.21.3:
+ /@babel/plugin-proposal-nullish-coalescing-operator@7.18.6(@babel/core@7.21.3):
resolution: {integrity: sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -605,10 +621,10 @@ packages:
dependencies:
'@babel/core': 7.21.3
'@babel/helper-plugin-utils': 7.20.2
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.21.3
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.21.3)
dev: false
- /@babel/plugin-proposal-numeric-separator/7.18.6_@babel+core@7.21.3:
+ /@babel/plugin-proposal-numeric-separator@7.18.6(@babel/core@7.21.3):
resolution: {integrity: sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -616,21 +632,21 @@ packages:
dependencies:
'@babel/core': 7.21.3
'@babel/helper-plugin-utils': 7.20.2
- '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.21.3
+ '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.21.3)
dev: false
- /@babel/plugin-proposal-object-rest-spread/7.12.1_@babel+core@7.12.9:
+ /@babel/plugin-proposal-object-rest-spread@7.12.1(@babel/core@7.12.9):
resolution: {integrity: sha512-s6SowJIjzlhx8o7lsFx5zmY4At6CTtDvgNQDdPzkBQucle58A6b/TTeEBYtyDgmcXjUTM+vE8YOGHZzzbc/ioA==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.12.9
- '@babel/helper-plugin-utils': 7.10.4
- '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.12.9
- '@babel/plugin-transform-parameters': 7.21.3_@babel+core@7.12.9
+ '@babel/helper-plugin-utils': 7.20.2
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.12.9)
+ '@babel/plugin-transform-parameters': 7.21.3(@babel/core@7.12.9)
dev: false
- /@babel/plugin-proposal-object-rest-spread/7.20.7_@babel+core@7.21.3:
+ /@babel/plugin-proposal-object-rest-spread@7.20.7(@babel/core@7.21.3):
resolution: {integrity: sha512-d2S98yCiLxDVmBmE8UjGcfPvNEUbA1U5q5WxaWFUGRzJSVAZqm5W6MbPct0jxnegUZ0niLeNX+IOzEs7wYg9Dg==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -638,13 +654,13 @@ packages:
dependencies:
'@babel/compat-data': 7.21.0
'@babel/core': 7.21.3
- '@babel/helper-compilation-targets': 7.20.7_@babel+core@7.21.3
+ '@babel/helper-compilation-targets': 7.20.7(@babel/core@7.21.3)
'@babel/helper-plugin-utils': 7.20.2
- '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.21.3
- '@babel/plugin-transform-parameters': 7.21.3_@babel+core@7.21.3
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.21.3)
+ '@babel/plugin-transform-parameters': 7.21.3(@babel/core@7.21.3)
dev: false
- /@babel/plugin-proposal-optional-catch-binding/7.18.6_@babel+core@7.21.3:
+ /@babel/plugin-proposal-optional-catch-binding@7.18.6(@babel/core@7.21.3):
resolution: {integrity: sha512-Q40HEhs9DJQyaZfUjjn6vE8Cv4GmMHCYuMGIWUnlxH6400VGxOuwWsPt4FxXxJkC/5eOzgn0z21M9gMT4MOhbw==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -652,10 +668,10 @@ packages:
dependencies:
'@babel/core': 7.21.3
'@babel/helper-plugin-utils': 7.20.2
- '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.21.3
+ '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.21.3)
dev: false
- /@babel/plugin-proposal-optional-chaining/7.21.0_@babel+core@7.21.3:
+ /@babel/plugin-proposal-optional-chaining@7.21.0(@babel/core@7.21.3):
resolution: {integrity: sha512-p4zeefM72gpmEe2fkUr/OnOXpWEf8nAgk7ZYVqqfFiyIG7oFfVZcCrU64hWn5xp4tQ9LkV4bTIa5rD0KANpKNA==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -664,23 +680,23 @@ packages:
'@babel/core': 7.21.3
'@babel/helper-plugin-utils': 7.20.2
'@babel/helper-skip-transparent-expression-wrappers': 7.20.0
- '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.21.3
+ '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.21.3)
dev: false
- /@babel/plugin-proposal-private-methods/7.18.6_@babel+core@7.21.3:
+ /@babel/plugin-proposal-private-methods@7.18.6(@babel/core@7.21.3):
resolution: {integrity: sha512-nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.21.3
- '@babel/helper-create-class-features-plugin': 7.21.0_@babel+core@7.21.3
+ '@babel/helper-create-class-features-plugin': 7.21.0(@babel/core@7.21.3)
'@babel/helper-plugin-utils': 7.20.2
transitivePeerDependencies:
- supports-color
dev: false
- /@babel/plugin-proposal-private-property-in-object/7.21.0_@babel+core@7.21.3:
+ /@babel/plugin-proposal-private-property-in-object@7.21.0(@babel/core@7.21.3):
resolution: {integrity: sha512-ha4zfehbJjc5MmXBlHec1igel5TJXXLDDRbuJ4+XT2TJcyD9/V1919BA8gMvsdHcNMBy4WBUBiRb3nw/EQUtBw==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -688,25 +704,25 @@ packages:
dependencies:
'@babel/core': 7.21.3
'@babel/helper-annotate-as-pure': 7.18.6
- '@babel/helper-create-class-features-plugin': 7.21.0_@babel+core@7.21.3
+ '@babel/helper-create-class-features-plugin': 7.21.0(@babel/core@7.21.3)
'@babel/helper-plugin-utils': 7.20.2
- '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.21.3
+ '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.21.3)
transitivePeerDependencies:
- supports-color
dev: false
- /@babel/plugin-proposal-unicode-property-regex/7.18.6_@babel+core@7.21.3:
+ /@babel/plugin-proposal-unicode-property-regex@7.18.6(@babel/core@7.21.3):
resolution: {integrity: sha512-2BShG/d5yoZyXZfVePH91urL5wTG6ASZU9M4o03lKK8u8UW1y08OMttBSOADTcJrnPMpvDXRG3G8fyLh4ovs8w==}
engines: {node: '>=4'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.21.3
- '@babel/helper-create-regexp-features-plugin': 7.21.0_@babel+core@7.21.3
+ '@babel/helper-create-regexp-features-plugin': 7.21.0(@babel/core@7.21.3)
'@babel/helper-plugin-utils': 7.20.2
dev: false
- /@babel/plugin-syntax-async-generators/7.8.4_@babel+core@7.21.3:
+ /@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.21.3):
resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -715,7 +731,7 @@ packages:
'@babel/helper-plugin-utils': 7.20.2
dev: false
- /@babel/plugin-syntax-class-properties/7.12.13_@babel+core@7.21.3:
+ /@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.21.3):
resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -724,7 +740,7 @@ packages:
'@babel/helper-plugin-utils': 7.20.2
dev: false
- /@babel/plugin-syntax-class-static-block/7.14.5_@babel+core@7.21.3:
+ /@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.21.3):
resolution: {integrity: sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -734,7 +750,7 @@ packages:
'@babel/helper-plugin-utils': 7.20.2
dev: false
- /@babel/plugin-syntax-dynamic-import/7.8.3_@babel+core@7.21.3:
+ /@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.21.3):
resolution: {integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -743,7 +759,7 @@ packages:
'@babel/helper-plugin-utils': 7.20.2
dev: false
- /@babel/plugin-syntax-export-namespace-from/7.8.3_@babel+core@7.21.3:
+ /@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.21.3):
resolution: {integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -752,7 +768,7 @@ packages:
'@babel/helper-plugin-utils': 7.20.2
dev: false
- /@babel/plugin-syntax-import-assertions/7.20.0_@babel+core@7.21.3:
+ /@babel/plugin-syntax-import-assertions@7.20.0(@babel/core@7.21.3):
resolution: {integrity: sha512-IUh1vakzNoWalR8ch/areW7qFopR2AEw03JlG7BbrDqmQ4X3q9uuipQwSGrUn7oGiemKjtSLDhNtQHzMHr1JdQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -762,7 +778,7 @@ packages:
'@babel/helper-plugin-utils': 7.20.2
dev: false
- /@babel/plugin-syntax-json-strings/7.8.3_@babel+core@7.21.3:
+ /@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.21.3):
resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -771,7 +787,7 @@ packages:
'@babel/helper-plugin-utils': 7.20.2
dev: false
- /@babel/plugin-syntax-jsx/7.12.1_@babel+core@7.12.9:
+ /@babel/plugin-syntax-jsx@7.12.1(@babel/core@7.12.9):
resolution: {integrity: sha512-1yRi7yAtB0ETgxdY9ti/p2TivUxJkTdhu/ZbF9MshVGqOx1TdB3b7xCXs49Fupgg50N45KcAsRP/ZqWjs9SRjg==}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -780,7 +796,7 @@ packages:
'@babel/helper-plugin-utils': 7.20.2
dev: false
- /@babel/plugin-syntax-jsx/7.18.6_@babel+core@7.21.3:
+ /@babel/plugin-syntax-jsx@7.18.6(@babel/core@7.21.3):
resolution: {integrity: sha512-6mmljtAedFGTWu2p/8WIORGwy+61PLgOMPOdazc7YoJ9ZCWUyFy3A6CpPkRKLKD1ToAesxX8KGEViAiLo9N+7Q==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -790,7 +806,7 @@ packages:
'@babel/helper-plugin-utils': 7.20.2
dev: false
- /@babel/plugin-syntax-logical-assignment-operators/7.10.4_@babel+core@7.21.3:
+ /@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.21.3):
resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -799,7 +815,7 @@ packages:
'@babel/helper-plugin-utils': 7.20.2
dev: false
- /@babel/plugin-syntax-nullish-coalescing-operator/7.8.3_@babel+core@7.21.3:
+ /@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.21.3):
resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -808,7 +824,7 @@ packages:
'@babel/helper-plugin-utils': 7.20.2
dev: false
- /@babel/plugin-syntax-numeric-separator/7.10.4_@babel+core@7.21.3:
+ /@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.21.3):
resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -817,7 +833,7 @@ packages:
'@babel/helper-plugin-utils': 7.20.2
dev: false
- /@babel/plugin-syntax-object-rest-spread/7.8.3_@babel+core@7.12.9:
+ /@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.12.9):
resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -826,7 +842,7 @@ packages:
'@babel/helper-plugin-utils': 7.20.2
dev: false
- /@babel/plugin-syntax-object-rest-spread/7.8.3_@babel+core@7.21.3:
+ /@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.21.3):
resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -835,7 +851,7 @@ packages:
'@babel/helper-plugin-utils': 7.20.2
dev: false
- /@babel/plugin-syntax-optional-catch-binding/7.8.3_@babel+core@7.21.3:
+ /@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.21.3):
resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -844,7 +860,7 @@ packages:
'@babel/helper-plugin-utils': 7.20.2
dev: false
- /@babel/plugin-syntax-optional-chaining/7.8.3_@babel+core@7.21.3:
+ /@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.21.3):
resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -853,7 +869,7 @@ packages:
'@babel/helper-plugin-utils': 7.20.2
dev: false
- /@babel/plugin-syntax-private-property-in-object/7.14.5_@babel+core@7.21.3:
+ /@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.21.3):
resolution: {integrity: sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -863,7 +879,7 @@ packages:
'@babel/helper-plugin-utils': 7.20.2
dev: false
- /@babel/plugin-syntax-top-level-await/7.14.5_@babel+core@7.21.3:
+ /@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.21.3):
resolution: {integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -873,7 +889,7 @@ packages:
'@babel/helper-plugin-utils': 7.20.2
dev: false
- /@babel/plugin-syntax-typescript/7.20.0_@babel+core@7.21.3:
+ /@babel/plugin-syntax-typescript@7.20.0(@babel/core@7.21.3):
resolution: {integrity: sha512-rd9TkG+u1CExzS4SM1BlMEhMXwFLKVjOAFFCDx9PbX5ycJWDoWMcwdJH9RhkPu1dOgn5TrxLot/Gx6lWFuAUNQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -883,7 +899,7 @@ packages:
'@babel/helper-plugin-utils': 7.20.2
dev: false
- /@babel/plugin-transform-arrow-functions/7.20.7_@babel+core@7.21.3:
+ /@babel/plugin-transform-arrow-functions@7.20.7(@babel/core@7.21.3):
resolution: {integrity: sha512-3poA5E7dzDomxj9WXWwuD6A5F3kc7VXwIJO+E+J8qtDtS+pXPAhrgEyh+9GBwBgPq1Z+bB+/JD60lp5jsN7JPQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -893,7 +909,7 @@ packages:
'@babel/helper-plugin-utils': 7.20.2
dev: false
- /@babel/plugin-transform-async-to-generator/7.20.7_@babel+core@7.21.3:
+ /@babel/plugin-transform-async-to-generator@7.20.7(@babel/core@7.21.3):
resolution: {integrity: sha512-Uo5gwHPT9vgnSXQxqGtpdufUiWp96gk7yiP4Mp5bm1QMkEmLXBO7PAGYbKoJ6DhAwiNkcHFBol/x5zZZkL/t0Q==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -902,12 +918,12 @@ packages:
'@babel/core': 7.21.3
'@babel/helper-module-imports': 7.18.6
'@babel/helper-plugin-utils': 7.20.2
- '@babel/helper-remap-async-to-generator': 7.18.9_@babel+core@7.21.3
+ '@babel/helper-remap-async-to-generator': 7.18.9(@babel/core@7.21.3)
transitivePeerDependencies:
- supports-color
dev: false
- /@babel/plugin-transform-block-scoped-functions/7.18.6_@babel+core@7.21.3:
+ /@babel/plugin-transform-block-scoped-functions@7.18.6(@babel/core@7.21.3):
resolution: {integrity: sha512-ExUcOqpPWnliRcPqves5HJcJOvHvIIWfuS4sroBUenPuMdmW+SMHDakmtS7qOo13sVppmUijqeTv7qqGsvURpQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -917,7 +933,7 @@ packages:
'@babel/helper-plugin-utils': 7.20.2
dev: false
- /@babel/plugin-transform-block-scoping/7.21.0_@babel+core@7.21.3:
+ /@babel/plugin-transform-block-scoping@7.21.0(@babel/core@7.21.3):
resolution: {integrity: sha512-Mdrbunoh9SxwFZapeHVrwFmri16+oYotcZysSzhNIVDwIAb1UV+kvnxULSYq9J3/q5MDG+4X6w8QVgD1zhBXNQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -927,7 +943,7 @@ packages:
'@babel/helper-plugin-utils': 7.20.2
dev: false
- /@babel/plugin-transform-classes/7.21.0_@babel+core@7.21.3:
+ /@babel/plugin-transform-classes@7.21.0(@babel/core@7.21.3):
resolution: {integrity: sha512-RZhbYTCEUAe6ntPehC4hlslPWosNHDox+vAs4On/mCLRLfoDVHf6hVEd7kuxr1RnHwJmxFfUM3cZiZRmPxJPXQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -935,7 +951,7 @@ packages:
dependencies:
'@babel/core': 7.21.3
'@babel/helper-annotate-as-pure': 7.18.6
- '@babel/helper-compilation-targets': 7.20.7_@babel+core@7.21.3
+ '@babel/helper-compilation-targets': 7.20.7(@babel/core@7.21.3)
'@babel/helper-environment-visitor': 7.18.9
'@babel/helper-function-name': 7.21.0
'@babel/helper-optimise-call-expression': 7.18.6
@@ -947,7 +963,7 @@ packages:
- supports-color
dev: false
- /@babel/plugin-transform-computed-properties/7.20.7_@babel+core@7.21.3:
+ /@babel/plugin-transform-computed-properties@7.20.7(@babel/core@7.21.3):
resolution: {integrity: sha512-Lz7MvBK6DTjElHAmfu6bfANzKcxpyNPeYBGEafyA6E5HtRpjpZwU+u7Qrgz/2OR0z+5TvKYbPdphfSaAcZBrYQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -958,7 +974,7 @@ packages:
'@babel/template': 7.20.7
dev: false
- /@babel/plugin-transform-destructuring/7.21.3_@babel+core@7.21.3:
+ /@babel/plugin-transform-destructuring@7.21.3(@babel/core@7.21.3):
resolution: {integrity: sha512-bp6hwMFzuiE4HqYEyoGJ/V2LeIWn+hLVKc4pnj++E5XQptwhtcGmSayM029d/j2X1bPKGTlsyPwAubuU22KhMA==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -968,18 +984,18 @@ packages:
'@babel/helper-plugin-utils': 7.20.2
dev: false
- /@babel/plugin-transform-dotall-regex/7.18.6_@babel+core@7.21.3:
+ /@babel/plugin-transform-dotall-regex@7.18.6(@babel/core@7.21.3):
resolution: {integrity: sha512-6S3jpun1eEbAxq7TdjLotAsl4WpQI9DxfkycRcKrjhQYzU87qpXdknpBg/e+TdcMehqGnLFi7tnFUBR02Vq6wg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.21.3
- '@babel/helper-create-regexp-features-plugin': 7.21.0_@babel+core@7.21.3
+ '@babel/helper-create-regexp-features-plugin': 7.21.0(@babel/core@7.21.3)
'@babel/helper-plugin-utils': 7.20.2
dev: false
- /@babel/plugin-transform-duplicate-keys/7.18.9_@babel+core@7.21.3:
+ /@babel/plugin-transform-duplicate-keys@7.18.9(@babel/core@7.21.3):
resolution: {integrity: sha512-d2bmXCtZXYc59/0SanQKbiWINadaJXqtvIQIzd4+hNwkWBgyCd5F/2t1kXoUdvPMrxzPvhK6EMQRROxsue+mfw==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -989,7 +1005,7 @@ packages:
'@babel/helper-plugin-utils': 7.20.2
dev: false
- /@babel/plugin-transform-exponentiation-operator/7.18.6_@babel+core@7.21.3:
+ /@babel/plugin-transform-exponentiation-operator@7.18.6(@babel/core@7.21.3):
resolution: {integrity: sha512-wzEtc0+2c88FVR34aQmiz56dxEkxr2g8DQb/KfaFa1JYXOFVsbhvAonFN6PwVWj++fKmku8NP80plJ5Et4wqHw==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1000,7 +1016,7 @@ packages:
'@babel/helper-plugin-utils': 7.20.2
dev: false
- /@babel/plugin-transform-for-of/7.21.0_@babel+core@7.21.3:
+ /@babel/plugin-transform-for-of@7.21.0(@babel/core@7.21.3):
resolution: {integrity: sha512-LlUYlydgDkKpIY7mcBWvyPPmMcOphEyYA27Ef4xpbh1IiDNLr0kZsos2nf92vz3IccvJI25QUwp86Eo5s6HmBQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1010,19 +1026,19 @@ packages:
'@babel/helper-plugin-utils': 7.20.2
dev: false
- /@babel/plugin-transform-function-name/7.18.9_@babel+core@7.21.3:
+ /@babel/plugin-transform-function-name@7.18.9(@babel/core@7.21.3):
resolution: {integrity: sha512-WvIBoRPaJQ5yVHzcnJFor7oS5Ls0PYixlTYE63lCj2RtdQEl15M68FXQlxnG6wdraJIXRdR7KI+hQ7q/9QjrCQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.21.3
- '@babel/helper-compilation-targets': 7.20.7_@babel+core@7.21.3
+ '@babel/helper-compilation-targets': 7.20.7(@babel/core@7.21.3)
'@babel/helper-function-name': 7.21.0
'@babel/helper-plugin-utils': 7.20.2
dev: false
- /@babel/plugin-transform-literals/7.18.9_@babel+core@7.21.3:
+ /@babel/plugin-transform-literals@7.18.9(@babel/core@7.21.3):
resolution: {integrity: sha512-IFQDSRoTPnrAIrI5zoZv73IFeZu2dhu6irxQjY9rNjTT53VmKg9fenjvoiOWOkJ6mm4jKVPtdMzBY98Fp4Z4cg==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1032,7 +1048,7 @@ packages:
'@babel/helper-plugin-utils': 7.20.2
dev: false
- /@babel/plugin-transform-member-expression-literals/7.18.6_@babel+core@7.21.3:
+ /@babel/plugin-transform-member-expression-literals@7.18.6(@babel/core@7.21.3):
resolution: {integrity: sha512-qSF1ihLGO3q+/g48k85tUjD033C29TNTVB2paCwZPVmOsjn9pClvYYrM2VeJpBY2bcNkuny0YUyTNRyRxJ54KA==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1042,7 +1058,7 @@ packages:
'@babel/helper-plugin-utils': 7.20.2
dev: false
- /@babel/plugin-transform-modules-amd/7.20.11_@babel+core@7.21.3:
+ /@babel/plugin-transform-modules-amd@7.20.11(@babel/core@7.21.3):
resolution: {integrity: sha512-NuzCt5IIYOW0O30UvqktzHYR2ud5bOWbY0yaxWZ6G+aFzOMJvrs5YHNikrbdaT15+KNO31nPOy5Fim3ku6Zb5g==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1055,7 +1071,7 @@ packages:
- supports-color
dev: false
- /@babel/plugin-transform-modules-commonjs/7.21.2_@babel+core@7.21.3:
+ /@babel/plugin-transform-modules-commonjs@7.21.2(@babel/core@7.21.3):
resolution: {integrity: sha512-Cln+Yy04Gxua7iPdj6nOV96smLGjpElir5YwzF0LBPKoPlLDNJePNlrGGaybAJkd0zKRnOVXOgizSqPYMNYkzA==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1069,7 +1085,7 @@ packages:
- supports-color
dev: false
- /@babel/plugin-transform-modules-systemjs/7.20.11_@babel+core@7.21.3:
+ /@babel/plugin-transform-modules-systemjs@7.20.11(@babel/core@7.21.3):
resolution: {integrity: sha512-vVu5g9BPQKSFEmvt2TA4Da5N+QVS66EX21d8uoOihC+OCpUoGvzVsXeqFdtAEfVa5BILAeFt+U7yVmLbQnAJmw==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1084,7 +1100,7 @@ packages:
- supports-color
dev: false
- /@babel/plugin-transform-modules-umd/7.18.6_@babel+core@7.21.3:
+ /@babel/plugin-transform-modules-umd@7.18.6(@babel/core@7.21.3):
resolution: {integrity: sha512-dcegErExVeXcRqNtkRU/z8WlBLnvD4MRnHgNs3MytRO1Mn1sHRyhbcpYbVMGclAqOjdW+9cfkdZno9dFdfKLfQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1097,18 +1113,18 @@ packages:
- supports-color
dev: false
- /@babel/plugin-transform-named-capturing-groups-regex/7.20.5_@babel+core@7.21.3:
+ /@babel/plugin-transform-named-capturing-groups-regex@7.20.5(@babel/core@7.21.3):
resolution: {integrity: sha512-mOW4tTzi5iTLnw+78iEq3gr8Aoq4WNRGpmSlrogqaiCBoR1HFhpU4JkpQFOHfeYx3ReVIFWOQJS4aZBRvuZ6mA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
'@babel/core': 7.21.3
- '@babel/helper-create-regexp-features-plugin': 7.21.0_@babel+core@7.21.3
+ '@babel/helper-create-regexp-features-plugin': 7.21.0(@babel/core@7.21.3)
'@babel/helper-plugin-utils': 7.20.2
dev: false
- /@babel/plugin-transform-new-target/7.18.6_@babel+core@7.21.3:
+ /@babel/plugin-transform-new-target@7.18.6(@babel/core@7.21.3):
resolution: {integrity: sha512-DjwFA/9Iu3Z+vrAn+8pBUGcjhxKguSMlsFqeCKbhb9BAV756v0krzVK04CRDi/4aqmk8BsHb4a/gFcaA5joXRw==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1118,7 +1134,7 @@ packages:
'@babel/helper-plugin-utils': 7.20.2
dev: false
- /@babel/plugin-transform-object-super/7.18.6_@babel+core@7.21.3:
+ /@babel/plugin-transform-object-super@7.18.6(@babel/core@7.21.3):
resolution: {integrity: sha512-uvGz6zk+pZoS1aTZrOvrbj6Pp/kK2mp45t2B+bTDre2UgsZZ8EZLSJtUg7m/no0zOJUWgFONpB7Zv9W2tSaFlA==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1131,7 +1147,7 @@ packages:
- supports-color
dev: false
- /@babel/plugin-transform-parameters/7.21.3_@babel+core@7.12.9:
+ /@babel/plugin-transform-parameters@7.21.3(@babel/core@7.12.9):
resolution: {integrity: sha512-Wxc+TvppQG9xWFYatvCGPvZ6+SIUxQ2ZdiBP+PHYMIjnPXD+uThCshaz4NZOnODAtBjjcVQQ/3OKs9LW28purQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1141,7 +1157,7 @@ packages:
'@babel/helper-plugin-utils': 7.20.2
dev: false
- /@babel/plugin-transform-parameters/7.21.3_@babel+core@7.21.3:
+ /@babel/plugin-transform-parameters@7.21.3(@babel/core@7.21.3):
resolution: {integrity: sha512-Wxc+TvppQG9xWFYatvCGPvZ6+SIUxQ2ZdiBP+PHYMIjnPXD+uThCshaz4NZOnODAtBjjcVQQ/3OKs9LW28purQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1151,7 +1167,7 @@ packages:
'@babel/helper-plugin-utils': 7.20.2
dev: false
- /@babel/plugin-transform-property-literals/7.18.6_@babel+core@7.21.3:
+ /@babel/plugin-transform-property-literals@7.18.6(@babel/core@7.21.3):
resolution: {integrity: sha512-cYcs6qlgafTud3PAzrrRNbQtfpQ8+y/+M5tKmksS9+M1ckbH6kzY8MrexEM9mcA6JDsukE19iIRvAyYl463sMg==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1161,7 +1177,7 @@ packages:
'@babel/helper-plugin-utils': 7.20.2
dev: false
- /@babel/plugin-transform-react-constant-elements/7.21.3_@babel+core@7.21.3:
+ /@babel/plugin-transform-react-constant-elements@7.21.3(@babel/core@7.21.3):
resolution: {integrity: sha512-4DVcFeWe/yDYBLp0kBmOGFJ6N2UYg7coGid1gdxb4co62dy/xISDMaYBXBVXEDhfgMk7qkbcYiGtwd5Q/hwDDQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1171,7 +1187,7 @@ packages:
'@babel/helper-plugin-utils': 7.20.2
dev: false
- /@babel/plugin-transform-react-display-name/7.18.6_@babel+core@7.21.3:
+ /@babel/plugin-transform-react-display-name@7.18.6(@babel/core@7.21.3):
resolution: {integrity: sha512-TV4sQ+T013n61uMoygyMRm+xf04Bd5oqFpv2jAEQwSZ8NwQA7zeRPg1LMVg2PWi3zWBz+CLKD+v5bcpZ/BS0aA==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1181,17 +1197,17 @@ packages:
'@babel/helper-plugin-utils': 7.20.2
dev: false
- /@babel/plugin-transform-react-jsx-development/7.18.6_@babel+core@7.21.3:
+ /@babel/plugin-transform-react-jsx-development@7.18.6(@babel/core@7.21.3):
resolution: {integrity: sha512-SA6HEjwYFKF7WDjWcMcMGUimmw/nhNRDWxr+KaLSCrkD/LMDBvWRmHAYgE1HDeF8KUuI8OAu+RT6EOtKxSW2qA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.21.3
- '@babel/plugin-transform-react-jsx': 7.21.0_@babel+core@7.21.3
+ '@babel/plugin-transform-react-jsx': 7.21.0(@babel/core@7.21.3)
dev: false
- /@babel/plugin-transform-react-jsx/7.21.0_@babel+core@7.21.3:
+ /@babel/plugin-transform-react-jsx@7.21.0(@babel/core@7.21.3):
resolution: {integrity: sha512-6OAWljMvQrZjR2DaNhVfRz6dkCAVV+ymcLUmaf8bccGOHn2v5rHJK3tTpij0BuhdYWP4LLaqj5lwcdlpAAPuvg==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1201,11 +1217,11 @@ packages:
'@babel/helper-annotate-as-pure': 7.18.6
'@babel/helper-module-imports': 7.18.6
'@babel/helper-plugin-utils': 7.20.2
- '@babel/plugin-syntax-jsx': 7.18.6_@babel+core@7.21.3
+ '@babel/plugin-syntax-jsx': 7.18.6(@babel/core@7.21.3)
'@babel/types': 7.21.3
dev: false
- /@babel/plugin-transform-react-pure-annotations/7.18.6_@babel+core@7.21.3:
+ /@babel/plugin-transform-react-pure-annotations@7.18.6(@babel/core@7.21.3):
resolution: {integrity: sha512-I8VfEPg9r2TRDdvnHgPepTKvuRomzA8+u+nhY7qSI1fR2hRNebasZEETLyM5mAUr0Ku56OkXJ0I7NHJnO6cJiQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1216,7 +1232,7 @@ packages:
'@babel/helper-plugin-utils': 7.20.2
dev: false
- /@babel/plugin-transform-regenerator/7.20.5_@babel+core@7.21.3:
+ /@babel/plugin-transform-regenerator@7.20.5(@babel/core@7.21.3):
resolution: {integrity: sha512-kW/oO7HPBtntbsahzQ0qSE3tFvkFwnbozz3NWFhLGqH75vLEg+sCGngLlhVkePlCs3Jv0dBBHDzCHxNiFAQKCQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1227,7 +1243,7 @@ packages:
regenerator-transform: 0.15.1
dev: false
- /@babel/plugin-transform-reserved-words/7.18.6_@babel+core@7.21.3:
+ /@babel/plugin-transform-reserved-words@7.18.6(@babel/core@7.21.3):
resolution: {integrity: sha512-oX/4MyMoypzHjFrT1CdivfKZ+XvIPMFXwwxHp/r0Ddy2Vuomt4HDFGmft1TAY2yiTKiNSsh3kjBAzcM8kSdsjA==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1237,7 +1253,7 @@ packages:
'@babel/helper-plugin-utils': 7.20.2
dev: false
- /@babel/plugin-transform-runtime/7.21.0_@babel+core@7.21.3:
+ /@babel/plugin-transform-runtime@7.21.0(@babel/core@7.21.3):
resolution: {integrity: sha512-ReY6pxwSzEU0b3r2/T/VhqMKg/AkceBT19X0UptA3/tYi5Pe2eXgEUH+NNMC5nok6c6XQz5tyVTUpuezRfSMSg==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1246,15 +1262,15 @@ packages:
'@babel/core': 7.21.3
'@babel/helper-module-imports': 7.18.6
'@babel/helper-plugin-utils': 7.20.2
- babel-plugin-polyfill-corejs2: 0.3.3_@babel+core@7.21.3
- babel-plugin-polyfill-corejs3: 0.6.0_@babel+core@7.21.3
- babel-plugin-polyfill-regenerator: 0.4.1_@babel+core@7.21.3
+ babel-plugin-polyfill-corejs2: 0.3.3(@babel/core@7.21.3)
+ babel-plugin-polyfill-corejs3: 0.6.0(@babel/core@7.21.3)
+ babel-plugin-polyfill-regenerator: 0.4.1(@babel/core@7.21.3)
semver: 6.3.0
transitivePeerDependencies:
- supports-color
dev: false
- /@babel/plugin-transform-shorthand-properties/7.18.6_@babel+core@7.21.3:
+ /@babel/plugin-transform-shorthand-properties@7.18.6(@babel/core@7.21.3):
resolution: {integrity: sha512-eCLXXJqv8okzg86ywZJbRn19YJHU4XUa55oz2wbHhaQVn/MM+XhukiT7SYqp/7o00dg52Rj51Ny+Ecw4oyoygw==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1264,7 +1280,7 @@ packages:
'@babel/helper-plugin-utils': 7.20.2
dev: false
- /@babel/plugin-transform-spread/7.20.7_@babel+core@7.21.3:
+ /@babel/plugin-transform-spread@7.20.7(@babel/core@7.21.3):
resolution: {integrity: sha512-ewBbHQ+1U/VnH1fxltbJqDeWBU1oNLG8Dj11uIv3xVf7nrQu0bPGe5Rf716r7K5Qz+SqtAOVswoVunoiBtGhxw==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1275,7 +1291,7 @@ packages:
'@babel/helper-skip-transparent-expression-wrappers': 7.20.0
dev: false
- /@babel/plugin-transform-sticky-regex/7.18.6_@babel+core@7.21.3:
+ /@babel/plugin-transform-sticky-regex@7.18.6(@babel/core@7.21.3):
resolution: {integrity: sha512-kfiDrDQ+PBsQDO85yj1icueWMfGfJFKN1KCkndygtu/C9+XUfydLC8Iv5UYJqRwy4zk8EcplRxEOeLyjq1gm6Q==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1285,7 +1301,7 @@ packages:
'@babel/helper-plugin-utils': 7.20.2
dev: false
- /@babel/plugin-transform-template-literals/7.18.9_@babel+core@7.21.3:
+ /@babel/plugin-transform-template-literals@7.18.9(@babel/core@7.21.3):
resolution: {integrity: sha512-S8cOWfT82gTezpYOiVaGHrCbhlHgKhQt8XH5ES46P2XWmX92yisoZywf5km75wv5sYcXDUCLMmMxOLCtthDgMA==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1295,7 +1311,7 @@ packages:
'@babel/helper-plugin-utils': 7.20.2
dev: false
- /@babel/plugin-transform-typeof-symbol/7.18.9_@babel+core@7.21.3:
+ /@babel/plugin-transform-typeof-symbol@7.18.9(@babel/core@7.21.3):
resolution: {integrity: sha512-SRfwTtF11G2aemAZWivL7PD+C9z52v9EvMqH9BuYbabyPuKUvSWks3oCg6041pT925L4zVFqaVBeECwsmlguEw==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1305,7 +1321,7 @@ packages:
'@babel/helper-plugin-utils': 7.20.2
dev: false
- /@babel/plugin-transform-typescript/7.21.3_@babel+core@7.21.3:
+ /@babel/plugin-transform-typescript@7.21.3(@babel/core@7.21.3):
resolution: {integrity: sha512-RQxPz6Iqt8T0uw/WsJNReuBpWpBqs/n7mNo18sKLoTbMp+UrEekhH+pKSVC7gWz+DNjo9gryfV8YzCiT45RgMw==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1313,14 +1329,14 @@ packages:
dependencies:
'@babel/core': 7.21.3
'@babel/helper-annotate-as-pure': 7.18.6
- '@babel/helper-create-class-features-plugin': 7.21.0_@babel+core@7.21.3
+ '@babel/helper-create-class-features-plugin': 7.21.0(@babel/core@7.21.3)
'@babel/helper-plugin-utils': 7.20.2
- '@babel/plugin-syntax-typescript': 7.20.0_@babel+core@7.21.3
+ '@babel/plugin-syntax-typescript': 7.20.0(@babel/core@7.21.3)
transitivePeerDependencies:
- supports-color
dev: false
- /@babel/plugin-transform-unicode-escapes/7.18.10_@babel+core@7.21.3:
+ /@babel/plugin-transform-unicode-escapes@7.18.10(@babel/core@7.21.3):
resolution: {integrity: sha512-kKAdAI+YzPgGY/ftStBFXTI1LZFju38rYThnfMykS+IXy8BVx+res7s2fxf1l8I35DV2T97ezo6+SGrXz6B3iQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1330,18 +1346,18 @@ packages:
'@babel/helper-plugin-utils': 7.20.2
dev: false
- /@babel/plugin-transform-unicode-regex/7.18.6_@babel+core@7.21.3:
+ /@babel/plugin-transform-unicode-regex@7.18.6(@babel/core@7.21.3):
resolution: {integrity: sha512-gE7A6Lt7YLnNOL3Pb9BNeZvi+d8l7tcRrG4+pwJjK9hD2xX4mEvjlQW60G9EEmfXVYRPv9VRQcyegIVHCql/AA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.21.3
- '@babel/helper-create-regexp-features-plugin': 7.21.0_@babel+core@7.21.3
+ '@babel/helper-create-regexp-features-plugin': 7.21.0(@babel/core@7.21.3)
'@babel/helper-plugin-utils': 7.20.2
dev: false
- /@babel/preset-env/7.20.2_@babel+core@7.21.3:
+ /@babel/preset-env@7.20.2(@babel/core@7.21.3):
resolution: {integrity: sha512-1G0efQEWR1EHkKvKHqbG+IN/QdgwfByUpM5V5QroDzGV2t3S/WXNQd693cHiHTlCFMpr9B6FkPFXDA2lQcKoDg==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1349,98 +1365,98 @@ packages:
dependencies:
'@babel/compat-data': 7.21.0
'@babel/core': 7.21.3
- '@babel/helper-compilation-targets': 7.20.7_@babel+core@7.21.3
+ '@babel/helper-compilation-targets': 7.20.7(@babel/core@7.21.3)
'@babel/helper-plugin-utils': 7.20.2
'@babel/helper-validator-option': 7.21.0
- '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.18.6_@babel+core@7.21.3
- '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.20.7_@babel+core@7.21.3
- '@babel/plugin-proposal-async-generator-functions': 7.20.7_@babel+core@7.21.3
- '@babel/plugin-proposal-class-properties': 7.18.6_@babel+core@7.21.3
- '@babel/plugin-proposal-class-static-block': 7.21.0_@babel+core@7.21.3
- '@babel/plugin-proposal-dynamic-import': 7.18.6_@babel+core@7.21.3
- '@babel/plugin-proposal-export-namespace-from': 7.18.9_@babel+core@7.21.3
- '@babel/plugin-proposal-json-strings': 7.18.6_@babel+core@7.21.3
- '@babel/plugin-proposal-logical-assignment-operators': 7.20.7_@babel+core@7.21.3
- '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6_@babel+core@7.21.3
- '@babel/plugin-proposal-numeric-separator': 7.18.6_@babel+core@7.21.3
- '@babel/plugin-proposal-object-rest-spread': 7.20.7_@babel+core@7.21.3
- '@babel/plugin-proposal-optional-catch-binding': 7.18.6_@babel+core@7.21.3
- '@babel/plugin-proposal-optional-chaining': 7.21.0_@babel+core@7.21.3
- '@babel/plugin-proposal-private-methods': 7.18.6_@babel+core@7.21.3
- '@babel/plugin-proposal-private-property-in-object': 7.21.0_@babel+core@7.21.3
- '@babel/plugin-proposal-unicode-property-regex': 7.18.6_@babel+core@7.21.3
- '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.21.3
- '@babel/plugin-syntax-class-properties': 7.12.13_@babel+core@7.21.3
- '@babel/plugin-syntax-class-static-block': 7.14.5_@babel+core@7.21.3
- '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.21.3
- '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.21.3
- '@babel/plugin-syntax-import-assertions': 7.20.0_@babel+core@7.21.3
- '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.21.3
- '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.21.3
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.21.3
- '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.21.3
- '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.21.3
- '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.21.3
- '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.21.3
- '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.21.3
- '@babel/plugin-syntax-top-level-await': 7.14.5_@babel+core@7.21.3
- '@babel/plugin-transform-arrow-functions': 7.20.7_@babel+core@7.21.3
- '@babel/plugin-transform-async-to-generator': 7.20.7_@babel+core@7.21.3
- '@babel/plugin-transform-block-scoped-functions': 7.18.6_@babel+core@7.21.3
- '@babel/plugin-transform-block-scoping': 7.21.0_@babel+core@7.21.3
- '@babel/plugin-transform-classes': 7.21.0_@babel+core@7.21.3
- '@babel/plugin-transform-computed-properties': 7.20.7_@babel+core@7.21.3
- '@babel/plugin-transform-destructuring': 7.21.3_@babel+core@7.21.3
- '@babel/plugin-transform-dotall-regex': 7.18.6_@babel+core@7.21.3
- '@babel/plugin-transform-duplicate-keys': 7.18.9_@babel+core@7.21.3
- '@babel/plugin-transform-exponentiation-operator': 7.18.6_@babel+core@7.21.3
- '@babel/plugin-transform-for-of': 7.21.0_@babel+core@7.21.3
- '@babel/plugin-transform-function-name': 7.18.9_@babel+core@7.21.3
- '@babel/plugin-transform-literals': 7.18.9_@babel+core@7.21.3
- '@babel/plugin-transform-member-expression-literals': 7.18.6_@babel+core@7.21.3
- '@babel/plugin-transform-modules-amd': 7.20.11_@babel+core@7.21.3
- '@babel/plugin-transform-modules-commonjs': 7.21.2_@babel+core@7.21.3
- '@babel/plugin-transform-modules-systemjs': 7.20.11_@babel+core@7.21.3
- '@babel/plugin-transform-modules-umd': 7.18.6_@babel+core@7.21.3
- '@babel/plugin-transform-named-capturing-groups-regex': 7.20.5_@babel+core@7.21.3
- '@babel/plugin-transform-new-target': 7.18.6_@babel+core@7.21.3
- '@babel/plugin-transform-object-super': 7.18.6_@babel+core@7.21.3
- '@babel/plugin-transform-parameters': 7.21.3_@babel+core@7.21.3
- '@babel/plugin-transform-property-literals': 7.18.6_@babel+core@7.21.3
- '@babel/plugin-transform-regenerator': 7.20.5_@babel+core@7.21.3
- '@babel/plugin-transform-reserved-words': 7.18.6_@babel+core@7.21.3
- '@babel/plugin-transform-shorthand-properties': 7.18.6_@babel+core@7.21.3
- '@babel/plugin-transform-spread': 7.20.7_@babel+core@7.21.3
- '@babel/plugin-transform-sticky-regex': 7.18.6_@babel+core@7.21.3
- '@babel/plugin-transform-template-literals': 7.18.9_@babel+core@7.21.3
- '@babel/plugin-transform-typeof-symbol': 7.18.9_@babel+core@7.21.3
- '@babel/plugin-transform-unicode-escapes': 7.18.10_@babel+core@7.21.3
- '@babel/plugin-transform-unicode-regex': 7.18.6_@babel+core@7.21.3
- '@babel/preset-modules': 0.1.5_@babel+core@7.21.3
+ '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.18.6(@babel/core@7.21.3)
+ '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.20.7(@babel/core@7.21.3)
+ '@babel/plugin-proposal-async-generator-functions': 7.20.7(@babel/core@7.21.3)
+ '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.21.3)
+ '@babel/plugin-proposal-class-static-block': 7.21.0(@babel/core@7.21.3)
+ '@babel/plugin-proposal-dynamic-import': 7.18.6(@babel/core@7.21.3)
+ '@babel/plugin-proposal-export-namespace-from': 7.18.9(@babel/core@7.21.3)
+ '@babel/plugin-proposal-json-strings': 7.18.6(@babel/core@7.21.3)
+ '@babel/plugin-proposal-logical-assignment-operators': 7.20.7(@babel/core@7.21.3)
+ '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.21.3)
+ '@babel/plugin-proposal-numeric-separator': 7.18.6(@babel/core@7.21.3)
+ '@babel/plugin-proposal-object-rest-spread': 7.20.7(@babel/core@7.21.3)
+ '@babel/plugin-proposal-optional-catch-binding': 7.18.6(@babel/core@7.21.3)
+ '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.21.3)
+ '@babel/plugin-proposal-private-methods': 7.18.6(@babel/core@7.21.3)
+ '@babel/plugin-proposal-private-property-in-object': 7.21.0(@babel/core@7.21.3)
+ '@babel/plugin-proposal-unicode-property-regex': 7.18.6(@babel/core@7.21.3)
+ '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.21.3)
+ '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.21.3)
+ '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.21.3)
+ '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.21.3)
+ '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.21.3)
+ '@babel/plugin-syntax-import-assertions': 7.20.0(@babel/core@7.21.3)
+ '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.21.3)
+ '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.21.3)
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.21.3)
+ '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.21.3)
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.21.3)
+ '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.21.3)
+ '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.21.3)
+ '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.21.3)
+ '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.21.3)
+ '@babel/plugin-transform-arrow-functions': 7.20.7(@babel/core@7.21.3)
+ '@babel/plugin-transform-async-to-generator': 7.20.7(@babel/core@7.21.3)
+ '@babel/plugin-transform-block-scoped-functions': 7.18.6(@babel/core@7.21.3)
+ '@babel/plugin-transform-block-scoping': 7.21.0(@babel/core@7.21.3)
+ '@babel/plugin-transform-classes': 7.21.0(@babel/core@7.21.3)
+ '@babel/plugin-transform-computed-properties': 7.20.7(@babel/core@7.21.3)
+ '@babel/plugin-transform-destructuring': 7.21.3(@babel/core@7.21.3)
+ '@babel/plugin-transform-dotall-regex': 7.18.6(@babel/core@7.21.3)
+ '@babel/plugin-transform-duplicate-keys': 7.18.9(@babel/core@7.21.3)
+ '@babel/plugin-transform-exponentiation-operator': 7.18.6(@babel/core@7.21.3)
+ '@babel/plugin-transform-for-of': 7.21.0(@babel/core@7.21.3)
+ '@babel/plugin-transform-function-name': 7.18.9(@babel/core@7.21.3)
+ '@babel/plugin-transform-literals': 7.18.9(@babel/core@7.21.3)
+ '@babel/plugin-transform-member-expression-literals': 7.18.6(@babel/core@7.21.3)
+ '@babel/plugin-transform-modules-amd': 7.20.11(@babel/core@7.21.3)
+ '@babel/plugin-transform-modules-commonjs': 7.21.2(@babel/core@7.21.3)
+ '@babel/plugin-transform-modules-systemjs': 7.20.11(@babel/core@7.21.3)
+ '@babel/plugin-transform-modules-umd': 7.18.6(@babel/core@7.21.3)
+ '@babel/plugin-transform-named-capturing-groups-regex': 7.20.5(@babel/core@7.21.3)
+ '@babel/plugin-transform-new-target': 7.18.6(@babel/core@7.21.3)
+ '@babel/plugin-transform-object-super': 7.18.6(@babel/core@7.21.3)
+ '@babel/plugin-transform-parameters': 7.21.3(@babel/core@7.21.3)
+ '@babel/plugin-transform-property-literals': 7.18.6(@babel/core@7.21.3)
+ '@babel/plugin-transform-regenerator': 7.20.5(@babel/core@7.21.3)
+ '@babel/plugin-transform-reserved-words': 7.18.6(@babel/core@7.21.3)
+ '@babel/plugin-transform-shorthand-properties': 7.18.6(@babel/core@7.21.3)
+ '@babel/plugin-transform-spread': 7.20.7(@babel/core@7.21.3)
+ '@babel/plugin-transform-sticky-regex': 7.18.6(@babel/core@7.21.3)
+ '@babel/plugin-transform-template-literals': 7.18.9(@babel/core@7.21.3)
+ '@babel/plugin-transform-typeof-symbol': 7.18.9(@babel/core@7.21.3)
+ '@babel/plugin-transform-unicode-escapes': 7.18.10(@babel/core@7.21.3)
+ '@babel/plugin-transform-unicode-regex': 7.18.6(@babel/core@7.21.3)
+ '@babel/preset-modules': 0.1.5(@babel/core@7.21.3)
'@babel/types': 7.21.3
- babel-plugin-polyfill-corejs2: 0.3.3_@babel+core@7.21.3
- babel-plugin-polyfill-corejs3: 0.6.0_@babel+core@7.21.3
- babel-plugin-polyfill-regenerator: 0.4.1_@babel+core@7.21.3
+ babel-plugin-polyfill-corejs2: 0.3.3(@babel/core@7.21.3)
+ babel-plugin-polyfill-corejs3: 0.6.0(@babel/core@7.21.3)
+ babel-plugin-polyfill-regenerator: 0.4.1(@babel/core@7.21.3)
core-js-compat: 3.29.1
semver: 6.3.0
transitivePeerDependencies:
- supports-color
dev: false
- /@babel/preset-modules/0.1.5_@babel+core@7.21.3:
+ /@babel/preset-modules@0.1.5(@babel/core@7.21.3):
resolution: {integrity: sha512-A57th6YRG7oR3cq/yt/Y84MvGgE0eJG2F1JLhKuyG+jFxEgrd/HAMJatiFtmOiZurz+0DkrvbheCLaV5f2JfjA==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.21.3
'@babel/helper-plugin-utils': 7.20.2
- '@babel/plugin-proposal-unicode-property-regex': 7.18.6_@babel+core@7.21.3
- '@babel/plugin-transform-dotall-regex': 7.18.6_@babel+core@7.21.3
+ '@babel/plugin-proposal-unicode-property-regex': 7.18.6(@babel/core@7.21.3)
+ '@babel/plugin-transform-dotall-regex': 7.18.6(@babel/core@7.21.3)
'@babel/types': 7.21.3
esutils: 2.0.3
dev: false
- /@babel/preset-react/7.18.6_@babel+core@7.21.3:
+ /@babel/preset-react@7.18.6(@babel/core@7.21.3):
resolution: {integrity: sha512-zXr6atUmyYdiWRVLOZahakYmOBHtWc2WGCkP8PYTgZi0iJXDY2CN180TdrIW4OGOAdLc7TifzDIvtx6izaRIzg==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1449,13 +1465,13 @@ packages:
'@babel/core': 7.21.3
'@babel/helper-plugin-utils': 7.20.2
'@babel/helper-validator-option': 7.21.0
- '@babel/plugin-transform-react-display-name': 7.18.6_@babel+core@7.21.3
- '@babel/plugin-transform-react-jsx': 7.21.0_@babel+core@7.21.3
- '@babel/plugin-transform-react-jsx-development': 7.18.6_@babel+core@7.21.3
- '@babel/plugin-transform-react-pure-annotations': 7.18.6_@babel+core@7.21.3
+ '@babel/plugin-transform-react-display-name': 7.18.6(@babel/core@7.21.3)
+ '@babel/plugin-transform-react-jsx': 7.21.0(@babel/core@7.21.3)
+ '@babel/plugin-transform-react-jsx-development': 7.18.6(@babel/core@7.21.3)
+ '@babel/plugin-transform-react-pure-annotations': 7.18.6(@babel/core@7.21.3)
dev: false
- /@babel/preset-typescript/7.21.0_@babel+core@7.21.3:
+ /@babel/preset-typescript@7.21.0(@babel/core@7.21.3):
resolution: {integrity: sha512-myc9mpoVA5m1rF8K8DgLEatOYFDpwC+RkMkjZ0Du6uI62YvDe8uxIEYVs/VCdSJ097nlALiU/yBC7//3nI+hNg==}
engines: {node: '>=6.9.0'}
peerDependencies:
@@ -1464,16 +1480,16 @@ packages:
'@babel/core': 7.21.3
'@babel/helper-plugin-utils': 7.20.2
'@babel/helper-validator-option': 7.21.0
- '@babel/plugin-transform-typescript': 7.21.3_@babel+core@7.21.3
+ '@babel/plugin-transform-typescript': 7.21.3(@babel/core@7.21.3)
transitivePeerDependencies:
- supports-color
dev: false
- /@babel/regjsgen/0.8.0:
+ /@babel/regjsgen@0.8.0:
resolution: {integrity: sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA==}
dev: false
- /@babel/runtime-corejs3/7.21.0:
+ /@babel/runtime-corejs3@7.21.0:
resolution: {integrity: sha512-TDD4UJzos3JJtM+tHX+w2Uc+KWj7GV+VKKFdMVd2Rx8sdA19hcc3P3AHFYd5LVOw+pYuSd5lICC3gm52B6Rwxw==}
engines: {node: '>=6.9.0'}
dependencies:
@@ -1481,14 +1497,14 @@ packages:
regenerator-runtime: 0.13.11
dev: false
- /@babel/runtime/7.21.0:
+ /@babel/runtime@7.21.0:
resolution: {integrity: sha512-xwII0//EObnq89Ji5AKYQaRYiW/nZ3llSv29d49IuxPhKbtJoLP+9QUUZ4nVragQVtaVGeZrpB+ZtG/Pdy/POw==}
engines: {node: '>=6.9.0'}
dependencies:
regenerator-runtime: 0.13.11
dev: false
- /@babel/template/7.20.7:
+ /@babel/template@7.20.7:
resolution: {integrity: sha512-8SegXApWe6VoNw0r9JHpSteLKTpTiLZ4rMlGIm9JQ18KiCtyQiAMEazujAHrUS5flrcqYZa75ukev3P6QmUwUw==}
engines: {node: '>=6.9.0'}
dependencies:
@@ -1497,7 +1513,7 @@ packages:
'@babel/types': 7.21.3
dev: false
- /@babel/traverse/7.21.3:
+ /@babel/traverse@7.21.3:
resolution: {integrity: sha512-XLyopNeaTancVitYZe2MlUEvgKb6YVVPXzofHgqHijCImG33b/uTurMS488ht/Hbsb2XK3U2BnSTxKVNGV3nGQ==}
engines: {node: '>=6.9.0'}
dependencies:
@@ -1515,7 +1531,7 @@ packages:
- supports-color
dev: false
- /@babel/types/7.21.3:
+ /@babel/types@7.21.3:
resolution: {integrity: sha512-sBGdETxC+/M4o/zKC0sl6sjWv62WFR/uzxrJ6uYyMLZOUlPnwzw0tKgVHOXxaAd5l2g8pEDM5RZ495GPQI77kg==}
engines: {node: '>=6.9.0'}
dependencies:
@@ -1524,23 +1540,23 @@ packages:
to-fast-properties: 2.0.0
dev: false
- /@colors/colors/1.5.0:
+ /@colors/colors@1.5.0:
resolution: {integrity: sha512-ooWCrlZP11i8GImSjTHYHLkvFDP48nS4+204nGb1RiX/WXYHmJA2III9/e2DWVabCESdW7hBAEzHRqUn9OUVvQ==}
engines: {node: '>=0.1.90'}
requiresBuild: true
dev: false
optional: true
- /@discoveryjs/json-ext/0.5.7:
+ /@discoveryjs/json-ext@0.5.7:
resolution: {integrity: sha512-dBVuXR082gk3jsFp7Rd/JI4kytwGHecnCoTtXFb7DB6CNHp4rg5k1bhg0nWdLGLnOV71lmDzGQaLMy8iPLY0pw==}
engines: {node: '>=10.0.0'}
dev: false
- /@docsearch/css/3.3.3:
+ /@docsearch/css@3.3.3:
resolution: {integrity: sha512-6SCwI7P8ao+se1TUsdZ7B4XzL+gqeQZnBc+2EONZlcVa0dVrk0NjETxozFKgMv0eEGH8QzP1fkN+A1rH61l4eg==}
dev: false
- /@docsearch/react/3.3.3_jfzz2d5vfhcn67ivxe4p52qtje:
+ /@docsearch/react@3.3.3(@algolia/client-search@4.15.0)(@types/react@17.0.48)(react-dom@17.0.2)(react@17.0.2):
resolution: {integrity: sha512-pLa0cxnl+G0FuIDuYlW+EBK6Rw2jwLw9B1RHIeS4N4s2VhsfJ/wzeCi3CWcs5yVfxLd5ZK50t//TMA5e79YT7Q==}
peerDependencies:
'@types/react': '>= 16.8.0 < 19.0.0'
@@ -1555,145 +1571,44 @@ packages:
optional: true
dependencies:
'@algolia/autocomplete-core': 1.7.4
- '@algolia/autocomplete-preset-algolia': 1.7.4_54vqn5ucj5r6a67cmv5tg3mbje
+ '@algolia/autocomplete-preset-algolia': 1.7.4(@algolia/client-search@4.15.0)(algoliasearch@4.15.0)
'@docsearch/css': 3.3.3
'@types/react': 17.0.48
algoliasearch: 4.15.0
react: 17.0.2
- react-dom: 17.0.2_react@17.0.2
+ react-dom: 17.0.2(react@17.0.2)
transitivePeerDependencies:
- '@algolia/client-search'
dev: false
- /@docusaurus/core/2.3.1_icpz55ch5zovp2aqeb3azvztt4:
- resolution: {integrity: sha512-0Jd4jtizqnRAr7svWaBbbrCCN8mzBNd2xFLoT/IM7bGfFie5y58oz97KzXliwiLY3zWjqMXjQcuP1a5VgCv2JA==}
- engines: {node: '>=16.14'}
- hasBin: true
- peerDependencies:
- react: ^16.8.4 || ^17.0.0
- react-dom: ^16.8.4 || ^17.0.0
- dependencies:
- '@babel/core': 7.21.3
- '@babel/generator': 7.21.3
- '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.21.3
- '@babel/plugin-transform-runtime': 7.21.0_@babel+core@7.21.3
- '@babel/preset-env': 7.20.2_@babel+core@7.21.3
- '@babel/preset-react': 7.18.6_@babel+core@7.21.3
- '@babel/preset-typescript': 7.21.0_@babel+core@7.21.3
- '@babel/runtime': 7.21.0
- '@babel/runtime-corejs3': 7.21.0
- '@babel/traverse': 7.21.3
- '@docusaurus/cssnano-preset': 2.3.1
- '@docusaurus/logger': 2.3.1
- '@docusaurus/mdx-loader': 2.3.1_sfoxds7t5ydpegc3knd667wn6m
- '@docusaurus/react-loadable': 5.5.2_react@17.0.2
- '@docusaurus/utils': 2.3.1
- '@docusaurus/utils-common': 2.3.1
- '@docusaurus/utils-validation': 2.3.1
- '@slorber/static-site-generator-webpack-plugin': 4.0.7
- '@svgr/webpack': 6.5.1
- autoprefixer: 10.4.14_postcss@8.4.21
- babel-loader: 8.3.0_qtovpurzjlo3biun26ymnwui7i
- babel-plugin-dynamic-import-node: 2.3.3
- boxen: 6.2.1
- chalk: 4.1.2
- chokidar: 3.5.3
- clean-css: 5.3.2
- cli-table3: 0.6.3
- combine-promises: 1.1.0
- commander: 5.1.0
- copy-webpack-plugin: 11.0.0_webpack@5.76.3
- core-js: 3.29.1
- css-loader: 6.7.3_webpack@5.76.3
- css-minimizer-webpack-plugin: 4.2.2_6xivdjm2sml3syouufpdefilzi
- cssnano: 5.1.15_postcss@8.4.21
- del: 6.1.1
- detect-port: 1.5.1
- escape-html: 1.0.3
- eta: 2.0.1
- file-loader: 6.2.0_webpack@5.76.3
- fs-extra: 10.1.0
- html-minifier-terser: 6.1.0
- html-tags: 3.2.0
- html-webpack-plugin: 5.5.0_webpack@5.76.3
- import-fresh: 3.3.0
- leven: 3.1.0
- lodash: 4.17.21
- mini-css-extract-plugin: 2.7.5_webpack@5.76.3
- postcss: 8.4.21
- postcss-loader: 7.1.0_twwyhqqim6liv4fz2ggv7g4m5a
- prompts: 2.4.2
- react: 17.0.2
- react-dev-utils: 12.0.1_3x6qlapdvvaw2noz63esh63n6e
- react-dom: 17.0.2_react@17.0.2
- react-helmet-async: 1.3.0_sfoxds7t5ydpegc3knd667wn6m
- react-loadable: /@docusaurus/react-loadable/5.5.2_react@17.0.2
- react-loadable-ssr-addon-v5-slorber: 1.0.1_r7pi7vlw6nkfjbr5epugnhqe3u
- react-router: 5.3.4_react@17.0.2
- react-router-config: 5.1.1_2dl5roaqnyqqppnjni7uetnb3a
- react-router-dom: 5.3.4_react@17.0.2
- rtl-detect: 1.0.4
- semver: 7.3.8
- serve-handler: 6.1.5
- shelljs: 0.8.5
- terser-webpack-plugin: 5.3.7_webpack@5.76.3
- tslib: 2.5.0
- update-notifier: 5.1.0
- url-loader: 4.1.1_cj4axkvnwozfmnmvgy4d36yxaq
- wait-on: 6.0.1
- webpack: 5.76.3
- webpack-bundle-analyzer: 4.8.0
- webpack-dev-server: 4.13.1_webpack@5.76.3
- webpack-merge: 5.8.0
- webpackbar: 5.0.2_webpack@5.76.3
- transitivePeerDependencies:
- - '@docusaurus/types'
- - '@parcel/css'
- - '@swc/core'
- - '@swc/css'
- - bufferutil
- - csso
- - debug
- - esbuild
- - eslint
- - lightningcss
- - supports-color
- - typescript
- - uglify-js
- - utf-8-validate
- - vue-template-compiler
- - webpack-cli
- dev: false
-
- /@docusaurus/core/2.3.1_qvngpfhfossq5xvrkoyfzqe2xe:
- resolution: {integrity: sha512-0Jd4jtizqnRAr7svWaBbbrCCN8mzBNd2xFLoT/IM7bGfFie5y58oz97KzXliwiLY3zWjqMXjQcuP1a5VgCv2JA==}
+ /@docusaurus/core@2.4.0(@docusaurus/types@2.4.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.0.2):
+ resolution: {integrity: sha512-J55/WEoIpRcLf3afO5POHPguVZosKmJEQWKBL+K7TAnfuE7i+Y0NPLlkKtnWCehagGsgTqClfQEexH/UT4kELA==}
engines: {node: '>=16.14'}
- hasBin: true
peerDependencies:
react: ^16.8.4 || ^17.0.0
react-dom: ^16.8.4 || ^17.0.0
dependencies:
'@babel/core': 7.21.3
'@babel/generator': 7.21.3
- '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.21.3
- '@babel/plugin-transform-runtime': 7.21.0_@babel+core@7.21.3
- '@babel/preset-env': 7.20.2_@babel+core@7.21.3
- '@babel/preset-react': 7.18.6_@babel+core@7.21.3
- '@babel/preset-typescript': 7.21.0_@babel+core@7.21.3
+ '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.21.3)
+ '@babel/plugin-transform-runtime': 7.21.0(@babel/core@7.21.3)
+ '@babel/preset-env': 7.20.2(@babel/core@7.21.3)
+ '@babel/preset-react': 7.18.6(@babel/core@7.21.3)
+ '@babel/preset-typescript': 7.21.0(@babel/core@7.21.3)
'@babel/runtime': 7.21.0
'@babel/runtime-corejs3': 7.21.0
'@babel/traverse': 7.21.3
- '@docusaurus/cssnano-preset': 2.3.1
- '@docusaurus/logger': 2.3.1
- '@docusaurus/mdx-loader': 2.3.1_nucoingj6jnpt355a2yzaplk5e
- '@docusaurus/react-loadable': 5.5.2_react@17.0.2
- '@docusaurus/utils': 2.3.1_@docusaurus+types@2.3.1
- '@docusaurus/utils-common': 2.3.1_@docusaurus+types@2.3.1
- '@docusaurus/utils-validation': 2.3.1_@docusaurus+types@2.3.1
+ '@docusaurus/cssnano-preset': 2.4.0
+ '@docusaurus/logger': 2.4.0
+ '@docusaurus/mdx-loader': 2.4.0(@docusaurus/types@2.4.0)(react-dom@17.0.2)(react@17.0.2)
+ '@docusaurus/react-loadable': 5.5.2(react@17.0.2)
+ '@docusaurus/utils': 2.4.0(@docusaurus/types@2.4.0)
+ '@docusaurus/utils-common': 2.4.0(@docusaurus/types@2.4.0)
+ '@docusaurus/utils-validation': 2.4.0(@docusaurus/types@2.4.0)
'@slorber/static-site-generator-webpack-plugin': 4.0.7
'@svgr/webpack': 6.5.1
- autoprefixer: 10.4.14_postcss@8.4.21
- babel-loader: 8.3.0_qtovpurzjlo3biun26ymnwui7i
+ autoprefixer: 10.4.14(postcss@8.4.21)
+ babel-loader: 8.3.0(@babel/core@7.21.3)(webpack@5.76.3)
babel-plugin-dynamic-import-node: 2.3.3
boxen: 6.2.1
chalk: 4.1.2
@@ -1702,50 +1617,50 @@ packages:
cli-table3: 0.6.3
combine-promises: 1.1.0
commander: 5.1.0
- copy-webpack-plugin: 11.0.0_webpack@5.76.3
+ copy-webpack-plugin: 11.0.0(webpack@5.76.3)
core-js: 3.29.1
- css-loader: 6.7.3_webpack@5.76.3
- css-minimizer-webpack-plugin: 4.2.2_6xivdjm2sml3syouufpdefilzi
- cssnano: 5.1.15_postcss@8.4.21
+ css-loader: 6.7.3(webpack@5.76.3)
+ css-minimizer-webpack-plugin: 4.2.2(clean-css@5.3.2)(webpack@5.76.3)
+ cssnano: 5.1.15(postcss@8.4.21)
del: 6.1.1
detect-port: 1.5.1
escape-html: 1.0.3
eta: 2.0.1
- file-loader: 6.2.0_webpack@5.76.3
+ file-loader: 6.2.0(webpack@5.76.3)
fs-extra: 10.1.0
html-minifier-terser: 6.1.0
html-tags: 3.2.0
- html-webpack-plugin: 5.5.0_webpack@5.76.3
+ html-webpack-plugin: 5.5.0(webpack@5.76.3)
import-fresh: 3.3.0
leven: 3.1.0
lodash: 4.17.21
- mini-css-extract-plugin: 2.7.5_webpack@5.76.3
+ mini-css-extract-plugin: 2.7.5(webpack@5.76.3)
postcss: 8.4.21
- postcss-loader: 7.1.0_twwyhqqim6liv4fz2ggv7g4m5a
+ postcss-loader: 7.1.0(postcss@8.4.21)(webpack@5.76.3)
prompts: 2.4.2
react: 17.0.2
- react-dev-utils: 12.0.1_3x6qlapdvvaw2noz63esh63n6e
- react-dom: 17.0.2_react@17.0.2
- react-helmet-async: 1.3.0_sfoxds7t5ydpegc3knd667wn6m
- react-loadable: /@docusaurus/react-loadable/5.5.2_react@17.0.2
- react-loadable-ssr-addon-v5-slorber: 1.0.1_r7pi7vlw6nkfjbr5epugnhqe3u
- react-router: 5.3.4_react@17.0.2
- react-router-config: 5.1.1_2dl5roaqnyqqppnjni7uetnb3a
- react-router-dom: 5.3.4_react@17.0.2
+ react-dev-utils: 12.0.1(typescript@5.0.2)(webpack@5.76.3)
+ react-dom: 17.0.2(react@17.0.2)
+ react-helmet-async: 1.3.0(react-dom@17.0.2)(react@17.0.2)
+ react-loadable: /@docusaurus/react-loadable@5.5.2(react@17.0.2)
+ react-loadable-ssr-addon-v5-slorber: 1.0.1(@docusaurus/react-loadable@5.5.2)(webpack@5.76.3)
+ react-router: 5.3.4(react@17.0.2)
+ react-router-config: 5.1.1(react-router@5.3.4)(react@17.0.2)
+ react-router-dom: 5.3.4(react@17.0.2)
rtl-detect: 1.0.4
semver: 7.3.8
serve-handler: 6.1.5
shelljs: 0.8.5
- terser-webpack-plugin: 5.3.7_webpack@5.76.3
+ terser-webpack-plugin: 5.3.7(webpack@5.76.3)
tslib: 2.5.0
update-notifier: 5.1.0
- url-loader: 4.1.1_cj4axkvnwozfmnmvgy4d36yxaq
+ url-loader: 4.1.1(file-loader@6.2.0)(webpack@5.76.3)
wait-on: 6.0.1
webpack: 5.76.3
webpack-bundle-analyzer: 4.8.0
- webpack-dev-server: 4.13.1_webpack@5.76.3
+ webpack-dev-server: 4.13.1(webpack@5.76.3)
webpack-merge: 5.8.0
- webpackbar: 5.0.2_webpack@5.76.3
+ webpackbar: 5.0.2(webpack@5.76.3)
transitivePeerDependencies:
- '@docusaurus/types'
- '@parcel/css'
@@ -1765,61 +1680,26 @@ packages:
- webpack-cli
dev: false
- /@docusaurus/cssnano-preset/2.3.1:
- resolution: {integrity: sha512-7mIhAROES6CY1GmCjR4CZkUfjTL6B3u6rKHK0ChQl2d1IevYXq/k/vFgvOrJfcKxiObpMnE9+X6R2Wt1KqxC6w==}
+ /@docusaurus/cssnano-preset@2.4.0:
+ resolution: {integrity: sha512-RmdiA3IpsLgZGXRzqnmTbGv43W4OD44PCo+6Q/aYjEM2V57vKCVqNzuafE94jv0z/PjHoXUrjr69SaRymBKYYw==}
engines: {node: '>=16.14'}
dependencies:
- cssnano-preset-advanced: 5.3.10_postcss@8.4.21
+ cssnano-preset-advanced: 5.3.10(postcss@8.4.21)
postcss: 8.4.21
- postcss-sort-media-queries: 4.3.0_postcss@8.4.21
+ postcss-sort-media-queries: 4.3.0(postcss@8.4.21)
tslib: 2.5.0
dev: false
- /@docusaurus/logger/2.3.1:
- resolution: {integrity: sha512-2lAV/olKKVr9qJhfHFCaqBIl8FgYjbUFwgUnX76+cULwQYss+42ZQ3grHGFvI0ocN2X55WcYe64ellQXz7suqg==}
+ /@docusaurus/logger@2.4.0:
+ resolution: {integrity: sha512-T8+qR4APN+MjcC9yL2Es+xPJ2923S9hpzDmMtdsOcUGLqpCGBbU1vp3AAqDwXtVgFkq+NsEk7sHdVsfLWR/AXw==}
engines: {node: '>=16.14'}
dependencies:
chalk: 4.1.2
tslib: 2.5.0
dev: false
- /@docusaurus/mdx-loader/2.3.1_nucoingj6jnpt355a2yzaplk5e:
- resolution: {integrity: sha512-Gzga7OsxQRpt3392K9lv/bW4jGppdLFJh3luKRknCKSAaZrmVkOQv2gvCn8LAOSZ3uRg5No7AgYs/vpL8K94lA==}
- engines: {node: '>=16.14'}
- peerDependencies:
- react: ^16.8.4 || ^17.0.0
- react-dom: ^16.8.4 || ^17.0.0
- dependencies:
- '@babel/parser': 7.21.3
- '@babel/traverse': 7.21.3
- '@docusaurus/logger': 2.3.1
- '@docusaurus/utils': 2.3.1_@docusaurus+types@2.3.1
- '@mdx-js/mdx': 1.6.22
- escape-html: 1.0.3
- file-loader: 6.2.0_webpack@5.76.3
- fs-extra: 10.1.0
- image-size: 1.0.2
- mdast-util-to-string: 2.0.0
- react: 17.0.2
- react-dom: 17.0.2_react@17.0.2
- remark-emoji: 2.2.0
- stringify-object: 3.3.0
- tslib: 2.5.0
- unified: 9.2.2
- unist-util-visit: 2.0.3
- url-loader: 4.1.1_cj4axkvnwozfmnmvgy4d36yxaq
- webpack: 5.76.3
- transitivePeerDependencies:
- - '@docusaurus/types'
- - '@swc/core'
- - esbuild
- - supports-color
- - uglify-js
- - webpack-cli
- dev: false
-
- /@docusaurus/mdx-loader/2.3.1_sfoxds7t5ydpegc3knd667wn6m:
- resolution: {integrity: sha512-Gzga7OsxQRpt3392K9lv/bW4jGppdLFJh3luKRknCKSAaZrmVkOQv2gvCn8LAOSZ3uRg5No7AgYs/vpL8K94lA==}
+ /@docusaurus/mdx-loader@2.4.0(@docusaurus/types@2.4.0)(react-dom@17.0.2)(react@17.0.2):
+ resolution: {integrity: sha512-GWoH4izZKOmFoC+gbI2/y8deH/xKLvzz/T5BsEexBye8EHQlwsA7FMrVa48N063bJBH4FUOiRRXxk5rq9cC36g==}
engines: {node: '>=16.14'}
peerDependencies:
react: ^16.8.4 || ^17.0.0
@@ -1827,22 +1707,22 @@ packages:
dependencies:
'@babel/parser': 7.21.3
'@babel/traverse': 7.21.3
- '@docusaurus/logger': 2.3.1
- '@docusaurus/utils': 2.3.1
+ '@docusaurus/logger': 2.4.0
+ '@docusaurus/utils': 2.4.0(@docusaurus/types@2.4.0)
'@mdx-js/mdx': 1.6.22
escape-html: 1.0.3
- file-loader: 6.2.0_webpack@5.76.3
+ file-loader: 6.2.0(webpack@5.76.3)
fs-extra: 10.1.0
image-size: 1.0.2
mdast-util-to-string: 2.0.0
react: 17.0.2
- react-dom: 17.0.2_react@17.0.2
+ react-dom: 17.0.2(react@17.0.2)
remark-emoji: 2.2.0
stringify-object: 3.3.0
tslib: 2.5.0
unified: 9.2.2
unist-util-visit: 2.0.3
- url-loader: 4.1.1_cj4axkvnwozfmnmvgy4d36yxaq
+ url-loader: 4.1.1(file-loader@6.2.0)(webpack@5.76.3)
webpack: 5.76.3
transitivePeerDependencies:
- '@docusaurus/types'
@@ -1853,22 +1733,22 @@ packages:
- webpack-cli
dev: false
- /@docusaurus/module-type-aliases/2.3.1_sfoxds7t5ydpegc3knd667wn6m:
- resolution: {integrity: sha512-6KkxfAVOJqIUynTRb/tphYCl+co3cP0PlHiMDbi+SzmYxMdgIrwYqH9yAnGSDoN6Jk2ZE/JY/Azs/8LPgKP48A==}
+ /@docusaurus/module-type-aliases@2.4.0(react-dom@17.0.2)(react@17.0.2):
+ resolution: {integrity: sha512-YEQO2D3UXs72qCn8Cr+RlycSQXVGN9iEUyuHwTuK4/uL/HFomB2FHSU0vSDM23oLd+X/KibQ3Ez6nGjQLqXcHg==}
peerDependencies:
react: '*'
react-dom: '*'
dependencies:
- '@docusaurus/react-loadable': 5.5.2_react@17.0.2
- '@docusaurus/types': 2.3.1_sfoxds7t5ydpegc3knd667wn6m
+ '@docusaurus/react-loadable': 5.5.2(react@17.0.2)
+ '@docusaurus/types': 2.4.0(react-dom@17.0.2)(react@17.0.2)
'@types/history': 4.7.11
'@types/react': 17.0.48
'@types/react-router-config': 5.0.6
'@types/react-router-dom': 5.3.3
react: 17.0.2
- react-dom: 17.0.2_react@17.0.2
- react-helmet-async: 1.3.0_sfoxds7t5ydpegc3knd667wn6m
- react-loadable: /@docusaurus/react-loadable/5.5.2_react@17.0.2
+ react-dom: 17.0.2(react@17.0.2)
+ react-helmet-async: 1.3.0(react-dom@17.0.2)(react@17.0.2)
+ react-loadable: /@docusaurus/react-loadable@5.5.2(react@17.0.2)
transitivePeerDependencies:
- '@swc/core'
- esbuild
@@ -1876,23 +1756,23 @@ packages:
- webpack-cli
dev: false
- /@docusaurus/plugin-client-redirects/2.3.1_icpz55ch5zovp2aqeb3azvztt4:
- resolution: {integrity: sha512-Ye0z36/L8685ni0DIxHqPPaHIXFXiSF90QYiYfpODBX6NxvvveUTyylsDBU1GQhPXPn1bd39QgaOuZ+j9gfaog==}
+ /@docusaurus/plugin-client-redirects@2.4.0(react-dom@17.0.2)(react@17.0.2)(typescript@5.0.2):
+ resolution: {integrity: sha512-HsS+Dc2ZLWhfpjYJ5LIrOB/XfXZcElcC7o1iA4yIVtiFz+LHhwP863fhqbwSJ1c6tNDOYBH3HwbskHrc/PIn7Q==}
engines: {node: '>=16.14'}
peerDependencies:
react: ^16.8.4 || ^17.0.0
react-dom: ^16.8.4 || ^17.0.0
dependencies:
- '@docusaurus/core': 2.3.1_icpz55ch5zovp2aqeb3azvztt4
- '@docusaurus/logger': 2.3.1
- '@docusaurus/utils': 2.3.1
- '@docusaurus/utils-common': 2.3.1
- '@docusaurus/utils-validation': 2.3.1
+ '@docusaurus/core': 2.4.0(@docusaurus/types@2.4.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.0.2)
+ '@docusaurus/logger': 2.4.0
+ '@docusaurus/utils': 2.4.0(@docusaurus/types@2.4.0)
+ '@docusaurus/utils-common': 2.4.0(@docusaurus/types@2.4.0)
+ '@docusaurus/utils-validation': 2.4.0(@docusaurus/types@2.4.0)
eta: 2.0.1
fs-extra: 10.1.0
lodash: 4.17.21
react: 17.0.2
- react-dom: 17.0.2_react@17.0.2
+ react-dom: 17.0.2(react@17.0.2)
tslib: 2.5.0
transitivePeerDependencies:
- '@docusaurus/types'
@@ -1913,26 +1793,26 @@ packages:
- webpack-cli
dev: false
- /@docusaurus/plugin-content-blog/2.3.1_icpz55ch5zovp2aqeb3azvztt4:
- resolution: {integrity: sha512-f5LjqX+9WkiLyGiQ41x/KGSJ/9bOjSD8lsVhPvYeUYHCtYpuiDKfhZE07O4EqpHkBx4NQdtQDbp+aptgHSTuiw==}
+ /@docusaurus/plugin-content-blog@2.4.0(react-dom@17.0.2)(react@17.0.2)(typescript@5.0.2):
+ resolution: {integrity: sha512-YwkAkVUxtxoBAIj/MCb4ohN0SCtHBs4AS75jMhPpf67qf3j+U/4n33cELq7567hwyZ6fMz2GPJcVmctzlGGThQ==}
engines: {node: '>=16.14'}
peerDependencies:
react: ^16.8.4 || ^17.0.0
react-dom: ^16.8.4 || ^17.0.0
dependencies:
- '@docusaurus/core': 2.3.1_qvngpfhfossq5xvrkoyfzqe2xe
- '@docusaurus/logger': 2.3.1
- '@docusaurus/mdx-loader': 2.3.1_nucoingj6jnpt355a2yzaplk5e
- '@docusaurus/types': 2.3.1_sfoxds7t5ydpegc3knd667wn6m
- '@docusaurus/utils': 2.3.1_@docusaurus+types@2.3.1
- '@docusaurus/utils-common': 2.3.1_@docusaurus+types@2.3.1
- '@docusaurus/utils-validation': 2.3.1_@docusaurus+types@2.3.1
+ '@docusaurus/core': 2.4.0(@docusaurus/types@2.4.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.0.2)
+ '@docusaurus/logger': 2.4.0
+ '@docusaurus/mdx-loader': 2.4.0(@docusaurus/types@2.4.0)(react-dom@17.0.2)(react@17.0.2)
+ '@docusaurus/types': 2.4.0(react-dom@17.0.2)(react@17.0.2)
+ '@docusaurus/utils': 2.4.0(@docusaurus/types@2.4.0)
+ '@docusaurus/utils-common': 2.4.0(@docusaurus/types@2.4.0)
+ '@docusaurus/utils-validation': 2.4.0(@docusaurus/types@2.4.0)
cheerio: 1.0.0-rc.12
feed: 4.2.2
fs-extra: 10.1.0
lodash: 4.17.21
react: 17.0.2
- react-dom: 17.0.2_react@17.0.2
+ react-dom: 17.0.2(react@17.0.2)
reading-time: 1.5.0
tslib: 2.5.0
unist-util-visit: 2.0.3
@@ -1956,20 +1836,20 @@ packages:
- webpack-cli
dev: false
- /@docusaurus/plugin-content-docs/2.3.1_icpz55ch5zovp2aqeb3azvztt4:
- resolution: {integrity: sha512-DxztTOBEruv7qFxqUtbsqXeNcHqcVEIEe+NQoI1oi2DBmKBhW/o0MIal8lt+9gvmpx3oYtlwmLOOGepxZgJGkw==}
+ /@docusaurus/plugin-content-docs@2.4.0(react-dom@17.0.2)(react@17.0.2)(typescript@5.0.2):
+ resolution: {integrity: sha512-ic/Z/ZN5Rk/RQo+Io6rUGpToOtNbtPloMR2JcGwC1xT2riMu6zzfSwmBi9tHJgdXH6CB5jG+0dOZZO8QS5tmDg==}
engines: {node: '>=16.14'}
peerDependencies:
react: ^16.8.4 || ^17.0.0
react-dom: ^16.8.4 || ^17.0.0
dependencies:
- '@docusaurus/core': 2.3.1_qvngpfhfossq5xvrkoyfzqe2xe
- '@docusaurus/logger': 2.3.1
- '@docusaurus/mdx-loader': 2.3.1_nucoingj6jnpt355a2yzaplk5e
- '@docusaurus/module-type-aliases': 2.3.1_sfoxds7t5ydpegc3knd667wn6m
- '@docusaurus/types': 2.3.1_sfoxds7t5ydpegc3knd667wn6m
- '@docusaurus/utils': 2.3.1_@docusaurus+types@2.3.1
- '@docusaurus/utils-validation': 2.3.1_@docusaurus+types@2.3.1
+ '@docusaurus/core': 2.4.0(@docusaurus/types@2.4.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.0.2)
+ '@docusaurus/logger': 2.4.0
+ '@docusaurus/mdx-loader': 2.4.0(@docusaurus/types@2.4.0)(react-dom@17.0.2)(react@17.0.2)
+ '@docusaurus/module-type-aliases': 2.4.0(react-dom@17.0.2)(react@17.0.2)
+ '@docusaurus/types': 2.4.0(react-dom@17.0.2)(react@17.0.2)
+ '@docusaurus/utils': 2.4.0(@docusaurus/types@2.4.0)
+ '@docusaurus/utils-validation': 2.4.0(@docusaurus/types@2.4.0)
'@types/react-router-config': 5.0.6
combine-promises: 1.1.0
fs-extra: 10.1.0
@@ -1977,7 +1857,7 @@ packages:
js-yaml: 4.1.0
lodash: 4.17.21
react: 17.0.2
- react-dom: 17.0.2_react@17.0.2
+ react-dom: 17.0.2(react@17.0.2)
tslib: 2.5.0
utility-types: 3.10.0
webpack: 5.76.3
@@ -1999,21 +1879,21 @@ packages:
- webpack-cli
dev: false
- /@docusaurus/plugin-content-pages/2.3.1_icpz55ch5zovp2aqeb3azvztt4:
- resolution: {integrity: sha512-E80UL6hvKm5VVw8Ka8YaVDtO6kWWDVUK4fffGvkpQ/AJQDOg99LwOXKujPoICC22nUFTsZ2Hp70XvpezCsFQaA==}
+ /@docusaurus/plugin-content-pages@2.4.0(react-dom@17.0.2)(react@17.0.2)(typescript@5.0.2):
+ resolution: {integrity: sha512-Pk2pOeOxk8MeU3mrTU0XLIgP9NZixbdcJmJ7RUFrZp1Aj42nd0RhIT14BGvXXyqb8yTQlk4DmYGAzqOfBsFyGw==}
engines: {node: '>=16.14'}
peerDependencies:
react: ^16.8.4 || ^17.0.0
react-dom: ^16.8.4 || ^17.0.0
dependencies:
- '@docusaurus/core': 2.3.1_qvngpfhfossq5xvrkoyfzqe2xe
- '@docusaurus/mdx-loader': 2.3.1_nucoingj6jnpt355a2yzaplk5e
- '@docusaurus/types': 2.3.1_sfoxds7t5ydpegc3knd667wn6m
- '@docusaurus/utils': 2.3.1_@docusaurus+types@2.3.1
- '@docusaurus/utils-validation': 2.3.1_@docusaurus+types@2.3.1
+ '@docusaurus/core': 2.4.0(@docusaurus/types@2.4.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.0.2)
+ '@docusaurus/mdx-loader': 2.4.0(@docusaurus/types@2.4.0)(react-dom@17.0.2)(react@17.0.2)
+ '@docusaurus/types': 2.4.0(react-dom@17.0.2)(react@17.0.2)
+ '@docusaurus/utils': 2.4.0(@docusaurus/types@2.4.0)
+ '@docusaurus/utils-validation': 2.4.0(@docusaurus/types@2.4.0)
fs-extra: 10.1.0
react: 17.0.2
- react-dom: 17.0.2_react@17.0.2
+ react-dom: 17.0.2(react@17.0.2)
tslib: 2.5.0
webpack: 5.76.3
transitivePeerDependencies:
@@ -2034,20 +1914,20 @@ packages:
- webpack-cli
dev: false
- /@docusaurus/plugin-debug/2.3.1_xsnt2vwzwdr7j3e5zjkw6lfu74:
- resolution: {integrity: sha512-Ujpml1Ppg4geB/2hyu2diWnO49az9U2bxM9Shen7b6qVcyFisNJTkVG2ocvLC7wM1efTJcUhBO6zAku2vKJGMw==}
+ /@docusaurus/plugin-debug@2.4.0(@types/react@17.0.48)(react-dom@17.0.2)(react@17.0.2)(typescript@5.0.2):
+ resolution: {integrity: sha512-KC56DdYjYT7Txyux71vXHXGYZuP6yYtqwClvYpjKreWIHWus5Zt6VNi23rMZv3/QKhOCrN64zplUbdfQMvddBQ==}
engines: {node: '>=16.14'}
peerDependencies:
react: ^16.8.4 || ^17.0.0
react-dom: ^16.8.4 || ^17.0.0
dependencies:
- '@docusaurus/core': 2.3.1_qvngpfhfossq5xvrkoyfzqe2xe
- '@docusaurus/types': 2.3.1_sfoxds7t5ydpegc3knd667wn6m
- '@docusaurus/utils': 2.3.1_@docusaurus+types@2.3.1
+ '@docusaurus/core': 2.4.0(@docusaurus/types@2.4.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.0.2)
+ '@docusaurus/types': 2.4.0(react-dom@17.0.2)(react@17.0.2)
+ '@docusaurus/utils': 2.4.0(@docusaurus/types@2.4.0)
fs-extra: 10.1.0
react: 17.0.2
- react-dom: 17.0.2_react@17.0.2
- react-json-view: 1.21.3_sk3eihvpffgp52mstba5zhq3vu
+ react-dom: 17.0.2(react@17.0.2)
+ react-json-view: 1.21.3(@types/react@17.0.48)(react-dom@17.0.2)(react@17.0.2)
tslib: 2.5.0
transitivePeerDependencies:
- '@parcel/css'
@@ -2069,18 +1949,18 @@ packages:
- webpack-cli
dev: false
- /@docusaurus/plugin-google-analytics/2.3.1_icpz55ch5zovp2aqeb3azvztt4:
- resolution: {integrity: sha512-OHip0GQxKOFU8n7gkt3TM4HOYTXPCFDjqKbMClDD3KaDnyTuMp/Zvd9HSr770lLEscgPWIvzhJByRAClqsUWiQ==}
+ /@docusaurus/plugin-google-analytics@2.4.0(react-dom@17.0.2)(react@17.0.2)(typescript@5.0.2):
+ resolution: {integrity: sha512-uGUzX67DOAIglygdNrmMOvEp8qG03X20jMWadeqVQktS6nADvozpSLGx4J0xbkblhJkUzN21WiilsP9iVP+zkw==}
engines: {node: '>=16.14'}
peerDependencies:
react: ^16.8.4 || ^17.0.0
react-dom: ^16.8.4 || ^17.0.0
dependencies:
- '@docusaurus/core': 2.3.1_qvngpfhfossq5xvrkoyfzqe2xe
- '@docusaurus/types': 2.3.1_sfoxds7t5ydpegc3knd667wn6m
- '@docusaurus/utils-validation': 2.3.1_@docusaurus+types@2.3.1
+ '@docusaurus/core': 2.4.0(@docusaurus/types@2.4.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.0.2)
+ '@docusaurus/types': 2.4.0(react-dom@17.0.2)(react@17.0.2)
+ '@docusaurus/utils-validation': 2.4.0(@docusaurus/types@2.4.0)
react: 17.0.2
- react-dom: 17.0.2_react@17.0.2
+ react-dom: 17.0.2(react@17.0.2)
tslib: 2.5.0
transitivePeerDependencies:
- '@parcel/css'
@@ -2100,18 +1980,18 @@ packages:
- webpack-cli
dev: false
- /@docusaurus/plugin-google-gtag/2.3.1_icpz55ch5zovp2aqeb3azvztt4:
- resolution: {integrity: sha512-uXtDhfu4+Hm+oqWUySr3DNI5cWC/rmP6XJyAk83Heor3dFjZqDwCbkX8yWPywkRiWev3Dk/rVF8lEn0vIGVocA==}
+ /@docusaurus/plugin-google-gtag@2.4.0(react-dom@17.0.2)(react@17.0.2)(typescript@5.0.2):
+ resolution: {integrity: sha512-adj/70DANaQs2+TF/nRdMezDXFAV/O/pjAbUgmKBlyOTq5qoMe0Tk4muvQIwWUmiUQxFJe+sKlZGM771ownyOg==}
engines: {node: '>=16.14'}
peerDependencies:
react: ^16.8.4 || ^17.0.0
react-dom: ^16.8.4 || ^17.0.0
dependencies:
- '@docusaurus/core': 2.3.1_qvngpfhfossq5xvrkoyfzqe2xe
- '@docusaurus/types': 2.3.1_sfoxds7t5ydpegc3knd667wn6m
- '@docusaurus/utils-validation': 2.3.1_@docusaurus+types@2.3.1
+ '@docusaurus/core': 2.4.0(@docusaurus/types@2.4.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.0.2)
+ '@docusaurus/types': 2.4.0(react-dom@17.0.2)(react@17.0.2)
+ '@docusaurus/utils-validation': 2.4.0(@docusaurus/types@2.4.0)
react: 17.0.2
- react-dom: 17.0.2_react@17.0.2
+ react-dom: 17.0.2(react@17.0.2)
tslib: 2.5.0
transitivePeerDependencies:
- '@parcel/css'
@@ -2131,18 +2011,18 @@ packages:
- webpack-cli
dev: false
- /@docusaurus/plugin-google-tag-manager/2.3.1_icpz55ch5zovp2aqeb3azvztt4:
- resolution: {integrity: sha512-Ww2BPEYSqg8q8tJdLYPFFM3FMDBCVhEM4UUqKzJaiRMx3NEoly3qqDRAoRDGdIhlC//Rf0iJV9cWAoq2m6k3sw==}
+ /@docusaurus/plugin-google-tag-manager@2.4.0(react-dom@17.0.2)(react@17.0.2)(typescript@5.0.2):
+ resolution: {integrity: sha512-E66uGcYs4l7yitmp/8kMEVQftFPwV9iC62ORh47Veqzs6ExwnhzBkJmwDnwIysHBF1vlxnzET0Fl2LfL5fRR3A==}
engines: {node: '>=16.14'}
peerDependencies:
react: ^16.8.4 || ^17.0.0
react-dom: ^16.8.4 || ^17.0.0
dependencies:
- '@docusaurus/core': 2.3.1_qvngpfhfossq5xvrkoyfzqe2xe
- '@docusaurus/types': 2.3.1_sfoxds7t5ydpegc3knd667wn6m
- '@docusaurus/utils-validation': 2.3.1_@docusaurus+types@2.3.1
+ '@docusaurus/core': 2.4.0(@docusaurus/types@2.4.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.0.2)
+ '@docusaurus/types': 2.4.0(react-dom@17.0.2)(react@17.0.2)
+ '@docusaurus/utils-validation': 2.4.0(@docusaurus/types@2.4.0)
react: 17.0.2
- react-dom: 17.0.2_react@17.0.2
+ react-dom: 17.0.2(react@17.0.2)
tslib: 2.5.0
transitivePeerDependencies:
- '@parcel/css'
@@ -2162,22 +2042,22 @@ packages:
- webpack-cli
dev: false
- /@docusaurus/plugin-sitemap/2.3.1_icpz55ch5zovp2aqeb3azvztt4:
- resolution: {integrity: sha512-8Yxile/v6QGYV9vgFiYL+8d2N4z4Er3pSHsrD08c5XI8bUXxTppMwjarDUTH/TRTfgAWotRbhJ6WZLyajLpozA==}
+ /@docusaurus/plugin-sitemap@2.4.0(react-dom@17.0.2)(react@17.0.2)(typescript@5.0.2):
+ resolution: {integrity: sha512-pZxh+ygfnI657sN8a/FkYVIAmVv0CGk71QMKqJBOfMmDHNN1FeDeFkBjWP49ejBqpqAhjufkv5UWq3UOu2soCw==}
engines: {node: '>=16.14'}
peerDependencies:
react: ^16.8.4 || ^17.0.0
react-dom: ^16.8.4 || ^17.0.0
dependencies:
- '@docusaurus/core': 2.3.1_qvngpfhfossq5xvrkoyfzqe2xe
- '@docusaurus/logger': 2.3.1
- '@docusaurus/types': 2.3.1_sfoxds7t5ydpegc3knd667wn6m
- '@docusaurus/utils': 2.3.1_@docusaurus+types@2.3.1
- '@docusaurus/utils-common': 2.3.1_@docusaurus+types@2.3.1
- '@docusaurus/utils-validation': 2.3.1_@docusaurus+types@2.3.1
+ '@docusaurus/core': 2.4.0(@docusaurus/types@2.4.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.0.2)
+ '@docusaurus/logger': 2.4.0
+ '@docusaurus/types': 2.4.0(react-dom@17.0.2)(react@17.0.2)
+ '@docusaurus/utils': 2.4.0(@docusaurus/types@2.4.0)
+ '@docusaurus/utils-common': 2.4.0(@docusaurus/types@2.4.0)
+ '@docusaurus/utils-validation': 2.4.0(@docusaurus/types@2.4.0)
fs-extra: 10.1.0
react: 17.0.2
- react-dom: 17.0.2_react@17.0.2
+ react-dom: 17.0.2(react@17.0.2)
sitemap: 7.1.1
tslib: 2.5.0
transitivePeerDependencies:
@@ -2198,28 +2078,28 @@ packages:
- webpack-cli
dev: false
- /@docusaurus/preset-classic/2.3.1_pevf2x5qm5pm4aa7mpz72vvxge:
- resolution: {integrity: sha512-OQ5W0AHyfdUk0IldwJ3BlnZ1EqoJuu2L2BMhqLbqwNWdkmzmSUvlFLH1Pe7CZSQgB2YUUC/DnmjbPKk/qQD0lQ==}
+ /@docusaurus/preset-classic@2.4.0(@algolia/client-search@4.15.0)(@types/react@17.0.48)(react-dom@17.0.2)(react@17.0.2)(typescript@5.0.2):
+ resolution: {integrity: sha512-/5z5o/9bc6+P5ool2y01PbJhoGddEGsC0ej1MF6mCoazk8A+kW4feoUd68l7Bnv01rCnG3xy7kHUQP97Y0grUA==}
engines: {node: '>=16.14'}
peerDependencies:
react: ^16.8.4 || ^17.0.0
react-dom: ^16.8.4 || ^17.0.0
dependencies:
- '@docusaurus/core': 2.3.1_qvngpfhfossq5xvrkoyfzqe2xe
- '@docusaurus/plugin-content-blog': 2.3.1_icpz55ch5zovp2aqeb3azvztt4
- '@docusaurus/plugin-content-docs': 2.3.1_icpz55ch5zovp2aqeb3azvztt4
- '@docusaurus/plugin-content-pages': 2.3.1_icpz55ch5zovp2aqeb3azvztt4
- '@docusaurus/plugin-debug': 2.3.1_xsnt2vwzwdr7j3e5zjkw6lfu74
- '@docusaurus/plugin-google-analytics': 2.3.1_icpz55ch5zovp2aqeb3azvztt4
- '@docusaurus/plugin-google-gtag': 2.3.1_icpz55ch5zovp2aqeb3azvztt4
- '@docusaurus/plugin-google-tag-manager': 2.3.1_icpz55ch5zovp2aqeb3azvztt4
- '@docusaurus/plugin-sitemap': 2.3.1_icpz55ch5zovp2aqeb3azvztt4
- '@docusaurus/theme-classic': 2.3.1_icpz55ch5zovp2aqeb3azvztt4
- '@docusaurus/theme-common': 2.3.1_qvngpfhfossq5xvrkoyfzqe2xe
- '@docusaurus/theme-search-algolia': 2.3.1_3iokxbluymntvynr6xiqgl37oy
- '@docusaurus/types': 2.3.1_sfoxds7t5ydpegc3knd667wn6m
+ '@docusaurus/core': 2.4.0(@docusaurus/types@2.4.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.0.2)
+ '@docusaurus/plugin-content-blog': 2.4.0(react-dom@17.0.2)(react@17.0.2)(typescript@5.0.2)
+ '@docusaurus/plugin-content-docs': 2.4.0(react-dom@17.0.2)(react@17.0.2)(typescript@5.0.2)
+ '@docusaurus/plugin-content-pages': 2.4.0(react-dom@17.0.2)(react@17.0.2)(typescript@5.0.2)
+ '@docusaurus/plugin-debug': 2.4.0(@types/react@17.0.48)(react-dom@17.0.2)(react@17.0.2)(typescript@5.0.2)
+ '@docusaurus/plugin-google-analytics': 2.4.0(react-dom@17.0.2)(react@17.0.2)(typescript@5.0.2)
+ '@docusaurus/plugin-google-gtag': 2.4.0(react-dom@17.0.2)(react@17.0.2)(typescript@5.0.2)
+ '@docusaurus/plugin-google-tag-manager': 2.4.0(react-dom@17.0.2)(react@17.0.2)(typescript@5.0.2)
+ '@docusaurus/plugin-sitemap': 2.4.0(react-dom@17.0.2)(react@17.0.2)(typescript@5.0.2)
+ '@docusaurus/theme-classic': 2.4.0(react-dom@17.0.2)(react@17.0.2)(typescript@5.0.2)
+ '@docusaurus/theme-common': 2.4.0(@docusaurus/types@2.4.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.0.2)
+ '@docusaurus/theme-search-algolia': 2.4.0(@algolia/client-search@4.15.0)(@docusaurus/types@2.4.0)(@types/react@17.0.48)(react-dom@17.0.2)(react@17.0.2)(typescript@5.0.2)
+ '@docusaurus/types': 2.4.0(react-dom@17.0.2)(react@17.0.2)
react: 17.0.2
- react-dom: 17.0.2_react@17.0.2
+ react-dom: 17.0.2(react@17.0.2)
transitivePeerDependencies:
- '@algolia/client-search'
- '@parcel/css'
@@ -2241,7 +2121,7 @@ packages:
- webpack-cli
dev: false
- /@docusaurus/react-loadable/5.5.2_react@17.0.2:
+ /@docusaurus/react-loadable@5.5.2(react@17.0.2):
resolution: {integrity: sha512-A3dYjdBGuy0IGT+wyLIGIKLRE+sAk1iNk0f1HjNDysO7u8lhL4N3VEm+FAubmJbAztn94F7MxBTPmnixbiyFdQ==}
peerDependencies:
react: '*'
@@ -2251,37 +2131,37 @@ packages:
react: 17.0.2
dev: false
- /@docusaurus/theme-classic/2.3.1_icpz55ch5zovp2aqeb3azvztt4:
- resolution: {integrity: sha512-SelSIDvyttb7ZYHj8vEUhqykhAqfOPKk+uP0z85jH72IMC58e7O8DIlcAeBv+CWsLbNIl9/Hcg71X0jazuxJug==}
+ /@docusaurus/theme-classic@2.4.0(react-dom@17.0.2)(react@17.0.2)(typescript@5.0.2):
+ resolution: {integrity: sha512-GMDX5WU6Z0OC65eQFgl3iNNEbI9IMJz9f6KnOyuMxNUR6q0qVLsKCNopFUDfFNJ55UU50o7P7o21yVhkwpfJ9w==}
engines: {node: '>=16.14'}
peerDependencies:
react: ^16.8.4 || ^17.0.0
react-dom: ^16.8.4 || ^17.0.0
dependencies:
- '@docusaurus/core': 2.3.1_qvngpfhfossq5xvrkoyfzqe2xe
- '@docusaurus/mdx-loader': 2.3.1_nucoingj6jnpt355a2yzaplk5e
- '@docusaurus/module-type-aliases': 2.3.1_sfoxds7t5ydpegc3knd667wn6m
- '@docusaurus/plugin-content-blog': 2.3.1_icpz55ch5zovp2aqeb3azvztt4
- '@docusaurus/plugin-content-docs': 2.3.1_icpz55ch5zovp2aqeb3azvztt4
- '@docusaurus/plugin-content-pages': 2.3.1_icpz55ch5zovp2aqeb3azvztt4
- '@docusaurus/theme-common': 2.3.1_qvngpfhfossq5xvrkoyfzqe2xe
- '@docusaurus/theme-translations': 2.3.1
- '@docusaurus/types': 2.3.1_sfoxds7t5ydpegc3knd667wn6m
- '@docusaurus/utils': 2.3.1_@docusaurus+types@2.3.1
- '@docusaurus/utils-common': 2.3.1_@docusaurus+types@2.3.1
- '@docusaurus/utils-validation': 2.3.1_@docusaurus+types@2.3.1
- '@mdx-js/react': 1.6.22_react@17.0.2
+ '@docusaurus/core': 2.4.0(@docusaurus/types@2.4.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.0.2)
+ '@docusaurus/mdx-loader': 2.4.0(@docusaurus/types@2.4.0)(react-dom@17.0.2)(react@17.0.2)
+ '@docusaurus/module-type-aliases': 2.4.0(react-dom@17.0.2)(react@17.0.2)
+ '@docusaurus/plugin-content-blog': 2.4.0(react-dom@17.0.2)(react@17.0.2)(typescript@5.0.2)
+ '@docusaurus/plugin-content-docs': 2.4.0(react-dom@17.0.2)(react@17.0.2)(typescript@5.0.2)
+ '@docusaurus/plugin-content-pages': 2.4.0(react-dom@17.0.2)(react@17.0.2)(typescript@5.0.2)
+ '@docusaurus/theme-common': 2.4.0(@docusaurus/types@2.4.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.0.2)
+ '@docusaurus/theme-translations': 2.4.0
+ '@docusaurus/types': 2.4.0(react-dom@17.0.2)(react@17.0.2)
+ '@docusaurus/utils': 2.4.0(@docusaurus/types@2.4.0)
+ '@docusaurus/utils-common': 2.4.0(@docusaurus/types@2.4.0)
+ '@docusaurus/utils-validation': 2.4.0(@docusaurus/types@2.4.0)
+ '@mdx-js/react': 1.6.22(react@17.0.2)
clsx: 1.2.1
copy-text-to-clipboard: 3.1.0
- infima: 0.2.0-alpha.42
+ infima: 0.2.0-alpha.43
lodash: 4.17.21
nprogress: 0.2.0
postcss: 8.4.21
- prism-react-renderer: 1.3.5_react@17.0.2
+ prism-react-renderer: 1.3.5(react@17.0.2)
prismjs: 1.29.0
react: 17.0.2
- react-dom: 17.0.2_react@17.0.2
- react-router-dom: 5.3.4_react@17.0.2
+ react-dom: 17.0.2(react@17.0.2)
+ react-router-dom: 5.3.4(react@17.0.2)
rtlcss: 3.5.0
tslib: 2.5.0
utility-types: 3.10.0
@@ -2303,72 +2183,30 @@ packages:
- webpack-cli
dev: false
- /@docusaurus/theme-common/2.3.1_icpz55ch5zovp2aqeb3azvztt4:
- resolution: {integrity: sha512-RYmYl2OR2biO+yhmW1aS5FyEvnrItPINa+0U2dMxcHpah8reSCjQ9eJGRmAgkZFchV1+aIQzXOI1K7LCW38O0g==}
- engines: {node: '>=16.14'}
- peerDependencies:
- react: ^16.8.4 || ^17.0.0
- react-dom: ^16.8.4 || ^17.0.0
- dependencies:
- '@docusaurus/mdx-loader': 2.3.1_sfoxds7t5ydpegc3knd667wn6m
- '@docusaurus/module-type-aliases': 2.3.1_sfoxds7t5ydpegc3knd667wn6m
- '@docusaurus/plugin-content-blog': 2.3.1_icpz55ch5zovp2aqeb3azvztt4
- '@docusaurus/plugin-content-docs': 2.3.1_icpz55ch5zovp2aqeb3azvztt4
- '@docusaurus/plugin-content-pages': 2.3.1_icpz55ch5zovp2aqeb3azvztt4
- '@docusaurus/utils': 2.3.1
- '@types/history': 4.7.11
- '@types/react': 17.0.48
- '@types/react-router-config': 5.0.6
- clsx: 1.2.1
- parse-numeric-range: 1.3.0
- prism-react-renderer: 1.3.5_react@17.0.2
- react: 17.0.2
- react-dom: 17.0.2_react@17.0.2
- tslib: 2.5.0
- use-sync-external-store: 1.2.0_react@17.0.2
- utility-types: 3.10.0
- transitivePeerDependencies:
- - '@docusaurus/types'
- - '@parcel/css'
- - '@swc/core'
- - '@swc/css'
- - bufferutil
- - csso
- - debug
- - esbuild
- - eslint
- - lightningcss
- - supports-color
- - typescript
- - uglify-js
- - utf-8-validate
- - vue-template-compiler
- - webpack-cli
- dev: false
-
- /@docusaurus/theme-common/2.3.1_qvngpfhfossq5xvrkoyfzqe2xe:
- resolution: {integrity: sha512-RYmYl2OR2biO+yhmW1aS5FyEvnrItPINa+0U2dMxcHpah8reSCjQ9eJGRmAgkZFchV1+aIQzXOI1K7LCW38O0g==}
+ /@docusaurus/theme-common@2.4.0(@docusaurus/types@2.4.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.0.2):
+ resolution: {integrity: sha512-IkG/l5f/FLY6cBIxtPmFnxpuPzc5TupuqlOx+XDN+035MdQcAh8wHXXZJAkTeYDeZ3anIUSUIvWa7/nRKoQEfg==}
engines: {node: '>=16.14'}
peerDependencies:
react: ^16.8.4 || ^17.0.0
react-dom: ^16.8.4 || ^17.0.0
dependencies:
- '@docusaurus/mdx-loader': 2.3.1_nucoingj6jnpt355a2yzaplk5e
- '@docusaurus/module-type-aliases': 2.3.1_sfoxds7t5ydpegc3knd667wn6m
- '@docusaurus/plugin-content-blog': 2.3.1_icpz55ch5zovp2aqeb3azvztt4
- '@docusaurus/plugin-content-docs': 2.3.1_icpz55ch5zovp2aqeb3azvztt4
- '@docusaurus/plugin-content-pages': 2.3.1_icpz55ch5zovp2aqeb3azvztt4
- '@docusaurus/utils': 2.3.1_@docusaurus+types@2.3.1
+ '@docusaurus/mdx-loader': 2.4.0(@docusaurus/types@2.4.0)(react-dom@17.0.2)(react@17.0.2)
+ '@docusaurus/module-type-aliases': 2.4.0(react-dom@17.0.2)(react@17.0.2)
+ '@docusaurus/plugin-content-blog': 2.4.0(react-dom@17.0.2)(react@17.0.2)(typescript@5.0.2)
+ '@docusaurus/plugin-content-docs': 2.4.0(react-dom@17.0.2)(react@17.0.2)(typescript@5.0.2)
+ '@docusaurus/plugin-content-pages': 2.4.0(react-dom@17.0.2)(react@17.0.2)(typescript@5.0.2)
+ '@docusaurus/utils': 2.4.0(@docusaurus/types@2.4.0)
+ '@docusaurus/utils-common': 2.4.0(@docusaurus/types@2.4.0)
'@types/history': 4.7.11
'@types/react': 17.0.48
'@types/react-router-config': 5.0.6
clsx: 1.2.1
parse-numeric-range: 1.3.0
- prism-react-renderer: 1.3.5_react@17.0.2
+ prism-react-renderer: 1.3.5(react@17.0.2)
react: 17.0.2
- react-dom: 17.0.2_react@17.0.2
+ react-dom: 17.0.2(react@17.0.2)
tslib: 2.5.0
- use-sync-external-store: 1.2.0_react@17.0.2
+ use-sync-external-store: 1.2.0(react@17.0.2)
utility-types: 3.10.0
transitivePeerDependencies:
- '@docusaurus/types'
@@ -2389,29 +2227,29 @@ packages:
- webpack-cli
dev: false
- /@docusaurus/theme-search-algolia/2.3.1_3iokxbluymntvynr6xiqgl37oy:
- resolution: {integrity: sha512-JdHaRqRuH1X++g5fEMLnq7OtULSGQdrs9AbhcWRQ428ZB8/HOiaN6mj3hzHvcD3DFgu7koIVtWPQnvnN7iwzHA==}
+ /@docusaurus/theme-search-algolia@2.4.0(@algolia/client-search@4.15.0)(@docusaurus/types@2.4.0)(@types/react@17.0.48)(react-dom@17.0.2)(react@17.0.2)(typescript@5.0.2):
+ resolution: {integrity: sha512-pPCJSCL1Qt4pu/Z0uxBAuke0yEBbxh0s4fOvimna7TEcBLPq0x06/K78AaABXrTVQM6S0vdocFl9EoNgU17hqA==}
engines: {node: '>=16.14'}
peerDependencies:
react: ^16.8.4 || ^17.0.0
react-dom: ^16.8.4 || ^17.0.0
dependencies:
- '@docsearch/react': 3.3.3_jfzz2d5vfhcn67ivxe4p52qtje
- '@docusaurus/core': 2.3.1_qvngpfhfossq5xvrkoyfzqe2xe
- '@docusaurus/logger': 2.3.1
- '@docusaurus/plugin-content-docs': 2.3.1_icpz55ch5zovp2aqeb3azvztt4
- '@docusaurus/theme-common': 2.3.1_qvngpfhfossq5xvrkoyfzqe2xe
- '@docusaurus/theme-translations': 2.3.1
- '@docusaurus/utils': 2.3.1_@docusaurus+types@2.3.1
- '@docusaurus/utils-validation': 2.3.1_@docusaurus+types@2.3.1
+ '@docsearch/react': 3.3.3(@algolia/client-search@4.15.0)(@types/react@17.0.48)(react-dom@17.0.2)(react@17.0.2)
+ '@docusaurus/core': 2.4.0(@docusaurus/types@2.4.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.0.2)
+ '@docusaurus/logger': 2.4.0
+ '@docusaurus/plugin-content-docs': 2.4.0(react-dom@17.0.2)(react@17.0.2)(typescript@5.0.2)
+ '@docusaurus/theme-common': 2.4.0(@docusaurus/types@2.4.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.0.2)
+ '@docusaurus/theme-translations': 2.4.0
+ '@docusaurus/utils': 2.4.0(@docusaurus/types@2.4.0)
+ '@docusaurus/utils-validation': 2.4.0(@docusaurus/types@2.4.0)
algoliasearch: 4.15.0
- algoliasearch-helper: 3.12.0_algoliasearch@4.15.0
+ algoliasearch-helper: 3.12.0(algoliasearch@4.15.0)
clsx: 1.2.1
eta: 2.0.1
fs-extra: 10.1.0
lodash: 4.17.21
react: 17.0.2
- react-dom: 17.0.2_react@17.0.2
+ react-dom: 17.0.2(react@17.0.2)
tslib: 2.5.0
utility-types: 3.10.0
transitivePeerDependencies:
@@ -2435,16 +2273,16 @@ packages:
- webpack-cli
dev: false
- /@docusaurus/theme-translations/2.3.1:
- resolution: {integrity: sha512-BsBZzAewJabVhoGG1Ij2u4pMS3MPW6gZ6sS4pc+Y7czevRpzxoFNJXRtQDVGe7mOpv/MmRmqg4owDK+lcOTCVQ==}
+ /@docusaurus/theme-translations@2.4.0:
+ resolution: {integrity: sha512-kEoITnPXzDPUMBHk3+fzEzbopxLD3fR5sDoayNH0vXkpUukA88/aDL1bqkhxWZHA3LOfJ3f0vJbOwmnXW5v85Q==}
engines: {node: '>=16.14'}
dependencies:
fs-extra: 10.1.0
tslib: 2.5.0
dev: false
- /@docusaurus/types/2.3.1_sfoxds7t5ydpegc3knd667wn6m:
- resolution: {integrity: sha512-PREbIRhTaNNY042qmfSE372Jb7djZt+oVTZkoqHJ8eff8vOIc2zqqDqBVc5BhOfpZGPTrE078yy/torUEZy08A==}
+ /@docusaurus/types@2.4.0(react-dom@17.0.2)(react@17.0.2):
+ resolution: {integrity: sha512-xaBXr+KIPDkIaef06c+i2HeTqVNixB7yFut5fBXPGI2f1rrmEV2vLMznNGsFwvZ5XmA3Quuefd4OGRkdo97Dhw==}
peerDependencies:
react: ^16.8.4 || ^17.0.0
react-dom: ^16.8.4 || ^17.0.0
@@ -2454,8 +2292,8 @@ packages:
commander: 5.1.0
joi: 17.9.1
react: 17.0.2
- react-dom: 17.0.2_react@17.0.2
- react-helmet-async: 1.3.0_sfoxds7t5ydpegc3knd667wn6m
+ react-dom: 17.0.2(react@17.0.2)
+ react-helmet-async: 1.3.0(react-dom@17.0.2)(react@17.0.2)
utility-types: 3.10.0
webpack: 5.76.3
webpack-merge: 5.8.0
@@ -2466,8 +2304,8 @@ packages:
- webpack-cli
dev: false
- /@docusaurus/utils-common/2.3.1:
- resolution: {integrity: sha512-pVlRpXkdNcxmKNxAaB1ya2hfCEvVsLDp2joeM6K6uv55Oc5nVIqgyYSgSNKZyMdw66NnvMfsu0RBylcwZQKo9A==}
+ /@docusaurus/utils-common@2.4.0(@docusaurus/types@2.4.0):
+ resolution: {integrity: sha512-zIMf10xuKxddYfLg5cS19x44zud/E9I7lj3+0bv8UIs0aahpErfNrGhijEfJpAfikhQ8tL3m35nH3hJ3sOG82A==}
engines: {node: '>=16.14'}
peerDependencies:
'@docusaurus/types': '*'
@@ -2475,46 +2313,16 @@ packages:
'@docusaurus/types':
optional: true
dependencies:
+ '@docusaurus/types': 2.4.0(react-dom@17.0.2)(react@17.0.2)
tslib: 2.5.0
dev: false
- /@docusaurus/utils-common/2.3.1_@docusaurus+types@2.3.1:
- resolution: {integrity: sha512-pVlRpXkdNcxmKNxAaB1ya2hfCEvVsLDp2joeM6K6uv55Oc5nVIqgyYSgSNKZyMdw66NnvMfsu0RBylcwZQKo9A==}
- engines: {node: '>=16.14'}
- peerDependencies:
- '@docusaurus/types': '*'
- peerDependenciesMeta:
- '@docusaurus/types':
- optional: true
- dependencies:
- '@docusaurus/types': 2.3.1_sfoxds7t5ydpegc3knd667wn6m
- tslib: 2.5.0
- dev: false
-
- /@docusaurus/utils-validation/2.3.1:
- resolution: {integrity: sha512-7n0208IG3k1HVTByMHlZoIDjjOFC8sbViHVXJx0r3Q+3Ezrx+VQ1RZ/zjNn6lT+QBCRCXlnlaoJ8ug4HIVgQ3w==}
- engines: {node: '>=16.14'}
- dependencies:
- '@docusaurus/logger': 2.3.1
- '@docusaurus/utils': 2.3.1
- joi: 17.9.1
- js-yaml: 4.1.0
- tslib: 2.5.0
- transitivePeerDependencies:
- - '@docusaurus/types'
- - '@swc/core'
- - esbuild
- - supports-color
- - uglify-js
- - webpack-cli
- dev: false
-
- /@docusaurus/utils-validation/2.3.1_@docusaurus+types@2.3.1:
- resolution: {integrity: sha512-7n0208IG3k1HVTByMHlZoIDjjOFC8sbViHVXJx0r3Q+3Ezrx+VQ1RZ/zjNn6lT+QBCRCXlnlaoJ8ug4HIVgQ3w==}
+ /@docusaurus/utils-validation@2.4.0(@docusaurus/types@2.4.0):
+ resolution: {integrity: sha512-IrBsBbbAp6y7mZdJx4S4pIA7dUyWSA0GNosPk6ZJ0fX3uYIEQgcQSGIgTeSC+8xPEx3c16o03en1jSDpgQgz/w==}
engines: {node: '>=16.14'}
dependencies:
- '@docusaurus/logger': 2.3.1
- '@docusaurus/utils': 2.3.1_@docusaurus+types@2.3.1
+ '@docusaurus/logger': 2.4.0
+ '@docusaurus/utils': 2.4.0(@docusaurus/types@2.4.0)
joi: 17.9.1
js-yaml: 4.1.0
tslib: 2.5.0
@@ -2527,41 +2335,8 @@ packages:
- webpack-cli
dev: false
- /@docusaurus/utils/2.3.1:
- resolution: {integrity: sha512-9WcQROCV0MmrpOQDXDGhtGMd52DHpSFbKLfkyaYumzbTstrbA5pPOtiGtxK1nqUHkiIv8UwexS54p0Vod2I1lg==}
- engines: {node: '>=16.14'}
- peerDependencies:
- '@docusaurus/types': '*'
- peerDependenciesMeta:
- '@docusaurus/types':
- optional: true
- dependencies:
- '@docusaurus/logger': 2.3.1
- '@svgr/webpack': 6.5.1
- escape-string-regexp: 4.0.0
- file-loader: 6.2.0_webpack@5.76.3
- fs-extra: 10.1.0
- github-slugger: 1.5.0
- globby: 11.1.0
- gray-matter: 4.0.3
- js-yaml: 4.1.0
- lodash: 4.17.21
- micromatch: 4.0.5
- resolve-pathname: 3.0.0
- shelljs: 0.8.5
- tslib: 2.5.0
- url-loader: 4.1.1_cj4axkvnwozfmnmvgy4d36yxaq
- webpack: 5.76.3
- transitivePeerDependencies:
- - '@swc/core'
- - esbuild
- - supports-color
- - uglify-js
- - webpack-cli
- dev: false
-
- /@docusaurus/utils/2.3.1_@docusaurus+types@2.3.1:
- resolution: {integrity: sha512-9WcQROCV0MmrpOQDXDGhtGMd52DHpSFbKLfkyaYumzbTstrbA5pPOtiGtxK1nqUHkiIv8UwexS54p0Vod2I1lg==}
+ /@docusaurus/utils@2.4.0(@docusaurus/types@2.4.0):
+ resolution: {integrity: sha512-89hLYkvtRX92j+C+ERYTuSUK6nF9bGM32QThcHPg2EDDHVw6FzYQXmX6/p+pU5SDyyx5nBlE4qXR92RxCAOqfg==}
engines: {node: '>=16.14'}
peerDependencies:
'@docusaurus/types': '*'
@@ -2569,11 +2344,11 @@ packages:
'@docusaurus/types':
optional: true
dependencies:
- '@docusaurus/logger': 2.3.1
- '@docusaurus/types': 2.3.1_sfoxds7t5ydpegc3knd667wn6m
+ '@docusaurus/logger': 2.4.0
+ '@docusaurus/types': 2.4.0(react-dom@17.0.2)(react@17.0.2)
'@svgr/webpack': 6.5.1
escape-string-regexp: 4.0.0
- file-loader: 6.2.0_webpack@5.76.3
+ file-loader: 6.2.0(webpack@5.76.3)
fs-extra: 10.1.0
github-slugger: 1.5.0
globby: 11.1.0
@@ -2584,7 +2359,7 @@ packages:
resolve-pathname: 3.0.0
shelljs: 0.8.5
tslib: 2.5.0
- url-loader: 4.1.1_cj4axkvnwozfmnmvgy4d36yxaq
+ url-loader: 4.1.1(file-loader@6.2.0)(webpack@5.76.3)
webpack: 5.76.3
transitivePeerDependencies:
- '@swc/core'
@@ -2594,13 +2369,13 @@ packages:
- webpack-cli
dev: false
- /@fortawesome/fontawesome-common-types/6.3.0:
+ /@fortawesome/fontawesome-common-types@6.3.0:
resolution: {integrity: sha512-4BC1NMoacEBzSXRwKjZ/X/gmnbp/HU5Qqat7E8xqorUtBFZS+bwfGH5/wqOC2K6GV0rgEobp3OjGRMa5fK9pFg==}
engines: {node: '>=6'}
requiresBuild: true
dev: false
- /@fortawesome/fontawesome-svg-core/6.3.0:
+ /@fortawesome/fontawesome-svg-core@6.3.0:
resolution: {integrity: sha512-uz9YifyKlixV6AcKlOX8WNdtF7l6nakGyLYxYaCa823bEBqyj/U2ssqtctO38itNEwXb8/lMzjdoJ+aaJuOdrw==}
engines: {node: '>=6'}
requiresBuild: true
@@ -2608,7 +2383,7 @@ packages:
'@fortawesome/fontawesome-common-types': 6.3.0
dev: false
- /@fortawesome/free-brands-svg-icons/6.3.0:
+ /@fortawesome/free-brands-svg-icons@6.3.0:
resolution: {integrity: sha512-xI0c+a8xnKItAXCN8rZgCNCJQiVAd2Y7p9e2ND6zN3J3ekneu96qrePieJ7yA7073C1JxxoM3vH1RU7rYsaj8w==}
engines: {node: '>=6'}
requiresBuild: true
@@ -2616,7 +2391,7 @@ packages:
'@fortawesome/fontawesome-common-types': 6.3.0
dev: false
- /@fortawesome/react-fontawesome/0.2.0_wxf7upq5ukhivvyfqw3zxxlt4u:
+ /@fortawesome/react-fontawesome@0.2.0(@fortawesome/fontawesome-svg-core@6.3.0)(react@17.0.2):
resolution: {integrity: sha512-uHg75Rb/XORTtVt7OS9WoK8uM276Ufi7gCzshVWkUJbHhh3svsUUeqXerrM96Wm7fRiDzfKRwSoahhMIkGAYHw==}
peerDependencies:
'@fortawesome/fontawesome-svg-core': ~1 || ~6
@@ -2627,24 +2402,24 @@ packages:
react: 17.0.2
dev: false
- /@hapi/hoek/9.3.0:
+ /@hapi/hoek@9.3.0:
resolution: {integrity: sha512-/c6rf4UJlmHlC9b5BaNvzAcFv7HZ2QHaV0D4/HNlBdvFnvQq8RI4kYdhyPCl7Xj+oWvTWQ8ujhqS53LIgAe6KQ==}
dev: false
- /@hapi/topo/5.1.0:
+ /@hapi/topo@5.1.0:
resolution: {integrity: sha512-foQZKJig7Ob0BMAYBfcJk8d77QtOe7Wo4ox7ff1lQYoNNAb6jwcY1ncdoy2e9wQZzvNy7ODZCYJkK8kzmcAnAg==}
dependencies:
'@hapi/hoek': 9.3.0
dev: false
- /@jest/schemas/29.4.3:
+ /@jest/schemas@29.4.3:
resolution: {integrity: sha512-VLYKXQmtmuEz6IxJsrZwzG9NvtkQsWNnWMsKxqWNu3+CnfzJQhp0WDDKWLVV9hLKr0l3SLLFRqcYHjhtyuDVxg==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
'@sinclair/typebox': 0.25.24
dev: false
- /@jest/types/29.5.0:
+ /@jest/types@29.5.0:
resolution: {integrity: sha512-qbu7kN6czmVRc3xWFQcAN03RAUamgppVUdXrvl1Wr3jlNF93o9mJbGcDWrwGB6ht44u7efB1qCFgVQmca24Uog==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
@@ -2656,7 +2431,7 @@ packages:
chalk: 4.1.2
dev: false
- /@jridgewell/gen-mapping/0.1.1:
+ /@jridgewell/gen-mapping@0.1.1:
resolution: {integrity: sha512-sQXCasFk+U8lWYEe66WxRDOE9PjVz4vSM51fTu3Hw+ClTpUSQb718772vH3pyS5pShp6lvQM7SxgIDXXXmOX7w==}
engines: {node: '>=6.0.0'}
dependencies:
@@ -2664,7 +2439,7 @@ packages:
'@jridgewell/sourcemap-codec': 1.4.14
dev: false
- /@jridgewell/gen-mapping/0.3.2:
+ /@jridgewell/gen-mapping@0.3.2:
resolution: {integrity: sha512-mh65xKQAzI6iBcFzwv28KVWSmCkdRBWoOh+bYQGW3+6OZvbbN3TqMGo5hqYxQniRcH9F2VZIoJCm4pa3BPDK/A==}
engines: {node: '>=6.0.0'}
dependencies:
@@ -2673,46 +2448,46 @@ packages:
'@jridgewell/trace-mapping': 0.3.17
dev: false
- /@jridgewell/resolve-uri/3.1.0:
+ /@jridgewell/resolve-uri@3.1.0:
resolution: {integrity: sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==}
engines: {node: '>=6.0.0'}
dev: false
- /@jridgewell/set-array/1.1.2:
+ /@jridgewell/set-array@1.1.2:
resolution: {integrity: sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==}
engines: {node: '>=6.0.0'}
dev: false
- /@jridgewell/source-map/0.3.2:
+ /@jridgewell/source-map@0.3.2:
resolution: {integrity: sha512-m7O9o2uR8k2ObDysZYzdfhb08VuEml5oWGiosa1VdaPZ/A6QyPkAJuwN0Q1lhULOf6B7MtQmHENS743hWtCrgw==}
dependencies:
'@jridgewell/gen-mapping': 0.3.2
'@jridgewell/trace-mapping': 0.3.17
dev: false
- /@jridgewell/sourcemap-codec/1.4.14:
+ /@jridgewell/sourcemap-codec@1.4.14:
resolution: {integrity: sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==}
dev: false
- /@jridgewell/trace-mapping/0.3.17:
+ /@jridgewell/trace-mapping@0.3.17:
resolution: {integrity: sha512-MCNzAp77qzKca9+W/+I0+sEpaUnZoeasnghNeVc41VZCEKaCH73Vq3BZZ/SzWIgrqE4H4ceI+p+b6C0mHf9T4g==}
dependencies:
'@jridgewell/resolve-uri': 3.1.0
'@jridgewell/sourcemap-codec': 1.4.14
dev: false
- /@leichtgewicht/ip-codec/2.0.4:
+ /@leichtgewicht/ip-codec@2.0.4:
resolution: {integrity: sha512-Hcv+nVC0kZnQ3tD9GVu5xSMR4VVYOteQIr/hwFPVEvPdlXqgGEuRjiheChHgdM+JyqdgNcmzZOX/tnl0JOiI7A==}
dev: false
- /@mdx-js/mdx/1.6.22:
+ /@mdx-js/mdx@1.6.22:
resolution: {integrity: sha512-AMxuLxPz2j5/6TpF/XSdKpQP1NlG0z11dFOlq+2IP/lSgl11GY8ji6S/rgsViN/L0BDvHvUMruRb7ub+24LUYA==}
dependencies:
'@babel/core': 7.12.9
- '@babel/plugin-syntax-jsx': 7.12.1_@babel+core@7.12.9
- '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.12.9
+ '@babel/plugin-syntax-jsx': 7.12.1(@babel/core@7.12.9)
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.12.9)
'@mdx-js/util': 1.6.22
- babel-plugin-apply-mdx-type-prop: 1.6.22_@babel+core@7.12.9
+ babel-plugin-apply-mdx-type-prop: 1.6.22(@babel/core@7.12.9)
babel-plugin-extract-import-names: 1.6.22
camelcase-css: 2.0.1
detab: 2.0.4
@@ -2731,7 +2506,7 @@ packages:
- supports-color
dev: false
- /@mdx-js/react/1.6.22_react@17.0.2:
+ /@mdx-js/react@1.6.22(react@17.0.2):
resolution: {integrity: sha512-TDoPum4SHdfPiGSAaRBw7ECyI8VaHpK8GJugbJIJuqyh6kzw9ZLJZW3HGL3NNrJGxcAixUvqROm+YuQOo5eXtg==}
peerDependencies:
react: ^16.13.1 || ^17.0.0
@@ -2739,11 +2514,11 @@ packages:
react: 17.0.2
dev: false
- /@mdx-js/util/1.6.22:
+ /@mdx-js/util@1.6.22:
resolution: {integrity: sha512-H1rQc1ZOHANWBvPcW+JpGwr+juXSxM8Q8YCkm3GhZd8REu1fHR3z99CErO1p9pkcfcxZnMdIZdIsXkOHY0NilA==}
dev: false
- /@nodelib/fs.scandir/2.1.5:
+ /@nodelib/fs.scandir@2.1.5:
resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==}
engines: {node: '>= 8'}
dependencies:
@@ -2751,12 +2526,12 @@ packages:
run-parallel: 1.2.0
dev: false
- /@nodelib/fs.stat/2.0.5:
+ /@nodelib/fs.stat@2.0.5:
resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==}
engines: {node: '>= 8'}
dev: false
- /@nodelib/fs.walk/1.2.8:
+ /@nodelib/fs.walk@1.2.8:
resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==}
engines: {node: '>= 8'}
dependencies:
@@ -2764,34 +2539,34 @@ packages:
fastq: 1.15.0
dev: false
- /@polka/url/1.0.0-next.21:
+ /@polka/url@1.0.0-next.21:
resolution: {integrity: sha512-a5Sab1C4/icpTZVzZc5Ghpz88yQtGOyNqYXcZgOssB2uuAr+wF/MvN6bgtW32q7HHrvBki+BsZ0OuNv6EV3K9g==}
dev: false
- /@sideway/address/4.1.4:
+ /@sideway/address@4.1.4:
resolution: {integrity: sha512-7vwq+rOHVWjyXxVlR76Agnvhy8I9rpzjosTESvmhNeXOXdZZB15Fl+TI9x1SiHZH5Jv2wTGduSxFDIaq0m3DUw==}
dependencies:
'@hapi/hoek': 9.3.0
dev: false
- /@sideway/formula/3.0.1:
+ /@sideway/formula@3.0.1:
resolution: {integrity: sha512-/poHZJJVjx3L+zVD6g9KgHfYnb443oi7wLu/XKojDviHy6HOEOA6z1Trk5aR1dGcmPenJEgb2sK2I80LeS3MIg==}
dev: false
- /@sideway/pinpoint/2.0.0:
+ /@sideway/pinpoint@2.0.0:
resolution: {integrity: sha512-RNiOoTPkptFtSVzQevY/yWtZwf/RxyVnPy/OcA9HBM3MlGDnBEYL5B41H0MTn0Uec8Hi+2qUtTfG2WWZBmMejQ==}
dev: false
- /@sinclair/typebox/0.25.24:
+ /@sinclair/typebox@0.25.24:
resolution: {integrity: sha512-XJfwUVUKDHF5ugKwIcxEgc9k8b7HbznCp6eUfWgu710hMPNIO4aw4/zB5RogDQz8nd6gyCDpU9O/m6qYEWY6yQ==}
dev: false
- /@sindresorhus/is/0.14.0:
+ /@sindresorhus/is@0.14.0:
resolution: {integrity: sha512-9NET910DNaIPngYnLLPeg+Ogzqsi9uM4mSboU5y6p8S5DzMTVEsJZrawi+BoDNUVBa2DhJqQYUFvMDfgU062LQ==}
engines: {node: '>=6'}
dev: false
- /@slorber/static-site-generator-webpack-plugin/4.0.7:
+ /@slorber/static-site-generator-webpack-plugin@4.0.7:
resolution: {integrity: sha512-Ug7x6z5lwrz0WqdnNFOMYrDQNTPAprvHLSh6+/fmml3qUiz6l5eq+2MzLKWtn/q5K5NpSiFsZTP/fck/3vjSxA==}
engines: {node: '>=14'}
dependencies:
@@ -2800,7 +2575,7 @@ packages:
webpack-sources: 3.2.3
dev: false
- /@svgr/babel-plugin-add-jsx-attribute/6.5.1_@babel+core@7.21.3:
+ /@svgr/babel-plugin-add-jsx-attribute@6.5.1(@babel/core@7.21.3):
resolution: {integrity: sha512-9PYGcXrAxitycIjRmZB+Q0JaN07GZIWaTBIGQzfaZv+qr1n8X1XUEJ5rZ/vx6OVD9RRYlrNnXWExQXcmZeD/BQ==}
engines: {node: '>=10'}
peerDependencies:
@@ -2809,7 +2584,7 @@ packages:
'@babel/core': 7.21.3
dev: false
- /@svgr/babel-plugin-remove-jsx-attribute/6.5.0_@babel+core@7.21.3:
+ /@svgr/babel-plugin-remove-jsx-attribute@6.5.0(@babel/core@7.21.3):
resolution: {integrity: sha512-8zYdkym7qNyfXpWvu4yq46k41pyNM9SOstoWhKlm+IfdCE1DdnRKeMUPsWIEO/DEkaWxJ8T9esNdG3QwQ93jBA==}
engines: {node: '>=10'}
peerDependencies:
@@ -2818,7 +2593,7 @@ packages:
'@babel/core': 7.21.3
dev: false
- /@svgr/babel-plugin-remove-jsx-empty-expression/6.5.0_@babel+core@7.21.3:
+ /@svgr/babel-plugin-remove-jsx-empty-expression@6.5.0(@babel/core@7.21.3):
resolution: {integrity: sha512-NFdxMq3xA42Kb1UbzCVxplUc0iqSyM9X8kopImvFnB+uSDdzIHOdbs1op8ofAvVRtbg4oZiyRl3fTYeKcOe9Iw==}
engines: {node: '>=10'}
peerDependencies:
@@ -2827,7 +2602,7 @@ packages:
'@babel/core': 7.21.3
dev: false
- /@svgr/babel-plugin-replace-jsx-attribute-value/6.5.1_@babel+core@7.21.3:
+ /@svgr/babel-plugin-replace-jsx-attribute-value@6.5.1(@babel/core@7.21.3):
resolution: {integrity: sha512-8DPaVVE3fd5JKuIC29dqyMB54sA6mfgki2H2+swh+zNJoynC8pMPzOkidqHOSc6Wj032fhl8Z0TVn1GiPpAiJg==}
engines: {node: '>=10'}
peerDependencies:
@@ -2836,7 +2611,7 @@ packages:
'@babel/core': 7.21.3
dev: false
- /@svgr/babel-plugin-svg-dynamic-title/6.5.1_@babel+core@7.21.3:
+ /@svgr/babel-plugin-svg-dynamic-title@6.5.1(@babel/core@7.21.3):
resolution: {integrity: sha512-FwOEi0Il72iAzlkaHrlemVurgSQRDFbk0OC8dSvD5fSBPHltNh7JtLsxmZUhjYBZo2PpcU/RJvvi6Q0l7O7ogw==}
engines: {node: '>=10'}
peerDependencies:
@@ -2845,7 +2620,7 @@ packages:
'@babel/core': 7.21.3
dev: false
- /@svgr/babel-plugin-svg-em-dimensions/6.5.1_@babel+core@7.21.3:
+ /@svgr/babel-plugin-svg-em-dimensions@6.5.1(@babel/core@7.21.3):
resolution: {integrity: sha512-gWGsiwjb4tw+ITOJ86ndY/DZZ6cuXMNE/SjcDRg+HLuCmwpcjOktwRF9WgAiycTqJD/QXqL2f8IzE2Rzh7aVXA==}
engines: {node: '>=10'}
peerDependencies:
@@ -2854,7 +2629,7 @@ packages:
'@babel/core': 7.21.3
dev: false
- /@svgr/babel-plugin-transform-react-native-svg/6.5.1_@babel+core@7.21.3:
+ /@svgr/babel-plugin-transform-react-native-svg@6.5.1(@babel/core@7.21.3):
resolution: {integrity: sha512-2jT3nTayyYP7kI6aGutkyfJ7UMGtuguD72OjeGLwVNyfPRBD8zQthlvL+fAbAKk5n9ZNcvFkp/b1lZ7VsYqVJg==}
engines: {node: '>=10'}
peerDependencies:
@@ -2863,7 +2638,7 @@ packages:
'@babel/core': 7.21.3
dev: false
- /@svgr/babel-plugin-transform-svg-component/6.5.1_@babel+core@7.21.3:
+ /@svgr/babel-plugin-transform-svg-component@6.5.1(@babel/core@7.21.3):
resolution: {integrity: sha512-a1p6LF5Jt33O3rZoVRBqdxL350oge54iZWHNI6LJB5tQ7EelvD/Mb1mfBiZNAan0dt4i3VArkFRjA4iObuNykQ==}
engines: {node: '>=12'}
peerDependencies:
@@ -2872,37 +2647,37 @@ packages:
'@babel/core': 7.21.3
dev: false
- /@svgr/babel-preset/6.5.1_@babel+core@7.21.3:
+ /@svgr/babel-preset@6.5.1(@babel/core@7.21.3):
resolution: {integrity: sha512-6127fvO/FF2oi5EzSQOAjo1LE3OtNVh11R+/8FXa+mHx1ptAaS4cknIjnUA7e6j6fwGGJ17NzaTJFUwOV2zwCw==}
engines: {node: '>=10'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.21.3
- '@svgr/babel-plugin-add-jsx-attribute': 6.5.1_@babel+core@7.21.3
- '@svgr/babel-plugin-remove-jsx-attribute': 6.5.0_@babel+core@7.21.3
- '@svgr/babel-plugin-remove-jsx-empty-expression': 6.5.0_@babel+core@7.21.3
- '@svgr/babel-plugin-replace-jsx-attribute-value': 6.5.1_@babel+core@7.21.3
- '@svgr/babel-plugin-svg-dynamic-title': 6.5.1_@babel+core@7.21.3
- '@svgr/babel-plugin-svg-em-dimensions': 6.5.1_@babel+core@7.21.3
- '@svgr/babel-plugin-transform-react-native-svg': 6.5.1_@babel+core@7.21.3
- '@svgr/babel-plugin-transform-svg-component': 6.5.1_@babel+core@7.21.3
+ '@svgr/babel-plugin-add-jsx-attribute': 6.5.1(@babel/core@7.21.3)
+ '@svgr/babel-plugin-remove-jsx-attribute': 6.5.0(@babel/core@7.21.3)
+ '@svgr/babel-plugin-remove-jsx-empty-expression': 6.5.0(@babel/core@7.21.3)
+ '@svgr/babel-plugin-replace-jsx-attribute-value': 6.5.1(@babel/core@7.21.3)
+ '@svgr/babel-plugin-svg-dynamic-title': 6.5.1(@babel/core@7.21.3)
+ '@svgr/babel-plugin-svg-em-dimensions': 6.5.1(@babel/core@7.21.3)
+ '@svgr/babel-plugin-transform-react-native-svg': 6.5.1(@babel/core@7.21.3)
+ '@svgr/babel-plugin-transform-svg-component': 6.5.1(@babel/core@7.21.3)
dev: false
- /@svgr/core/6.5.1:
+ /@svgr/core@6.5.1:
resolution: {integrity: sha512-/xdLSWxK5QkqG524ONSjvg3V/FkNyCv538OIBdQqPNaAta3AsXj/Bd2FbvR87yMbXO2hFSWiAe/Q6IkVPDw+mw==}
engines: {node: '>=10'}
dependencies:
'@babel/core': 7.21.3
- '@svgr/babel-preset': 6.5.1_@babel+core@7.21.3
- '@svgr/plugin-jsx': 6.5.1_@svgr+core@6.5.1
+ '@svgr/babel-preset': 6.5.1(@babel/core@7.21.3)
+ '@svgr/plugin-jsx': 6.5.1(@svgr/core@6.5.1)
camelcase: 6.3.0
cosmiconfig: 7.1.0
transitivePeerDependencies:
- supports-color
dev: false
- /@svgr/hast-util-to-babel-ast/6.5.1:
+ /@svgr/hast-util-to-babel-ast@6.5.1:
resolution: {integrity: sha512-1hnUxxjd83EAxbL4a0JDJoD3Dao3hmjvyvyEV8PzWmLK3B9m9NPlW7GKjFyoWE8nM7HnXzPcmmSyOW8yOddSXw==}
engines: {node: '>=10'}
dependencies:
@@ -2910,14 +2685,14 @@ packages:
entities: 4.4.0
dev: false
- /@svgr/plugin-jsx/6.5.1_@svgr+core@6.5.1:
+ /@svgr/plugin-jsx@6.5.1(@svgr/core@6.5.1):
resolution: {integrity: sha512-+UdQxI3jgtSjCykNSlEMuy1jSRQlGC7pqBCPvkG/2dATdWo082zHTTK3uhnAju2/6XpE6B5mZ3z4Z8Ns01S8Gw==}
engines: {node: '>=10'}
peerDependencies:
'@svgr/core': ^6.0.0
dependencies:
'@babel/core': 7.21.3
- '@svgr/babel-preset': 6.5.1_@babel+core@7.21.3
+ '@svgr/babel-preset': 6.5.1(@babel/core@7.21.3)
'@svgr/core': 6.5.1
'@svgr/hast-util-to-babel-ast': 6.5.1
svg-parser: 2.0.4
@@ -2925,7 +2700,7 @@ packages:
- supports-color
dev: false
- /@svgr/plugin-svgo/6.5.1_@svgr+core@6.5.1:
+ /@svgr/plugin-svgo@6.5.1(@svgr/core@6.5.1):
resolution: {integrity: sha512-omvZKf8ixP9z6GWgwbtmP9qQMPX4ODXi+wzbVZgomNFsUIlHA1sf4fThdwTWSsZGgvGAG6yE+b/F5gWUkcZ/iQ==}
engines: {node: '>=10'}
peerDependencies:
@@ -2937,79 +2712,79 @@ packages:
svgo: 2.8.0
dev: false
- /@svgr/webpack/6.5.1:
+ /@svgr/webpack@6.5.1:
resolution: {integrity: sha512-cQ/AsnBkXPkEK8cLbv4Dm7JGXq2XrumKnL1dRpJD9rIO2fTIlJI9a1uCciYG1F2aUsox/hJQyNGbt3soDxSRkA==}
engines: {node: '>=10'}
dependencies:
'@babel/core': 7.21.3
- '@babel/plugin-transform-react-constant-elements': 7.21.3_@babel+core@7.21.3
- '@babel/preset-env': 7.20.2_@babel+core@7.21.3
- '@babel/preset-react': 7.18.6_@babel+core@7.21.3
- '@babel/preset-typescript': 7.21.0_@babel+core@7.21.3
+ '@babel/plugin-transform-react-constant-elements': 7.21.3(@babel/core@7.21.3)
+ '@babel/preset-env': 7.20.2(@babel/core@7.21.3)
+ '@babel/preset-react': 7.18.6(@babel/core@7.21.3)
+ '@babel/preset-typescript': 7.21.0(@babel/core@7.21.3)
'@svgr/core': 6.5.1
- '@svgr/plugin-jsx': 6.5.1_@svgr+core@6.5.1
- '@svgr/plugin-svgo': 6.5.1_@svgr+core@6.5.1
+ '@svgr/plugin-jsx': 6.5.1(@svgr/core@6.5.1)
+ '@svgr/plugin-svgo': 6.5.1(@svgr/core@6.5.1)
transitivePeerDependencies:
- supports-color
dev: false
- /@szmarczak/http-timer/1.1.2:
+ /@szmarczak/http-timer@1.1.2:
resolution: {integrity: sha512-XIB2XbzHTN6ieIjfIMV9hlVcfPU26s2vafYWQcZHWXHOxiaRZYEDKEwdl129Zyg50+foYV2jCgtrqSA6qNuNSA==}
engines: {node: '>=6'}
dependencies:
defer-to-connect: 1.1.3
dev: false
- /@trysound/sax/0.2.0:
+ /@trysound/sax@0.2.0:
resolution: {integrity: sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA==}
engines: {node: '>=10.13.0'}
dev: false
- /@types/body-parser/1.19.2:
+ /@types/body-parser@1.19.2:
resolution: {integrity: sha512-ALYone6pm6QmwZoAgeyNksccT9Q4AWZQ6PvfwR37GT6r6FWUPguq6sUmNGSMV2Wr761oQoBxwGGa6DR5o1DC9g==}
dependencies:
'@types/connect': 3.4.35
'@types/node': 18.15.5
dev: false
- /@types/bonjour/3.5.10:
+ /@types/bonjour@3.5.10:
resolution: {integrity: sha512-p7ienRMiS41Nu2/igbJxxLDWrSZ0WxM8UQgCeO9KhoVF7cOVFkrKsiDr1EsJIla8vV3oEEjGcz11jc5yimhzZw==}
dependencies:
'@types/node': 18.15.5
dev: false
- /@types/connect-history-api-fallback/1.3.5:
+ /@types/connect-history-api-fallback@1.3.5:
resolution: {integrity: sha512-h8QJa8xSb1WD4fpKBDcATDNGXghFj6/3GRWG6dhmRcu0RX1Ubasur2Uvx5aeEwlf0MwblEC2bMzzMQntxnw/Cw==}
dependencies:
'@types/express-serve-static-core': 4.17.33
'@types/node': 18.15.5
dev: false
- /@types/connect/3.4.35:
+ /@types/connect@3.4.35:
resolution: {integrity: sha512-cdeYyv4KWoEgpBISTxWvqYsVy444DOqehiF3fM3ne10AmJ62RSyNkUnxMJXHQWRQQX2eR94m5y1IZyDwBjV9FQ==}
dependencies:
'@types/node': 18.15.5
dev: false
- /@types/eslint-scope/3.7.4:
+ /@types/eslint-scope@3.7.4:
resolution: {integrity: sha512-9K4zoImiZc3HlIp6AVUDE4CWYx22a+lhSZMYNpbjW04+YF0KWj4pJXnEMjdnFTiQibFFmElcsasJXDbdI/EPhA==}
dependencies:
'@types/eslint': 8.21.3
'@types/estree': 0.0.51
dev: false
- /@types/eslint/8.21.3:
+ /@types/eslint@8.21.3:
resolution: {integrity: sha512-fa7GkppZVEByMWGbTtE5MbmXWJTVbrjjaS8K6uQj+XtuuUv1fsuPAxhygfqLmsb/Ufb3CV8deFCpiMfAgi00Sw==}
dependencies:
'@types/estree': 0.0.51
'@types/json-schema': 7.0.11
dev: false
- /@types/estree/0.0.51:
+ /@types/estree@0.0.51:
resolution: {integrity: sha512-CuPgU6f3eT/XgKKPqKd/gLZV1Xmvf1a2R5POBOGQa6uv82xpls89HU5zKeVoyR8XzHd1RGNOlQlvUe3CFkjWNQ==}
dev: false
- /@types/express-serve-static-core/4.17.33:
+ /@types/express-serve-static-core@4.17.33:
resolution: {integrity: sha512-TPBqmR/HRYI3eC2E5hmiivIzv+bidAfXofM+sbonAGvyDhySGw9/PQZFt2BLOrjUUR++4eJVpx6KnLQK1Fk9tA==}
dependencies:
'@types/node': 18.15.5
@@ -3017,7 +2792,7 @@ packages:
'@types/range-parser': 1.2.4
dev: false
- /@types/express/4.17.17:
+ /@types/express@4.17.17:
resolution: {integrity: sha512-Q4FmmuLGBG58btUnfS1c1r/NQdlp3DMfGDGig8WhfpA2YRUtEkxAjkZb0yvplJGYdF1fsQ81iMDcH24sSCNC/Q==}
dependencies:
'@types/body-parser': 1.19.2
@@ -3026,91 +2801,91 @@ packages:
'@types/serve-static': 1.15.1
dev: false
- /@types/hast/2.3.4:
+ /@types/hast@2.3.4:
resolution: {integrity: sha512-wLEm0QvaoawEDoTRwzTXp4b4jpwiJDvR5KMnFnVodm3scufTlBOWRD6N1OBf9TZMhjlNsSfcO5V+7AF4+Vy+9g==}
dependencies:
'@types/unist': 2.0.6
dev: false
- /@types/history/4.7.11:
+ /@types/history@4.7.11:
resolution: {integrity: sha512-qjDJRrmvBMiTx+jyLxvLfJU7UznFuokDv4f3WRuriHKERccVpFU+8XMQUAbDzoiJCsmexxRExQeMwwCdamSKDA==}
dev: false
- /@types/html-minifier-terser/6.1.0:
+ /@types/html-minifier-terser@6.1.0:
resolution: {integrity: sha512-oh/6byDPnL1zeNXFrDXFLyZjkr1MsBG667IM792caf1L2UPOOMf65NFzjUH/ltyfwjAGfs1rsX1eftK0jC/KIg==}
dev: false
- /@types/http-proxy/1.17.10:
+ /@types/http-proxy@1.17.10:
resolution: {integrity: sha512-Qs5aULi+zV1bwKAg5z1PWnDXWmsn+LxIvUGv6E2+OOMYhclZMO+OXd9pYVf2gLykf2I7IV2u7oTHwChPNsvJ7g==}
dependencies:
'@types/node': 18.15.5
dev: false
- /@types/istanbul-lib-coverage/2.0.4:
+ /@types/istanbul-lib-coverage@2.0.4:
resolution: {integrity: sha512-z/QT1XN4K4KYuslS23k62yDIDLwLFkzxOuMplDtObz0+y7VqJCaO2o+SPwHCvLFZh7xazvvoor2tA/hPz9ee7g==}
dev: false
- /@types/istanbul-lib-report/3.0.0:
+ /@types/istanbul-lib-report@3.0.0:
resolution: {integrity: sha512-plGgXAPfVKFoYfa9NpYDAkseG+g6Jr294RqeqcqDixSbU34MZVJRi/P+7Y8GDpzkEwLaGZZOpKIEmeVZNtKsrg==}
dependencies:
'@types/istanbul-lib-coverage': 2.0.4
dev: false
- /@types/istanbul-reports/3.0.1:
+ /@types/istanbul-reports@3.0.1:
resolution: {integrity: sha512-c3mAZEuK0lvBp8tmuL74XRKn1+y2dcwOUpH7x4WrF6gk1GIgiluDRgMYQtw2OFcBvAJWlt6ASU3tSqxp0Uu0Aw==}
dependencies:
'@types/istanbul-lib-report': 3.0.0
dev: false
- /@types/json-schema/7.0.11:
+ /@types/json-schema@7.0.11:
resolution: {integrity: sha512-wOuvG1SN4Us4rez+tylwwwCV1psiNVOkJeM3AUWUNWg/jDQY2+HE/444y5gc+jBmRqASOm2Oeh5c1axHobwRKQ==}
dev: false
- /@types/keyv/3.1.4:
+ /@types/keyv@3.1.4:
resolution: {integrity: sha512-BQ5aZNSCpj7D6K2ksrRCTmKRLEpnPvWDiLPfoGyhZ++8YtiK9d/3DBKPJgry359X/P1PfruyYwvnvwFjuEiEIg==}
dependencies:
'@types/node': 18.15.5
dev: false
- /@types/mdast/3.0.11:
+ /@types/mdast@3.0.11:
resolution: {integrity: sha512-Y/uImid8aAwrEA24/1tcRZwpxX3pIFTSilcNDKSPn+Y2iDywSEachzRuvgAYYLR3wpGXAsMbv5lvKLDZLeYPAw==}
dependencies:
'@types/unist': 2.0.6
dev: false
- /@types/mime/3.0.1:
+ /@types/mime@3.0.1:
resolution: {integrity: sha512-Y4XFY5VJAuw0FgAqPNd6NNoV44jbq9Bz2L7Rh/J6jLTiHBSBJa9fxqQIvkIld4GsoDOcCbvzOUAbLPsSKKg+uA==}
dev: false
- /@types/node/17.0.45:
+ /@types/node@17.0.45:
resolution: {integrity: sha512-w+tIMs3rq2afQdsPJlODhoUEKzFP1ayaoyl1CcnwtIlsVe7K7bA1NGm4s3PraqTLlXnbIN84zuBlxBWo1u9BLw==}
dev: false
- /@types/node/18.15.5:
+ /@types/node@18.15.5:
resolution: {integrity: sha512-Ark2WDjjZO7GmvsyFFf81MXuGTA/d6oP38anyxWOL6EREyBKAxKoFHwBhaZxCfLRLpO8JgVXwqOwSwa7jRcjew==}
dev: false
- /@types/parse-json/4.0.0:
+ /@types/parse-json@4.0.0:
resolution: {integrity: sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA==}
dev: false
- /@types/parse5/5.0.3:
+ /@types/parse5@5.0.3:
resolution: {integrity: sha512-kUNnecmtkunAoQ3CnjmMkzNU/gtxG8guhi+Fk2U/kOpIKjIMKnXGp4IJCgQJrXSgMsWYimYG4TGjz/UzbGEBTw==}
dev: false
- /@types/prop-types/15.7.5:
+ /@types/prop-types@15.7.5:
resolution: {integrity: sha512-JCB8C6SnDoQf0cNycqd/35A7MjcnK+ZTqE7judS6o7utxUCg6imJg3QK2qzHKszlTjcj2cn+NwMB2i96ubpj7w==}
dev: false
- /@types/qs/6.9.7:
+ /@types/qs@6.9.7:
resolution: {integrity: sha512-FGa1F62FT09qcrueBA6qYTrJPVDzah9a+493+o2PCXsesWHIn27G98TsSMs3WPNbZIEj4+VJf6saSFpvD+3Zsw==}
dev: false
- /@types/range-parser/1.2.4:
+ /@types/range-parser@1.2.4:
resolution: {integrity: sha512-EEhsLsD6UsDM1yFhAvy0Cjr6VwmpMWqFBCb9w07wVugF7w9nfajxLuVmngTIpgS6svCnm6Vaw+MZhoDCKnOfsw==}
dev: false
- /@types/react-router-config/5.0.6:
+ /@types/react-router-config@5.0.6:
resolution: {integrity: sha512-db1mx37a1EJDf1XeX8jJN7R3PZABmJQXR8r28yUjVMFSjkmnQo6X6pOEEmNl+Tp2gYQOGPdYbFIipBtdElZ3Yg==}
dependencies:
'@types/history': 4.7.11
@@ -3118,7 +2893,7 @@ packages:
'@types/react-router': 5.1.20
dev: false
- /@types/react-router-dom/5.3.3:
+ /@types/react-router-dom@5.3.3:
resolution: {integrity: sha512-kpqnYK4wcdm5UaWI3fLcELopqLrHgLqNsdpHauzlQktfkHL3npOSwtj1Uz9oKBAzs7lFtVkV8j83voAz2D8fhw==}
dependencies:
'@types/history': 4.7.11
@@ -3126,14 +2901,14 @@ packages:
'@types/react-router': 5.1.20
dev: false
- /@types/react-router/5.1.20:
+ /@types/react-router@5.1.20:
resolution: {integrity: sha512-jGjmu/ZqS7FjSH6owMcD5qpq19+1RS9DeVRqfl1FeBMxTDQAGwlMWOcs52NDoXaNKyG3d1cYQFMs9rCrb88o9Q==}
dependencies:
'@types/history': 4.7.11
'@types/react': 17.0.48
dev: false
- /@types/react/17.0.48:
+ /@types/react@17.0.48:
resolution: {integrity: sha512-zJ6IYlJ8cYYxiJfUaZOQee4lh99mFihBoqkOSEGV+dFi9leROW6+PgstzQ+w3gWTnUfskALtQPGHK6dYmPj+2A==}
dependencies:
'@types/prop-types': 15.7.5
@@ -3141,85 +2916,85 @@ packages:
csstype: 3.1.0
dev: false
- /@types/responselike/1.0.0:
+ /@types/responselike@1.0.0:
resolution: {integrity: sha512-85Y2BjiufFzaMIlvJDvTTB8Fxl2xfLo4HgmHzVBz08w4wDePCTjYw66PdrolO0kzli3yam/YCgRufyo1DdQVTA==}
dependencies:
'@types/node': 18.15.5
dev: false
- /@types/retry/0.12.0:
+ /@types/retry@0.12.0:
resolution: {integrity: sha512-wWKOClTTiizcZhXnPY4wikVAwmdYHp8q6DmC+EJUzAMsycb7HB32Kh9RN4+0gExjmPmZSAQjgURXIGATPegAvA==}
dev: false
- /@types/sax/1.2.4:
+ /@types/sax@1.2.4:
resolution: {integrity: sha512-pSAff4IAxJjfAXUG6tFkO7dsSbTmf8CtUpfhhZ5VhkRpC4628tJhh3+V6H1E+/Gs9piSzYKT5yzHO5M4GG9jkw==}
dependencies:
- '@types/node': 17.0.45
+ '@types/node': 18.15.5
dev: false
- /@types/scheduler/0.16.2:
+ /@types/scheduler@0.16.2:
resolution: {integrity: sha512-hppQEBDmlwhFAXKJX2KnWLYu5yMfi91yazPb2l+lbJiwW+wdo1gNeRA+3RgNSO39WYX2euey41KEwnqesU2Jew==}
dev: false
- /@types/serve-index/1.9.1:
+ /@types/serve-index@1.9.1:
resolution: {integrity: sha512-d/Hs3nWDxNL2xAczmOVZNj92YZCS6RGxfBPjKzuu/XirCgXdpKEb88dYNbrYGint6IVWLNP+yonwVAuRC0T2Dg==}
dependencies:
'@types/express': 4.17.17
dev: false
- /@types/serve-static/1.15.1:
+ /@types/serve-static@1.15.1:
resolution: {integrity: sha512-NUo5XNiAdULrJENtJXZZ3fHtfMolzZwczzBbnAeBbqBwG+LaG6YaJtuwzwGSQZ2wsCrxjEhNNjAkKigy3n8teQ==}
dependencies:
'@types/mime': 3.0.1
'@types/node': 18.15.5
dev: false
- /@types/sockjs/0.3.33:
+ /@types/sockjs@0.3.33:
resolution: {integrity: sha512-f0KEEe05NvUnat+boPTZ0dgaLZ4SfSouXUgv5noUiefG2ajgKjmETo9ZJyuqsl7dfl2aHlLJUiki6B4ZYldiiw==}
dependencies:
'@types/node': 18.15.5
dev: false
- /@types/unist/2.0.6:
+ /@types/unist@2.0.6:
resolution: {integrity: sha512-PBjIUxZHOuj0R15/xuwJYjFi+KZdNFrehocChv4g5hu6aFroHue8m0lBP0POdK2nKzbw0cgV1mws8+V/JAcEkQ==}
dev: false
- /@types/ws/8.5.4:
+ /@types/ws@8.5.4:
resolution: {integrity: sha512-zdQDHKUgcX/zBc4GrwsE/7dVdAD8JR4EuiAXiiUhhfyIJXXb2+PrGshFyeXWQPMmmZ2XxgaqclgpIC7eTXc1mg==}
dependencies:
'@types/node': 18.15.5
dev: false
- /@types/yargs-parser/21.0.0:
+ /@types/yargs-parser@21.0.0:
resolution: {integrity: sha512-iO9ZQHkZxHn4mSakYV0vFHAVDyEOIJQrV2uZ06HxEPcx+mt8swXoZHIbaaJ2crJYFfErySgktuTZ3BeLz+XmFA==}
dev: false
- /@types/yargs/17.0.23:
+ /@types/yargs@17.0.23:
resolution: {integrity: sha512-yuogunc04OnzGQCrfHx+Kk883Q4X0aSwmYZhKjI21m+SVYzjIbrWl8dOOwSv5hf2Um2pdCOXWo9isteZTNXUZQ==}
dependencies:
'@types/yargs-parser': 21.0.0
dev: false
- /@webassemblyjs/ast/1.11.1:
+ /@webassemblyjs/ast@1.11.1:
resolution: {integrity: sha512-ukBh14qFLjxTQNTXocdyksN5QdM28S1CxHt2rdskFyL+xFV7VremuBLVbmCePj+URalXBENx/9Lm7lnhihtCSw==}
dependencies:
'@webassemblyjs/helper-numbers': 1.11.1
'@webassemblyjs/helper-wasm-bytecode': 1.11.1
dev: false
- /@webassemblyjs/floating-point-hex-parser/1.11.1:
+ /@webassemblyjs/floating-point-hex-parser@1.11.1:
resolution: {integrity: sha512-iGRfyc5Bq+NnNuX8b5hwBrRjzf0ocrJPI6GWFodBFzmFnyvrQ83SHKhmilCU/8Jv67i4GJZBMhEzltxzcNagtQ==}
dev: false
- /@webassemblyjs/helper-api-error/1.11.1:
+ /@webassemblyjs/helper-api-error@1.11.1:
resolution: {integrity: sha512-RlhS8CBCXfRUR/cwo2ho9bkheSXG0+NwooXcc3PAILALf2QLdFyj7KGsKRbVc95hZnhnERon4kW/D3SZpp6Tcg==}
dev: false
- /@webassemblyjs/helper-buffer/1.11.1:
+ /@webassemblyjs/helper-buffer@1.11.1:
resolution: {integrity: sha512-gwikF65aDNeeXa8JxXa2BAk+REjSyhrNC9ZwdT0f8jc4dQQeDQ7G4m0f2QCLPJiMTTO6wfDmRmj/pW0PsUvIcA==}
dev: false
- /@webassemblyjs/helper-numbers/1.11.1:
+ /@webassemblyjs/helper-numbers@1.11.1:
resolution: {integrity: sha512-vDkbxiB8zfnPdNK9Rajcey5C0w+QJugEglN0of+kmO8l7lDb77AnlKYQF7aarZuCrv+l0UvqL+68gSDr3k9LPQ==}
dependencies:
'@webassemblyjs/floating-point-hex-parser': 1.11.1
@@ -3227,11 +3002,11 @@ packages:
'@xtuc/long': 4.2.2
dev: false
- /@webassemblyjs/helper-wasm-bytecode/1.11.1:
+ /@webassemblyjs/helper-wasm-bytecode@1.11.1:
resolution: {integrity: sha512-PvpoOGiJwXeTrSf/qfudJhwlvDQxFgelbMqtq52WWiXC6Xgg1IREdngmPN3bs4RoO83PnL/nFrxucXj1+BX62Q==}
dev: false
- /@webassemblyjs/helper-wasm-section/1.11.1:
+ /@webassemblyjs/helper-wasm-section@1.11.1:
resolution: {integrity: sha512-10P9No29rYX1j7F3EVPX3JvGPQPae+AomuSTPiF9eBQeChHI6iqjMIwR9JmOJXwpnn/oVGDk7I5IlskuMwU/pg==}
dependencies:
'@webassemblyjs/ast': 1.11.1
@@ -3240,23 +3015,23 @@ packages:
'@webassemblyjs/wasm-gen': 1.11.1
dev: false
- /@webassemblyjs/ieee754/1.11.1:
+ /@webassemblyjs/ieee754@1.11.1:
resolution: {integrity: sha512-hJ87QIPtAMKbFq6CGTkZYJivEwZDbQUgYd3qKSadTNOhVY7p+gfP6Sr0lLRVTaG1JjFj+r3YchoqRYxNH3M0GQ==}
dependencies:
'@xtuc/ieee754': 1.2.0
dev: false
- /@webassemblyjs/leb128/1.11.1:
+ /@webassemblyjs/leb128@1.11.1:
resolution: {integrity: sha512-BJ2P0hNZ0u+Th1YZXJpzW6miwqQUGcIHT1G/sf72gLVD9DZ5AdYTqPNbHZh6K1M5VmKvFXwGSWZADz+qBWxeRw==}
dependencies:
'@xtuc/long': 4.2.2
dev: false
- /@webassemblyjs/utf8/1.11.1:
+ /@webassemblyjs/utf8@1.11.1:
resolution: {integrity: sha512-9kqcxAEdMhiwQkHpkNiorZzqpGrodQQ2IGrHHxCy+Ozng0ofyMA0lTqiLkVs1uzTRejX+/O0EOT7KxqVPuXosQ==}
dev: false
- /@webassemblyjs/wasm-edit/1.11.1:
+ /@webassemblyjs/wasm-edit@1.11.1:
resolution: {integrity: sha512-g+RsupUC1aTHfR8CDgnsVRVZFJqdkFHpsHMfJuWQzWU3tvnLC07UqHICfP+4XyL2tnr1amvl1Sdp06TnYCmVkA==}
dependencies:
'@webassemblyjs/ast': 1.11.1
@@ -3269,7 +3044,7 @@ packages:
'@webassemblyjs/wast-printer': 1.11.1
dev: false
- /@webassemblyjs/wasm-gen/1.11.1:
+ /@webassemblyjs/wasm-gen@1.11.1:
resolution: {integrity: sha512-F7QqKXwwNlMmsulj6+O7r4mmtAlCWfO/0HdgOxSklZfQcDu0TpLiD1mRt/zF25Bk59FIjEuGAIyn5ei4yMfLhA==}
dependencies:
'@webassemblyjs/ast': 1.11.1
@@ -3279,7 +3054,7 @@ packages:
'@webassemblyjs/utf8': 1.11.1
dev: false
- /@webassemblyjs/wasm-opt/1.11.1:
+ /@webassemblyjs/wasm-opt@1.11.1:
resolution: {integrity: sha512-VqnkNqnZlU5EB64pp1l7hdm3hmQw7Vgqa0KF/KCNO9sIpI6Fk6brDEiX+iCOYrvMuBWDws0NkTOxYEb85XQHHw==}
dependencies:
'@webassemblyjs/ast': 1.11.1
@@ -3288,7 +3063,7 @@ packages:
'@webassemblyjs/wasm-parser': 1.11.1
dev: false
- /@webassemblyjs/wasm-parser/1.11.1:
+ /@webassemblyjs/wasm-parser@1.11.1:
resolution: {integrity: sha512-rrBujw+dJu32gYB7/Lup6UhdkPx9S9SnobZzRVL7VcBH9Bt9bCBLEuX/YXOOtBsOZ4NQrRykKhffRWHvigQvOA==}
dependencies:
'@webassemblyjs/ast': 1.11.1
@@ -3299,22 +3074,22 @@ packages:
'@webassemblyjs/utf8': 1.11.1
dev: false
- /@webassemblyjs/wast-printer/1.11.1:
+ /@webassemblyjs/wast-printer@1.11.1:
resolution: {integrity: sha512-IQboUWM4eKzWW+N/jij2sRatKMh99QEelo3Eb2q0qXkvPRISAj8Qxtmw5itwqK+TTkBuUIE45AxYPToqPtL5gg==}
dependencies:
'@webassemblyjs/ast': 1.11.1
'@xtuc/long': 4.2.2
dev: false
- /@xtuc/ieee754/1.2.0:
+ /@xtuc/ieee754@1.2.0:
resolution: {integrity: sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==}
dev: false
- /@xtuc/long/4.2.2:
+ /@xtuc/long@4.2.2:
resolution: {integrity: sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==}
dev: false
- /accepts/1.3.8:
+ /accepts@1.3.8:
resolution: {integrity: sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==}
engines: {node: '>= 0.6'}
dependencies:
@@ -3322,7 +3097,7 @@ packages:
negotiator: 0.6.3
dev: false
- /acorn-import-assertions/1.8.0_acorn@8.8.2:
+ /acorn-import-assertions@1.8.0(acorn@8.8.2):
resolution: {integrity: sha512-m7VZ3jwz4eK6A4Vtt8Ew1/mNbP24u0FhdyfA7fSvnJR6LMdfOYnmuIrrJAgrYfYJ10F/otaHTtrtrtmHdMNzEw==}
peerDependencies:
acorn: ^8
@@ -3330,23 +3105,22 @@ packages:
acorn: 8.8.2
dev: false
- /acorn-walk/8.2.0:
+ /acorn-walk@8.2.0:
resolution: {integrity: sha512-k+iyHEuPgSw6SbuDpGQM+06HQUa04DZ3o+F6CSzXMvvI5KMvnaEqXe+YVe555R9nn6GPt404fos4wcgpw12SDA==}
engines: {node: '>=0.4.0'}
dev: false
- /acorn/8.8.2:
+ /acorn@8.8.2:
resolution: {integrity: sha512-xjIYgE8HBrkpd/sJqOGNspf8uHG+NOHGOw6a/Urj8taM2EXfdNAH2oFcPeIFfsv3+kz/mJrS5VuMqbNLjCa2vw==}
engines: {node: '>=0.4.0'}
- hasBin: true
dev: false
- /address/1.2.2:
+ /address@1.2.2:
resolution: {integrity: sha512-4B/qKCfeE/ODUaAUpSwfzazo5x29WD4r3vXiWsB7I2mSDAihwEqKO+g8GELZUQSSAo5e1XTYh3ZVfLyxBc12nA==}
engines: {node: '>= 10.0.0'}
dev: false
- /aggregate-error/3.1.0:
+ /aggregate-error@3.1.0:
resolution: {integrity: sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==}
engines: {node: '>=8'}
dependencies:
@@ -3354,8 +3128,10 @@ packages:
indent-string: 4.0.0
dev: false
- /ajv-formats/2.1.1:
+ /ajv-formats@2.1.1(ajv@8.12.0):
resolution: {integrity: sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==}
+ peerDependencies:
+ ajv: ^8.0.0
peerDependenciesMeta:
ajv:
optional: true
@@ -3363,7 +3139,7 @@ packages:
ajv: 8.12.0
dev: false
- /ajv-keywords/3.5.2_ajv@6.12.6:
+ /ajv-keywords@3.5.2(ajv@6.12.6):
resolution: {integrity: sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==}
peerDependencies:
ajv: ^6.9.1
@@ -3371,7 +3147,7 @@ packages:
ajv: 6.12.6
dev: false
- /ajv-keywords/5.1.0_ajv@8.12.0:
+ /ajv-keywords@5.1.0(ajv@8.12.0):
resolution: {integrity: sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==}
peerDependencies:
ajv: ^8.8.2
@@ -3380,7 +3156,7 @@ packages:
fast-deep-equal: 3.1.3
dev: false
- /ajv/6.12.6:
+ /ajv@6.12.6:
resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==}
dependencies:
fast-deep-equal: 3.1.3
@@ -3389,7 +3165,7 @@ packages:
uri-js: 4.4.1
dev: false
- /ajv/8.12.0:
+ /ajv@8.12.0:
resolution: {integrity: sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==}
dependencies:
fast-deep-equal: 3.1.3
@@ -3398,7 +3174,7 @@ packages:
uri-js: 4.4.1
dev: false
- /algoliasearch-helper/3.12.0_algoliasearch@4.15.0:
+ /algoliasearch-helper@3.12.0(algoliasearch@4.15.0):
resolution: {integrity: sha512-/j1U3PEwdan0n6P/QqSnSpNSLC5+cEMvyljd5CnmNmUjDlGrys+vFEOwjVEnqELIiAGMHEA/Nl3CiKVFBUYqyQ==}
peerDependencies:
algoliasearch: '>= 3.1 < 6'
@@ -3407,7 +3183,7 @@ packages:
algoliasearch: 4.15.0
dev: false
- /algoliasearch/4.15.0:
+ /algoliasearch@4.15.0:
resolution: {integrity: sha512-+vgKQF5944dYsz9zhKk07JbOYeNdKisoD5GeG0woBL3nLzbn2a+nGwki60DXg7CXvaFXBcTXyJG4C+VaBVd44g==}
dependencies:
'@algolia/cache-browser-local-storage': 4.15.0
@@ -3426,48 +3202,47 @@ packages:
'@algolia/transporter': 4.15.0
dev: false
- /ansi-align/3.0.1:
+ /ansi-align@3.0.1:
resolution: {integrity: sha512-IOfwwBF5iczOjp/WeY4YxyjqAFMQoZufdQWDd19SEExbVLNXqvpzSJ/M7Za4/sCPmQ0+GRquoA7bGcINcxew6w==}
dependencies:
string-width: 4.2.3
dev: false
- /ansi-html-community/0.0.8:
+ /ansi-html-community@0.0.8:
resolution: {integrity: sha512-1APHAyr3+PCamwNw3bXCPp4HFLONZt/yIH0sZp0/469KWNTEy+qN5jQ3GVX6DMZ1UXAi34yVwtTeaG/HpBuuzw==}
engines: {'0': node >= 0.8.0}
- hasBin: true
dev: false
- /ansi-regex/5.0.1:
+ /ansi-regex@5.0.1:
resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==}
engines: {node: '>=8'}
dev: false
- /ansi-regex/6.0.1:
+ /ansi-regex@6.0.1:
resolution: {integrity: sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==}
engines: {node: '>=12'}
dev: false
- /ansi-styles/3.2.1:
+ /ansi-styles@3.2.1:
resolution: {integrity: sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==}
engines: {node: '>=4'}
dependencies:
color-convert: 1.9.3
dev: false
- /ansi-styles/4.3.0:
+ /ansi-styles@4.3.0:
resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==}
engines: {node: '>=8'}
dependencies:
color-convert: 2.0.1
dev: false
- /ansi-styles/6.2.1:
+ /ansi-styles@6.2.1:
resolution: {integrity: sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==}
engines: {node: '>=12'}
dev: false
- /anymatch/3.1.3:
+ /anymatch@3.1.3:
resolution: {integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==}
engines: {node: '>= 8'}
dependencies:
@@ -3475,46 +3250,45 @@ packages:
picomatch: 2.3.1
dev: false
- /arg/5.0.2:
+ /arg@5.0.2:
resolution: {integrity: sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==}
dev: false
- /argparse/1.0.10:
+ /argparse@1.0.10:
resolution: {integrity: sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==}
dependencies:
sprintf-js: 1.0.3
dev: false
- /argparse/2.0.1:
+ /argparse@2.0.1:
resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==}
dev: false
- /array-flatten/1.1.1:
+ /array-flatten@1.1.1:
resolution: {integrity: sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==}
dev: false
- /array-flatten/2.1.2:
+ /array-flatten@2.1.2:
resolution: {integrity: sha512-hNfzcOV8W4NdualtqBFPyVO+54DSJuZGY9qT4pRroB6S9e3iiido2ISIC5h9R2sPJ8H3FHCIiEnsv1lPXO3KtQ==}
dev: false
- /array-union/2.1.0:
+ /array-union@2.1.0:
resolution: {integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==}
engines: {node: '>=8'}
dev: false
- /asap/2.0.6:
+ /asap@2.0.6:
resolution: {integrity: sha512-BSHWgDSAiKs50o2Re8ppvp3seVHXSRM44cdSsT9FfNEUUZLOGWVCsiWaRPWM1Znn+mqZ1OfVZ3z3DWEzSp7hRA==}
dev: false
- /at-least-node/1.0.0:
+ /at-least-node@1.0.0:
resolution: {integrity: sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==}
engines: {node: '>= 4.0.0'}
dev: false
- /autoprefixer/10.4.14_postcss@8.4.21:
+ /autoprefixer@10.4.14(postcss@8.4.21):
resolution: {integrity: sha512-FQzyfOsTlwVzjHxKEqRIAdJx9niO6VCBCoEwax/VLSoQF29ggECcPuBqUMZ+u8jCZOPSy8b8/8KnuFbp0SaFZQ==}
engines: {node: ^10 || ^12 || >=14}
- hasBin: true
peerDependencies:
postcss: ^8.1.0
dependencies:
@@ -3527,7 +3301,7 @@ packages:
postcss-value-parser: 4.2.0
dev: false
- /axios/0.25.0:
+ /axios@0.25.0:
resolution: {integrity: sha512-cD8FOb0tRH3uuEe6+evtAbgJtfxr7ly3fQjYcMcuPlgkwVS9xboaVIpcDV+cYQe+yGykgwZCs1pzjntcGa6l5g==}
dependencies:
follow-redirects: 1.15.2
@@ -3535,7 +3309,7 @@ packages:
- debug
dev: false
- /babel-loader/8.3.0_qtovpurzjlo3biun26ymnwui7i:
+ /babel-loader@8.3.0(@babel/core@7.21.3)(webpack@5.76.3):
resolution: {integrity: sha512-H8SvsMF+m9t15HNLMipppzkC+Y2Yq+v3SonZyU70RBL/h1gxPkH08Ot8pEE9Z4Kd+czyWJClmFS8qzIP9OZ04Q==}
engines: {node: '>= 8.9'}
peerDependencies:
@@ -3550,7 +3324,7 @@ packages:
webpack: 5.76.3
dev: false
- /babel-plugin-apply-mdx-type-prop/1.6.22_@babel+core@7.12.9:
+ /babel-plugin-apply-mdx-type-prop@1.6.22(@babel/core@7.12.9):
resolution: {integrity: sha512-VefL+8o+F/DfK24lPZMtJctrCVOfgbqLAGZSkxwhazQv4VxPg3Za/i40fu22KR2m8eEda+IfSOlPLUSIiLcnCQ==}
peerDependencies:
'@babel/core': ^7.11.6
@@ -3560,80 +3334,80 @@ packages:
'@mdx-js/util': 1.6.22
dev: false
- /babel-plugin-dynamic-import-node/2.3.3:
+ /babel-plugin-dynamic-import-node@2.3.3:
resolution: {integrity: sha512-jZVI+s9Zg3IqA/kdi0i6UDCybUI3aSBLnglhYbSSjKlV7yF1F/5LWv8MakQmvYpnbJDS6fcBL2KzHSxNCMtWSQ==}
dependencies:
object.assign: 4.1.4
dev: false
- /babel-plugin-extract-import-names/1.6.22:
+ /babel-plugin-extract-import-names@1.6.22:
resolution: {integrity: sha512-yJ9BsJaISua7d8zNT7oRG1ZLBJCIdZ4PZqmH8qa9N5AK01ifk3fnkc98AXhtzE7UkfCsEumvoQWgoYLhOnJ7jQ==}
dependencies:
'@babel/helper-plugin-utils': 7.10.4
dev: false
- /babel-plugin-polyfill-corejs2/0.3.3_@babel+core@7.21.3:
+ /babel-plugin-polyfill-corejs2@0.3.3(@babel/core@7.21.3):
resolution: {integrity: sha512-8hOdmFYFSZhqg2C/JgLUQ+t52o5nirNwaWM2B9LWteozwIvM14VSwdsCAUET10qT+kmySAlseadmfeeSWFCy+Q==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/compat-data': 7.21.0
'@babel/core': 7.21.3
- '@babel/helper-define-polyfill-provider': 0.3.3_@babel+core@7.21.3
+ '@babel/helper-define-polyfill-provider': 0.3.3(@babel/core@7.21.3)
semver: 6.3.0
transitivePeerDependencies:
- supports-color
dev: false
- /babel-plugin-polyfill-corejs3/0.6.0_@babel+core@7.21.3:
+ /babel-plugin-polyfill-corejs3@0.6.0(@babel/core@7.21.3):
resolution: {integrity: sha512-+eHqR6OPcBhJOGgsIar7xoAB1GcSwVUA3XjAd7HJNzOXT4wv6/H7KIdA/Nc60cvUlDbKApmqNvD1B1bzOt4nyA==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.21.3
- '@babel/helper-define-polyfill-provider': 0.3.3_@babel+core@7.21.3
+ '@babel/helper-define-polyfill-provider': 0.3.3(@babel/core@7.21.3)
core-js-compat: 3.29.1
transitivePeerDependencies:
- supports-color
dev: false
- /babel-plugin-polyfill-regenerator/0.4.1_@babel+core@7.21.3:
+ /babel-plugin-polyfill-regenerator@0.4.1(@babel/core@7.21.3):
resolution: {integrity: sha512-NtQGmyQDXjQqQ+IzRkBVwEOz9lQ4zxAQZgoAYEtU9dJjnl1Oc98qnN7jcp+bE7O7aYzVpavXE3/VKXNzUbh7aw==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.21.3
- '@babel/helper-define-polyfill-provider': 0.3.3_@babel+core@7.21.3
+ '@babel/helper-define-polyfill-provider': 0.3.3(@babel/core@7.21.3)
transitivePeerDependencies:
- supports-color
dev: false
- /bail/1.0.5:
+ /bail@1.0.5:
resolution: {integrity: sha512-xFbRxM1tahm08yHBP16MMjVUAvDaBMD38zsM9EMAUN61omwLmKlOpB/Zku5QkjZ8TZ4vn53pj+t518cH0S03RQ==}
dev: false
- /balanced-match/1.0.2:
+ /balanced-match@1.0.2:
resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==}
dev: false
- /base16/1.0.0:
+ /base16@1.0.0:
resolution: {integrity: sha512-pNdYkNPiJUnEhnfXV56+sQy8+AaPcG3POZAUnwr4EeqCUZFz4u2PePbo3e5Gj4ziYPCWGUZT9RHisvJKnwFuBQ==}
dev: false
- /batch/0.6.1:
+ /batch@0.6.1:
resolution: {integrity: sha512-x+VAiMRL6UPkx+kudNvxTl6hB2XNNCG2r+7wixVfIYwu/2HKRXimwQyaumLjMveWvT2Hkd/cAJw+QBMfJ/EKVw==}
dev: false
- /big.js/5.2.2:
+ /big.js@5.2.2:
resolution: {integrity: sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==}
dev: false
- /binary-extensions/2.2.0:
+ /binary-extensions@2.2.0:
resolution: {integrity: sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==}
engines: {node: '>=8'}
dev: false
- /body-parser/1.20.1:
+ /body-parser@1.20.1:
resolution: {integrity: sha512-jWi7abTbYwajOytWCQc37VulmWiRae5RyTpaCyDcS5/lMdtwSz5lOpDE67srw/HYe35f1z3fDQw+3txg7gNtWw==}
engines: {node: '>= 0.8', npm: 1.2.8000 || >= 1.4.16}
dependencies:
@@ -3653,7 +3427,7 @@ packages:
- supports-color
dev: false
- /bonjour-service/1.1.1:
+ /bonjour-service@1.1.1:
resolution: {integrity: sha512-Z/5lQRMOG9k7W+FkeGTNjh7htqn/2LMnfOvBZ8pynNZCM9MwkQkI3zeI4oz09uWdcgmgHugVvBqxGg4VQJ5PCg==}
dependencies:
array-flatten: 2.1.2
@@ -3662,11 +3436,11 @@ packages:
multicast-dns: 7.2.5
dev: false
- /boolbase/1.0.0:
+ /boolbase@1.0.0:
resolution: {integrity: sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==}
dev: false
- /boxen/5.1.2:
+ /boxen@5.1.2:
resolution: {integrity: sha512-9gYgQKXx+1nP8mP7CzFyaUARhg7D3n1dF/FnErWmu9l6JvGpNUN278h0aSb+QjoiKSWG+iZ3uHrcqk0qrY9RQQ==}
engines: {node: '>=10'}
dependencies:
@@ -3680,7 +3454,7 @@ packages:
wrap-ansi: 7.0.0
dev: false
- /boxen/6.2.1:
+ /boxen@6.2.1:
resolution: {integrity: sha512-H4PEsJXfFI/Pt8sjDWbHlQPx4zL/bvSQjcilJmaulGt5mLDorHOHpmdXAJcBcmru7PhYSp/cDMWRko4ZUMFkSw==}
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
dependencies:
@@ -3694,46 +3468,45 @@ packages:
wrap-ansi: 8.1.0
dev: false
- /brace-expansion/1.1.11:
+ /brace-expansion@1.1.11:
resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==}
dependencies:
balanced-match: 1.0.2
concat-map: 0.0.1
dev: false
- /braces/3.0.2:
+ /braces@3.0.2:
resolution: {integrity: sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==}
engines: {node: '>=8'}
dependencies:
fill-range: 7.0.1
dev: false
- /browserslist/4.21.5:
+ /browserslist@4.21.5:
resolution: {integrity: sha512-tUkiguQGW7S3IhB7N+c2MV/HZPSCPAAiYBZXLsBhFB/PCy6ZKKsZrmBayHV9fdGV/ARIfJ14NkxKzRDjvp7L6w==}
engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
- hasBin: true
dependencies:
caniuse-lite: 1.0.30001469
electron-to-chromium: 1.4.335
node-releases: 2.0.10
- update-browserslist-db: 1.0.10_browserslist@4.21.5
+ update-browserslist-db: 1.0.10(browserslist@4.21.5)
dev: false
- /buffer-from/1.1.2:
+ /buffer-from@1.1.2:
resolution: {integrity: sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==}
dev: false
- /bytes/3.0.0:
+ /bytes@3.0.0:
resolution: {integrity: sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw==}
engines: {node: '>= 0.8'}
dev: false
- /bytes/3.1.2:
+ /bytes@3.1.2:
resolution: {integrity: sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==}
engines: {node: '>= 0.8'}
dev: false
- /cacheable-request/6.1.0:
+ /cacheable-request@6.1.0:
resolution: {integrity: sha512-Oj3cAGPCqOZX7Rz64Uny2GYAZNliQSqfbePrgAQ1wKAihYmCUnraBtJtKcGR4xz7wF+LoJC+ssFZvv5BgF9Igg==}
engines: {node: '>=8'}
dependencies:
@@ -3746,36 +3519,36 @@ packages:
responselike: 1.0.2
dev: false
- /call-bind/1.0.2:
+ /call-bind@1.0.2:
resolution: {integrity: sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==}
dependencies:
function-bind: 1.1.1
get-intrinsic: 1.2.0
dev: false
- /callsites/3.1.0:
+ /callsites@3.1.0:
resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==}
engines: {node: '>=6'}
dev: false
- /camel-case/4.1.2:
+ /camel-case@4.1.2:
resolution: {integrity: sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw==}
dependencies:
pascal-case: 3.1.2
tslib: 2.5.0
dev: false
- /camelcase-css/2.0.1:
+ /camelcase-css@2.0.1:
resolution: {integrity: sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==}
engines: {node: '>= 6'}
dev: false
- /camelcase/6.3.0:
+ /camelcase@6.3.0:
resolution: {integrity: sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==}
engines: {node: '>=10'}
dev: false
- /caniuse-api/3.0.0:
+ /caniuse-api@3.0.0:
resolution: {integrity: sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==}
dependencies:
browserslist: 4.21.5
@@ -3784,15 +3557,15 @@ packages:
lodash.uniq: 4.5.0
dev: false
- /caniuse-lite/1.0.30001469:
+ /caniuse-lite@1.0.30001469:
resolution: {integrity: sha512-Rcp7221ScNqQPP3W+lVOYDyjdR6dC+neEQCttoNr5bAyz54AboB4iwpnWgyi8P4YUsPybVzT4LgWiBbI3drL4g==}
dev: false
- /ccount/1.1.0:
+ /ccount@1.1.0:
resolution: {integrity: sha512-vlNK021QdI7PNeiUh/lKkC/mNHHfV0m/Ad5JoI0TYtlBnJAslM/JIkm/tGC88bkLIwO6OQ5uV6ztS6kVAtCDlg==}
dev: false
- /chalk/2.4.2:
+ /chalk@2.4.2:
resolution: {integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==}
engines: {node: '>=4'}
dependencies:
@@ -3801,7 +3574,7 @@ packages:
supports-color: 5.5.0
dev: false
- /chalk/4.1.2:
+ /chalk@4.1.2:
resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==}
engines: {node: '>=10'}
dependencies:
@@ -3809,19 +3582,19 @@ packages:
supports-color: 7.2.0
dev: false
- /character-entities-legacy/1.1.4:
+ /character-entities-legacy@1.1.4:
resolution: {integrity: sha512-3Xnr+7ZFS1uxeiUDvV02wQ+QDbc55o97tIV5zHScSPJpcLm/r0DFPcoY3tYRp+VZukxuMeKgXYmsXQHO05zQeA==}
dev: false
- /character-entities/1.2.4:
+ /character-entities@1.2.4:
resolution: {integrity: sha512-iBMyeEHxfVnIakwOuDXpVkc54HijNgCyQB2w0VfGQThle6NXn50zU6V/u+LDhxHcDUPojn6Kpga3PTAD8W1bQw==}
dev: false
- /character-reference-invalid/1.1.4:
+ /character-reference-invalid@1.1.4:
resolution: {integrity: sha512-mKKUkUbhPpQlCOfIuZkvSEgktjPFIsZKRRbC6KWVEMvlzblj3i3asQv5ODsrwt0N3pHAEvjP8KTQPHkp0+6jOg==}
dev: false
- /cheerio-select/2.1.0:
+ /cheerio-select@2.1.0:
resolution: {integrity: sha512-9v9kG0LvzrlcungtnJtpGNxY+fzECQKhK4EGJX2vByejiMX84MFNQw4UxPJl3bFbTMw+Dfs37XaIkCwTZfLh4g==}
dependencies:
boolbase: 1.0.0
@@ -3832,7 +3605,7 @@ packages:
domutils: 3.0.1
dev: false
- /cheerio/1.0.0-rc.12:
+ /cheerio@1.0.0-rc.12:
resolution: {integrity: sha512-VqR8m68vM46BNnuZ5NtnGBKIE/DfN0cRIzg9n40EIq9NOv90ayxLBXA8fXC5gquFRGJSTRqBq25Jt2ECLR431Q==}
engines: {node: '>= 6'}
dependencies:
@@ -3845,7 +3618,7 @@ packages:
parse5-htmlparser2-tree-adapter: 7.0.0
dev: false
- /chokidar/3.5.3:
+ /chokidar@3.5.3:
resolution: {integrity: sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==}
engines: {node: '>= 8.10.0'}
dependencies:
@@ -3860,43 +3633,43 @@ packages:
fsevents: 2.3.2
dev: false
- /chrome-trace-event/1.0.3:
+ /chrome-trace-event@1.0.3:
resolution: {integrity: sha512-p3KULyQg4S7NIHixdwbGX+nFHkoBiA4YQmyWtjb8XngSKV124nJmRysgAeujbUVb15vh+RvFUfCPqU7rXk+hZg==}
engines: {node: '>=6.0'}
dev: false
- /ci-info/2.0.0:
+ /ci-info@2.0.0:
resolution: {integrity: sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ==}
dev: false
- /ci-info/3.8.0:
+ /ci-info@3.8.0:
resolution: {integrity: sha512-eXTggHWSooYhq49F2opQhuHWgzucfF2YgODK4e1566GQs5BIfP30B0oenwBJHfWxAs2fyPB1s7Mg949zLf61Yw==}
engines: {node: '>=8'}
dev: false
- /clean-css/5.3.2:
+ /clean-css@5.3.2:
resolution: {integrity: sha512-JVJbM+f3d3Q704rF4bqQ5UUyTtuJ0JRKNbTKVEeujCCBoMdkEi+V+e8oktO9qGQNSvHrFTM6JZRXrUvGR1czww==}
engines: {node: '>= 10.0'}
dependencies:
source-map: 0.6.1
dev: false
- /clean-stack/2.2.0:
+ /clean-stack@2.2.0:
resolution: {integrity: sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==}
engines: {node: '>=6'}
dev: false
- /cli-boxes/2.2.1:
+ /cli-boxes@2.2.1:
resolution: {integrity: sha512-y4coMcylgSCdVinjiDBuR8PCC2bLjyGTwEmPb9NHR/QaNU6EUOXcTY/s6VjGMD6ENSEaeQYHCY0GNGS5jfMwPw==}
engines: {node: '>=6'}
dev: false
- /cli-boxes/3.0.0:
+ /cli-boxes@3.0.0:
resolution: {integrity: sha512-/lzGpEWL/8PfI0BmBOPRwp0c/wFNX1RdUML3jK/RcSBA9T8mZDdQpqYBKtCFTOfQbwPqWEOpjqW+Fnayc0969g==}
engines: {node: '>=10'}
dev: false
- /cli-table3/0.6.3:
+ /cli-table3@0.6.3:
resolution: {integrity: sha512-w5Jac5SykAeZJKntOxJCrm63Eg5/4dhMWIcuTbo9rpE+brgaSZo0RuNJZeOyMgsUdhDeojvgyQLmjI+K50ZGyg==}
engines: {node: 10.* || >= 12.*}
dependencies:
@@ -3905,7 +3678,7 @@ packages:
'@colors/colors': 1.5.0
dev: false
- /clone-deep/4.0.1:
+ /clone-deep@4.0.1:
resolution: {integrity: sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ==}
engines: {node: '>=6'}
dependencies:
@@ -3914,90 +3687,90 @@ packages:
shallow-clone: 3.0.1
dev: false
- /clone-response/1.0.3:
+ /clone-response@1.0.3:
resolution: {integrity: sha512-ROoL94jJH2dUVML2Y/5PEDNaSHgeOdSDicUyS7izcF63G6sTc/FTjLub4b8Il9S8S0beOfYt0TaA5qvFK+w0wA==}
dependencies:
mimic-response: 1.0.1
dev: false
- /clsx/1.2.1:
+ /clsx@1.2.1:
resolution: {integrity: sha512-EcR6r5a8bj6pu3ycsa/E/cKVGuTgZJZdsyUYHOksG/UHIiKfjxzRxYJpyVBwYaQeOvghal9fcc4PidlgzugAQg==}
engines: {node: '>=6'}
dev: false
- /collapse-white-space/1.0.6:
+ /collapse-white-space@1.0.6:
resolution: {integrity: sha512-jEovNnrhMuqyCcjfEJA56v0Xq8SkIoPKDyaHahwo3POf4qcSXqMYuwNcOTzp74vTsR9Tn08z4MxWqAhcekogkQ==}
dev: false
- /color-convert/1.9.3:
+ /color-convert@1.9.3:
resolution: {integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==}
dependencies:
color-name: 1.1.3
dev: false
- /color-convert/2.0.1:
+ /color-convert@2.0.1:
resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==}
engines: {node: '>=7.0.0'}
dependencies:
color-name: 1.1.4
dev: false
- /color-name/1.1.3:
+ /color-name@1.1.3:
resolution: {integrity: sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==}
dev: false
- /color-name/1.1.4:
+ /color-name@1.1.4:
resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==}
dev: false
- /colord/2.9.3:
+ /colord@2.9.3:
resolution: {integrity: sha512-jeC1axXpnb0/2nn/Y1LPuLdgXBLH7aDcHu4KEKfqw3CUhX7ZpfBSlPKyqXE6btIgEzfWtrX3/tyBCaCvXvMkOw==}
dev: false
- /colorette/2.0.19:
+ /colorette@2.0.19:
resolution: {integrity: sha512-3tlv/dIP7FWvj3BsbHrGLJ6l/oKh1O3TcgBqMn+yyCagOxc23fyzDS6HypQbgxWbkpDnf52p1LuR4eWDQ/K9WQ==}
dev: false
- /combine-promises/1.1.0:
+ /combine-promises@1.1.0:
resolution: {integrity: sha512-ZI9jvcLDxqwaXEixOhArm3r7ReIivsXkpbyEWyeOhzz1QS0iSgBPnWvEqvIQtYyamGCYA88gFhmUrs9hrrQ0pg==}
engines: {node: '>=10'}
dev: false
- /comma-separated-tokens/1.0.8:
+ /comma-separated-tokens@1.0.8:
resolution: {integrity: sha512-GHuDRO12Sypu2cV70d1dkA2EUmXHgntrzbpvOB+Qy+49ypNfGgFQIC2fhhXbnyrJRynDCAARsT7Ou0M6hirpfw==}
dev: false
- /commander/2.20.3:
+ /commander@2.20.3:
resolution: {integrity: sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==}
dev: false
- /commander/5.1.0:
+ /commander@5.1.0:
resolution: {integrity: sha512-P0CysNDQ7rtVw4QIQtm+MRxV66vKFSvlsQvGYXZWR3qFU0jlMKHZZZgw8e+8DSah4UDKMqnknRDQz+xuQXQ/Zg==}
engines: {node: '>= 6'}
dev: false
- /commander/7.2.0:
+ /commander@7.2.0:
resolution: {integrity: sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==}
engines: {node: '>= 10'}
dev: false
- /commander/8.3.0:
+ /commander@8.3.0:
resolution: {integrity: sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==}
engines: {node: '>= 12'}
dev: false
- /commondir/1.0.1:
+ /commondir@1.0.1:
resolution: {integrity: sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==}
dev: false
- /compressible/2.0.18:
+ /compressible@2.0.18:
resolution: {integrity: sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==}
engines: {node: '>= 0.6'}
dependencies:
mime-db: 1.52.0
dev: false
- /compression/1.7.4:
+ /compression@1.7.4:
resolution: {integrity: sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ==}
engines: {node: '>= 0.8.0'}
dependencies:
@@ -4012,11 +3785,11 @@ packages:
- supports-color
dev: false
- /concat-map/0.0.1:
+ /concat-map@0.0.1:
resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==}
dev: false
- /configstore/5.0.1:
+ /configstore@5.0.1:
resolution: {integrity: sha512-aMKprgk5YhBNyH25hj8wGt2+D52Sw1DRRIzqBwLp2Ya9mFmY8KPvvtvmna8SxVR9JMZ4kzMD68N22vlaRpkeFA==}
engines: {node: '>=8'}
dependencies:
@@ -4028,51 +3801,51 @@ packages:
xdg-basedir: 4.0.0
dev: false
- /connect-history-api-fallback/2.0.0:
+ /connect-history-api-fallback@2.0.0:
resolution: {integrity: sha512-U73+6lQFmfiNPrYbXqr6kZ1i1wiRqXnp2nhMsINseWXO8lDau0LGEffJ8kQi4EjLZympVgRdvqjAgiZ1tgzDDA==}
engines: {node: '>=0.8'}
dev: false
- /consola/2.15.3:
+ /consola@2.15.3:
resolution: {integrity: sha512-9vAdYbHj6x2fLKC4+oPH0kFzY/orMZyG2Aj+kNylHxKGJ/Ed4dpNyAQYwJOdqO4zdM7XpVHmyejQDcQHrnuXbw==}
dev: false
- /content-disposition/0.5.2:
+ /content-disposition@0.5.2:
resolution: {integrity: sha512-kRGRZw3bLlFISDBgwTSA1TMBFN6J6GWDeubmDE3AF+3+yXL8hTWv8r5rkLbqYXY4RjPk/EzHnClI3zQf1cFmHA==}
engines: {node: '>= 0.6'}
dev: false
- /content-disposition/0.5.4:
+ /content-disposition@0.5.4:
resolution: {integrity: sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==}
engines: {node: '>= 0.6'}
dependencies:
safe-buffer: 5.2.1
dev: false
- /content-type/1.0.5:
+ /content-type@1.0.5:
resolution: {integrity: sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==}
engines: {node: '>= 0.6'}
dev: false
- /convert-source-map/1.9.0:
+ /convert-source-map@1.9.0:
resolution: {integrity: sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==}
dev: false
- /cookie-signature/1.0.6:
+ /cookie-signature@1.0.6:
resolution: {integrity: sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==}
dev: false
- /cookie/0.5.0:
+ /cookie@0.5.0:
resolution: {integrity: sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==}
engines: {node: '>= 0.6'}
dev: false
- /copy-text-to-clipboard/3.1.0:
+ /copy-text-to-clipboard@3.1.0:
resolution: {integrity: sha512-PFM6BnjLnOON/lB3ta/Jg7Ywsv+l9kQGD4TWDCSlRBGmqnnTM5MrDkhAFgw+8HZt0wW6Q2BBE4cmy9sq+s9Qng==}
engines: {node: '>=12'}
dev: false
- /copy-webpack-plugin/11.0.0_webpack@5.76.3:
+ /copy-webpack-plugin@11.0.0(webpack@5.76.3):
resolution: {integrity: sha512-fX2MWpamkW0hZxMEg0+mYnA40LTosOSa5TqZ9GYIBzyJa9C3QUaMPSE2xAi/buNr8u89SfD9wHSQVBzrRa/SOQ==}
engines: {node: '>= 14.15.0'}
peerDependencies:
@@ -4087,27 +3860,27 @@ packages:
webpack: 5.76.3
dev: false
- /core-js-compat/3.29.1:
+ /core-js-compat@3.29.1:
resolution: {integrity: sha512-QmchCua884D8wWskMX8tW5ydINzd8oSJVx38lx/pVkFGqztxt73GYre3pm/hyYq8bPf+MW5In4I/uRShFDsbrA==}
dependencies:
browserslist: 4.21.5
dev: false
- /core-js-pure/3.29.1:
+ /core-js-pure@3.29.1:
resolution: {integrity: sha512-4En6zYVi0i0XlXHVz/bi6l1XDjCqkKRq765NXuX+SnaIatlE96Odt5lMLjdxUiNI1v9OXI5DSLWYPlmTfkTktg==}
requiresBuild: true
dev: false
- /core-js/3.29.1:
+ /core-js@3.29.1:
resolution: {integrity: sha512-+jwgnhg6cQxKYIIjGtAHq2nwUOolo9eoFZ4sHfUH09BLXBgxnH4gA0zEd+t+BO2cNB8idaBtZFcFTRjQJRJmAw==}
requiresBuild: true
dev: false
- /core-util-is/1.0.3:
+ /core-util-is@1.0.3:
resolution: {integrity: sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==}
dev: false
- /cosmiconfig/6.0.0:
+ /cosmiconfig@6.0.0:
resolution: {integrity: sha512-xb3ZL6+L8b9JLLCx3ZdoZy4+2ECphCMo2PwqgP1tlfVq6M6YReyzBJtvWWtbDSpNr9hn96pkCiZqUcFEc+54Qg==}
engines: {node: '>=8'}
dependencies:
@@ -4118,7 +3891,7 @@ packages:
yaml: 1.10.2
dev: false
- /cosmiconfig/7.1.0:
+ /cosmiconfig@7.1.0:
resolution: {integrity: sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==}
engines: {node: '>=10'}
dependencies:
@@ -4129,7 +3902,7 @@ packages:
yaml: 1.10.2
dev: false
- /cosmiconfig/8.1.3:
+ /cosmiconfig@8.1.3:
resolution: {integrity: sha512-/UkO2JKI18b5jVMJUp0lvKFMpa/Gye+ZgZjKD+DGEN9y7NRcf/nK1A0sp67ONmKtnDCNMS44E6jrk0Yc3bDuUw==}
engines: {node: '>=14'}
dependencies:
@@ -4139,7 +3912,7 @@ packages:
path-type: 4.0.0
dev: false
- /cross-fetch/3.1.5:
+ /cross-fetch@3.1.5:
resolution: {integrity: sha512-lvb1SBsI0Z7GDwmuid+mU3kWVBwTVUbe7S0H52yaaAdQOXq2YktTCZdlAcNKFzE6QtRz0snpw9bNiPeOIkkQvw==}
dependencies:
node-fetch: 2.6.7
@@ -4147,7 +3920,7 @@ packages:
- encoding
dev: false
- /cross-spawn/7.0.3:
+ /cross-spawn@7.0.3:
resolution: {integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==}
engines: {node: '>= 8'}
dependencies:
@@ -4156,12 +3929,12 @@ packages:
which: 2.0.2
dev: false
- /crypto-random-string/2.0.0:
+ /crypto-random-string@2.0.0:
resolution: {integrity: sha512-v1plID3y9r/lPhviJ1wrXpLeyUIGAZ2SHNYTEapm7/8A9nLPoyvVp3RK/EPFqn5kEznyWgYZNsRtYYIWbuG8KA==}
engines: {node: '>=8'}
dev: false
- /css-declaration-sorter/6.3.1_postcss@8.4.21:
+ /css-declaration-sorter@6.3.1(postcss@8.4.21):
resolution: {integrity: sha512-fBffmak0bPAnyqc/HO8C3n2sHrp9wcqQz6ES9koRF2/mLOVAx9zIQ3Y7R29sYCteTPqMCwns4WYQoCX91Xl3+w==}
engines: {node: ^10 || ^12 || >=14}
peerDependencies:
@@ -4170,24 +3943,24 @@ packages:
postcss: 8.4.21
dev: false
- /css-loader/6.7.3_webpack@5.76.3:
+ /css-loader@6.7.3(webpack@5.76.3):
resolution: {integrity: sha512-qhOH1KlBMnZP8FzRO6YCH9UHXQhVMcEGLyNdb7Hv2cpcmJbW0YrddO+tG1ab5nT41KpHIYGsbeHqxB9xPu1pKQ==}
engines: {node: '>= 12.13.0'}
peerDependencies:
webpack: ^5.0.0
dependencies:
- icss-utils: 5.1.0_postcss@8.4.21
+ icss-utils: 5.1.0(postcss@8.4.21)
postcss: 8.4.21
- postcss-modules-extract-imports: 3.0.0_postcss@8.4.21
- postcss-modules-local-by-default: 4.0.0_postcss@8.4.21
- postcss-modules-scope: 3.0.0_postcss@8.4.21
- postcss-modules-values: 4.0.0_postcss@8.4.21
+ postcss-modules-extract-imports: 3.0.0(postcss@8.4.21)
+ postcss-modules-local-by-default: 4.0.0(postcss@8.4.21)
+ postcss-modules-scope: 3.0.0(postcss@8.4.21)
+ postcss-modules-values: 4.0.0(postcss@8.4.21)
postcss-value-parser: 4.2.0
semver: 7.3.8
webpack: 5.76.3
dev: false
- /css-minimizer-webpack-plugin/4.2.2_6xivdjm2sml3syouufpdefilzi:
+ /css-minimizer-webpack-plugin@4.2.2(clean-css@5.3.2)(webpack@5.76.3):
resolution: {integrity: sha512-s3Of/4jKfw1Hj9CxEO1E5oXhQAxlayuHO2y/ML+C6I9sQ7FdzfEV6QgMLN3vI+qFsjJGIAFLKtQK7t8BOXAIyA==}
engines: {node: '>= 14.15.0'}
peerDependencies:
@@ -4213,7 +3986,7 @@ packages:
optional: true
dependencies:
clean-css: 5.3.2
- cssnano: 5.1.15_postcss@8.4.21
+ cssnano: 5.1.15(postcss@8.4.21)
jest-worker: 29.5.0
postcss: 8.4.21
schema-utils: 4.0.0
@@ -4222,7 +3995,7 @@ packages:
webpack: 5.76.3
dev: false
- /css-select/4.3.0:
+ /css-select@4.3.0:
resolution: {integrity: sha512-wPpOYtnsVontu2mODhA19JrqWxNsfdatRKd64kmpRbQgh1KtItko5sTnEpPdpSaJszTOhEMlF/RPz28qj4HqhQ==}
dependencies:
boolbase: 1.0.0
@@ -4232,7 +4005,7 @@ packages:
nth-check: 2.1.1
dev: false
- /css-select/5.1.0:
+ /css-select@5.1.0:
resolution: {integrity: sha512-nwoRF1rvRRnnCqqY7updORDsuqKzqYJ28+oSMaJMMgOauh3fvwHqMS7EZpIPqK8GL+g9mKxF1vP/ZjSeNjEVHg==}
dependencies:
boolbase: 1.0.0
@@ -4242,7 +4015,7 @@ packages:
nth-check: 2.1.1
dev: false
- /css-tree/1.1.3:
+ /css-tree@1.1.3:
resolution: {integrity: sha512-tRpdppF7TRazZrjJ6v3stzv93qxRcSsFmW6cX0Zm2NVKpxE1WV1HblnghVv9TreireHkqI/VDEsfolRF1p6y7Q==}
engines: {node: '>=8.0.0'}
dependencies:
@@ -4250,71 +4023,70 @@ packages:
source-map: 0.6.1
dev: false
- /css-what/6.1.0:
+ /css-what@6.1.0:
resolution: {integrity: sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==}
engines: {node: '>= 6'}
dev: false
- /cssesc/3.0.0:
+ /cssesc@3.0.0:
resolution: {integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==}
engines: {node: '>=4'}
- hasBin: true
dev: false
- /cssnano-preset-advanced/5.3.10_postcss@8.4.21:
+ /cssnano-preset-advanced@5.3.10(postcss@8.4.21):
resolution: {integrity: sha512-fnYJyCS9jgMU+cmHO1rPSPf9axbQyD7iUhLO5Df6O4G+fKIOMps+ZbU0PdGFejFBBZ3Pftf18fn1eG7MAPUSWQ==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- autoprefixer: 10.4.14_postcss@8.4.21
- cssnano-preset-default: 5.2.14_postcss@8.4.21
+ autoprefixer: 10.4.14(postcss@8.4.21)
+ cssnano-preset-default: 5.2.14(postcss@8.4.21)
postcss: 8.4.21
- postcss-discard-unused: 5.1.0_postcss@8.4.21
- postcss-merge-idents: 5.1.1_postcss@8.4.21
- postcss-reduce-idents: 5.2.0_postcss@8.4.21
- postcss-zindex: 5.1.0_postcss@8.4.21
+ postcss-discard-unused: 5.1.0(postcss@8.4.21)
+ postcss-merge-idents: 5.1.1(postcss@8.4.21)
+ postcss-reduce-idents: 5.2.0(postcss@8.4.21)
+ postcss-zindex: 5.1.0(postcss@8.4.21)
dev: false
- /cssnano-preset-default/5.2.14_postcss@8.4.21:
+ /cssnano-preset-default@5.2.14(postcss@8.4.21):
resolution: {integrity: sha512-t0SFesj/ZV2OTylqQVOrFgEh5uanxbO6ZAdeCrNsUQ6fVuXwYTxJPNAGvGTxHbD68ldIJNec7PyYZDBrfDQ+6A==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- css-declaration-sorter: 6.3.1_postcss@8.4.21
- cssnano-utils: 3.1.0_postcss@8.4.21
+ css-declaration-sorter: 6.3.1(postcss@8.4.21)
+ cssnano-utils: 3.1.0(postcss@8.4.21)
postcss: 8.4.21
- postcss-calc: 8.2.4_postcss@8.4.21
- postcss-colormin: 5.3.1_postcss@8.4.21
- postcss-convert-values: 5.1.3_postcss@8.4.21
- postcss-discard-comments: 5.1.2_postcss@8.4.21
- postcss-discard-duplicates: 5.1.0_postcss@8.4.21
- postcss-discard-empty: 5.1.1_postcss@8.4.21
- postcss-discard-overridden: 5.1.0_postcss@8.4.21
- postcss-merge-longhand: 5.1.7_postcss@8.4.21
- postcss-merge-rules: 5.1.4_postcss@8.4.21
- postcss-minify-font-values: 5.1.0_postcss@8.4.21
- postcss-minify-gradients: 5.1.1_postcss@8.4.21
- postcss-minify-params: 5.1.4_postcss@8.4.21
- postcss-minify-selectors: 5.2.1_postcss@8.4.21
- postcss-normalize-charset: 5.1.0_postcss@8.4.21
- postcss-normalize-display-values: 5.1.0_postcss@8.4.21
- postcss-normalize-positions: 5.1.1_postcss@8.4.21
- postcss-normalize-repeat-style: 5.1.1_postcss@8.4.21
- postcss-normalize-string: 5.1.0_postcss@8.4.21
- postcss-normalize-timing-functions: 5.1.0_postcss@8.4.21
- postcss-normalize-unicode: 5.1.1_postcss@8.4.21
- postcss-normalize-url: 5.1.0_postcss@8.4.21
- postcss-normalize-whitespace: 5.1.1_postcss@8.4.21
- postcss-ordered-values: 5.1.3_postcss@8.4.21
- postcss-reduce-initial: 5.1.2_postcss@8.4.21
- postcss-reduce-transforms: 5.1.0_postcss@8.4.21
- postcss-svgo: 5.1.0_postcss@8.4.21
- postcss-unique-selectors: 5.1.1_postcss@8.4.21
- dev: false
-
- /cssnano-utils/3.1.0_postcss@8.4.21:
+ postcss-calc: 8.2.4(postcss@8.4.21)
+ postcss-colormin: 5.3.1(postcss@8.4.21)
+ postcss-convert-values: 5.1.3(postcss@8.4.21)
+ postcss-discard-comments: 5.1.2(postcss@8.4.21)
+ postcss-discard-duplicates: 5.1.0(postcss@8.4.21)
+ postcss-discard-empty: 5.1.1(postcss@8.4.21)
+ postcss-discard-overridden: 5.1.0(postcss@8.4.21)
+ postcss-merge-longhand: 5.1.7(postcss@8.4.21)
+ postcss-merge-rules: 5.1.4(postcss@8.4.21)
+ postcss-minify-font-values: 5.1.0(postcss@8.4.21)
+ postcss-minify-gradients: 5.1.1(postcss@8.4.21)
+ postcss-minify-params: 5.1.4(postcss@8.4.21)
+ postcss-minify-selectors: 5.2.1(postcss@8.4.21)
+ postcss-normalize-charset: 5.1.0(postcss@8.4.21)
+ postcss-normalize-display-values: 5.1.0(postcss@8.4.21)
+ postcss-normalize-positions: 5.1.1(postcss@8.4.21)
+ postcss-normalize-repeat-style: 5.1.1(postcss@8.4.21)
+ postcss-normalize-string: 5.1.0(postcss@8.4.21)
+ postcss-normalize-timing-functions: 5.1.0(postcss@8.4.21)
+ postcss-normalize-unicode: 5.1.1(postcss@8.4.21)
+ postcss-normalize-url: 5.1.0(postcss@8.4.21)
+ postcss-normalize-whitespace: 5.1.1(postcss@8.4.21)
+ postcss-ordered-values: 5.1.3(postcss@8.4.21)
+ postcss-reduce-initial: 5.1.2(postcss@8.4.21)
+ postcss-reduce-transforms: 5.1.0(postcss@8.4.21)
+ postcss-svgo: 5.1.0(postcss@8.4.21)
+ postcss-unique-selectors: 5.1.1(postcss@8.4.21)
+ dev: false
+
+ /cssnano-utils@3.1.0(postcss@8.4.21):
resolution: {integrity: sha512-JQNR19/YZhz4psLX/rQ9M83e3z2Wf/HdJbryzte4a3NSuafyp9w/I4U+hx5C2S9g41qlstH7DEWnZaaj83OuEA==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
@@ -4323,30 +4095,30 @@ packages:
postcss: 8.4.21
dev: false
- /cssnano/5.1.15_postcss@8.4.21:
+ /cssnano@5.1.15(postcss@8.4.21):
resolution: {integrity: sha512-j+BKgDcLDQA+eDifLx0EO4XSA56b7uut3BQFH+wbSaSTuGLuiyTa/wbRYthUXX8LC9mLg+WWKe8h+qJuwTAbHw==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- cssnano-preset-default: 5.2.14_postcss@8.4.21
+ cssnano-preset-default: 5.2.14(postcss@8.4.21)
lilconfig: 2.1.0
postcss: 8.4.21
yaml: 1.10.2
dev: false
- /csso/4.2.0:
+ /csso@4.2.0:
resolution: {integrity: sha512-wvlcdIbf6pwKEk7vHj8/Bkc0B4ylXZruLvOgs9doS5eOsOpuodOV2zJChSpkp+pRpYQLQMeF04nr3Z68Sta9jA==}
engines: {node: '>=8.0.0'}
dependencies:
css-tree: 1.1.3
dev: false
- /csstype/3.1.0:
+ /csstype@3.1.0:
resolution: {integrity: sha512-uX1KG+x9h5hIJsaKR9xHUeUraxf8IODOwq9JLNPq6BwB04a/xgpq3rcx47l5BZu5zBPlgD342tdke3Hom/nJRA==}
dev: false
- /debug/2.6.9:
+ /debug@2.6.9:
resolution: {integrity: sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==}
peerDependencies:
supports-color: '*'
@@ -4357,7 +4129,7 @@ packages:
ms: 2.0.0
dev: false
- /debug/4.3.4:
+ /debug@4.3.4:
resolution: {integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==}
engines: {node: '>=6.0'}
peerDependencies:
@@ -4369,40 +4141,40 @@ packages:
ms: 2.1.2
dev: false
- /decompress-response/3.3.0:
+ /decompress-response@3.3.0:
resolution: {integrity: sha512-BzRPQuY1ip+qDonAOz42gRm/pg9F768C+npV/4JOsxRC2sq+Rlk+Q4ZCAsOhnIaMrgarILY+RMUIvMmmX1qAEA==}
engines: {node: '>=4'}
dependencies:
mimic-response: 1.0.1
dev: false
- /deep-extend/0.6.0:
+ /deep-extend@0.6.0:
resolution: {integrity: sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==}
engines: {node: '>=4.0.0'}
dev: false
- /deepmerge/4.3.1:
+ /deepmerge@4.3.1:
resolution: {integrity: sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==}
engines: {node: '>=0.10.0'}
dev: false
- /default-gateway/6.0.3:
+ /default-gateway@6.0.3:
resolution: {integrity: sha512-fwSOJsbbNzZ/CUFpqFBqYfYNLj1NbMPm8MMCIzHjC83iSJRBEGmDUxU+WP661BaBQImeC2yHwXtz+P/O9o+XEg==}
engines: {node: '>= 10'}
dependencies:
execa: 5.1.1
dev: false
- /defer-to-connect/1.1.3:
+ /defer-to-connect@1.1.3:
resolution: {integrity: sha512-0ISdNousHvZT2EiFlZeZAHBUvSxmKswVCEf8hW7KWgG4a8MVEu/3Vb6uWYozkjylyCxe0JBIiRB1jV45S70WVQ==}
dev: false
- /define-lazy-prop/2.0.0:
+ /define-lazy-prop@2.0.0:
resolution: {integrity: sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==}
engines: {node: '>=8'}
dev: false
- /define-properties/1.2.0:
+ /define-properties@1.2.0:
resolution: {integrity: sha512-xvqAVKGfT1+UAvPwKTVw/njhdQ8ZhXK4lI0bCIuCMrp2up9nPnaDftrLtmpTazqd1o+UY4zgzU+avtMbDP+ldA==}
engines: {node: '>= 0.4'}
dependencies:
@@ -4410,7 +4182,7 @@ packages:
object-keys: 1.1.1
dev: false
- /del/6.1.1:
+ /del@6.1.1:
resolution: {integrity: sha512-ua8BhapfP0JUJKC/zV9yHHDW/rDoDxP4Zhn3AkA6/xT6gY7jYXJiaeyBZznYVujhZZET+UgcbZiQ7sN3WqcImg==}
engines: {node: '>=10'}
dependencies:
@@ -4424,35 +4196,34 @@ packages:
slash: 3.0.0
dev: false
- /depd/1.1.2:
+ /depd@1.1.2:
resolution: {integrity: sha512-7emPTl6Dpo6JRXOXjLRxck+FlLRX5847cLKEn00PLAgc3g2hTZZgr+e4c2v6QpSmLeFP3n5yUo7ft6avBK/5jQ==}
engines: {node: '>= 0.6'}
dev: false
- /depd/2.0.0:
+ /depd@2.0.0:
resolution: {integrity: sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==}
engines: {node: '>= 0.8'}
dev: false
- /destroy/1.2.0:
+ /destroy@1.2.0:
resolution: {integrity: sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==}
engines: {node: '>= 0.8', npm: 1.2.8000 || >= 1.4.16}
dev: false
- /detab/2.0.4:
+ /detab@2.0.4:
resolution: {integrity: sha512-8zdsQA5bIkoRECvCrNKPla84lyoR7DSAyf7p0YgXzBO9PDJx8KntPUay7NS6yp+KdxdVtiE5SpHKtbp2ZQyA9g==}
dependencies:
repeat-string: 1.6.1
dev: false
- /detect-node/2.1.0:
+ /detect-node@2.1.0:
resolution: {integrity: sha512-T0NIuQpnTvFDATNuHN5roPwSBG83rFsuO+MXXH9/3N1eFbn4wcPjttvjMLEPWJ0RGUYgQE7cGgS3tNxbqCGM7g==}
dev: false
- /detect-port-alt/1.1.6:
+ /detect-port-alt@1.1.6:
resolution: {integrity: sha512-5tQykt+LqfJFBEYaDITx7S7cR7mJ/zQmLXZ2qt5w04ainYZw6tBf9dBunMjVeVOdYVRUzUOE4HkY5J7+uttb5Q==}
engines: {node: '>= 4.2.1'}
- hasBin: true
dependencies:
address: 1.2.2
debug: 2.6.9
@@ -4460,9 +4231,8 @@ packages:
- supports-color
dev: false
- /detect-port/1.5.1:
+ /detect-port@1.5.1:
resolution: {integrity: sha512-aBzdj76lueB6uUst5iAs7+0H/oOjqI5D16XUWxlWMIMROhcM0rfsNVk93zTngq1dDNpoXRr++Sus7ETAExppAQ==}
- hasBin: true
dependencies:
address: 1.2.2
debug: 4.3.4
@@ -4470,46 +4240,46 @@ packages:
- supports-color
dev: false
- /dir-glob/3.0.1:
+ /dir-glob@3.0.1:
resolution: {integrity: sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==}
engines: {node: '>=8'}
dependencies:
path-type: 4.0.0
dev: false
- /dns-equal/1.0.0:
+ /dns-equal@1.0.0:
resolution: {integrity: sha512-z+paD6YUQsk+AbGCEM4PrOXSss5gd66QfcVBFTKR/HpFL9jCqikS94HYwKww6fQyO7IxrIIyUu+g0Ka9tUS2Cg==}
dev: false
- /dns-packet/5.4.0:
+ /dns-packet@5.4.0:
resolution: {integrity: sha512-EgqGeaBB8hLiHLZtp/IbaDQTL8pZ0+IvwzSHA6d7VyMDM+B9hgddEMa9xjK5oYnw0ci0JQ6g2XCD7/f6cafU6g==}
engines: {node: '>=6'}
dependencies:
'@leichtgewicht/ip-codec': 2.0.4
dev: false
- /docusaurus-plugin-sass/0.2.3_7pmn55ks6lkiapwwmc5sfohrmq:
+ /docusaurus-plugin-sass@0.2.3(@docusaurus/core@2.4.0)(sass@1.59.3)(webpack@5.76.3):
resolution: {integrity: sha512-FbaE06K8NF8SPUYTwiG+83/jkXrwHJ/Afjqz3SUIGon6QvFwSSoKOcoxGQmUBnjTOk+deUONDx8jNWsegFJcBQ==}
peerDependencies:
'@docusaurus/core': ^2.0.0-beta
sass: ^1.30.0
dependencies:
- '@docusaurus/core': 2.3.1_icpz55ch5zovp2aqeb3azvztt4
+ '@docusaurus/core': 2.4.0(@docusaurus/types@2.4.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.0.2)
sass: 1.59.3
- sass-loader: 10.4.1_sass@1.59.3+webpack@5.76.3
+ sass-loader: 10.4.1(sass@1.59.3)(webpack@5.76.3)
transitivePeerDependencies:
- fibers
- node-sass
- webpack
dev: false
- /dom-converter/0.2.0:
+ /dom-converter@0.2.0:
resolution: {integrity: sha512-gd3ypIPfOMr9h5jIKq8E3sHOTCjeirnl0WK5ZdS1AW0Odt0b1PaWaHdJ4Qk4klv+YB9aJBS7mESXjFoDQPu6DA==}
dependencies:
utila: 0.4.0
dev: false
- /dom-serializer/1.4.1:
+ /dom-serializer@1.4.1:
resolution: {integrity: sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==}
dependencies:
domelementtype: 2.3.0
@@ -4517,7 +4287,7 @@ packages:
entities: 2.2.0
dev: false
- /dom-serializer/2.0.0:
+ /dom-serializer@2.0.0:
resolution: {integrity: sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg==}
dependencies:
domelementtype: 2.3.0
@@ -4525,25 +4295,25 @@ packages:
entities: 4.4.0
dev: false
- /domelementtype/2.3.0:
+ /domelementtype@2.3.0:
resolution: {integrity: sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==}
dev: false
- /domhandler/4.3.1:
+ /domhandler@4.3.1:
resolution: {integrity: sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==}
engines: {node: '>= 4'}
dependencies:
domelementtype: 2.3.0
dev: false
- /domhandler/5.0.3:
+ /domhandler@5.0.3:
resolution: {integrity: sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w==}
engines: {node: '>= 4'}
dependencies:
domelementtype: 2.3.0
dev: false
- /domutils/2.8.0:
+ /domutils@2.8.0:
resolution: {integrity: sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==}
dependencies:
dom-serializer: 1.4.1
@@ -4551,7 +4321,7 @@ packages:
domhandler: 4.3.1
dev: false
- /domutils/3.0.1:
+ /domutils@3.0.1:
resolution: {integrity: sha512-z08c1l761iKhDFtfXO04C7kTdPBLi41zwOZl00WS8b5eiaebNpY00HKbztwBq+e3vyqWNwWF3mP9YLUeqIrF+Q==}
dependencies:
dom-serializer: 2.0.0
@@ -4559,69 +4329,69 @@ packages:
domhandler: 5.0.3
dev: false
- /dot-case/3.0.4:
+ /dot-case@3.0.4:
resolution: {integrity: sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==}
dependencies:
no-case: 3.0.4
tslib: 2.5.0
dev: false
- /dot-prop/5.3.0:
+ /dot-prop@5.3.0:
resolution: {integrity: sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q==}
engines: {node: '>=8'}
dependencies:
is-obj: 2.0.0
dev: false
- /duplexer/0.1.2:
- resolution: {integrity: sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==}
+ /duplexer3@0.1.5:
+ resolution: {integrity: sha512-1A8za6ws41LQgv9HrE/66jyC5yuSjQ3L/KOpFtoBilsAK2iA2wuS5rTt1OCzIvtS2V7nVmedsUU+DGRcjBmOYA==}
dev: false
- /duplexer3/0.1.5:
- resolution: {integrity: sha512-1A8za6ws41LQgv9HrE/66jyC5yuSjQ3L/KOpFtoBilsAK2iA2wuS5rTt1OCzIvtS2V7nVmedsUU+DGRcjBmOYA==}
+ /duplexer@0.1.2:
+ resolution: {integrity: sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==}
dev: false
- /eastasianwidth/0.2.0:
+ /eastasianwidth@0.2.0:
resolution: {integrity: sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==}
dev: false
- /ee-first/1.1.1:
+ /ee-first@1.1.1:
resolution: {integrity: sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==}
dev: false
- /electron-to-chromium/1.4.335:
+ /electron-to-chromium@1.4.335:
resolution: {integrity: sha512-l/eowQqTnrq3gu+WSrdfkhfNHnPgYqlKAwxz7MTOj6mom19vpEDHNXl6dxDxyTiYuhemydprKr/HCrHfgk+OfQ==}
dev: false
- /emoji-regex/8.0.0:
+ /emoji-regex@8.0.0:
resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==}
dev: false
- /emoji-regex/9.2.2:
+ /emoji-regex@9.2.2:
resolution: {integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==}
dev: false
- /emojis-list/3.0.0:
+ /emojis-list@3.0.0:
resolution: {integrity: sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==}
engines: {node: '>= 4'}
dev: false
- /emoticon/3.2.0:
+ /emoticon@3.2.0:
resolution: {integrity: sha512-SNujglcLTTg+lDAcApPNgEdudaqQFiAbJCqzjNxJkvN9vAwCGi0uu8IUVvx+f16h+V44KCY6Y2yboroc9pilHg==}
dev: false
- /encodeurl/1.0.2:
+ /encodeurl@1.0.2:
resolution: {integrity: sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==}
engines: {node: '>= 0.8'}
dev: false
- /end-of-stream/1.4.4:
+ /end-of-stream@1.4.4:
resolution: {integrity: sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==}
dependencies:
once: 1.4.0
dev: false
- /enhanced-resolve/5.12.0:
+ /enhanced-resolve@5.12.0:
resolution: {integrity: sha512-QHTXI/sZQmko1cbDoNAa3mJ5qhWUUNAq3vR0/YiD379fWQrcfuoX1+HW2S0MTt7XmoPLapdaDKUtelUSPic7hQ==}
engines: {node: '>=10.13.0'}
dependencies:
@@ -4629,50 +4399,50 @@ packages:
tapable: 2.2.1
dev: false
- /entities/2.2.0:
+ /entities@2.2.0:
resolution: {integrity: sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==}
dev: false
- /entities/4.4.0:
+ /entities@4.4.0:
resolution: {integrity: sha512-oYp7156SP8LkeGD0GF85ad1X9Ai79WtRsZ2gxJqtBuzH+98YUV6jkHEKlZkMbcrjJjIVJNIDP/3WL9wQkoPbWA==}
engines: {node: '>=0.12'}
dev: false
- /error-ex/1.3.2:
+ /error-ex@1.3.2:
resolution: {integrity: sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==}
dependencies:
is-arrayish: 0.2.1
dev: false
- /es-module-lexer/0.9.3:
+ /es-module-lexer@0.9.3:
resolution: {integrity: sha512-1HQ2M2sPtxwnvOvT1ZClHyQDiggdNjURWpY2we6aMKCQiUVxTmVs2UYPLIrD84sS+kMdUwfBSylbJPwNnBrnHQ==}
dev: false
- /escalade/3.1.1:
+ /escalade@3.1.1:
resolution: {integrity: sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==}
engines: {node: '>=6'}
dev: false
- /escape-goat/2.1.1:
+ /escape-goat@2.1.1:
resolution: {integrity: sha512-8/uIhbG12Csjy2JEW7D9pHbreaVaS/OpN3ycnyvElTdwM5n6GY6W6e2IPemfvGZeUMqZ9A/3GqIZMgKnBhAw/Q==}
engines: {node: '>=8'}
dev: false
- /escape-html/1.0.3:
+ /escape-html@1.0.3:
resolution: {integrity: sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==}
dev: false
- /escape-string-regexp/1.0.5:
+ /escape-string-regexp@1.0.5:
resolution: {integrity: sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==}
engines: {node: '>=0.8.0'}
dev: false
- /escape-string-regexp/4.0.0:
+ /escape-string-regexp@4.0.0:
resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==}
engines: {node: '>=10'}
dev: false
- /eslint-scope/5.1.1:
+ /eslint-scope@5.1.1:
resolution: {integrity: sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==}
engines: {node: '>=8.0.0'}
dependencies:
@@ -4680,45 +4450,44 @@ packages:
estraverse: 4.3.0
dev: false
- /esprima/4.0.1:
+ /esprima@4.0.1:
resolution: {integrity: sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==}
engines: {node: '>=4'}
- hasBin: true
dev: false
- /esrecurse/4.3.0:
+ /esrecurse@4.3.0:
resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==}
engines: {node: '>=4.0'}
dependencies:
estraverse: 5.3.0
dev: false
- /estraverse/4.3.0:
+ /estraverse@4.3.0:
resolution: {integrity: sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==}
engines: {node: '>=4.0'}
dev: false
- /estraverse/5.3.0:
+ /estraverse@5.3.0:
resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==}
engines: {node: '>=4.0'}
dev: false
- /esutils/2.0.3:
+ /esutils@2.0.3:
resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==}
engines: {node: '>=0.10.0'}
dev: false
- /eta/2.0.1:
+ /eta@2.0.1:
resolution: {integrity: sha512-46E2qDPDm7QA+usjffUWz9KfXsxVZclPOuKsXs4ZWZdI/X1wpDF7AO424pt7fdYohCzWsIkXAhNGXSlwo5naAg==}
engines: {node: '>=6.0.0'}
dev: false
- /etag/1.8.1:
+ /etag@1.8.1:
resolution: {integrity: sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==}
engines: {node: '>= 0.6'}
dev: false
- /eval/0.1.8:
+ /eval@0.1.8:
resolution: {integrity: sha512-EzV94NYKoO09GLXGjXj9JIlXijVck4ONSr5wiCWDvhsvj5jxSrzTmRU/9C1DyB6uToszLs8aifA6NQ7lEQdvFw==}
engines: {node: '>= 0.8'}
dependencies:
@@ -4726,16 +4495,16 @@ packages:
require-like: 0.1.2
dev: false
- /eventemitter3/4.0.7:
+ /eventemitter3@4.0.7:
resolution: {integrity: sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==}
dev: false
- /events/3.3.0:
+ /events@3.3.0:
resolution: {integrity: sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==}
engines: {node: '>=0.8.x'}
dev: false
- /execa/5.1.1:
+ /execa@5.1.1:
resolution: {integrity: sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==}
engines: {node: '>=10'}
dependencies:
@@ -4750,7 +4519,7 @@ packages:
strip-final-newline: 2.0.0
dev: false
- /express/4.18.2:
+ /express@4.18.2:
resolution: {integrity: sha512-5/PsL6iGPdfQ/lKM1UuielYgv3BUoJfz1aUwU9vHZ+J7gyvwdQXFEBIEIaxeGf0GIcreATNyBExtalisDbuMqQ==}
engines: {node: '>= 0.10.0'}
dependencies:
@@ -4789,22 +4558,22 @@ packages:
- supports-color
dev: false
- /extend-shallow/2.0.1:
+ /extend-shallow@2.0.1:
resolution: {integrity: sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==}
engines: {node: '>=0.10.0'}
dependencies:
is-extendable: 0.1.1
dev: false
- /extend/3.0.2:
+ /extend@3.0.2:
resolution: {integrity: sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==}
dev: false
- /fast-deep-equal/3.1.3:
+ /fast-deep-equal@3.1.3:
resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==}
dev: false
- /fast-glob/3.2.12:
+ /fast-glob@3.2.12:
resolution: {integrity: sha512-DVj4CQIYYow0BlaelwK1pHl5n5cRSJfM60UA0zK891sVInoPri2Ekj7+e1CT3/3qxXenpI+nBBmQAcJPJgaj4w==}
engines: {node: '>=8.6.0'}
dependencies:
@@ -4815,30 +4584,30 @@ packages:
micromatch: 4.0.5
dev: false
- /fast-json-stable-stringify/2.1.0:
+ /fast-json-stable-stringify@2.1.0:
resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==}
dev: false
- /fast-url-parser/1.1.3:
+ /fast-url-parser@1.1.3:
resolution: {integrity: sha512-5jOCVXADYNuRkKFzNJ0dCCewsZiYo0dz8QNYljkOpFC6r2U4OBmKtvm/Tsuh4w1YYdDqDb31a8TVhBJ2OJKdqQ==}
dependencies:
punycode: 1.4.1
dev: false
- /fastq/1.15.0:
+ /fastq@1.15.0:
resolution: {integrity: sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==}
dependencies:
reusify: 1.0.4
dev: false
- /faye-websocket/0.11.4:
+ /faye-websocket@0.11.4:
resolution: {integrity: sha512-CzbClwlXAuiRQAlUyfqPgvPoNKTckTPGfwZV4ZdAhVcP2lh9KUxJg2b5GkE7XbjKQ3YJnQ9z6D9ntLAlB+tP8g==}
engines: {node: '>=0.8.0'}
dependencies:
websocket-driver: 0.7.4
dev: false
- /fbemitter/3.0.0:
+ /fbemitter@3.0.0:
resolution: {integrity: sha512-KWKaceCwKQU0+HPoop6gn4eOHk50bBv/VxjJtGMfwmJt3D29JpN4H4eisCtIPA+a8GVBam+ldMMpMjJUvpDyHw==}
dependencies:
fbjs: 3.0.4
@@ -4846,11 +4615,11 @@ packages:
- encoding
dev: false
- /fbjs-css-vars/1.0.2:
+ /fbjs-css-vars@1.0.2:
resolution: {integrity: sha512-b2XGFAFdWZWg0phtAWLHCk836A1Xann+I+Dgd3Gk64MHKZO44FfoD1KxyvbSh0qZsIoXQGGlVztIY+oitJPpRQ==}
dev: false
- /fbjs/3.0.4:
+ /fbjs@3.0.4:
resolution: {integrity: sha512-ucV0tDODnGV3JCnnkmoszb5lf4bNpzjv80K41wd4k798Etq+UYD0y0TIfalLjZoKgjive6/adkRnszwapiDgBQ==}
dependencies:
cross-fetch: 3.1.5
@@ -4864,14 +4633,14 @@ packages:
- encoding
dev: false
- /feed/4.2.2:
+ /feed@4.2.2:
resolution: {integrity: sha512-u5/sxGfiMfZNtJ3OvQpXcvotFpYkL0n9u9mM2vkui2nGo8b4wvDkJ8gAkYqbA8QpGyFCv3RK0Z+Iv+9veCS9bQ==}
engines: {node: '>=0.4.0'}
dependencies:
xml-js: 1.6.11
dev: false
- /file-loader/6.2.0_webpack@5.76.3:
+ /file-loader@6.2.0(webpack@5.76.3):
resolution: {integrity: sha512-qo3glqyTa61Ytg4u73GultjHGjdRyig3tG6lPtyX/jOEJvHif9uB0/OCI2Kif6ctF3caQTW2G5gym21oAsI4pw==}
engines: {node: '>= 10.13.0'}
peerDependencies:
@@ -4882,19 +4651,19 @@ packages:
webpack: 5.76.3
dev: false
- /filesize/8.0.7:
+ /filesize@8.0.7:
resolution: {integrity: sha512-pjmC+bkIF8XI7fWaH8KxHcZL3DPybs1roSKP4rKDvy20tAWwIObE4+JIseG2byfGKhud5ZnM4YSGKBz7Sh0ndQ==}
engines: {node: '>= 0.4.0'}
dev: false
- /fill-range/7.0.1:
+ /fill-range@7.0.1:
resolution: {integrity: sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==}
engines: {node: '>=8'}
dependencies:
to-regex-range: 5.0.1
dev: false
- /finalhandler/1.2.0:
+ /finalhandler@1.2.0:
resolution: {integrity: sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg==}
engines: {node: '>= 0.8'}
dependencies:
@@ -4909,7 +4678,7 @@ packages:
- supports-color
dev: false
- /find-cache-dir/3.3.2:
+ /find-cache-dir@3.3.2:
resolution: {integrity: sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig==}
engines: {node: '>=8'}
dependencies:
@@ -4918,14 +4687,14 @@ packages:
pkg-dir: 4.2.0
dev: false
- /find-up/3.0.0:
+ /find-up@3.0.0:
resolution: {integrity: sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==}
engines: {node: '>=6'}
dependencies:
locate-path: 3.0.0
dev: false
- /find-up/4.1.0:
+ /find-up@4.1.0:
resolution: {integrity: sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==}
engines: {node: '>=8'}
dependencies:
@@ -4933,7 +4702,7 @@ packages:
path-exists: 4.0.0
dev: false
- /find-up/5.0.0:
+ /find-up@5.0.0:
resolution: {integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==}
engines: {node: '>=10'}
dependencies:
@@ -4941,7 +4710,7 @@ packages:
path-exists: 4.0.0
dev: false
- /flux/4.0.4_react@17.0.2:
+ /flux@4.0.4(react@17.0.2):
resolution: {integrity: sha512-NCj3XlayA2UsapRpM7va6wU1+9rE5FIL7qoMcmxWHRzbp0yujihMBm9BBHZ1MDIk5h5o2Bl6eGiCe8rYELAmYw==}
peerDependencies:
react: ^15.0.2 || ^16.0.0 || ^17.0.0
@@ -4953,7 +4722,7 @@ packages:
- encoding
dev: false
- /follow-redirects/1.15.2:
+ /follow-redirects@1.15.2:
resolution: {integrity: sha512-VQLG33o04KaQ8uYi2tVNbdrWp1QWxNNea+nmIB4EVM28v0hmP17z7aG1+wAkNzVq4KeXTq3221ye5qTJP91JwA==}
engines: {node: '>=4.0'}
peerDependencies:
@@ -4963,7 +4732,7 @@ packages:
optional: true
dev: false
- /fork-ts-checker-webpack-plugin/6.5.3_3x6qlapdvvaw2noz63esh63n6e:
+ /fork-ts-checker-webpack-plugin@6.5.3(typescript@5.0.2)(webpack@5.76.3):
resolution: {integrity: sha512-SbH/l9ikmMWycd5puHJKTkZJKddF4iRLyW3DeZ08HTI7NGyLS38MXd/KGgeWumQO7YNQbW2u/NtPT2YowbPaGQ==}
engines: {node: '>=10', yarn: '>=1.0.0'}
peerDependencies:
@@ -4994,21 +4763,21 @@ packages:
webpack: 5.76.3
dev: false
- /forwarded/0.2.0:
+ /forwarded@0.2.0:
resolution: {integrity: sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==}
engines: {node: '>= 0.6'}
dev: false
- /fraction.js/4.2.0:
+ /fraction.js@4.2.0:
resolution: {integrity: sha512-MhLuK+2gUcnZe8ZHlaaINnQLl0xRIGRfcGk2yl8xoQAfHrSsL3rYu6FCmBdkdbhc9EPlwyGHewaRsvwRMJtAlA==}
dev: false
- /fresh/0.5.2:
+ /fresh@0.5.2:
resolution: {integrity: sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==}
engines: {node: '>= 0.6'}
dev: false
- /fs-extra/10.1.0:
+ /fs-extra@10.1.0:
resolution: {integrity: sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==}
engines: {node: '>=12'}
dependencies:
@@ -5017,7 +4786,7 @@ packages:
universalify: 2.0.0
dev: false
- /fs-extra/9.1.0:
+ /fs-extra@9.1.0:
resolution: {integrity: sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==}
engines: {node: '>=10'}
dependencies:
@@ -5027,15 +4796,15 @@ packages:
universalify: 2.0.0
dev: false
- /fs-monkey/1.0.3:
+ /fs-monkey@1.0.3:
resolution: {integrity: sha512-cybjIfiiE+pTWicSCLFHSrXZ6EilF30oh91FDP9S2B051prEa7QWfrVTQm10/dDpswBDXZugPa1Ogu8Yh+HV0Q==}
dev: false
- /fs.realpath/1.0.0:
+ /fs.realpath@1.0.0:
resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==}
dev: false
- /fsevents/2.3.2:
+ /fsevents@2.3.2:
resolution: {integrity: sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==}
engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0}
os: [darwin]
@@ -5043,16 +4812,16 @@ packages:
dev: false
optional: true
- /function-bind/1.1.1:
+ /function-bind@1.1.1:
resolution: {integrity: sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==}
dev: false
- /gensync/1.0.0-beta.2:
+ /gensync@1.0.0-beta.2:
resolution: {integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==}
engines: {node: '>=6.9.0'}
dev: false
- /get-intrinsic/1.2.0:
+ /get-intrinsic@1.2.0:
resolution: {integrity: sha512-L049y6nFOuom5wGyRc3/gdTLO94dySVKRACj1RmJZBQXlbTMhtNIgkWkUHq+jYmZvKf14EW1EoJnnjbmoHij0Q==}
dependencies:
function-bind: 1.1.1
@@ -5060,52 +4829,52 @@ packages:
has-symbols: 1.0.3
dev: false
- /get-own-enumerable-property-symbols/3.0.2:
+ /get-own-enumerable-property-symbols@3.0.2:
resolution: {integrity: sha512-I0UBV/XOz1XkIJHEUDMZAbzCThU/H8DxmSfmdGcKPnVhu2VfFqr34jr9777IyaTYvxjedWhqVIilEDsCdP5G6g==}
dev: false
- /get-stream/4.1.0:
+ /get-stream@4.1.0:
resolution: {integrity: sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==}
engines: {node: '>=6'}
dependencies:
pump: 3.0.0
dev: false
- /get-stream/5.2.0:
+ /get-stream@5.2.0:
resolution: {integrity: sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==}
engines: {node: '>=8'}
dependencies:
pump: 3.0.0
dev: false
- /get-stream/6.0.1:
+ /get-stream@6.0.1:
resolution: {integrity: sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==}
engines: {node: '>=10'}
dev: false
- /github-slugger/1.5.0:
+ /github-slugger@1.5.0:
resolution: {integrity: sha512-wIh+gKBI9Nshz2o46B0B3f5k/W+WI9ZAv6y5Dn5WJ5SK1t0TnDimB4WE5rmTD05ZAIn8HALCZVmCsvj0w0v0lw==}
dev: false
- /glob-parent/5.1.2:
+ /glob-parent@5.1.2:
resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==}
engines: {node: '>= 6'}
dependencies:
is-glob: 4.0.3
dev: false
- /glob-parent/6.0.2:
+ /glob-parent@6.0.2:
resolution: {integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==}
engines: {node: '>=10.13.0'}
dependencies:
is-glob: 4.0.3
dev: false
- /glob-to-regexp/0.4.1:
+ /glob-to-regexp@0.4.1:
resolution: {integrity: sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==}
dev: false
- /glob/7.2.3:
+ /glob@7.2.3:
resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==}
dependencies:
fs.realpath: 1.0.0
@@ -5116,21 +4885,21 @@ packages:
path-is-absolute: 1.0.1
dev: false
- /global-dirs/3.0.1:
+ /global-dirs@3.0.1:
resolution: {integrity: sha512-NBcGGFbBA9s1VzD41QXDG+3++t9Mn5t1FpLdhESY6oKY4gYTFpX4wO3sqGUa0Srjtbfj3szX0RnemmrVRUdULA==}
engines: {node: '>=10'}
dependencies:
ini: 2.0.0
dev: false
- /global-modules/2.0.0:
+ /global-modules@2.0.0:
resolution: {integrity: sha512-NGbfmJBp9x8IxyJSd1P+otYK8vonoJactOogrVfFRIAEY1ukil8RSKDz2Yo7wh1oihl51l/r6W4epkeKJHqL8A==}
engines: {node: '>=6'}
dependencies:
global-prefix: 3.0.0
dev: false
- /global-prefix/3.0.0:
+ /global-prefix@3.0.0:
resolution: {integrity: sha512-awConJSVCHVGND6x3tmMaKcQvwXLhjdkmomy2W+Goaui8YPgYgXJZewhg3fWC+DlfqqQuWg8AwqjGTD2nAPVWg==}
engines: {node: '>=6'}
dependencies:
@@ -5139,12 +4908,12 @@ packages:
which: 1.3.1
dev: false
- /globals/11.12.0:
+ /globals@11.12.0:
resolution: {integrity: sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==}
engines: {node: '>=4'}
dev: false
- /globby/11.1.0:
+ /globby@11.1.0:
resolution: {integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==}
engines: {node: '>=10'}
dependencies:
@@ -5156,7 +4925,7 @@ packages:
slash: 3.0.0
dev: false
- /globby/13.1.3:
+ /globby@13.1.3:
resolution: {integrity: sha512-8krCNHXvlCgHDpegPzleMq07yMYTO2sXKASmZmquEYWEmCx6J5UTRbp5RwMJkTJGtcQ44YpiUYUiN0b9mzy8Bw==}
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
dependencies:
@@ -5167,7 +4936,7 @@ packages:
slash: 4.0.0
dev: false
- /got/9.6.0:
+ /got@9.6.0:
resolution: {integrity: sha512-R7eWptXuGYxwijs0eV+v3o6+XH1IqVK8dJOEecQfTmkncw9AV4dcw/Dhxi8MdlqPthxxpZyizMzyg8RTmEsG+Q==}
engines: {node: '>=8.6'}
dependencies:
@@ -5186,11 +4955,11 @@ packages:
url-parse-lax: 3.0.0
dev: false
- /graceful-fs/4.2.11:
+ /graceful-fs@4.2.11:
resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==}
dev: false
- /gray-matter/4.0.3:
+ /gray-matter@4.0.3:
resolution: {integrity: sha512-5v6yZd4JK3eMI3FqqCouswVqwugaA9r4dNZB1wwcmrD02QkV5H0y7XBQW8QwQqEaZY1pM9aqORSORhJRdNK44Q==}
engines: {node: '>=6.0'}
dependencies:
@@ -5200,51 +4969,51 @@ packages:
strip-bom-string: 1.0.0
dev: false
- /gzip-size/6.0.0:
+ /gzip-size@6.0.0:
resolution: {integrity: sha512-ax7ZYomf6jqPTQ4+XCpUGyXKHk5WweS+e05MBO4/y3WJ5RkmPXNKvX+bx1behVILVwr6JSQvZAku021CHPXG3Q==}
engines: {node: '>=10'}
dependencies:
duplexer: 0.1.2
dev: false
- /handle-thing/2.0.1:
+ /handle-thing@2.0.1:
resolution: {integrity: sha512-9Qn4yBxelxoh2Ow62nP+Ka/kMnOXRi8BXnRaUwezLNhqelnN49xKz4F/dPP8OYLxLxq6JDtZb2i9XznUQbNPTg==}
dev: false
- /has-flag/3.0.0:
+ /has-flag@3.0.0:
resolution: {integrity: sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==}
engines: {node: '>=4'}
dev: false
- /has-flag/4.0.0:
+ /has-flag@4.0.0:
resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==}
engines: {node: '>=8'}
dev: false
- /has-property-descriptors/1.0.0:
+ /has-property-descriptors@1.0.0:
resolution: {integrity: sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==}
dependencies:
get-intrinsic: 1.2.0
dev: false
- /has-symbols/1.0.3:
+ /has-symbols@1.0.3:
resolution: {integrity: sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==}
engines: {node: '>= 0.4'}
dev: false
- /has-yarn/2.1.0:
+ /has-yarn@2.1.0:
resolution: {integrity: sha512-UqBRqi4ju7T+TqGNdqAO0PaSVGsDGJUBQvk9eUWNGRY1CFGDzYhLWoM7JQEemnlvVcv/YEmc2wNW8BC24EnUsw==}
engines: {node: '>=8'}
dev: false
- /has/1.0.3:
+ /has@1.0.3:
resolution: {integrity: sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==}
engines: {node: '>= 0.4.0'}
dependencies:
function-bind: 1.1.1
dev: false
- /hast-to-hyperscript/9.0.1:
+ /hast-to-hyperscript@9.0.1:
resolution: {integrity: sha512-zQgLKqF+O2F72S1aa4y2ivxzSlko3MAvxkwG8ehGmNiqd98BIN3JM1rAJPmplEyLmGLO2QZYJtIneOSZ2YbJuA==}
dependencies:
'@types/unist': 2.0.6
@@ -5256,7 +5025,7 @@ packages:
web-namespaces: 1.1.4
dev: false
- /hast-util-from-parse5/6.0.1:
+ /hast-util-from-parse5@6.0.1:
resolution: {integrity: sha512-jeJUWiN5pSxW12Rh01smtVkZgZr33wBokLzKLwinYOUfSzm1Nl/c3GUGebDyOKjdsRgMvoVbV0VpAcpjF4NrJA==}
dependencies:
'@types/parse5': 5.0.3
@@ -5267,11 +5036,11 @@ packages:
web-namespaces: 1.1.4
dev: false
- /hast-util-parse-selector/2.2.5:
+ /hast-util-parse-selector@2.2.5:
resolution: {integrity: sha512-7j6mrk/qqkSehsM92wQjdIgWM2/BW61u/53G6xmC8i1OmEdKLHbk419QKQUjz6LglWsfqoiHmyMRkP1BGjecNQ==}
dev: false
- /hast-util-raw/6.0.1:
+ /hast-util-raw@6.0.1:
resolution: {integrity: sha512-ZMuiYA+UF7BXBtsTBNcLBF5HzXzkyE6MLzJnL605LKE8GJylNjGc4jjxazAHUtcwT5/CEt6afRKViYB4X66dig==}
dependencies:
'@types/hast': 2.3.4
@@ -5286,7 +5055,7 @@ packages:
zwitch: 1.0.5
dev: false
- /hast-util-to-parse5/6.0.0:
+ /hast-util-to-parse5@6.0.0:
resolution: {integrity: sha512-Lu5m6Lgm/fWuz8eWnrKezHtVY83JeRGaNQ2kn9aJgqaxvVkFCZQBEhgodZUDUvoodgyROHDb3r5IxAEdl6suJQ==}
dependencies:
hast-to-hyperscript: 9.0.1
@@ -5296,7 +5065,7 @@ packages:
zwitch: 1.0.5
dev: false
- /hastscript/6.0.0:
+ /hastscript@6.0.0:
resolution: {integrity: sha512-nDM6bvd7lIqDUiYEiu5Sl/+6ReP0BMk/2f4U/Rooccxkj0P5nm+acM5PrGJ/t5I8qPGiqZSE6hVAwZEdZIvP4w==}
dependencies:
'@types/hast': 2.3.4
@@ -5306,12 +5075,11 @@ packages:
space-separated-tokens: 1.1.5
dev: false
- /he/1.2.0:
+ /he@1.2.0:
resolution: {integrity: sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==}
- hasBin: true
dev: false
- /history/4.10.1:
+ /history@4.10.1:
resolution: {integrity: sha512-36nwAD620w12kuzPAsyINPWJqlNbij+hpK1k9XRloDtym8mxzGYl2c17LnV6IAGB2Dmg4tEa7G7DlawS0+qjew==}
dependencies:
'@babel/runtime': 7.21.0
@@ -5322,13 +5090,13 @@ packages:
value-equal: 1.0.1
dev: false
- /hoist-non-react-statics/3.3.2:
+ /hoist-non-react-statics@3.3.2:
resolution: {integrity: sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==}
dependencies:
react-is: 16.13.1
dev: false
- /hpack.js/2.1.6:
+ /hpack.js@2.1.6:
resolution: {integrity: sha512-zJxVehUdMGIKsRaNt7apO2Gqp0BdqW5yaiGHXXmbpvxgBYVZnAql+BJb4RO5ad2MgpbZKn5G6nMnegrH1FcNYQ==}
dependencies:
inherits: 2.0.4
@@ -5337,14 +5105,13 @@ packages:
wbuf: 1.7.3
dev: false
- /html-entities/2.3.3:
+ /html-entities@2.3.3:
resolution: {integrity: sha512-DV5Ln36z34NNTDgnz0EWGBLZENelNAtkiFA4kyNOG2tDI6Mz1uSWiq1wAKdyjnJwyDiDO7Fa2SO1CTxPXL8VxA==}
dev: false
- /html-minifier-terser/6.1.0:
+ /html-minifier-terser@6.1.0:
resolution: {integrity: sha512-YXxSlJBZTP7RS3tWnQw74ooKa6L9b9i9QYXY21eUEvhZ3u9XLfv6OnFsQq6RxkhHygsaUMvYsZRV5rU/OVNZxw==}
engines: {node: '>=12'}
- hasBin: true
dependencies:
camel-case: 4.1.2
clean-css: 5.3.2
@@ -5355,16 +5122,16 @@ packages:
terser: 5.16.6
dev: false
- /html-tags/3.2.0:
+ /html-tags@3.2.0:
resolution: {integrity: sha512-vy7ClnArOZwCnqZgvv+ddgHgJiAFXe3Ge9ML5/mBctVJoUoYPCdxVucOywjDARn6CVoh3dRSFdPHy2sX80L0Wg==}
engines: {node: '>=8'}
dev: false
- /html-void-elements/1.0.5:
+ /html-void-elements@1.0.5:
resolution: {integrity: sha512-uE/TxKuyNIcx44cIWnjr/rfIATDH7ZaOMmstu0CwhFG1Dunhlp4OC6/NMbhiwoq5BpW0ubi303qnEk/PZj614w==}
dev: false
- /html-webpack-plugin/5.5.0_webpack@5.76.3:
+ /html-webpack-plugin@5.5.0(webpack@5.76.3):
resolution: {integrity: sha512-sy88PC2cRTVxvETRgUHFrL4No3UxvcH8G1NepGhqaTT+GXN2kTamqasot0inS5hXeg1cMbFDt27zzo9p35lZVw==}
engines: {node: '>=10.13.0'}
peerDependencies:
@@ -5378,7 +5145,7 @@ packages:
webpack: 5.76.3
dev: false
- /htmlparser2/6.1.0:
+ /htmlparser2@6.1.0:
resolution: {integrity: sha512-gyyPk6rgonLFEDGoeRgQNaEUvdJ4ktTmmUh/h2t7s+M8oPpIPxgNACWa+6ESR57kXstwqPiCut0V8NRpcwgU7A==}
dependencies:
domelementtype: 2.3.0
@@ -5387,7 +5154,7 @@ packages:
entities: 2.2.0
dev: false
- /htmlparser2/8.0.1:
+ /htmlparser2@8.0.1:
resolution: {integrity: sha512-4lVbmc1diZC7GUJQtRQ5yBAeUCL1exyMwmForWkRLnwyzWBFxN633SALPMGYaWZvKe9j1pRZJpauvmxENSp/EA==}
dependencies:
domelementtype: 2.3.0
@@ -5396,15 +5163,15 @@ packages:
entities: 4.4.0
dev: false
- /http-cache-semantics/4.1.1:
+ /http-cache-semantics@4.1.1:
resolution: {integrity: sha512-er295DKPVsV82j5kw1Gjt+ADA/XYHsajl82cGNQG2eyoPkvgUhX+nDIyelzhIWbbsXP39EHcI6l5tYs2FYqYXQ==}
dev: false
- /http-deceiver/1.2.7:
+ /http-deceiver@1.2.7:
resolution: {integrity: sha512-LmpOGxTfbpgtGVxJrj5k7asXHCgNZp5nLfp+hWc8QQRqtb7fUy6kRY3BO1h9ddF6yIPYUARgxGOwB42DnxIaNw==}
dev: false
- /http-errors/1.6.3:
+ /http-errors@1.6.3:
resolution: {integrity: sha512-lks+lVC8dgGyh97jxvxeYTWQFvh4uw4yC12gVl63Cg30sjPX4wuGcdkICVXDAESr6OJGjqGA8Iz5mkeN6zlD7A==}
engines: {node: '>= 0.6'}
dependencies:
@@ -5414,7 +5181,7 @@ packages:
statuses: 1.5.0
dev: false
- /http-errors/2.0.0:
+ /http-errors@2.0.0:
resolution: {integrity: sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==}
engines: {node: '>= 0.8'}
dependencies:
@@ -5425,11 +5192,11 @@ packages:
toidentifier: 1.0.1
dev: false
- /http-parser-js/0.5.8:
+ /http-parser-js@0.5.8:
resolution: {integrity: sha512-SGeBX54F94Wgu5RH3X5jsDtf4eHyRogWX1XGT3b4HuW3tQPM4AaBzoUji/4AAJNXCEOWZ5O0DgZmJw1947gD5Q==}
dev: false
- /http-proxy-middleware/2.0.6_@types+express@4.17.17:
+ /http-proxy-middleware@2.0.6(@types/express@4.17.17):
resolution: {integrity: sha512-ya/UeJ6HVBYxrgYotAZo1KvPWlgB48kUJLDePFeneHsVujFaW5WNj2NgWCAE//B1Dl02BIfYlpNgBy8Kf8Rjmw==}
engines: {node: '>=12.0.0'}
peerDependencies:
@@ -5448,7 +5215,7 @@ packages:
- debug
dev: false
- /http-proxy/1.18.1:
+ /http-proxy@1.18.1:
resolution: {integrity: sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ==}
engines: {node: '>=8.0.0'}
dependencies:
@@ -5459,19 +5226,19 @@ packages:
- debug
dev: false
- /human-signals/2.1.0:
+ /human-signals@2.1.0:
resolution: {integrity: sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==}
engines: {node: '>=10.17.0'}
dev: false
- /iconv-lite/0.4.24:
+ /iconv-lite@0.4.24:
resolution: {integrity: sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==}
engines: {node: '>=0.10.0'}
dependencies:
safer-buffer: 2.1.2
dev: false
- /icss-utils/5.1.0_postcss@8.4.21:
+ /icss-utils@5.1.0(postcss@8.4.21):
resolution: {integrity: sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==}
engines: {node: ^10 || ^12 || >= 14}
peerDependencies:
@@ -5480,28 +5247,27 @@ packages:
postcss: 8.4.21
dev: false
- /ignore/5.2.4:
+ /ignore@5.2.4:
resolution: {integrity: sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==}
engines: {node: '>= 4'}
dev: false
- /image-size/1.0.2:
+ /image-size@1.0.2:
resolution: {integrity: sha512-xfOoWjceHntRb3qFCrh5ZFORYH8XCdYpASltMhZ/Q0KZiOwjdE/Yl2QCiWdwD+lygV5bMCvauzgu5PxBX/Yerg==}
engines: {node: '>=14.0.0'}
- hasBin: true
dependencies:
queue: 6.0.2
dev: false
- /immer/9.0.19:
+ /immer@9.0.19:
resolution: {integrity: sha512-eY+Y0qcsB4TZKwgQzLaE/lqYMlKhv5J9dyd2RhhtGhNo2njPXDqU9XPfcNfa3MIDsdtZt5KlkIsirlo4dHsWdQ==}
dev: false
- /immutable/4.3.0:
+ /immutable@4.3.0:
resolution: {integrity: sha512-0AOCmOip+xgJwEVTQj1EfiDDOkPmuyllDuTuEX+DDXUgapLAsBIfkg3sxCYyCEA8mQqZrrxPUGjcOQ2JS3WLkg==}
dev: false
- /import-fresh/3.3.0:
+ /import-fresh@3.3.0:
resolution: {integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==}
engines: {node: '>=6'}
dependencies:
@@ -5509,152 +5275,150 @@ packages:
resolve-from: 4.0.0
dev: false
- /import-lazy/2.1.0:
+ /import-lazy@2.1.0:
resolution: {integrity: sha512-m7ZEHgtw69qOGw+jwxXkHlrlIPdTGkyh66zXZ1ajZbxkDBNjSY/LGbmjc7h0s2ELsUDTAhFr55TrPSSqJGPG0A==}
engines: {node: '>=4'}
dev: false
- /imurmurhash/0.1.4:
+ /imurmurhash@0.1.4:
resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==}
engines: {node: '>=0.8.19'}
dev: false
- /indent-string/4.0.0:
+ /indent-string@4.0.0:
resolution: {integrity: sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==}
engines: {node: '>=8'}
dev: false
- /infima/0.2.0-alpha.42:
- resolution: {integrity: sha512-ift8OXNbQQwtbIt6z16KnSWP7uJ/SysSMFI4F87MNRTicypfl4Pv3E2OGVv6N3nSZFJvA8imYulCBS64iyHYww==}
+ /infima@0.2.0-alpha.43:
+ resolution: {integrity: sha512-2uw57LvUqW0rK/SWYnd/2rRfxNA5DDNOh33jxF7fy46VWoNhGxiUQyVZHbBMjQ33mQem0cjdDVwgWVAmlRfgyQ==}
engines: {node: '>=12'}
dev: false
- /inflight/1.0.6:
+ /inflight@1.0.6:
resolution: {integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==}
dependencies:
once: 1.4.0
wrappy: 1.0.2
dev: false
- /inherits/2.0.3:
+ /inherits@2.0.3:
resolution: {integrity: sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw==}
dev: false
- /inherits/2.0.4:
+ /inherits@2.0.4:
resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==}
dev: false
- /ini/1.3.8:
+ /ini@1.3.8:
resolution: {integrity: sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==}
dev: false
- /ini/2.0.0:
+ /ini@2.0.0:
resolution: {integrity: sha512-7PnF4oN3CvZF23ADhA5wRaYEQpJ8qygSkbtTXWBeXWXmEVRXK+1ITciHWwHhsjv1TmW0MgacIv6hEi5pX5NQdA==}
engines: {node: '>=10'}
dev: false
- /inline-style-parser/0.1.1:
+ /inline-style-parser@0.1.1:
resolution: {integrity: sha512-7NXolsK4CAS5+xvdj5OMMbI962hU/wvwoxk+LWR9Ek9bVtyuuYScDN6eS0rUm6TxApFpw7CX1o4uJzcd4AyD3Q==}
dev: false
- /interpret/1.4.0:
+ /interpret@1.4.0:
resolution: {integrity: sha512-agE4QfB2Lkp9uICn7BAqoscw4SZP9kTE2hxiFI3jBPmXJfdqiahTbUuKGsMoN2GtqL9AxhYioAcVvgsb1HvRbA==}
engines: {node: '>= 0.10'}
dev: false
- /invariant/2.2.4:
+ /invariant@2.2.4:
resolution: {integrity: sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==}
dependencies:
loose-envify: 1.4.0
dev: false
- /ipaddr.js/1.9.1:
+ /ipaddr.js@1.9.1:
resolution: {integrity: sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==}
engines: {node: '>= 0.10'}
dev: false
- /ipaddr.js/2.0.1:
+ /ipaddr.js@2.0.1:
resolution: {integrity: sha512-1qTgH9NG+IIJ4yfKs2e6Pp1bZg8wbDbKHT21HrLIeYBTRLgMYKnMTPAuI3Lcs61nfx5h1xlXnbJtH1kX5/d/ng==}
engines: {node: '>= 10'}
dev: false
- /is-alphabetical/1.0.4:
+ /is-alphabetical@1.0.4:
resolution: {integrity: sha512-DwzsA04LQ10FHTZuL0/grVDk4rFoVH1pjAToYwBrHSxcrBIGQuXrQMtD5U1b0U2XVgKZCTLLP8u2Qxqhy3l2Vg==}
dev: false
- /is-alphanumerical/1.0.4:
+ /is-alphanumerical@1.0.4:
resolution: {integrity: sha512-UzoZUr+XfVz3t3v4KyGEniVL9BDRoQtY7tOyrRybkVNjDFWyo1yhXNGrrBTQxp3ib9BLAWs7k2YKBQsFRkZG9A==}
dependencies:
is-alphabetical: 1.0.4
is-decimal: 1.0.4
dev: false
- /is-arrayish/0.2.1:
+ /is-arrayish@0.2.1:
resolution: {integrity: sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==}
dev: false
- /is-binary-path/2.1.0:
+ /is-binary-path@2.1.0:
resolution: {integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==}
engines: {node: '>=8'}
dependencies:
binary-extensions: 2.2.0
dev: false
- /is-buffer/2.0.5:
+ /is-buffer@2.0.5:
resolution: {integrity: sha512-i2R6zNFDwgEHJyQUtJEk0XFi1i0dPFn/oqjK3/vPCcDeJvW5NQ83V8QbicfF1SupOaB0h8ntgBC2YiE7dfyctQ==}
engines: {node: '>=4'}
dev: false
- /is-ci/2.0.0:
+ /is-ci@2.0.0:
resolution: {integrity: sha512-YfJT7rkpQB0updsdHLGWrvhBJfcfzNNawYDNIyQXJz0IViGf75O8EBPKSdvw2rF+LGCsX4FZ8tcr3b19LcZq4w==}
- hasBin: true
dependencies:
ci-info: 2.0.0
dev: false
- /is-core-module/2.11.0:
+ /is-core-module@2.11.0:
resolution: {integrity: sha512-RRjxlvLDkD1YJwDbroBHMb+cukurkDWNyHx7D3oNB5x9rb5ogcksMC5wHCadcXoo67gVr/+3GFySh3134zi6rw==}
dependencies:
has: 1.0.3
dev: false
- /is-decimal/1.0.4:
+ /is-decimal@1.0.4:
resolution: {integrity: sha512-RGdriMmQQvZ2aqaQq3awNA6dCGtKpiDFcOzrTWrDAT2MiWrKQVPmxLGHl7Y2nNu6led0kEyoX0enY0qXYsv9zw==}
dev: false
- /is-docker/2.2.1:
+ /is-docker@2.2.1:
resolution: {integrity: sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==}
engines: {node: '>=8'}
- hasBin: true
dev: false
- /is-extendable/0.1.1:
+ /is-extendable@0.1.1:
resolution: {integrity: sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==}
engines: {node: '>=0.10.0'}
dev: false
- /is-extglob/2.1.1:
+ /is-extglob@2.1.1:
resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==}
engines: {node: '>=0.10.0'}
dev: false
- /is-fullwidth-code-point/3.0.0:
+ /is-fullwidth-code-point@3.0.0:
resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==}
engines: {node: '>=8'}
dev: false
- /is-glob/4.0.3:
+ /is-glob@4.0.3:
resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==}
engines: {node: '>=0.10.0'}
dependencies:
is-extglob: 2.1.1
dev: false
- /is-hexadecimal/1.0.4:
+ /is-hexadecimal@1.0.4:
resolution: {integrity: sha512-gyPJuv83bHMpocVYoqof5VDiZveEoGoFL8m3BXNb2VW8Xs+rz9kqO8LOQ5DH6EsuvilT1ApazU0pyl+ytbPtlw==}
dev: false
- /is-installed-globally/0.4.0:
+ /is-installed-globally@0.4.0:
resolution: {integrity: sha512-iwGqO3J21aaSkC7jWnHP/difazwS7SFeIqxv6wEtLU8Y5KlzFTjyqcSIT0d8s4+dDhKytsk9PJZ2BkS5eZwQRQ==}
engines: {node: '>=10'}
dependencies:
@@ -5662,109 +5426,109 @@ packages:
is-path-inside: 3.0.3
dev: false
- /is-npm/5.0.0:
+ /is-npm@5.0.0:
resolution: {integrity: sha512-WW/rQLOazUq+ST/bCAVBp/2oMERWLsR7OrKyt052dNDk4DHcDE0/7QSXITlmi+VBcV13DfIbysG3tZJm5RfdBA==}
engines: {node: '>=10'}
dev: false
- /is-number/7.0.0:
+ /is-number@7.0.0:
resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==}
engines: {node: '>=0.12.0'}
dev: false
- /is-obj/1.0.1:
+ /is-obj@1.0.1:
resolution: {integrity: sha512-l4RyHgRqGN4Y3+9JHVrNqO+tN0rV5My76uW5/nuO4K1b6vw5G8d/cmFjP9tRfEsdhZNt0IFdZuK/c2Vr4Nb+Qg==}
engines: {node: '>=0.10.0'}
dev: false
- /is-obj/2.0.0:
+ /is-obj@2.0.0:
resolution: {integrity: sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==}
engines: {node: '>=8'}
dev: false
- /is-path-cwd/2.2.0:
+ /is-path-cwd@2.2.0:
resolution: {integrity: sha512-w942bTcih8fdJPJmQHFzkS76NEP8Kzzvmw92cXsazb8intwLqPibPPdXf4ANdKV3rYMuuQYGIWtvz9JilB3NFQ==}
engines: {node: '>=6'}
dev: false
- /is-path-inside/3.0.3:
+ /is-path-inside@3.0.3:
resolution: {integrity: sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==}
engines: {node: '>=8'}
dev: false
- /is-plain-obj/2.1.0:
+ /is-plain-obj@2.1.0:
resolution: {integrity: sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA==}
engines: {node: '>=8'}
dev: false
- /is-plain-obj/3.0.0:
+ /is-plain-obj@3.0.0:
resolution: {integrity: sha512-gwsOE28k+23GP1B6vFl1oVh/WOzmawBrKwo5Ev6wMKzPkaXaCDIQKzLnvsA42DRlbVTWorkgTKIviAKCWkfUwA==}
engines: {node: '>=10'}
dev: false
- /is-plain-object/2.0.4:
+ /is-plain-object@2.0.4:
resolution: {integrity: sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==}
engines: {node: '>=0.10.0'}
dependencies:
isobject: 3.0.1
dev: false
- /is-regexp/1.0.0:
+ /is-regexp@1.0.0:
resolution: {integrity: sha512-7zjFAPO4/gwyQAAgRRmqeEeyIICSdmCqa3tsVHMdBzaXXRiqopZL4Cyghg/XulGWrtABTpbnYYzzIRffLkP4oA==}
engines: {node: '>=0.10.0'}
dev: false
- /is-root/2.1.0:
+ /is-root@2.1.0:
resolution: {integrity: sha512-AGOriNp96vNBd3HtU+RzFEc75FfR5ymiYv8E553I71SCeXBiMsVDUtdio1OEFvrPyLIQ9tVR5RxXIFe5PUFjMg==}
engines: {node: '>=6'}
dev: false
- /is-stream/2.0.1:
+ /is-stream@2.0.1:
resolution: {integrity: sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==}
engines: {node: '>=8'}
dev: false
- /is-typedarray/1.0.0:
+ /is-typedarray@1.0.0:
resolution: {integrity: sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA==}
dev: false
- /is-whitespace-character/1.0.4:
+ /is-whitespace-character@1.0.4:
resolution: {integrity: sha512-SDweEzfIZM0SJV0EUga669UTKlmL0Pq8Lno0QDQsPnvECB3IM2aP0gdx5TrU0A01MAPfViaZiI2V1QMZLaKK5w==}
dev: false
- /is-word-character/1.0.4:
+ /is-word-character@1.0.4:
resolution: {integrity: sha512-5SMO8RVennx3nZrqtKwCGyyetPE9VDba5ugvKLaD4KopPG5kR4mQ7tNt/r7feL5yt5h3lpuBbIUmCOG2eSzXHA==}
dev: false
- /is-wsl/2.2.0:
+ /is-wsl@2.2.0:
resolution: {integrity: sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==}
engines: {node: '>=8'}
dependencies:
is-docker: 2.2.1
dev: false
- /is-yarn-global/0.3.0:
+ /is-yarn-global@0.3.0:
resolution: {integrity: sha512-VjSeb/lHmkoyd8ryPVIKvOCn4D1koMqY+vqyjjUfc3xyKtP4dYOxM44sZrnqQSzSds3xyOrUTLTC9LVCVgLngw==}
dev: false
- /isarray/0.0.1:
+ /isarray@0.0.1:
resolution: {integrity: sha512-D2S+3GLxWH+uhrNEcoh/fnmYeP8E8/zHl644d/jdA0g2uyXvy3sb0qxotE+ne0LtccHknQzWwZEzhak7oJ0COQ==}
dev: false
- /isarray/1.0.0:
+ /isarray@1.0.0:
resolution: {integrity: sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==}
dev: false
- /isexe/2.0.0:
+ /isexe@2.0.0:
resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==}
dev: false
- /isobject/3.0.1:
+ /isobject@3.0.1:
resolution: {integrity: sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==}
engines: {node: '>=0.10.0'}
dev: false
- /jest-util/29.5.0:
+ /jest-util@29.5.0:
resolution: {integrity: sha512-RYMgG/MTadOr5t8KdhejfvUU82MxsCu5MF6KuDUHl+NuwzUt+Sm6jJWxTJVrDR1j5M/gJVCPKQEpWXY+yIQ6lQ==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
@@ -5776,7 +5540,7 @@ packages:
picomatch: 2.3.1
dev: false
- /jest-worker/27.5.1:
+ /jest-worker@27.5.1:
resolution: {integrity: sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==}
engines: {node: '>= 10.13.0'}
dependencies:
@@ -5785,7 +5549,7 @@ packages:
supports-color: 8.1.1
dev: false
- /jest-worker/29.5.0:
+ /jest-worker@29.5.0:
resolution: {integrity: sha512-NcrQnevGoSp4b5kg+akIpthoAFHxPBcb5P6mYPY0fUNT+sSvmtu6jlkEle3anczUKIKEbMxFimk9oTP/tpIPgA==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
@@ -5795,7 +5559,7 @@ packages:
supports-color: 8.1.1
dev: false
- /joi/17.9.1:
+ /joi@17.9.1:
resolution: {integrity: sha512-FariIi9j6QODKATGBrEX7HZcja8Bsh3rfdGYy/Sb65sGlZWK/QWesU1ghk7aJWDj95knjXlQfSmzFSPPkLVsfw==}
dependencies:
'@hapi/hoek': 9.3.0
@@ -5805,59 +5569,54 @@ packages:
'@sideway/pinpoint': 2.0.0
dev: false
- /js-tokens/4.0.0:
+ /js-tokens@4.0.0:
resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==}
dev: false
- /js-yaml/3.14.1:
+ /js-yaml@3.14.1:
resolution: {integrity: sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==}
- hasBin: true
dependencies:
argparse: 1.0.10
esprima: 4.0.1
dev: false
- /js-yaml/4.1.0:
+ /js-yaml@4.1.0:
resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==}
- hasBin: true
dependencies:
argparse: 2.0.1
dev: false
- /jsesc/0.5.0:
+ /jsesc@0.5.0:
resolution: {integrity: sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==}
- hasBin: true
dev: false
- /jsesc/2.5.2:
+ /jsesc@2.5.2:
resolution: {integrity: sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==}
engines: {node: '>=4'}
- hasBin: true
dev: false
- /json-buffer/3.0.0:
+ /json-buffer@3.0.0:
resolution: {integrity: sha512-CuUqjv0FUZIdXkHPI8MezCnFCdaTAacej1TZYulLoAg1h/PhwkdXFN4V/gzY4g+fMBCOV2xF+rp7t2XD2ns/NQ==}
dev: false
- /json-parse-even-better-errors/2.3.1:
+ /json-parse-even-better-errors@2.3.1:
resolution: {integrity: sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==}
dev: false
- /json-schema-traverse/0.4.1:
+ /json-schema-traverse@0.4.1:
resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==}
dev: false
- /json-schema-traverse/1.0.0:
+ /json-schema-traverse@1.0.0:
resolution: {integrity: sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==}
dev: false
- /json5/2.2.3:
+ /json5@2.2.3:
resolution: {integrity: sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==}
engines: {node: '>=6'}
- hasBin: true
dev: false
- /jsonfile/6.1.0:
+ /jsonfile@6.1.0:
resolution: {integrity: sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==}
dependencies:
universalify: 2.0.0
@@ -5865,61 +5624,61 @@ packages:
graceful-fs: 4.2.11
dev: false
- /keyv/3.1.0:
+ /keyv@3.1.0:
resolution: {integrity: sha512-9ykJ/46SN/9KPM/sichzQ7OvXyGDYKGTaDlKMGCAlg2UK8KRy4jb0d8sFc+0Tt0YYnThq8X2RZgCg74RPxgcVA==}
dependencies:
json-buffer: 3.0.0
dev: false
- /kind-of/6.0.3:
+ /kind-of@6.0.3:
resolution: {integrity: sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==}
engines: {node: '>=0.10.0'}
dev: false
- /kleur/3.0.3:
+ /kleur@3.0.3:
resolution: {integrity: sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==}
engines: {node: '>=6'}
dev: false
- /klona/2.0.6:
+ /klona@2.0.6:
resolution: {integrity: sha512-dhG34DXATL5hSxJbIexCft8FChFXtmskoZYnoPWjXQuebWYCNkVeV3KkGegCK9CP1oswI/vQibS2GY7Em/sJJA==}
engines: {node: '>= 8'}
dev: false
- /latest-version/5.1.0:
+ /latest-version@5.1.0:
resolution: {integrity: sha512-weT+r0kTkRQdCdYCNtkMwWXQTMEswKrFBkm4ckQOMVhhqhIMI1UT2hMj+1iigIhgSZm5gTmrRXBNoGUgaTY1xA==}
engines: {node: '>=8'}
dependencies:
package-json: 6.5.0
dev: false
- /launch-editor/2.6.0:
+ /launch-editor@2.6.0:
resolution: {integrity: sha512-JpDCcQnyAAzZZaZ7vEiSqL690w7dAEyLao+KC96zBplnYbJS7TYNjvM3M7y3dGz+v7aIsJk3hllWuc0kWAjyRQ==}
dependencies:
picocolors: 1.0.0
shell-quote: 1.8.0
dev: false
- /leven/3.1.0:
+ /leven@3.1.0:
resolution: {integrity: sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==}
engines: {node: '>=6'}
dev: false
- /lilconfig/2.1.0:
+ /lilconfig@2.1.0:
resolution: {integrity: sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==}
engines: {node: '>=10'}
dev: false
- /lines-and-columns/1.2.4:
+ /lines-and-columns@1.2.4:
resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==}
dev: false
- /loader-runner/4.3.0:
+ /loader-runner@4.3.0:
resolution: {integrity: sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg==}
engines: {node: '>=6.11.5'}
dev: false
- /loader-utils/2.0.4:
+ /loader-utils@2.0.4:
resolution: {integrity: sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==}
engines: {node: '>=8.9.0'}
dependencies:
@@ -5928,12 +5687,12 @@ packages:
json5: 2.2.3
dev: false
- /loader-utils/3.2.1:
+ /loader-utils@3.2.1:
resolution: {integrity: sha512-ZvFw1KWS3GVyYBYb7qkmRM/WwL2TQQBxgCK62rlvm4WpVQ23Nb4tYjApUlfjrEGvOs7KHEsmyUn75OHZrJMWPw==}
engines: {node: '>= 12.13.0'}
dev: false
- /locate-path/3.0.0:
+ /locate-path@3.0.0:
resolution: {integrity: sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==}
engines: {node: '>=6'}
dependencies:
@@ -5941,104 +5700,103 @@ packages:
path-exists: 3.0.0
dev: false
- /locate-path/5.0.0:
+ /locate-path@5.0.0:
resolution: {integrity: sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==}
engines: {node: '>=8'}
dependencies:
p-locate: 4.1.0
dev: false
- /locate-path/6.0.0:
+ /locate-path@6.0.0:
resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==}
engines: {node: '>=10'}
dependencies:
p-locate: 5.0.0
dev: false
- /lodash.curry/4.1.1:
+ /lodash.curry@4.1.1:
resolution: {integrity: sha512-/u14pXGviLaweY5JI0IUzgzF2J6Ne8INyzAZjImcryjgkZ+ebruBxy2/JaOOkTqScddcYtakjhSaeemV8lR0tA==}
dev: false
- /lodash.debounce/4.0.8:
+ /lodash.debounce@4.0.8:
resolution: {integrity: sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==}
dev: false
- /lodash.flow/3.5.0:
+ /lodash.flow@3.5.0:
resolution: {integrity: sha512-ff3BX/tSioo+XojX4MOsOMhJw0nZoUEF011LX8g8d3gvjVbxd89cCio4BCXronjxcTUIJUoqKEUA+n4CqvvRPw==}
dev: false
- /lodash.memoize/4.1.2:
+ /lodash.memoize@4.1.2:
resolution: {integrity: sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag==}
dev: false
- /lodash.uniq/4.5.0:
+ /lodash.uniq@4.5.0:
resolution: {integrity: sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ==}
dev: false
- /lodash/4.17.21:
+ /lodash@4.17.21:
resolution: {integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==}
dev: false
- /loose-envify/1.4.0:
+ /loose-envify@1.4.0:
resolution: {integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==}
- hasBin: true
dependencies:
js-tokens: 4.0.0
dev: false
- /lower-case/2.0.2:
+ /lower-case@2.0.2:
resolution: {integrity: sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==}
dependencies:
tslib: 2.5.0
dev: false
- /lowercase-keys/1.0.1:
+ /lowercase-keys@1.0.1:
resolution: {integrity: sha512-G2Lj61tXDnVFFOi8VZds+SoQjtQC3dgokKdDG2mTm1tx4m50NUHBOZSBwQQHyy0V12A0JTG4icfZQH+xPyh8VA==}
engines: {node: '>=0.10.0'}
dev: false
- /lowercase-keys/2.0.0:
+ /lowercase-keys@2.0.0:
resolution: {integrity: sha512-tqNXrS78oMOE73NMxK4EMLQsQowWf8jKooH9g7xPavRT706R6bkQJ6DY2Te7QukaZsulxa30wQ7bk0pm4XiHmA==}
engines: {node: '>=8'}
dev: false
- /lru-cache/5.1.1:
+ /lru-cache@5.1.1:
resolution: {integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==}
dependencies:
yallist: 3.1.1
dev: false
- /lru-cache/6.0.0:
+ /lru-cache@6.0.0:
resolution: {integrity: sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==}
engines: {node: '>=10'}
dependencies:
yallist: 4.0.0
dev: false
- /make-dir/3.1.0:
+ /make-dir@3.1.0:
resolution: {integrity: sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==}
engines: {node: '>=8'}
dependencies:
semver: 6.3.0
dev: false
- /markdown-escapes/1.0.4:
+ /markdown-escapes@1.0.4:
resolution: {integrity: sha512-8z4efJYk43E0upd0NbVXwgSTQs6cT3T06etieCMEg7dRbzCbxUCK/GHlX8mhHRDcp+OLlHkPKsvqQTCvsRl2cg==}
dev: false
- /mdast-squeeze-paragraphs/4.0.0:
+ /mdast-squeeze-paragraphs@4.0.0:
resolution: {integrity: sha512-zxdPn69hkQ1rm4J+2Cs2j6wDEv7O17TfXTJ33tl/+JPIoEmtV9t2ZzBM5LPHE8QlHsmVD8t3vPKCyY3oH+H8MQ==}
dependencies:
unist-util-remove: 2.1.0
dev: false
- /mdast-util-definitions/4.0.0:
+ /mdast-util-definitions@4.0.0:
resolution: {integrity: sha512-k8AJ6aNnUkB7IE+5azR9h81O5EQ/cTDXtWdMq9Kk5KcEW/8ritU5CeLg/9HhOC++nALHBlaogJ5jz0Ybk3kPMQ==}
dependencies:
unist-util-visit: 2.0.3
dev: false
- /mdast-util-to-hast/10.0.1:
+ /mdast-util-to-hast@10.0.1:
resolution: {integrity: sha512-BW3LM9SEMnjf4HXXVApZMt8gLQWVNXc3jryK0nJu/rOXPOnlkUjmdkDlmxMirpbU9ILncGFIwLH/ubnWBbcdgA==}
dependencies:
'@types/mdast': 3.0.11
@@ -6051,49 +5809,49 @@ packages:
unist-util-visit: 2.0.3
dev: false
- /mdast-util-to-string/2.0.0:
+ /mdast-util-to-string@2.0.0:
resolution: {integrity: sha512-AW4DRS3QbBayY/jJmD8437V1Gombjf8RSOUCMFBuo5iHi58AGEgVCKQ+ezHkZZDpAQS75hcBMpLqjpJTjtUL7w==}
dev: false
- /mdn-data/2.0.14:
+ /mdn-data@2.0.14:
resolution: {integrity: sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow==}
dev: false
- /mdurl/1.0.1:
+ /mdurl@1.0.1:
resolution: {integrity: sha512-/sKlQJCBYVY9Ers9hqzKou4H6V5UWc/M59TH2dvkt+84itfnq7uFOMLpOiOS4ujvHP4etln18fmIxA5R5fll0g==}
dev: false
- /media-typer/0.3.0:
+ /media-typer@0.3.0:
resolution: {integrity: sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==}
engines: {node: '>= 0.6'}
dev: false
- /memfs/3.4.13:
+ /memfs@3.4.13:
resolution: {integrity: sha512-omTM41g3Skpvx5dSYeZIbXKcXoAVc/AoMNwn9TKx++L/gaen/+4TTttmu8ZSch5vfVJ8uJvGbroTsIlslRg6lg==}
engines: {node: '>= 4.0.0'}
dependencies:
fs-monkey: 1.0.3
dev: false
- /merge-descriptors/1.0.1:
+ /merge-descriptors@1.0.1:
resolution: {integrity: sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w==}
dev: false
- /merge-stream/2.0.0:
+ /merge-stream@2.0.0:
resolution: {integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==}
dev: false
- /merge2/1.4.1:
+ /merge2@1.4.1:
resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==}
engines: {node: '>= 8'}
dev: false
- /methods/1.1.2:
+ /methods@1.1.2:
resolution: {integrity: sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==}
engines: {node: '>= 0.6'}
dev: false
- /micromatch/4.0.5:
+ /micromatch@4.0.5:
resolution: {integrity: sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==}
engines: {node: '>=8.6'}
dependencies:
@@ -6101,47 +5859,46 @@ packages:
picomatch: 2.3.1
dev: false
- /mime-db/1.33.0:
+ /mime-db@1.33.0:
resolution: {integrity: sha512-BHJ/EKruNIqJf/QahvxwQZXKygOQ256myeN/Ew+THcAa5q+PjyTTMMeNQC4DZw5AwfvelsUrA6B67NKMqXDbzQ==}
engines: {node: '>= 0.6'}
dev: false
- /mime-db/1.52.0:
+ /mime-db@1.52.0:
resolution: {integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==}
engines: {node: '>= 0.6'}
dev: false
- /mime-types/2.1.18:
+ /mime-types@2.1.18:
resolution: {integrity: sha512-lc/aahn+t4/SWV/qcmumYjymLsWfN3ELhpmVuUFjgsORruuZPVSwAQryq+HHGvO/SI2KVX26bx+En+zhM8g8hQ==}
engines: {node: '>= 0.6'}
dependencies:
mime-db: 1.33.0
dev: false
- /mime-types/2.1.35:
+ /mime-types@2.1.35:
resolution: {integrity: sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==}
engines: {node: '>= 0.6'}
dependencies:
mime-db: 1.52.0
dev: false
- /mime/1.6.0:
+ /mime@1.6.0:
resolution: {integrity: sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==}
engines: {node: '>=4'}
- hasBin: true
dev: false
- /mimic-fn/2.1.0:
+ /mimic-fn@2.1.0:
resolution: {integrity: sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==}
engines: {node: '>=6'}
dev: false
- /mimic-response/1.0.1:
+ /mimic-response@1.0.1:
resolution: {integrity: sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ==}
engines: {node: '>=4'}
dev: false
- /mini-css-extract-plugin/2.7.5_webpack@5.76.3:
+ /mini-css-extract-plugin@2.7.5(webpack@5.76.3):
resolution: {integrity: sha512-9HaR++0mlgom81s95vvNjxkg52n2b5s//3ZTI1EtzFb98awsLSivs2LMsVqnQ3ay0PVhqWcGNyDaTE961FOcjQ==}
engines: {node: '>= 12.13.0'}
peerDependencies:
@@ -6151,74 +5908,72 @@ packages:
webpack: 5.76.3
dev: false
- /minimalistic-assert/1.0.1:
+ /minimalistic-assert@1.0.1:
resolution: {integrity: sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==}
dev: false
- /minimatch/3.1.2:
+ /minimatch@3.1.2:
resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==}
dependencies:
brace-expansion: 1.1.11
dev: false
- /minimist/1.2.8:
+ /minimist@1.2.8:
resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==}
dev: false
- /mrmime/1.0.1:
+ /mrmime@1.0.1:
resolution: {integrity: sha512-hzzEagAgDyoU1Q6yg5uI+AorQgdvMCur3FcKf7NhMKWsaYg+RnbTyHRa/9IlLF9rf455MOCtcqqrQQ83pPP7Uw==}
engines: {node: '>=10'}
dev: false
- /ms/2.0.0:
+ /ms@2.0.0:
resolution: {integrity: sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==}
dev: false
- /ms/2.1.2:
+ /ms@2.1.2:
resolution: {integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==}
dev: false
- /ms/2.1.3:
+ /ms@2.1.3:
resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==}
dev: false
- /multicast-dns/7.2.5:
+ /multicast-dns@7.2.5:
resolution: {integrity: sha512-2eznPJP8z2BFLX50tf0LuODrpINqP1RVIm/CObbTcBRITQgmC/TjcREF1NeTBzIcR5XO/ukWo+YHOjBbFwIupg==}
- hasBin: true
dependencies:
dns-packet: 5.4.0
thunky: 1.1.0
dev: false
- /nanoid/3.3.4:
+ /nanoid@3.3.4:
resolution: {integrity: sha512-MqBkQh/OHTS2egovRtLk45wEyNXwF+cokD+1YPf9u5VfJiRdAiRwB2froX5Co9Rh20xs4siNPm8naNotSD6RBw==}
engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
- hasBin: true
dev: false
- /negotiator/0.6.3:
+ /negotiator@0.6.3:
resolution: {integrity: sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==}
engines: {node: '>= 0.6'}
dev: false
- /neo-async/2.6.2:
+ /neo-async@2.6.2:
resolution: {integrity: sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==}
dev: false
- /no-case/3.0.4:
+ /no-case@3.0.4:
resolution: {integrity: sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==}
dependencies:
lower-case: 2.0.2
tslib: 2.5.0
dev: false
- /node-emoji/1.11.0:
+ /node-emoji@1.11.0:
resolution: {integrity: sha512-wo2DpQkQp7Sjm2A0cq+sN7EHKO6Sl0ctXeBdFZrL9T9+UywORbufTcTZxom8YqpLQt/FqNMUkOpkZrJVYSKD3A==}
dependencies:
lodash: 4.17.21
dev: false
- /node-fetch/2.6.7:
+ /node-fetch@2.6.7:
resolution: {integrity: sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ==}
engines: {node: 4.x || >=6.0.0}
peerDependencies:
@@ -6230,67 +5985,67 @@ packages:
whatwg-url: 5.0.0
dev: false
- /node-forge/1.3.1:
+ /node-forge@1.3.1:
resolution: {integrity: sha512-dPEtOeMvF9VMcYV/1Wb8CPoVAXtp6MKMlcbAt4ddqmGqUJ6fQZFXkNZNkNlfevtNkGtaSoXf/vNNNSvgrdXwtA==}
engines: {node: '>= 6.13.0'}
dev: false
- /node-releases/2.0.10:
+ /node-releases@2.0.10:
resolution: {integrity: sha512-5GFldHPXVG/YZmFzJvKK2zDSzPKhEp0+ZR5SVaoSag9fsL5YgHbUHDfnG5494ISANDcK4KwPXAx2xqVEydmd7w==}
dev: false
- /normalize-path/3.0.0:
+ /normalize-path@3.0.0:
resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==}
engines: {node: '>=0.10.0'}
dev: false
- /normalize-range/0.1.2:
+ /normalize-range@0.1.2:
resolution: {integrity: sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==}
engines: {node: '>=0.10.0'}
dev: false
- /normalize-url/4.5.1:
+ /normalize-url@4.5.1:
resolution: {integrity: sha512-9UZCFRHQdNrfTpGg8+1INIg93B6zE0aXMVFkw1WFwvO4SlZywU6aLg5Of0Ap/PgcbSw4LNxvMWXMeugwMCX0AA==}
engines: {node: '>=8'}
dev: false
- /normalize-url/6.1.0:
+ /normalize-url@6.1.0:
resolution: {integrity: sha512-DlL+XwOy3NxAQ8xuC0okPgK46iuVNAK01YN7RueYBqqFeGsBjV9XmCAzAdgt+667bCl5kPh9EqKKDwnaPG1I7A==}
engines: {node: '>=10'}
dev: false
- /npm-run-path/4.0.1:
+ /npm-run-path@4.0.1:
resolution: {integrity: sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==}
engines: {node: '>=8'}
dependencies:
path-key: 3.1.1
dev: false
- /nprogress/0.2.0:
+ /nprogress@0.2.0:
resolution: {integrity: sha512-I19aIingLgR1fmhftnbWWO3dXc0hSxqHQHQb3H8m+K3TnEn/iSeTZZOyvKXWqQESMwuUVnatlCnZdLBZZt2VSA==}
dev: false
- /nth-check/2.1.1:
+ /nth-check@2.1.1:
resolution: {integrity: sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==}
dependencies:
boolbase: 1.0.0
dev: false
- /object-assign/4.1.1:
+ /object-assign@4.1.1:
resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==}
engines: {node: '>=0.10.0'}
dev: false
- /object-inspect/1.12.3:
+ /object-inspect@1.12.3:
resolution: {integrity: sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g==}
dev: false
- /object-keys/1.1.1:
+ /object-keys@1.1.1:
resolution: {integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==}
engines: {node: '>= 0.4'}
dev: false
- /object.assign/4.1.4:
+ /object.assign@4.1.4:
resolution: {integrity: sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ==}
engines: {node: '>= 0.4'}
dependencies:
@@ -6300,36 +6055,36 @@ packages:
object-keys: 1.1.1
dev: false
- /obuf/1.1.2:
+ /obuf@1.1.2:
resolution: {integrity: sha512-PX1wu0AmAdPqOL1mWhqmlOd8kOIZQwGZw6rh7uby9fTc5lhaOWFLX3I6R1hrF9k3zUY40e6igsLGkDXK92LJNg==}
dev: false
- /on-finished/2.4.1:
+ /on-finished@2.4.1:
resolution: {integrity: sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==}
engines: {node: '>= 0.8'}
dependencies:
ee-first: 1.1.1
dev: false
- /on-headers/1.0.2:
+ /on-headers@1.0.2:
resolution: {integrity: sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA==}
engines: {node: '>= 0.8'}
dev: false
- /once/1.4.0:
+ /once@1.4.0:
resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==}
dependencies:
wrappy: 1.0.2
dev: false
- /onetime/5.1.2:
+ /onetime@5.1.2:
resolution: {integrity: sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==}
engines: {node: '>=6'}
dependencies:
mimic-fn: 2.1.0
dev: false
- /open/8.4.2:
+ /open@8.4.2:
resolution: {integrity: sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ==}
engines: {node: '>=12'}
dependencies:
@@ -6338,59 +6093,58 @@ packages:
is-wsl: 2.2.0
dev: false
- /opener/1.5.2:
+ /opener@1.5.2:
resolution: {integrity: sha512-ur5UIdyw5Y7yEj9wLzhqXiy6GZ3Mwx0yGI+5sMn2r0N0v3cKJvUmFH5yPP+WXh9e0xfyzyJX95D8l088DNFj7A==}
- hasBin: true
dev: false
- /p-cancelable/1.1.0:
+ /p-cancelable@1.1.0:
resolution: {integrity: sha512-s73XxOZ4zpt1edZYZzvhqFa6uvQc1vwUa0K0BdtIZgQMAJj9IbebH+JkgKZc9h+B05PKHLOTl4ajG1BmNrVZlw==}
engines: {node: '>=6'}
dev: false
- /p-limit/2.3.0:
+ /p-limit@2.3.0:
resolution: {integrity: sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==}
engines: {node: '>=6'}
dependencies:
p-try: 2.2.0
dev: false
- /p-limit/3.1.0:
+ /p-limit@3.1.0:
resolution: {integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==}
engines: {node: '>=10'}
dependencies:
yocto-queue: 0.1.0
dev: false
- /p-locate/3.0.0:
+ /p-locate@3.0.0:
resolution: {integrity: sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==}
engines: {node: '>=6'}
dependencies:
p-limit: 2.3.0
dev: false
- /p-locate/4.1.0:
+ /p-locate@4.1.0:
resolution: {integrity: sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==}
engines: {node: '>=8'}
dependencies:
p-limit: 2.3.0
dev: false
- /p-locate/5.0.0:
+ /p-locate@5.0.0:
resolution: {integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==}
engines: {node: '>=10'}
dependencies:
p-limit: 3.1.0
dev: false
- /p-map/4.0.0:
+ /p-map@4.0.0:
resolution: {integrity: sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==}
engines: {node: '>=10'}
dependencies:
aggregate-error: 3.1.0
dev: false
- /p-retry/4.6.2:
+ /p-retry@4.6.2:
resolution: {integrity: sha512-312Id396EbJdvRONlngUx0NydfrIQ5lsYu0znKVUzVvArzEIt08V1qhtyESbGVd1FGX7UKtiFp5uwKZdM8wIuQ==}
engines: {node: '>=8'}
dependencies:
@@ -6398,12 +6152,12 @@ packages:
retry: 0.13.1
dev: false
- /p-try/2.2.0:
+ /p-try@2.2.0:
resolution: {integrity: sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==}
engines: {node: '>=6'}
dev: false
- /package-json/6.5.0:
+ /package-json@6.5.0:
resolution: {integrity: sha512-k3bdm2n25tkyxcjSKzB5x8kfVxlMdgsbPr0GkZcwHsLpba6cBjqCt1KlcChKEvxHIcTB1FVMuwoijZ26xex5MQ==}
engines: {node: '>=8'}
dependencies:
@@ -6413,21 +6167,21 @@ packages:
semver: 6.3.0
dev: false
- /param-case/3.0.4:
+ /param-case@3.0.4:
resolution: {integrity: sha512-RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A==}
dependencies:
dot-case: 3.0.4
tslib: 2.5.0
dev: false
- /parent-module/1.0.1:
+ /parent-module@1.0.1:
resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==}
engines: {node: '>=6'}
dependencies:
callsites: 3.1.0
dev: false
- /parse-entities/2.0.0:
+ /parse-entities@2.0.0:
resolution: {integrity: sha512-kkywGpCcRYhqQIchaWqZ875wzpS/bMKhz5HnN3p7wveJTkTtyAB/AlnS0f8DFSqYW1T82t6yEAkEcB+A1I3MbQ==}
dependencies:
character-entities: 1.2.4
@@ -6438,7 +6192,7 @@ packages:
is-hexadecimal: 1.0.4
dev: false
- /parse-json/5.2.0:
+ /parse-json@5.2.0:
resolution: {integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==}
engines: {node: '>=8'}
dependencies:
@@ -6448,110 +6202,110 @@ packages:
lines-and-columns: 1.2.4
dev: false
- /parse-numeric-range/1.3.0:
+ /parse-numeric-range@1.3.0:
resolution: {integrity: sha512-twN+njEipszzlMJd4ONUYgSfZPDxgHhT9Ahed5uTigpQn90FggW4SA/AIPq/6a149fTbE9qBEcSwE3FAEp6wQQ==}
dev: false
- /parse5-htmlparser2-tree-adapter/7.0.0:
+ /parse5-htmlparser2-tree-adapter@7.0.0:
resolution: {integrity: sha512-B77tOZrqqfUfnVcOrUvfdLbz4pu4RopLD/4vmu3HUPswwTA8OH0EMW9BlWR2B0RCoiZRAHEUu7IxeP1Pd1UU+g==}
dependencies:
domhandler: 5.0.3
parse5: 7.1.2
dev: false
- /parse5/6.0.1:
+ /parse5@6.0.1:
resolution: {integrity: sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==}
dev: false
- /parse5/7.1.2:
+ /parse5@7.1.2:
resolution: {integrity: sha512-Czj1WaSVpaoj0wbhMzLmWD69anp2WH7FXMB9n1Sy8/ZFF9jolSQVMu1Ij5WIyGmcBmhk7EOndpO4mIpihVqAXw==}
dependencies:
entities: 4.4.0
dev: false
- /parseurl/1.3.3:
+ /parseurl@1.3.3:
resolution: {integrity: sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==}
engines: {node: '>= 0.8'}
dev: false
- /pascal-case/3.1.2:
+ /pascal-case@3.1.2:
resolution: {integrity: sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g==}
dependencies:
no-case: 3.0.4
tslib: 2.5.0
dev: false
- /path-exists/3.0.0:
+ /path-exists@3.0.0:
resolution: {integrity: sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==}
engines: {node: '>=4'}
dev: false
- /path-exists/4.0.0:
+ /path-exists@4.0.0:
resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==}
engines: {node: '>=8'}
dev: false
- /path-is-absolute/1.0.1:
+ /path-is-absolute@1.0.1:
resolution: {integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==}
engines: {node: '>=0.10.0'}
dev: false
- /path-is-inside/1.0.2:
+ /path-is-inside@1.0.2:
resolution: {integrity: sha512-DUWJr3+ULp4zXmol/SZkFf3JGsS9/SIv+Y3Rt93/UjPpDpklB5f1er4O3POIbUuUJ3FXgqte2Q7SrU6zAqwk8w==}
dev: false
- /path-key/3.1.1:
+ /path-key@3.1.1:
resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==}
engines: {node: '>=8'}
dev: false
- /path-parse/1.0.7:
+ /path-parse@1.0.7:
resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==}
dev: false
- /path-to-regexp/0.1.7:
+ /path-to-regexp@0.1.7:
resolution: {integrity: sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ==}
dev: false
- /path-to-regexp/1.8.0:
+ /path-to-regexp@1.8.0:
resolution: {integrity: sha512-n43JRhlUKUAlibEJhPeir1ncUID16QnEjNpwzNdO3Lm4ywrBpBZ5oLD0I6br9evr1Y9JTqwRtAh7JLoOzAQdVA==}
dependencies:
isarray: 0.0.1
dev: false
- /path-to-regexp/2.2.1:
+ /path-to-regexp@2.2.1:
resolution: {integrity: sha512-gu9bD6Ta5bwGrrU8muHzVOBFFREpp2iRkVfhBJahwJ6p6Xw20SjT0MxLnwkjOibQmGSYhiUnf2FLe7k+jcFmGQ==}
dev: false
- /path-type/4.0.0:
+ /path-type@4.0.0:
resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==}
engines: {node: '>=8'}
dev: false
- /picocolors/1.0.0:
+ /picocolors@1.0.0:
resolution: {integrity: sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==}
dev: false
- /picomatch/2.3.1:
+ /picomatch@2.3.1:
resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==}
engines: {node: '>=8.6'}
dev: false
- /pkg-dir/4.2.0:
+ /pkg-dir@4.2.0:
resolution: {integrity: sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==}
engines: {node: '>=8'}
dependencies:
find-up: 4.1.0
dev: false
- /pkg-up/3.1.0:
+ /pkg-up@3.1.0:
resolution: {integrity: sha512-nDywThFk1i4BQK4twPQ6TA4RT8bDY96yeuCVBWL3ePARCiEKDRSrNGbFIgUJpLp+XeIR65v8ra7WuJOFUBtkMA==}
engines: {node: '>=8'}
dependencies:
find-up: 3.0.0
dev: false
- /postcss-calc/8.2.4_postcss@8.4.21:
+ /postcss-calc@8.2.4(postcss@8.4.21):
resolution: {integrity: sha512-SmWMSJmB8MRnnULldx0lQIyhSNvuDl9HfrZkaqqE/WHAhToYsAvDq+yAsA/kIyINDszOp3Rh0GFoNuH5Ypsm3Q==}
peerDependencies:
postcss: ^8.2.2
@@ -6561,7 +6315,7 @@ packages:
postcss-value-parser: 4.2.0
dev: false
- /postcss-colormin/5.3.1_postcss@8.4.21:
+ /postcss-colormin@5.3.1(postcss@8.4.21):
resolution: {integrity: sha512-UsWQG0AqTFQmpBegeLLc1+c3jIqBNB0zlDGRWR+dQ3pRKJL1oeMzyqmH3o2PIfn9MBdNrVPWhDbT769LxCTLJQ==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
@@ -6574,7 +6328,7 @@ packages:
postcss-value-parser: 4.2.0
dev: false
- /postcss-convert-values/5.1.3_postcss@8.4.21:
+ /postcss-convert-values@5.1.3(postcss@8.4.21):
resolution: {integrity: sha512-82pC1xkJZtcJEfiLw6UXnXVXScgtBrjlO5CBmuDQc+dlb88ZYheFsjTn40+zBVi3DkfF7iezO0nJUPLcJK3pvA==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
@@ -6585,7 +6339,7 @@ packages:
postcss-value-parser: 4.2.0
dev: false
- /postcss-discard-comments/5.1.2_postcss@8.4.21:
+ /postcss-discard-comments@5.1.2(postcss@8.4.21):
resolution: {integrity: sha512-+L8208OVbHVF2UQf1iDmRcbdjJkuBF6IS29yBDSiWUIzpYaAhtNl6JYnYm12FnkeCwQqF5LeklOu6rAqgfBZqQ==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
@@ -6594,7 +6348,7 @@ packages:
postcss: 8.4.21
dev: false
- /postcss-discard-duplicates/5.1.0_postcss@8.4.21:
+ /postcss-discard-duplicates@5.1.0(postcss@8.4.21):
resolution: {integrity: sha512-zmX3IoSI2aoenxHV6C7plngHWWhUOV3sP1T8y2ifzxzbtnuhk1EdPwm0S1bIUNaJ2eNbWeGLEwzw8huPD67aQw==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
@@ -6603,7 +6357,7 @@ packages:
postcss: 8.4.21
dev: false
- /postcss-discard-empty/5.1.1_postcss@8.4.21:
+ /postcss-discard-empty@5.1.1(postcss@8.4.21):
resolution: {integrity: sha512-zPz4WljiSuLWsI0ir4Mcnr4qQQ5e1Ukc3i7UfE2XcrwKK2LIPIqE5jxMRxO6GbI3cv//ztXDsXwEWT3BHOGh3A==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
@@ -6612,7 +6366,7 @@ packages:
postcss: 8.4.21
dev: false
- /postcss-discard-overridden/5.1.0_postcss@8.4.21:
+ /postcss-discard-overridden@5.1.0(postcss@8.4.21):
resolution: {integrity: sha512-21nOL7RqWR1kasIVdKs8HNqQJhFxLsyRfAnUDm4Fe4t4mCWL9OJiHvlHPjcd8zc5Myu89b/7wZDnOSjFgeWRtw==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
@@ -6621,7 +6375,7 @@ packages:
postcss: 8.4.21
dev: false
- /postcss-discard-unused/5.1.0_postcss@8.4.21:
+ /postcss-discard-unused@5.1.0(postcss@8.4.21):
resolution: {integrity: sha512-KwLWymI9hbwXmJa0dkrzpRbSJEh0vVUd7r8t0yOGPcfKzyJJxFM8kLyC5Ev9avji6nY95pOp1W6HqIrfT+0VGw==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
@@ -6631,7 +6385,7 @@ packages:
postcss-selector-parser: 6.0.11
dev: false
- /postcss-loader/7.1.0_twwyhqqim6liv4fz2ggv7g4m5a:
+ /postcss-loader@7.1.0(postcss@8.4.21)(webpack@5.76.3):
resolution: {integrity: sha512-vTD2DJ8vJD0Vr1WzMQkRZWRjcynGh3t7NeoLg+Sb1TeuK7etiZfL/ZwHbaVa3M+Qni7Lj/29voV9IggnIUjlIw==}
engines: {node: '>= 14.15.0'}
peerDependencies:
@@ -6645,18 +6399,18 @@ packages:
webpack: 5.76.3
dev: false
- /postcss-merge-idents/5.1.1_postcss@8.4.21:
+ /postcss-merge-idents@5.1.1(postcss@8.4.21):
resolution: {integrity: sha512-pCijL1TREiCoog5nQp7wUe+TUonA2tC2sQ54UGeMmryK3UFGIYKqDyjnqd6RcuI4znFn9hWSLNN8xKE/vWcUQw==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- cssnano-utils: 3.1.0_postcss@8.4.21
+ cssnano-utils: 3.1.0(postcss@8.4.21)
postcss: 8.4.21
postcss-value-parser: 4.2.0
dev: false
- /postcss-merge-longhand/5.1.7_postcss@8.4.21:
+ /postcss-merge-longhand@5.1.7(postcss@8.4.21):
resolution: {integrity: sha512-YCI9gZB+PLNskrK0BB3/2OzPnGhPkBEwmwhfYk1ilBHYVAZB7/tkTHFBAnCrvBBOmeYyMYw3DMjT55SyxMBzjQ==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
@@ -6664,10 +6418,10 @@ packages:
dependencies:
postcss: 8.4.21
postcss-value-parser: 4.2.0
- stylehacks: 5.1.1_postcss@8.4.21
+ stylehacks: 5.1.1(postcss@8.4.21)
dev: false
- /postcss-merge-rules/5.1.4_postcss@8.4.21:
+ /postcss-merge-rules@5.1.4(postcss@8.4.21):
resolution: {integrity: sha512-0R2IuYpgU93y9lhVbO/OylTtKMVcHb67zjWIfCiKR9rWL3GUk1677LAqD/BcHizukdZEjT8Ru3oHRoAYoJy44g==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
@@ -6675,12 +6429,12 @@ packages:
dependencies:
browserslist: 4.21.5
caniuse-api: 3.0.0
- cssnano-utils: 3.1.0_postcss@8.4.21
+ cssnano-utils: 3.1.0(postcss@8.4.21)
postcss: 8.4.21
postcss-selector-parser: 6.0.11
dev: false
- /postcss-minify-font-values/5.1.0_postcss@8.4.21:
+ /postcss-minify-font-values@5.1.0(postcss@8.4.21):
resolution: {integrity: sha512-el3mYTgx13ZAPPirSVsHqFzl+BBBDrXvbySvPGFnQcTI4iNslrPaFq4muTkLZmKlGk4gyFAYUBMH30+HurREyA==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
@@ -6690,31 +6444,31 @@ packages:
postcss-value-parser: 4.2.0
dev: false
- /postcss-minify-gradients/5.1.1_postcss@8.4.21:
+ /postcss-minify-gradients@5.1.1(postcss@8.4.21):
resolution: {integrity: sha512-VGvXMTpCEo4qHTNSa9A0a3D+dxGFZCYwR6Jokk+/3oB6flu2/PnPXAh2x7x52EkY5xlIHLm+Le8tJxe/7TNhzw==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
colord: 2.9.3
- cssnano-utils: 3.1.0_postcss@8.4.21
+ cssnano-utils: 3.1.0(postcss@8.4.21)
postcss: 8.4.21
postcss-value-parser: 4.2.0
dev: false
- /postcss-minify-params/5.1.4_postcss@8.4.21:
+ /postcss-minify-params@5.1.4(postcss@8.4.21):
resolution: {integrity: sha512-+mePA3MgdmVmv6g+30rn57USjOGSAyuxUmkfiWpzalZ8aiBkdPYjXWtHuwJGm1v5Ojy0Z0LaSYhHaLJQB0P8Jw==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
browserslist: 4.21.5
- cssnano-utils: 3.1.0_postcss@8.4.21
+ cssnano-utils: 3.1.0(postcss@8.4.21)
postcss: 8.4.21
postcss-value-parser: 4.2.0
dev: false
- /postcss-minify-selectors/5.2.1_postcss@8.4.21:
+ /postcss-minify-selectors@5.2.1(postcss@8.4.21):
resolution: {integrity: sha512-nPJu7OjZJTsVUmPdm2TcaiohIwxP+v8ha9NehQ2ye9szv4orirRU3SDdtUmKH+10nzn0bAyOXZ0UEr7OpvLehg==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
@@ -6724,7 +6478,7 @@ packages:
postcss-selector-parser: 6.0.11
dev: false
- /postcss-modules-extract-imports/3.0.0_postcss@8.4.21:
+ /postcss-modules-extract-imports@3.0.0(postcss@8.4.21):
resolution: {integrity: sha512-bdHleFnP3kZ4NYDhuGlVK+CMrQ/pqUm8bx/oGL93K6gVwiclvX5x0n76fYMKuIGKzlABOy13zsvqjb0f92TEXw==}
engines: {node: ^10 || ^12 || >= 14}
peerDependencies:
@@ -6733,19 +6487,19 @@ packages:
postcss: 8.4.21
dev: false
- /postcss-modules-local-by-default/4.0.0_postcss@8.4.21:
+ /postcss-modules-local-by-default@4.0.0(postcss@8.4.21):
resolution: {integrity: sha512-sT7ihtmGSF9yhm6ggikHdV0hlziDTX7oFoXtuVWeDd3hHObNkcHRo9V3yg7vCAY7cONyxJC/XXCmmiHHcvX7bQ==}
engines: {node: ^10 || ^12 || >= 14}
peerDependencies:
postcss: ^8.1.0
dependencies:
- icss-utils: 5.1.0_postcss@8.4.21
+ icss-utils: 5.1.0(postcss@8.4.21)
postcss: 8.4.21
postcss-selector-parser: 6.0.11
postcss-value-parser: 4.2.0
dev: false
- /postcss-modules-scope/3.0.0_postcss@8.4.21:
+ /postcss-modules-scope@3.0.0(postcss@8.4.21):
resolution: {integrity: sha512-hncihwFA2yPath8oZ15PZqvWGkWf+XUfQgUGamS4LqoP1anQLOsOJw0vr7J7IwLpoY9fatA2qiGUGmuZL0Iqlg==}
engines: {node: ^10 || ^12 || >= 14}
peerDependencies:
@@ -6755,17 +6509,17 @@ packages:
postcss-selector-parser: 6.0.11
dev: false
- /postcss-modules-values/4.0.0_postcss@8.4.21:
+ /postcss-modules-values@4.0.0(postcss@8.4.21):
resolution: {integrity: sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ==}
engines: {node: ^10 || ^12 || >= 14}
peerDependencies:
postcss: ^8.1.0
dependencies:
- icss-utils: 5.1.0_postcss@8.4.21
+ icss-utils: 5.1.0(postcss@8.4.21)
postcss: 8.4.21
dev: false
- /postcss-normalize-charset/5.1.0_postcss@8.4.21:
+ /postcss-normalize-charset@5.1.0(postcss@8.4.21):
resolution: {integrity: sha512-mSgUJ+pd/ldRGVx26p2wz9dNZ7ji6Pn8VWBajMXFf8jk7vUoSrZ2lt/wZR7DtlZYKesmZI680qjr2CeFF2fbUg==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
@@ -6774,7 +6528,7 @@ packages:
postcss: 8.4.21
dev: false
- /postcss-normalize-display-values/5.1.0_postcss@8.4.21:
+ /postcss-normalize-display-values@5.1.0(postcss@8.4.21):
resolution: {integrity: sha512-WP4KIM4o2dazQXWmFaqMmcvsKmhdINFblgSeRgn8BJ6vxaMyaJkwAzpPpuvSIoG/rmX3M+IrRZEz2H0glrQNEA==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
@@ -6784,7 +6538,7 @@ packages:
postcss-value-parser: 4.2.0
dev: false
- /postcss-normalize-positions/5.1.1_postcss@8.4.21:
+ /postcss-normalize-positions@5.1.1(postcss@8.4.21):
resolution: {integrity: sha512-6UpCb0G4eofTCQLFVuI3EVNZzBNPiIKcA1AKVka+31fTVySphr3VUgAIULBhxZkKgwLImhzMR2Bw1ORK+37INg==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
@@ -6794,7 +6548,7 @@ packages:
postcss-value-parser: 4.2.0
dev: false
- /postcss-normalize-repeat-style/5.1.1_postcss@8.4.21:
+ /postcss-normalize-repeat-style@5.1.1(postcss@8.4.21):
resolution: {integrity: sha512-mFpLspGWkQtBcWIRFLmewo8aC3ImN2i/J3v8YCFUwDnPu3Xz4rLohDO26lGjwNsQxB3YF0KKRwspGzE2JEuS0g==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
@@ -6804,7 +6558,7 @@ packages:
postcss-value-parser: 4.2.0
dev: false
- /postcss-normalize-string/5.1.0_postcss@8.4.21:
+ /postcss-normalize-string@5.1.0(postcss@8.4.21):
resolution: {integrity: sha512-oYiIJOf4T9T1N4i+abeIc7Vgm/xPCGih4bZz5Nm0/ARVJ7K6xrDlLwvwqOydvyL3RHNf8qZk6vo3aatiw/go3w==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
@@ -6814,7 +6568,7 @@ packages:
postcss-value-parser: 4.2.0
dev: false
- /postcss-normalize-timing-functions/5.1.0_postcss@8.4.21:
+ /postcss-normalize-timing-functions@5.1.0(postcss@8.4.21):
resolution: {integrity: sha512-DOEkzJ4SAXv5xkHl0Wa9cZLF3WCBhF3o1SKVxKQAa+0pYKlueTpCgvkFAHfk+Y64ezX9+nITGrDZeVGgITJXjg==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
@@ -6824,7 +6578,7 @@ packages:
postcss-value-parser: 4.2.0
dev: false
- /postcss-normalize-unicode/5.1.1_postcss@8.4.21:
+ /postcss-normalize-unicode@5.1.1(postcss@8.4.21):
resolution: {integrity: sha512-qnCL5jzkNUmKVhZoENp1mJiGNPcsJCs1aaRmURmeJGES23Z/ajaln+EPTD+rBeNkSryI+2WTdW+lwcVdOikrpA==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
@@ -6835,7 +6589,7 @@ packages:
postcss-value-parser: 4.2.0
dev: false
- /postcss-normalize-url/5.1.0_postcss@8.4.21:
+ /postcss-normalize-url@5.1.0(postcss@8.4.21):
resolution: {integrity: sha512-5upGeDO+PVthOxSmds43ZeMeZfKH+/DKgGRD7TElkkyS46JXAUhMzIKiCa7BabPeIy3AQcTkXwVVN7DbqsiCew==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
@@ -6846,7 +6600,7 @@ packages:
postcss-value-parser: 4.2.0
dev: false
- /postcss-normalize-whitespace/5.1.1_postcss@8.4.21:
+ /postcss-normalize-whitespace@5.1.1(postcss@8.4.21):
resolution: {integrity: sha512-83ZJ4t3NUDETIHTa3uEg6asWjSBYL5EdkVB0sDncx9ERzOKBVJIUeDO9RyA9Zwtig8El1d79HBp0JEi8wvGQnA==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
@@ -6856,18 +6610,18 @@ packages:
postcss-value-parser: 4.2.0
dev: false
- /postcss-ordered-values/5.1.3_postcss@8.4.21:
+ /postcss-ordered-values@5.1.3(postcss@8.4.21):
resolution: {integrity: sha512-9UO79VUhPwEkzbb3RNpqqghc6lcYej1aveQteWY+4POIwlqkYE21HKWaLDF6lWNuqCobEAyTovVhtI32Rbv2RQ==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- cssnano-utils: 3.1.0_postcss@8.4.21
+ cssnano-utils: 3.1.0(postcss@8.4.21)
postcss: 8.4.21
postcss-value-parser: 4.2.0
dev: false
- /postcss-reduce-idents/5.2.0_postcss@8.4.21:
+ /postcss-reduce-idents@5.2.0(postcss@8.4.21):
resolution: {integrity: sha512-BTrLjICoSB6gxbc58D5mdBK8OhXRDqud/zodYfdSi52qvDHdMwk+9kB9xsM8yJThH/sZU5A6QVSmMmaN001gIg==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
@@ -6877,7 +6631,7 @@ packages:
postcss-value-parser: 4.2.0
dev: false
- /postcss-reduce-initial/5.1.2_postcss@8.4.21:
+ /postcss-reduce-initial@5.1.2(postcss@8.4.21):
resolution: {integrity: sha512-dE/y2XRaqAi6OvjzD22pjTUQ8eOfc6m/natGHgKFBK9DxFmIm69YmaRVQrGgFlEfc1HePIurY0TmDeROK05rIg==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
@@ -6888,7 +6642,7 @@ packages:
postcss: 8.4.21
dev: false
- /postcss-reduce-transforms/5.1.0_postcss@8.4.21:
+ /postcss-reduce-transforms@5.1.0(postcss@8.4.21):
resolution: {integrity: sha512-2fbdbmgir5AvpW9RLtdONx1QoYG2/EtqpNQbFASDlixBbAYuTcJ0dECwlqNqH7VbaUnEnh8SrxOe2sRIn24XyQ==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
@@ -6898,7 +6652,7 @@ packages:
postcss-value-parser: 4.2.0
dev: false
- /postcss-selector-parser/6.0.11:
+ /postcss-selector-parser@6.0.11:
resolution: {integrity: sha512-zbARubNdogI9j7WY4nQJBiNqQf3sLS3wCP4WfOidu+p28LofJqDH1tcXypGrcmMHhDk2t9wGhCsYe/+szLTy1g==}
engines: {node: '>=4'}
dependencies:
@@ -6906,7 +6660,7 @@ packages:
util-deprecate: 1.0.2
dev: false
- /postcss-sort-media-queries/4.3.0_postcss@8.4.21:
+ /postcss-sort-media-queries@4.3.0(postcss@8.4.21):
resolution: {integrity: sha512-jAl8gJM2DvuIJiI9sL1CuiHtKM4s5aEIomkU8G3LFvbP+p8i7Sz8VV63uieTgoewGqKbi+hxBTiOKJlB35upCg==}
engines: {node: '>=10.0.0'}
peerDependencies:
@@ -6916,7 +6670,7 @@ packages:
sort-css-media-queries: 2.1.0
dev: false
- /postcss-svgo/5.1.0_postcss@8.4.21:
+ /postcss-svgo@5.1.0(postcss@8.4.21):
resolution: {integrity: sha512-D75KsH1zm5ZrHyxPakAxJWtkyXew5qwS70v56exwvw542d9CRtTo78K0WeFxZB4G7JXKKMbEZtZayTGdIky/eA==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
@@ -6927,7 +6681,7 @@ packages:
svgo: 2.8.0
dev: false
- /postcss-unique-selectors/5.1.1_postcss@8.4.21:
+ /postcss-unique-selectors@5.1.1(postcss@8.4.21):
resolution: {integrity: sha512-5JiODlELrz8L2HwxfPnhOWZYWDxVHWL83ufOv84NrcgipI7TaeRsatAhK4Tr2/ZiYldpK/wBvw5BD3qfaK96GA==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
@@ -6937,11 +6691,11 @@ packages:
postcss-selector-parser: 6.0.11
dev: false
- /postcss-value-parser/4.2.0:
+ /postcss-value-parser@4.2.0:
resolution: {integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==}
dev: false
- /postcss-zindex/5.1.0_postcss@8.4.21:
+ /postcss-zindex@5.1.0(postcss@8.4.21):
resolution: {integrity: sha512-fgFMf0OtVSBR1va1JNHYgMxYk73yhn/qb4uQDq1DLGYolz8gHCyr/sesEuGUaYs58E3ZJRcpoGuPVoB7Meiq9A==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
@@ -6950,7 +6704,7 @@ packages:
postcss: 8.4.21
dev: false
- /postcss/8.4.21:
+ /postcss@8.4.21:
resolution: {integrity: sha512-tP7u/Sn/dVxK2NnruI4H9BG+x+Wxz6oeZ1cJ8P6G/PZY0IKk4k/63TDsQf2kQq3+qoJeLm2kIBUNlZe3zgb4Zg==}
engines: {node: ^10 || ^12 || >=14}
dependencies:
@@ -6959,24 +6713,24 @@ packages:
source-map-js: 1.0.2
dev: false
- /prepend-http/2.0.0:
+ /prepend-http@2.0.0:
resolution: {integrity: sha512-ravE6m9Atw9Z/jjttRUZ+clIXogdghyZAuWJ3qEzjT+jI/dL1ifAqhZeC5VHzQp1MSt1+jxKkFNemj/iO7tVUA==}
engines: {node: '>=4'}
dev: false
- /pretty-error/4.0.0:
+ /pretty-error@4.0.0:
resolution: {integrity: sha512-AoJ5YMAcXKYxKhuJGdcvse+Voc6v1RgnsR3nWcYU7q4t6z0Q6T86sv5Zq8VIRbOWWFpvdGE83LtdSMNd+6Y0xw==}
dependencies:
lodash: 4.17.21
renderkid: 3.0.0
dev: false
- /pretty-time/1.1.0:
+ /pretty-time@1.1.0:
resolution: {integrity: sha512-28iF6xPQrP8Oa6uxE6a1biz+lWeTOAPKggvjB8HAs6nVMKZwf5bG++632Dx614hIWgUPkgivRfG+a8uAXGTIbA==}
engines: {node: '>=4'}
dev: false
- /prism-react-renderer/1.3.5_react@17.0.2:
+ /prism-react-renderer@1.3.5(react@17.0.2):
resolution: {integrity: sha512-IJ+MSwBWKG+SM3b2SUfdrhC+gu01QkV2KmRQgREThBfSQRoufqRfxfHUxpG1WcaFjP+kojcFyO9Qqtpgt3qLCg==}
peerDependencies:
react: '>=0.14.9'
@@ -6984,22 +6738,22 @@ packages:
react: 17.0.2
dev: false
- /prismjs/1.29.0:
+ /prismjs@1.29.0:
resolution: {integrity: sha512-Kx/1w86q/epKcmte75LNrEoT+lX8pBpavuAbvJWRXar7Hz8jrtF+e3vY751p0R8H9HdArwaCTNDDzHg/ScJK1Q==}
engines: {node: '>=6'}
dev: false
- /process-nextick-args/2.0.1:
+ /process-nextick-args@2.0.1:
resolution: {integrity: sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==}
dev: false
- /promise/7.3.1:
+ /promise@7.3.1:
resolution: {integrity: sha512-nolQXZ/4L+bP/UGlkfaIujX9BKxGwmQ9OT4mOt5yvy8iK1h3wqTEJCijzGANTCCl9nWjY41juyAn2K3Q1hLLTg==}
dependencies:
asap: 2.0.6
dev: false
- /prompts/2.4.2:
+ /prompts@2.4.2:
resolution: {integrity: sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==}
engines: {node: '>= 6'}
dependencies:
@@ -7007,7 +6761,7 @@ packages:
sisteransi: 1.0.5
dev: false
- /prop-types/15.8.1:
+ /prop-types@15.8.1:
resolution: {integrity: sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==}
dependencies:
loose-envify: 1.4.0
@@ -7015,13 +6769,13 @@ packages:
react-is: 16.13.1
dev: false
- /property-information/5.6.0:
+ /property-information@5.6.0:
resolution: {integrity: sha512-YUHSPk+A30YPv+0Qf8i9Mbfe/C0hdPXk1s1jPVToV8pk8BQtpw10ct89Eo7OWkutrwqvT0eicAxlOg3dOAu8JA==}
dependencies:
xtend: 4.0.2
dev: false
- /proxy-addr/2.0.7:
+ /proxy-addr@2.0.7:
resolution: {integrity: sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==}
engines: {node: '>= 0.10'}
dependencies:
@@ -7029,67 +6783,67 @@ packages:
ipaddr.js: 1.9.1
dev: false
- /pump/3.0.0:
+ /pump@3.0.0:
resolution: {integrity: sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==}
dependencies:
end-of-stream: 1.4.4
once: 1.4.0
dev: false
- /punycode/1.4.1:
+ /punycode@1.4.1:
resolution: {integrity: sha512-jmYNElW7yvO7TV33CjSmvSiE2yco3bV2czu/OzDKdMNVZQWfxCblURLhf+47syQRBntjfLdd/H0egrzIG+oaFQ==}
dev: false
- /punycode/2.3.0:
+ /punycode@2.3.0:
resolution: {integrity: sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA==}
engines: {node: '>=6'}
dev: false
- /pupa/2.1.1:
+ /pupa@2.1.1:
resolution: {integrity: sha512-l1jNAspIBSFqbT+y+5FosojNpVpF94nlI+wDUpqP9enwOTfHx9f0gh5nB96vl+6yTpsJsypeNrwfzPrKuHB41A==}
engines: {node: '>=8'}
dependencies:
escape-goat: 2.1.1
dev: false
- /pure-color/1.3.0:
+ /pure-color@1.3.0:
resolution: {integrity: sha512-QFADYnsVoBMw1srW7OVKEYjG+MbIa49s54w1MA1EDY6r2r/sTcKKYqRX1f4GYvnXP7eN/Pe9HFcX+hwzmrXRHA==}
dev: false
- /qs/6.11.0:
+ /qs@6.11.0:
resolution: {integrity: sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==}
engines: {node: '>=0.6'}
dependencies:
side-channel: 1.0.4
dev: false
- /queue-microtask/1.2.3:
+ /queue-microtask@1.2.3:
resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==}
dev: false
- /queue/6.0.2:
+ /queue@6.0.2:
resolution: {integrity: sha512-iHZWu+q3IdFZFX36ro/lKBkSvfkztY5Y7HMiPlOUjhupPcG2JMfst2KKEpu5XndviX/3UhFbRngUPNKtgvtZiA==}
dependencies:
inherits: 2.0.4
dev: false
- /randombytes/2.1.0:
+ /randombytes@2.1.0:
resolution: {integrity: sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==}
dependencies:
safe-buffer: 5.2.1
dev: false
- /range-parser/1.2.0:
+ /range-parser@1.2.0:
resolution: {integrity: sha512-kA5WQoNVo4t9lNx2kQNFCxKeBl5IbbSNBl1M/tLkw9WCn+hxNBAW5Qh8gdhs63CJnhjJ2zQWFoqPJP2sK1AV5A==}
engines: {node: '>= 0.6'}
dev: false
- /range-parser/1.2.1:
+ /range-parser@1.2.1:
resolution: {integrity: sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==}
engines: {node: '>= 0.6'}
dev: false
- /raw-body/2.5.1:
+ /raw-body@2.5.1:
resolution: {integrity: sha512-qqJBtEyVgS0ZmPGdCFPWJ3FreoqvG4MVQln/kCgF7Olq95IbOp0/BWyMwbdtn4VTvkM8Y7khCQ2Xgk/tcrCXig==}
engines: {node: '>= 0.8'}
dependencies:
@@ -7099,9 +6853,8 @@ packages:
unpipe: 1.0.0
dev: false
- /rc/1.2.8:
+ /rc@1.2.8:
resolution: {integrity: sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==}
- hasBin: true
dependencies:
deep-extend: 0.6.0
ini: 1.3.8
@@ -7109,7 +6862,7 @@ packages:
strip-json-comments: 2.0.1
dev: false
- /react-base16-styling/0.6.0:
+ /react-base16-styling@0.6.0:
resolution: {integrity: sha512-yvh/7CArceR/jNATXOKDlvTnPKPmGZz7zsenQ3jUwLzHkNUR0CvY3yGYJbWJ/nnxsL8Sgmt5cO3/SILVuPO6TQ==}
dependencies:
base16: 1.0.0
@@ -7118,7 +6871,7 @@ packages:
pure-color: 1.3.0
dev: false
- /react-dev-utils/12.0.1_3x6qlapdvvaw2noz63esh63n6e:
+ /react-dev-utils@12.0.1(typescript@5.0.2)(webpack@5.76.3):
resolution: {integrity: sha512-84Ivxmr17KjUupyqzFode6xKhjwuEJDROWKJy/BthkL7Wn6NJ8h4WE6k/exAv6ImS+0oZLRRW5j/aINMHyeGeQ==}
engines: {node: '>=14'}
peerDependencies:
@@ -7137,7 +6890,7 @@ packages:
escape-string-regexp: 4.0.0
filesize: 8.0.7
find-up: 5.0.0
- fork-ts-checker-webpack-plugin: 6.5.3_3x6qlapdvvaw2noz63esh63n6e
+ fork-ts-checker-webpack-plugin: 6.5.3(typescript@5.0.2)(webpack@5.76.3)
global-modules: 2.0.0
globby: 11.1.0
gzip-size: 6.0.0
@@ -7160,7 +6913,7 @@ packages:
- vue-template-compiler
dev: false
- /react-dom/17.0.2_react@17.0.2:
+ /react-dom@17.0.2(react@17.0.2):
resolution: {integrity: sha512-s4h96KtLDUQlsENhMn1ar8t2bEa+q/YAtj8pPPdIjPDGBDIVNsrD9aXNWqspUe6AzKCIG0C1HZZLqLV7qpOBGA==}
peerDependencies:
react: 17.0.2
@@ -7171,15 +6924,15 @@ packages:
scheduler: 0.20.2
dev: false
- /react-error-overlay/6.0.11:
+ /react-error-overlay@6.0.11:
resolution: {integrity: sha512-/6UZ2qgEyH2aqzYZgQPxEnz33NJ2gNsnHA2o5+o4wW9bLM/JYQitNP9xPhsXwC08hMMovfGe/8retsdDsczPRg==}
dev: false
- /react-fast-compare/3.2.1:
+ /react-fast-compare@3.2.1:
resolution: {integrity: sha512-xTYf9zFim2pEif/Fw16dBiXpe0hoy5PxcD8+OwBnTtNLfIm3g6WxhKNurY+6OmdH1u6Ta/W/Vl6vjbYP1MFnDg==}
dev: false
- /react-helmet-async/1.3.0_sfoxds7t5ydpegc3knd667wn6m:
+ /react-helmet-async@1.3.0(react-dom@17.0.2)(react@17.0.2):
resolution: {integrity: sha512-9jZ57/dAn9t3q6hneQS0wukqC2ENOBgMNVEhb/ZG9ZSxUetzVIw4iAmEU38IaVg3QGYauQPhSeUTuIUtFglWpg==}
peerDependencies:
react: ^16.6.0 || ^17.0.0 || ^18.0.0
@@ -7189,37 +6942,37 @@ packages:
invariant: 2.2.4
prop-types: 15.8.1
react: 17.0.2
- react-dom: 17.0.2_react@17.0.2
+ react-dom: 17.0.2(react@17.0.2)
react-fast-compare: 3.2.1
shallowequal: 1.1.0
dev: false
- /react-is/16.13.1:
+ /react-is@16.13.1:
resolution: {integrity: sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==}
dev: false
- /react-json-view/1.21.3_sk3eihvpffgp52mstba5zhq3vu:
+ /react-json-view@1.21.3(@types/react@17.0.48)(react-dom@17.0.2)(react@17.0.2):
resolution: {integrity: sha512-13p8IREj9/x/Ye4WI/JpjhoIwuzEgUAtgJZNBJckfzJt1qyh24BdTm6UQNGnyTq9dapQdrqvquZTo3dz1X6Cjw==}
peerDependencies:
react: ^17.0.0 || ^16.3.0 || ^15.5.4
react-dom: ^17.0.0 || ^16.3.0 || ^15.5.4
dependencies:
- flux: 4.0.4_react@17.0.2
+ flux: 4.0.4(react@17.0.2)
react: 17.0.2
react-base16-styling: 0.6.0
- react-dom: 17.0.2_react@17.0.2
+ react-dom: 17.0.2(react@17.0.2)
react-lifecycles-compat: 3.0.4
- react-textarea-autosize: 8.4.1_skqlhrap4das3cz5b6iqdn2lqi
+ react-textarea-autosize: 8.4.1(@types/react@17.0.48)(react@17.0.2)
transitivePeerDependencies:
- '@types/react'
- encoding
dev: false
- /react-lifecycles-compat/3.0.4:
+ /react-lifecycles-compat@3.0.4:
resolution: {integrity: sha512-fBASbA6LnOU9dOU2eW7aQ8xmYBSXUIWr+UmF9b1efZBazGNO+rcXT/icdKnYm2pTwcRylVUYwW7H1PHfLekVzA==}
dev: false
- /react-loadable-ssr-addon-v5-slorber/1.0.1_r7pi7vlw6nkfjbr5epugnhqe3u:
+ /react-loadable-ssr-addon-v5-slorber@1.0.1(@docusaurus/react-loadable@5.5.2)(webpack@5.76.3):
resolution: {integrity: sha512-lq3Lyw1lGku8zUEJPDxsNm1AfYHBrO9Y1+olAYwpUJ2IGFBskM0DMKok97A6LWUpHm+o7IvQBOWu9MLenp9Z+A==}
engines: {node: '>=10.13.0'}
peerDependencies:
@@ -7227,11 +6980,11 @@ packages:
webpack: '>=4.41.1 || 5.x'
dependencies:
'@babel/runtime': 7.21.0
- react-loadable: /@docusaurus/react-loadable/5.5.2_react@17.0.2
+ react-loadable: /@docusaurus/react-loadable@5.5.2(react@17.0.2)
webpack: 5.76.3
dev: false
- /react-router-config/5.1.1_2dl5roaqnyqqppnjni7uetnb3a:
+ /react-router-config@5.1.1(react-router@5.3.4)(react@17.0.2):
resolution: {integrity: sha512-DuanZjaD8mQp1ppHjgnnUnyOlqYXZVjnov/JzFhjLEwd3Z4dYjMSnqrEzzGThH47vpCOqPPwJM2FtthLeJ8Pbg==}
peerDependencies:
react: '>=15'
@@ -7239,10 +6992,10 @@ packages:
dependencies:
'@babel/runtime': 7.21.0
react: 17.0.2
- react-router: 5.3.4_react@17.0.2
+ react-router: 5.3.4(react@17.0.2)
dev: false
- /react-router-dom/5.3.4_react@17.0.2:
+ /react-router-dom@5.3.4(react@17.0.2):
resolution: {integrity: sha512-m4EqFMHv/Ih4kpcBCONHbkT68KoAeHN4p3lAGoNryfHi0dMy0kCzEZakiKRsvg5wHZ/JLrLW8o8KomWiz/qbYQ==}
peerDependencies:
react: '>=15'
@@ -7252,12 +7005,12 @@ packages:
loose-envify: 1.4.0
prop-types: 15.8.1
react: 17.0.2
- react-router: 5.3.4_react@17.0.2
+ react-router: 5.3.4(react@17.0.2)
tiny-invariant: 1.3.1
tiny-warning: 1.0.3
dev: false
- /react-router/5.3.4_react@17.0.2:
+ /react-router@5.3.4(react@17.0.2):
resolution: {integrity: sha512-Ys9K+ppnJah3QuaRiLxk+jDWOR1MekYQrlytiXxC1RyfbdsZkS5pvKAzCCr031xHixZwpnsYNT5xysdFHQaYsA==}
peerDependencies:
react: '>=15'
@@ -7274,7 +7027,7 @@ packages:
tiny-warning: 1.0.3
dev: false
- /react-textarea-autosize/8.4.1_skqlhrap4das3cz5b6iqdn2lqi:
+ /react-textarea-autosize@8.4.1(@types/react@17.0.48)(react@17.0.2):
resolution: {integrity: sha512-aD2C+qK6QypknC+lCMzteOdIjoMbNlgSFmJjCV+DrfTPwp59i/it9mMNf2HDzvRjQgKAyBDPyLJhcrzElf2U4Q==}
engines: {node: '>=10'}
peerDependencies:
@@ -7282,13 +7035,13 @@ packages:
dependencies:
'@babel/runtime': 7.21.0
react: 17.0.2
- use-composed-ref: 1.3.0_react@17.0.2
- use-latest: 1.2.1_skqlhrap4das3cz5b6iqdn2lqi
+ use-composed-ref: 1.3.0(react@17.0.2)
+ use-latest: 1.2.1(@types/react@17.0.48)(react@17.0.2)
transitivePeerDependencies:
- '@types/react'
dev: false
- /react/17.0.2:
+ /react@17.0.2:
resolution: {integrity: sha512-gnhPt75i/dq/z3/6q/0asP78D0u592D5L1pd7M8P+dck6Fu/jJeL6iVVK23fptSUZj8Vjf++7wXA8UNclGQcbA==}
engines: {node: '>=0.10.0'}
dependencies:
@@ -7296,7 +7049,7 @@ packages:
object-assign: 4.1.1
dev: false
- /readable-stream/2.3.8:
+ /readable-stream@2.3.8:
resolution: {integrity: sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==}
dependencies:
core-util-is: 1.0.3
@@ -7308,7 +7061,7 @@ packages:
util-deprecate: 1.0.2
dev: false
- /readable-stream/3.6.2:
+ /readable-stream@3.6.2:
resolution: {integrity: sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==}
engines: {node: '>= 6'}
dependencies:
@@ -7317,53 +7070,53 @@ packages:
util-deprecate: 1.0.2
dev: false
- /readdirp/3.6.0:
+ /readdirp@3.6.0:
resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==}
engines: {node: '>=8.10.0'}
dependencies:
picomatch: 2.3.1
dev: false
- /reading-time/1.5.0:
+ /reading-time@1.5.0:
resolution: {integrity: sha512-onYyVhBNr4CmAxFsKS7bz+uTLRakypIe4R+5A824vBSkQy/hB3fZepoVEf8OVAxzLvK+H/jm9TzpI3ETSm64Kg==}
dev: false
- /rechoir/0.6.2:
+ /rechoir@0.6.2:
resolution: {integrity: sha512-HFM8rkZ+i3zrV+4LQjwQ0W+ez98pApMGM3HUrN04j3CqzPOzl9nmP15Y8YXNm8QHGv/eacOVEjqhmWpkRV0NAw==}
engines: {node: '>= 0.10'}
dependencies:
resolve: 1.22.1
dev: false
- /recursive-readdir/2.2.3:
+ /recursive-readdir@2.2.3:
resolution: {integrity: sha512-8HrF5ZsXk5FAH9dgsx3BlUer73nIhuj+9OrQwEbLTPOBzGkL1lsFCR01am+v+0m2Cmbs1nP12hLDl5FA7EszKA==}
engines: {node: '>=6.0.0'}
dependencies:
minimatch: 3.1.2
dev: false
- /regenerate-unicode-properties/10.1.0:
+ /regenerate-unicode-properties@10.1.0:
resolution: {integrity: sha512-d1VudCLoIGitcU/hEg2QqvyGZQmdC0Lf8BqdOMXGFSvJP4bNV1+XqbPQeHHLD51Jh4QJJ225dlIFvY4Ly6MXmQ==}
engines: {node: '>=4'}
dependencies:
regenerate: 1.4.2
dev: false
- /regenerate/1.4.2:
+ /regenerate@1.4.2:
resolution: {integrity: sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==}
dev: false
- /regenerator-runtime/0.13.11:
+ /regenerator-runtime@0.13.11:
resolution: {integrity: sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==}
dev: false
- /regenerator-transform/0.15.1:
+ /regenerator-transform@0.15.1:
resolution: {integrity: sha512-knzmNAcuyxV+gQCufkYcvOqX/qIIfHLv0u5x79kRxuGojfYVky1f15TzZEu2Avte8QGepvUNTnLskf8E6X6Vyg==}
dependencies:
'@babel/runtime': 7.21.0
dev: false
- /regexpu-core/5.3.2:
+ /regexpu-core@5.3.2:
resolution: {integrity: sha512-RAM5FlZz+Lhmo7db9L298p2vHP5ZywrVXmVXpmAD9GuL5MPH6t9ROw1iA/wfHkQ76Qe7AaPF0nGuim96/IrQMQ==}
engines: {node: '>=4'}
dependencies:
@@ -7375,33 +7128,32 @@ packages:
unicode-match-property-value-ecmascript: 2.1.0
dev: false
- /registry-auth-token/4.2.2:
+ /registry-auth-token@4.2.2:
resolution: {integrity: sha512-PC5ZysNb42zpFME6D/XlIgtNGdTl8bBOCw90xQLVMpzuuubJKYDWFAEuUNc+Cn8Z8724tg2SDhDRrkVEsqfDMg==}
engines: {node: '>=6.0.0'}
dependencies:
rc: 1.2.8
dev: false
- /registry-url/5.1.0:
+ /registry-url@5.1.0:
resolution: {integrity: sha512-8acYXXTI0AkQv6RAOjE3vOaIXZkT9wo4LOFbBKYQEEnnMNBpKqdUrI6S4NT0KPIo/WVvJ5tE/X5LF/TQUf0ekw==}
engines: {node: '>=8'}
dependencies:
rc: 1.2.8
dev: false
- /regjsparser/0.9.1:
+ /regjsparser@0.9.1:
resolution: {integrity: sha512-dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ==}
- hasBin: true
dependencies:
jsesc: 0.5.0
dev: false
- /relateurl/0.2.7:
+ /relateurl@0.2.7:
resolution: {integrity: sha512-G08Dxvm4iDN3MLM0EsP62EDV9IuhXPR6blNz6Utcp7zyV3tr4HVNINt6MpaRWbxoOHT3Q7YN2P+jaHX8vUbgog==}
engines: {node: '>= 0.10'}
dev: false
- /remark-emoji/2.2.0:
+ /remark-emoji@2.2.0:
resolution: {integrity: sha512-P3cj9s5ggsUvWw5fS2uzCHJMGuXYRb0NnZqYlNecewXt8QBU9n5vW3DUUKOhepS8F9CwdMx9B8a3i7pqFWAI5w==}
dependencies:
emoticon: 3.2.0
@@ -7409,17 +7161,17 @@ packages:
unist-util-visit: 2.0.3
dev: false
- /remark-footnotes/2.0.0:
+ /remark-footnotes@2.0.0:
resolution: {integrity: sha512-3Clt8ZMH75Ayjp9q4CorNeyjwIxHFcTkaektplKGl2A1jNGEUey8cKL0ZC5vJwfcD5GFGsNLImLG/NGzWIzoMQ==}
dev: false
- /remark-mdx/1.6.22:
+ /remark-mdx@1.6.22:
resolution: {integrity: sha512-phMHBJgeV76uyFkH4rvzCftLfKCr2RZuF+/gmVcaKrpsihyzmhXjA0BEMDaPTXG5y8qZOKPVo83NAOX01LPnOQ==}
dependencies:
'@babel/core': 7.12.9
'@babel/helper-plugin-utils': 7.10.4
- '@babel/plugin-proposal-object-rest-spread': 7.12.1_@babel+core@7.12.9
- '@babel/plugin-syntax-jsx': 7.12.1_@babel+core@7.12.9
+ '@babel/plugin-proposal-object-rest-spread': 7.12.1(@babel/core@7.12.9)
+ '@babel/plugin-syntax-jsx': 7.12.1(@babel/core@7.12.9)
'@mdx-js/util': 1.6.22
is-alphabetical: 1.0.4
remark-parse: 8.0.3
@@ -7428,7 +7180,7 @@ packages:
- supports-color
dev: false
- /remark-parse/8.0.3:
+ /remark-parse@8.0.3:
resolution: {integrity: sha512-E1K9+QLGgggHxCQtLt++uXltxEprmWzNfg+MxpfHsZlrddKzZ/hZyWHDbK3/Ap8HJQqYJRXP+jHczdL6q6i85Q==}
dependencies:
ccount: 1.1.0
@@ -7449,13 +7201,13 @@ packages:
xtend: 4.0.2
dev: false
- /remark-squeeze-paragraphs/4.0.0:
+ /remark-squeeze-paragraphs@4.0.0:
resolution: {integrity: sha512-8qRqmL9F4nuLPIgl92XUuxI3pFxize+F1H0e/W3llTk0UsjJaj01+RrirkMw7P21RKe4X6goQhYRSvNWX+70Rw==}
dependencies:
mdast-squeeze-paragraphs: 4.0.0
dev: false
- /renderkid/3.0.0:
+ /renderkid@3.0.0:
resolution: {integrity: sha512-q/7VIQA8lmM1hF+jn+sFSPWGlMkSAeNYcPLmDQx2zzuiDfaLrOmumR8iaUKlenFgh0XRPIUeSPlH3A+AW3Z5pg==}
dependencies:
css-select: 4.3.0
@@ -7465,72 +7217,69 @@ packages:
strip-ansi: 6.0.1
dev: false
- /repeat-string/1.6.1:
+ /repeat-string@1.6.1:
resolution: {integrity: sha512-PV0dzCYDNfRi1jCDbJzpW7jNNDRuCOG/jI5ctQcGKt/clZD+YcPS3yIlWuTJMmESC8aevCFmWJy5wjAFgNqN6w==}
engines: {node: '>=0.10'}
dev: false
- /require-from-string/2.0.2:
+ /require-from-string@2.0.2:
resolution: {integrity: sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==}
engines: {node: '>=0.10.0'}
dev: false
- /require-like/0.1.2:
+ /require-like@0.1.2:
resolution: {integrity: sha512-oyrU88skkMtDdauHDuKVrgR+zuItqr6/c//FXzvmxRGMexSDc6hNvJInGW3LL46n+8b50RykrvwSUIIQH2LQ5A==}
dev: false
- /requires-port/1.0.0:
+ /requires-port@1.0.0:
resolution: {integrity: sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==}
dev: false
- /resolve-from/4.0.0:
+ /resolve-from@4.0.0:
resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==}
engines: {node: '>=4'}
dev: false
- /resolve-pathname/3.0.0:
+ /resolve-pathname@3.0.0:
resolution: {integrity: sha512-C7rARubxI8bXFNB/hqcp/4iUeIXJhJZvFPFPiSPRnhU5UPxzMFIl+2E6yY6c4k9giDJAhtV+enfA+G89N6Csng==}
dev: false
- /resolve/1.22.1:
+ /resolve@1.22.1:
resolution: {integrity: sha512-nBpuuYuY5jFsli/JIs1oldw6fOQCBioohqWZg/2hiaOybXOft4lonv85uDOKXdf8rhyK159cxU5cDcK/NKk8zw==}
- hasBin: true
dependencies:
is-core-module: 2.11.0
path-parse: 1.0.7
supports-preserve-symlinks-flag: 1.0.0
dev: false
- /responselike/1.0.2:
+ /responselike@1.0.2:
resolution: {integrity: sha512-/Fpe5guzJk1gPqdJLJR5u7eG/gNY4nImjbRDaVWVMRhne55TCmj2i9Q+54PBRfatRC8v/rIiv9BN0pMd9OV5EQ==}
dependencies:
lowercase-keys: 1.0.1
dev: false
- /retry/0.13.1:
+ /retry@0.13.1:
resolution: {integrity: sha512-XQBQ3I8W1Cge0Seh+6gjj03LbmRFWuoszgK9ooCpwYIrhhoO80pfq4cUkU5DkknwfOfFteRwlZ56PYOGYyFWdg==}
engines: {node: '>= 4'}
dev: false
- /reusify/1.0.4:
+ /reusify@1.0.4:
resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==}
engines: {iojs: '>=1.0.0', node: '>=0.10.0'}
dev: false
- /rimraf/3.0.2:
+ /rimraf@3.0.2:
resolution: {integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==}
- hasBin: true
dependencies:
glob: 7.2.3
dev: false
- /rtl-detect/1.0.4:
+ /rtl-detect@1.0.4:
resolution: {integrity: sha512-EBR4I2VDSSYr7PkBmFy04uhycIpDKp+21p/jARYXlCSjQksTBQcJ0HFUPOO79EPPH5JS6VAhiIQbycf0O3JAxQ==}
dev: false
- /rtlcss/3.5.0:
+ /rtlcss@3.5.0:
resolution: {integrity: sha512-wzgMaMFHQTnyi9YOwsx9LjOxYXJPzS8sYnFaKm6R5ysvTkwzHiB0vxnbHwchHQT65PTdBjDG21/kQBWI7q9O7A==}
- hasBin: true
dependencies:
find-up: 5.0.0
picocolors: 1.0.0
@@ -7538,31 +7287,31 @@ packages:
strip-json-comments: 3.1.1
dev: false
- /run-parallel/1.2.0:
+ /run-parallel@1.2.0:
resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==}
dependencies:
queue-microtask: 1.2.3
dev: false
- /rxjs/7.8.0:
+ /rxjs@7.8.0:
resolution: {integrity: sha512-F2+gxDshqmIub1KdvZkaEfGDwLNpPvk9Fs6LD/MyQxNgMds/WH9OdDDXOmxUZpME+iSK3rQCctkL0DYyytUqMg==}
dependencies:
tslib: 2.5.0
dev: false
- /safe-buffer/5.1.2:
+ /safe-buffer@5.1.2:
resolution: {integrity: sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==}
dev: false
- /safe-buffer/5.2.1:
+ /safe-buffer@5.2.1:
resolution: {integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==}
dev: false
- /safer-buffer/2.1.2:
+ /safer-buffer@2.1.2:
resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==}
dev: false
- /sass-loader/10.4.1_sass@1.59.3+webpack@5.76.3:
+ /sass-loader@10.4.1(sass@1.59.3)(webpack@5.76.3):
resolution: {integrity: sha512-aX/iJZTTpNUNx/OSYzo2KsjIUQHqvWsAhhUijFjAPdZTEhstjZI9zTNvkTTwsx+uNUJqUwOw5gacxQMx4hJxGQ==}
engines: {node: '>= 10.13.0'}
peerDependencies:
@@ -7587,7 +7336,7 @@ packages:
webpack: 5.76.3
dev: false
- /sass-loader/13.2.1_sass@1.59.3+webpack@5.76.3:
+ /sass-loader@13.2.1(sass@1.59.3)(webpack@5.76.3):
resolution: {integrity: sha512-VQUrgUa5/waIzMrzyuko3sj5WD9NMsYph91cNICx+OaODbRtLl6To2fswLx8MH2qNxXFqRtpvdPQIa7mE93YOA==}
engines: {node: '>= 14.15.0'}
peerDependencies:
@@ -7612,65 +7361,64 @@ packages:
webpack: 5.76.3
dev: false
- /sass/1.59.3:
+ /sass@1.59.3:
resolution: {integrity: sha512-QCq98N3hX1jfTCoUAsF3eyGuXLsY7BCnCEg9qAact94Yc21npG2/mVOqoDvE0fCbWDqiM4WlcJQla0gWG2YlxQ==}
engines: {node: '>=12.0.0'}
- hasBin: true
dependencies:
chokidar: 3.5.3
immutable: 4.3.0
source-map-js: 1.0.2
dev: false
- /sax/1.2.4:
+ /sax@1.2.4:
resolution: {integrity: sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==}
dev: false
- /scheduler/0.20.2:
+ /scheduler@0.20.2:
resolution: {integrity: sha512-2eWfGgAqqWFGqtdMmcL5zCMK1U8KlXv8SQFGglL3CEtd0aDVDWgeF/YoCmvln55m5zSk3J/20hTaSBeSObsQDQ==}
dependencies:
loose-envify: 1.4.0
object-assign: 4.1.1
dev: false
- /schema-utils/2.7.0:
+ /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
+ ajv-keywords: 3.5.2(ajv@6.12.6)
dev: false
- /schema-utils/2.7.1:
+ /schema-utils@2.7.1:
resolution: {integrity: sha512-SHiNtMOUGWBQJwzISiVYKu82GiV4QYGePp3odlY1tuKO7gPtphAT5R/py0fA6xtbgLL/RvtJZnU9b8s0F1q0Xg==}
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
+ ajv-keywords: 3.5.2(ajv@6.12.6)
dev: false
- /schema-utils/3.1.1:
+ /schema-utils@3.1.1:
resolution: {integrity: sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw==}
engines: {node: '>= 10.13.0'}
dependencies:
'@types/json-schema': 7.0.11
ajv: 6.12.6
- ajv-keywords: 3.5.2_ajv@6.12.6
+ ajv-keywords: 3.5.2(ajv@6.12.6)
dev: false
- /schema-utils/4.0.0:
+ /schema-utils@4.0.0:
resolution: {integrity: sha512-1edyXKgh6XnJsJSQ8mKWXnN/BVaIbFMLpouRUrXgVq7WYne5kw3MW7UPhO44uRXQSIpTSXoJbmrR2X0w9kUTyg==}
engines: {node: '>= 12.13.0'}
dependencies:
'@types/json-schema': 7.0.11
ajv: 8.12.0
- ajv-formats: 2.1.1
- ajv-keywords: 5.1.0_ajv@8.12.0
+ ajv-formats: 2.1.1(ajv@8.12.0)
+ ajv-keywords: 5.1.0(ajv@8.12.0)
dev: false
- /section-matter/1.0.0:
+ /section-matter@1.0.0:
resolution: {integrity: sha512-vfD3pmTzGpufjScBh50YHKzEu2lxBWhVEHsNGoEXmCmn2hKGfeNLYMzCJpe8cD7gqX7TJluOVpBkAequ6dgMmA==}
engines: {node: '>=4'}
dependencies:
@@ -7678,43 +7426,40 @@ packages:
kind-of: 6.0.3
dev: false
- /select-hose/2.0.0:
+ /select-hose@2.0.0:
resolution: {integrity: sha512-mEugaLK+YfkijB4fx0e6kImuJdCIt2LxCRcbEYPqRGCs4F2ogyfZU5IAZRdjCP8JPq2AtdNoC/Dux63d9Kiryg==}
dev: false
- /selfsigned/2.1.1:
+ /selfsigned@2.1.1:
resolution: {integrity: sha512-GSL3aowiF7wa/WtSFwnUrludWFoNhftq8bUkH9pkzjpN2XSPOAYEgg6e0sS9s0rZwgJzJiQRPU18A6clnoW5wQ==}
engines: {node: '>=10'}
dependencies:
node-forge: 1.3.1
dev: false
- /semver-diff/3.1.1:
+ /semver-diff@3.1.1:
resolution: {integrity: sha512-GX0Ix/CJcHyB8c4ykpHGIAvLyOwOobtM/8d+TQkAd81/bEjgPHrfba41Vpesr7jX/t8Uh+R3EX9eAS5be+jQYg==}
engines: {node: '>=8'}
dependencies:
semver: 6.3.0
dev: false
- /semver/5.7.1:
+ /semver@5.7.1:
resolution: {integrity: sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==}
- hasBin: true
dev: false
- /semver/6.3.0:
+ /semver@6.3.0:
resolution: {integrity: sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==}
- hasBin: true
dev: false
- /semver/7.3.8:
+ /semver@7.3.8:
resolution: {integrity: sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A==}
engines: {node: '>=10'}
- hasBin: true
dependencies:
lru-cache: 6.0.0
dev: false
- /send/0.18.0:
+ /send@0.18.0:
resolution: {integrity: sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==}
engines: {node: '>= 0.8.0'}
dependencies:
@@ -7735,13 +7480,13 @@ packages:
- supports-color
dev: false
- /serialize-javascript/6.0.1:
+ /serialize-javascript@6.0.1:
resolution: {integrity: sha512-owoXEFjWRllis8/M1Q+Cw5k8ZH40e3zhp/ovX+Xr/vi1qj6QesbyXXViFbpNvWvPNAD62SutwEXavefrLJWj7w==}
dependencies:
randombytes: 2.1.0
dev: false
- /serve-handler/6.1.5:
+ /serve-handler@6.1.5:
resolution: {integrity: sha512-ijPFle6Hwe8zfmBxJdE+5fta53fdIY0lHISJvuikXB3VYFafRjMRpOffSPvCYsbKyBA7pvy9oYr/BT1O3EArlg==}
dependencies:
bytes: 3.0.0
@@ -7754,7 +7499,7 @@ packages:
range-parser: 1.2.0
dev: false
- /serve-index/1.9.1:
+ /serve-index@1.9.1:
resolution: {integrity: sha512-pXHfKNP4qujrtteMrSBb0rc8HJ9Ms/GrXwcUtUtD5s4ewDJI8bT3Cz2zTVRMKtri49pLx2e0Ya8ziP5Ya2pZZw==}
engines: {node: '>= 0.8.0'}
dependencies:
@@ -7769,7 +7514,7 @@ packages:
- supports-color
dev: false
- /serve-static/1.15.0:
+ /serve-static@1.15.0:
resolution: {integrity: sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==}
engines: {node: '>= 0.8.0'}
dependencies:
@@ -7781,56 +7526,55 @@ packages:
- supports-color
dev: false
- /setimmediate/1.0.5:
+ /setimmediate@1.0.5:
resolution: {integrity: sha512-MATJdZp8sLqDl/68LfQmbP8zKPLQNV6BIZoIgrscFDQ+RsvK/BxeDQOgyxKKoh0y/8h3BqVFnCqQ/gd+reiIXA==}
dev: false
- /setprototypeof/1.1.0:
+ /setprototypeof@1.1.0:
resolution: {integrity: sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==}
dev: false
- /setprototypeof/1.2.0:
+ /setprototypeof@1.2.0:
resolution: {integrity: sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==}
dev: false
- /shallow-clone/3.0.1:
+ /shallow-clone@3.0.1:
resolution: {integrity: sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA==}
engines: {node: '>=8'}
dependencies:
kind-of: 6.0.3
dev: false
- /shallowequal/1.1.0:
+ /shallowequal@1.1.0:
resolution: {integrity: sha512-y0m1JoUZSlPAjXVtPPW70aZWfIL/dSP7AFkRnniLCrK/8MDKog3TySTBmckD+RObVxH0v4Tox67+F14PdED2oQ==}
dev: false
- /shebang-command/2.0.0:
+ /shebang-command@2.0.0:
resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==}
engines: {node: '>=8'}
dependencies:
shebang-regex: 3.0.0
dev: false
- /shebang-regex/3.0.0:
+ /shebang-regex@3.0.0:
resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==}
engines: {node: '>=8'}
dev: false
- /shell-quote/1.8.0:
+ /shell-quote@1.8.0:
resolution: {integrity: sha512-QHsz8GgQIGKlRi24yFc6a6lN69Idnx634w49ay6+jA5yFh7a1UY+4Rp6HPx/L/1zcEDPEij8cIsiqR6bQsE5VQ==}
dev: false
- /shelljs/0.8.5:
+ /shelljs@0.8.5:
resolution: {integrity: sha512-TiwcRcrkhHvbrZbnRcFYMLl30Dfov3HKqzp5tO5b4pt6G/SezKcYhmDg15zXVBswHmctSAQKznqNW2LO5tTDow==}
engines: {node: '>=4'}
- hasBin: true
dependencies:
glob: 7.2.3
interpret: 1.4.0
rechoir: 0.6.2
dev: false
- /side-channel/1.0.4:
+ /side-channel@1.0.4:
resolution: {integrity: sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==}
dependencies:
call-bind: 1.0.2
@@ -7838,11 +7582,11 @@ packages:
object-inspect: 1.12.3
dev: false
- /signal-exit/3.0.7:
+ /signal-exit@3.0.7:
resolution: {integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==}
dev: false
- /sirv/1.0.19:
+ /sirv@1.0.19:
resolution: {integrity: sha512-JuLThK3TnZG1TAKDwNIqNq6QA2afLOCcm+iE8D1Kj3GA40pSPsxQjjJl0J8X3tsR7T+CP1GavpzLwYkgVLWrZQ==}
engines: {node: '>= 10'}
dependencies:
@@ -7851,14 +7595,13 @@ packages:
totalist: 1.1.0
dev: false
- /sisteransi/1.0.5:
+ /sisteransi@1.0.5:
resolution: {integrity: sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==}
dev: false
- /sitemap/7.1.1:
+ /sitemap@7.1.1:
resolution: {integrity: sha512-mK3aFtjz4VdJN0igpIJrinf3EO8U8mxOPsTBzSsy06UtjZQJ3YY3o3Xa7zSc5nMqcMrRwlChHZ18Kxg0caiPBg==}
engines: {node: '>=12.0.0', npm: '>=5.6.0'}
- hasBin: true
dependencies:
'@types/node': 17.0.45
'@types/sax': 1.2.4
@@ -7866,17 +7609,17 @@ packages:
sax: 1.2.4
dev: false
- /slash/3.0.0:
+ /slash@3.0.0:
resolution: {integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==}
engines: {node: '>=8'}
dev: false
- /slash/4.0.0:
+ /slash@4.0.0:
resolution: {integrity: sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew==}
engines: {node: '>=12'}
dev: false
- /sockjs/0.3.24:
+ /sockjs@0.3.24:
resolution: {integrity: sha512-GJgLTZ7vYb/JtPSSZ10hsOYIvEYsjbNU+zPdIHcUaWVNUEPivzxku31865sSSud0Da0W4lEeOPlmw93zLQchuQ==}
dependencies:
faye-websocket: 0.11.4
@@ -7884,38 +7627,38 @@ packages:
websocket-driver: 0.7.4
dev: false
- /sort-css-media-queries/2.1.0:
+ /sort-css-media-queries@2.1.0:
resolution: {integrity: sha512-IeWvo8NkNiY2vVYdPa27MCQiR0MN0M80johAYFVxWWXQ44KU84WNxjslwBHmc/7ZL2ccwkM7/e6S5aiKZXm7jA==}
engines: {node: '>= 6.3.0'}
dev: false
- /source-map-js/1.0.2:
+ /source-map-js@1.0.2:
resolution: {integrity: sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==}
engines: {node: '>=0.10.0'}
dev: false
- /source-map-support/0.5.21:
+ /source-map-support@0.5.21:
resolution: {integrity: sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==}
dependencies:
buffer-from: 1.1.2
source-map: 0.6.1
dev: false
- /source-map/0.5.7:
+ /source-map@0.5.7:
resolution: {integrity: sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==}
engines: {node: '>=0.10.0'}
dev: false
- /source-map/0.6.1:
+ /source-map@0.6.1:
resolution: {integrity: sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==}
engines: {node: '>=0.10.0'}
dev: false
- /space-separated-tokens/1.1.5:
+ /space-separated-tokens@1.1.5:
resolution: {integrity: sha512-q/JSVd1Lptzhf5bkYm4ob4iWPjx0KiRe3sRFBNrVqbJkFaBm5vbbowy1mymoPNLRa52+oadOhJ+K49wsSeSjTA==}
dev: false
- /spdy-transport/3.0.0:
+ /spdy-transport@3.0.0:
resolution: {integrity: sha512-hsLVFE5SjA6TCisWeJXFKniGGOpBgMLmerfO2aCyCU5s7nJ/rpAepqmFifv/GCbSbueEeAJJnmSQ2rKC/g8Fcw==}
dependencies:
debug: 4.3.4
@@ -7928,7 +7671,7 @@ packages:
- supports-color
dev: false
- /spdy/4.0.2:
+ /spdy@4.0.2:
resolution: {integrity: sha512-r46gZQZQV+Kl9oItvl1JZZqJKGr+oEkB08A6BzkiR7593/7IbtuncXHd2YoYeTsG4157ZssMu9KYvUHLcjcDoA==}
engines: {node: '>=6.0.0'}
dependencies:
@@ -7941,34 +7684,33 @@ packages:
- supports-color
dev: false
- /sprintf-js/1.0.3:
+ /sprintf-js@1.0.3:
resolution: {integrity: sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==}
dev: false
- /stable/0.1.8:
+ /stable@0.1.8:
resolution: {integrity: sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w==}
- deprecated: 'Modern JS already guarantees Array#sort() is a stable sort, so this library is deprecated. See the compatibility table on MDN: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/sort#browser_compatibility'
dev: false
- /state-toggle/1.0.3:
+ /state-toggle@1.0.3:
resolution: {integrity: sha512-d/5Z4/2iiCnHw6Xzghyhb+GcmF89bxwgXG60wjIiZaxnymbyOmI8Hk4VqHXiVVp6u2ysaskFfXg3ekCj4WNftQ==}
dev: false
- /statuses/1.5.0:
+ /statuses@1.5.0:
resolution: {integrity: sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA==}
engines: {node: '>= 0.6'}
dev: false
- /statuses/2.0.1:
+ /statuses@2.0.1:
resolution: {integrity: sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==}
engines: {node: '>= 0.8'}
dev: false
- /std-env/3.3.2:
+ /std-env@3.3.2:
resolution: {integrity: sha512-uUZI65yrV2Qva5gqE0+A7uVAvO40iPo6jGhs7s8keRfHCmtg+uB2X6EiLGCI9IgL1J17xGhvoOqSz79lzICPTA==}
dev: false
- /string-width/4.2.3:
+ /string-width@4.2.3:
resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==}
engines: {node: '>=8'}
dependencies:
@@ -7977,7 +7719,7 @@ packages:
strip-ansi: 6.0.1
dev: false
- /string-width/5.1.2:
+ /string-width@5.1.2:
resolution: {integrity: sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==}
engines: {node: '>=12'}
dependencies:
@@ -7986,19 +7728,19 @@ packages:
strip-ansi: 7.0.1
dev: false
- /string_decoder/1.1.1:
+ /string_decoder@1.1.1:
resolution: {integrity: sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==}
dependencies:
safe-buffer: 5.1.2
dev: false
- /string_decoder/1.3.0:
+ /string_decoder@1.3.0:
resolution: {integrity: sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==}
dependencies:
safe-buffer: 5.2.1
dev: false
- /stringify-object/3.3.0:
+ /stringify-object@3.3.0:
resolution: {integrity: sha512-rHqiFh1elqCQ9WPLIC8I0Q/g/wj5J1eMkyoiD6eoQApWHP0FtlK7rqnhmabL5VUY9JQCcqwwvlOaSuutekgyrw==}
engines: {node: '>=4'}
dependencies:
@@ -8007,47 +7749,47 @@ packages:
is-regexp: 1.0.0
dev: false
- /strip-ansi/6.0.1:
+ /strip-ansi@6.0.1:
resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==}
engines: {node: '>=8'}
dependencies:
ansi-regex: 5.0.1
dev: false
- /strip-ansi/7.0.1:
+ /strip-ansi@7.0.1:
resolution: {integrity: sha512-cXNxvT8dFNRVfhVME3JAe98mkXDYN2O1l7jmcwMnOslDeESg1rF/OZMtK0nRAhiari1unG5cD4jG3rapUAkLbw==}
engines: {node: '>=12'}
dependencies:
ansi-regex: 6.0.1
dev: false
- /strip-bom-string/1.0.0:
+ /strip-bom-string@1.0.0:
resolution: {integrity: sha512-uCC2VHvQRYu+lMh4My/sFNmF2klFymLX1wHJeXnbEJERpV/ZsVuonzerjfrGpIGF7LBVa1O7i9kjiWvJiFck8g==}
engines: {node: '>=0.10.0'}
dev: false
- /strip-final-newline/2.0.0:
+ /strip-final-newline@2.0.0:
resolution: {integrity: sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==}
engines: {node: '>=6'}
dev: false
- /strip-json-comments/2.0.1:
+ /strip-json-comments@2.0.1:
resolution: {integrity: sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ==}
engines: {node: '>=0.10.0'}
dev: false
- /strip-json-comments/3.1.1:
+ /strip-json-comments@3.1.1:
resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==}
engines: {node: '>=8'}
dev: false
- /style-to-object/0.3.0:
+ /style-to-object@0.3.0:
resolution: {integrity: sha512-CzFnRRXhzWIdItT3OmF8SQfWyahHhjq3HwcMNCNLn+N7klOOqPjMeG/4JSu77D7ypZdGvSzvkrbyeTMizz2VrA==}
dependencies:
inline-style-parser: 0.1.1
dev: false
- /stylehacks/5.1.1_postcss@8.4.21:
+ /stylehacks@5.1.1(postcss@8.4.21):
resolution: {integrity: sha512-sBpcd5Hx7G6seo7b1LkpttvTz7ikD0LlH5RmdcBNb6fFR0Fl7LQwHDFr300q4cwUqi+IYrFGmsIHieMBfnN/Bw==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
@@ -8058,40 +7800,39 @@ packages:
postcss-selector-parser: 6.0.11
dev: false
- /supports-color/5.5.0:
+ /supports-color@5.5.0:
resolution: {integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==}
engines: {node: '>=4'}
dependencies:
has-flag: 3.0.0
dev: false
- /supports-color/7.2.0:
+ /supports-color@7.2.0:
resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==}
engines: {node: '>=8'}
dependencies:
has-flag: 4.0.0
dev: false
- /supports-color/8.1.1:
+ /supports-color@8.1.1:
resolution: {integrity: sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==}
engines: {node: '>=10'}
dependencies:
has-flag: 4.0.0
dev: false
- /supports-preserve-symlinks-flag/1.0.0:
+ /supports-preserve-symlinks-flag@1.0.0:
resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==}
engines: {node: '>= 0.4'}
dev: false
- /svg-parser/2.0.4:
+ /svg-parser@2.0.4:
resolution: {integrity: sha512-e4hG1hRwoOdRb37cIMSgzNsxyzKfayW6VOflrwvR+/bzrkyxY/31WkbgnQpgtrNp1SdpJvpUAGTa/ZoiPNDuRQ==}
dev: false
- /svgo/2.8.0:
+ /svgo@2.8.0:
resolution: {integrity: sha512-+N/Q9kV1+F+UeWYoSiULYo4xYSDQlTgb+ayMobAXPwMnLvop7oxKMo9OzIrX5x3eS4L4f2UHhc9axXwY8DpChg==}
engines: {node: '>=10.13.0'}
- hasBin: true
dependencies:
'@trysound/sax': 0.2.0
commander: 7.2.0
@@ -8102,17 +7843,17 @@ packages:
stable: 0.1.8
dev: false
- /tapable/1.1.3:
+ /tapable@1.1.3:
resolution: {integrity: sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA==}
engines: {node: '>=6'}
dev: false
- /tapable/2.2.1:
+ /tapable@2.2.1:
resolution: {integrity: sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==}
engines: {node: '>=6'}
dev: false
- /terser-webpack-plugin/5.3.7_webpack@5.76.3:
+ /terser-webpack-plugin@5.3.7(webpack@5.76.3):
resolution: {integrity: sha512-AfKwIktyP7Cu50xNjXF/6Qb5lBNzYaWpU6YfoX3uZicTx0zTy0stDDCsvjDapKsSDvOeWo5MEq4TmdBy2cNoHw==}
engines: {node: '>= 10.13.0'}
peerDependencies:
@@ -8136,10 +7877,9 @@ packages:
webpack: 5.76.3
dev: false
- /terser/5.16.6:
+ /terser@5.16.6:
resolution: {integrity: sha512-IBZ+ZQIA9sMaXmRZCUMDjNH0D5AQQfdn4WUjHL0+1lF4TP1IHRJbrhb6fNaXWikrYQTSkb7SLxkeXAiy1p7mbg==}
engines: {node: '>=10'}
- hasBin: true
dependencies:
'@jridgewell/source-map': 0.3.2
acorn: 8.8.2
@@ -8147,81 +7887,80 @@ packages:
source-map-support: 0.5.21
dev: false
- /text-table/0.2.0:
+ /text-table@0.2.0:
resolution: {integrity: sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==}
dev: false
- /thunky/1.1.0:
+ /thunky@1.1.0:
resolution: {integrity: sha512-eHY7nBftgThBqOyHGVN+l8gF0BucP09fMo0oO/Lb0w1OF80dJv+lDVpXG60WMQvkcxAkNybKsrEIE3ZtKGmPrA==}
dev: false
- /tiny-invariant/1.3.1:
+ /tiny-invariant@1.3.1:
resolution: {integrity: sha512-AD5ih2NlSssTCwsMznbvwMZpJ1cbhkGd2uueNxzv2jDlEeZdU04JQfRnggJQ8DrcVBGjAsCKwFBbDlVNtEMlzw==}
dev: false
- /tiny-warning/1.0.3:
+ /tiny-warning@1.0.3:
resolution: {integrity: sha512-lBN9zLN/oAf68o3zNXYrdCt1kP8WsiGW8Oo2ka41b2IM5JL/S1CTyX1rW0mb/zSuJun0ZUrDxx4sqvYS2FWzPA==}
dev: false
- /to-fast-properties/2.0.0:
+ /to-fast-properties@2.0.0:
resolution: {integrity: sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==}
engines: {node: '>=4'}
dev: false
- /to-readable-stream/1.0.0:
+ /to-readable-stream@1.0.0:
resolution: {integrity: sha512-Iq25XBt6zD5npPhlLVXGFN3/gyR2/qODcKNNyTMd4vbm39HUaOiAM4PMq0eMVC/Tkxz+Zjdsc55g9yyz+Yq00Q==}
engines: {node: '>=6'}
dev: false
- /to-regex-range/5.0.1:
+ /to-regex-range@5.0.1:
resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==}
engines: {node: '>=8.0'}
dependencies:
is-number: 7.0.0
dev: false
- /toidentifier/1.0.1:
+ /toidentifier@1.0.1:
resolution: {integrity: sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==}
engines: {node: '>=0.6'}
dev: false
- /totalist/1.1.0:
+ /totalist@1.1.0:
resolution: {integrity: sha512-gduQwd1rOdDMGxFG1gEvhV88Oirdo2p+KjoYFU7k2g+i7n6AFFbDQ5kMPUsW0pNbfQsB/cwXvT1i4Bue0s9g5g==}
engines: {node: '>=6'}
dev: false
- /tr46/0.0.3:
+ /tr46@0.0.3:
resolution: {integrity: sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==}
dev: false
- /trim-trailing-lines/1.1.4:
+ /trim-trailing-lines@1.1.4:
resolution: {integrity: sha512-rjUWSqnfTNrjbB9NQWfPMH/xRK1deHeGsHoVfpxJ++XeYXE0d6B1En37AHfw3jtfTU7dzMzZL2jjpe8Qb5gLIQ==}
dev: false
- /trim/0.0.1:
+ /trim@0.0.1:
resolution: {integrity: sha512-YzQV+TZg4AxpKxaTHK3c3D+kRDCGVEE7LemdlQZoQXn0iennk10RsIoY6ikzAqJTc9Xjl9C1/waHom/J86ziAQ==}
- deprecated: Use String.prototype.trim() instead
dev: false
- /trough/1.0.5:
+ /trough@1.0.5:
resolution: {integrity: sha512-rvuRbTarPXmMb79SmzEp8aqXNKcK+y0XaB298IXueQ8I2PsrATcPBCSPyK/dDNa2iWOhKlfNnOjdAOTBU/nkFA==}
dev: false
- /tslib/2.5.0:
+ /tslib@2.5.0:
resolution: {integrity: sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==}
dev: false
- /type-fest/0.20.2:
+ /type-fest@0.20.2:
resolution: {integrity: sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==}
engines: {node: '>=10'}
dev: false
- /type-fest/2.19.0:
+ /type-fest@2.19.0:
resolution: {integrity: sha512-RAH822pAdBgcNMAfWnCBU3CFZcfZ/i1eZjwFU/dsLKumyuuP3niueg2UAukXYF0E2AAoc82ZSSf9J0WQBinzHA==}
engines: {node: '>=12.20'}
dev: false
- /type-is/1.6.18:
+ /type-is@1.6.18:
resolution: {integrity: sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==}
engines: {node: '>= 0.6'}
dependencies:
@@ -8229,35 +7968,34 @@ packages:
mime-types: 2.1.35
dev: false
- /typedarray-to-buffer/3.1.5:
+ /typedarray-to-buffer@3.1.5:
resolution: {integrity: sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==}
dependencies:
is-typedarray: 1.0.0
dev: false
- /typescript/5.0.2:
+ /typescript@5.0.2:
resolution: {integrity: sha512-wVORMBGO/FAs/++blGNeAVdbNKtIh1rbBL2EyQ1+J9lClJ93KiiKe8PmFIVdXhHcyv44SL9oglmfeSsndo0jRw==}
engines: {node: '>=12.20'}
- hasBin: true
dev: false
- /ua-parser-js/0.7.34:
+ /ua-parser-js@0.7.34:
resolution: {integrity: sha512-cJMeh/eOILyGu0ejgTKB95yKT3zOenSe9UGE3vj6WfiOwgGYnmATUsnDixMFvdU+rNMvWih83hrUP8VwhF9yXQ==}
dev: false
- /unherit/1.1.3:
+ /unherit@1.1.3:
resolution: {integrity: sha512-Ft16BJcnapDKp0+J/rqFC3Rrk6Y/Ng4nzsC028k2jdDII/rdZ7Wd3pPT/6+vIIxRagwRc9K0IUX0Ra4fKvw+WQ==}
dependencies:
inherits: 2.0.4
xtend: 4.0.2
dev: false
- /unicode-canonical-property-names-ecmascript/2.0.0:
+ /unicode-canonical-property-names-ecmascript@2.0.0:
resolution: {integrity: sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ==}
engines: {node: '>=4'}
dev: false
- /unicode-match-property-ecmascript/2.0.0:
+ /unicode-match-property-ecmascript@2.0.0:
resolution: {integrity: sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==}
engines: {node: '>=4'}
dependencies:
@@ -8265,17 +8003,17 @@ packages:
unicode-property-aliases-ecmascript: 2.1.0
dev: false
- /unicode-match-property-value-ecmascript/2.1.0:
+ /unicode-match-property-value-ecmascript@2.1.0:
resolution: {integrity: sha512-qxkjQt6qjg/mYscYMC0XKRn3Rh0wFPlfxB0xkt9CfyTvpX1Ra0+rAmdX2QyAobptSEvuy4RtpPRui6XkV+8wjA==}
engines: {node: '>=4'}
dev: false
- /unicode-property-aliases-ecmascript/2.1.0:
+ /unicode-property-aliases-ecmascript@2.1.0:
resolution: {integrity: sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w==}
engines: {node: '>=4'}
dev: false
- /unified/9.2.0:
+ /unified@9.2.0:
resolution: {integrity: sha512-vx2Z0vY+a3YoTj8+pttM3tiJHCwY5UFbYdiWrwBEbHmK8pvsPj2rtAX2BFfgXen8T39CJWblWRDT4L5WGXtDdg==}
dependencies:
'@types/unist': 2.0.6
@@ -8287,7 +8025,7 @@ packages:
vfile: 4.2.1
dev: false
- /unified/9.2.2:
+ /unified@9.2.2:
resolution: {integrity: sha512-Sg7j110mtefBD+qunSLO1lqOEKdrwBFBrR6Qd8f4uwkhWNlbkaqwHse6e7QvD3AP/MNoJdEDLaf8OxYyoWgorQ==}
dependencies:
'@types/unist': 2.0.6
@@ -8299,55 +8037,55 @@ packages:
vfile: 4.2.1
dev: false
- /unique-string/2.0.0:
+ /unique-string@2.0.0:
resolution: {integrity: sha512-uNaeirEPvpZWSgzwsPGtU2zVSTrn/8L5q/IexZmH0eH6SA73CmAA5U4GwORTxQAZs95TAXLNqeLoPPNO5gZfWg==}
engines: {node: '>=8'}
dependencies:
crypto-random-string: 2.0.0
dev: false
- /unist-builder/2.0.3:
+ /unist-builder@2.0.3:
resolution: {integrity: sha512-f98yt5pnlMWlzP539tPc4grGMsFaQQlP/vM396b00jngsiINumNmsY8rkXjfoi1c6QaM8nQ3vaGDuoKWbe/1Uw==}
dev: false
- /unist-util-generated/1.1.6:
+ /unist-util-generated@1.1.6:
resolution: {integrity: sha512-cln2Mm1/CZzN5ttGK7vkoGw+RZ8VcUH6BtGbq98DDtRGquAAOXig1mrBQYelOwMXYS8rK+vZDyyojSjp7JX+Lg==}
dev: false
- /unist-util-is/4.1.0:
+ /unist-util-is@4.1.0:
resolution: {integrity: sha512-ZOQSsnce92GrxSqlnEEseX0gi7GH9zTJZ0p9dtu87WRb/37mMPO2Ilx1s/t9vBHrFhbgweUwb+t7cIn5dxPhZg==}
dev: false
- /unist-util-position/3.1.0:
+ /unist-util-position@3.1.0:
resolution: {integrity: sha512-w+PkwCbYSFw8vpgWD0v7zRCl1FpY3fjDSQ3/N/wNd9Ffa4gPi8+4keqt99N3XW6F99t/mUzp2xAhNmfKWp95QA==}
dev: false
- /unist-util-remove-position/2.0.1:
+ /unist-util-remove-position@2.0.1:
resolution: {integrity: sha512-fDZsLYIe2uT+oGFnuZmy73K6ZxOPG/Qcm+w7jbEjaFcJgbQ6cqjs/eSPzXhsmGpAsWPkqZM9pYjww5QTn3LHMA==}
dependencies:
unist-util-visit: 2.0.3
dev: false
- /unist-util-remove/2.1.0:
+ /unist-util-remove@2.1.0:
resolution: {integrity: sha512-J8NYPyBm4baYLdCbjmf1bhPu45Cr1MWTm77qd9istEkzWpnN6O9tMsEbB2JhNnBCqGENRqEWomQ+He6au0B27Q==}
dependencies:
unist-util-is: 4.1.0
dev: false
- /unist-util-stringify-position/2.0.3:
+ /unist-util-stringify-position@2.0.3:
resolution: {integrity: sha512-3faScn5I+hy9VleOq/qNbAd6pAx7iH5jYBMS9I1HgQVijz/4mv5Bvw5iw1sC/90CODiKo81G/ps8AJrISn687g==}
dependencies:
'@types/unist': 2.0.6
dev: false
- /unist-util-visit-parents/3.1.1:
+ /unist-util-visit-parents@3.1.1:
resolution: {integrity: sha512-1KROIZWo6bcMrZEwiH2UrXDyalAa0uqzWCxCJj6lPOvTve2WkfgCytoDTPaMnodXh1WrXOq0haVYHj99ynJlsg==}
dependencies:
'@types/unist': 2.0.6
unist-util-is: 4.1.0
dev: false
- /unist-util-visit/2.0.3:
+ /unist-util-visit@2.0.3:
resolution: {integrity: sha512-iJ4/RczbJMkD0712mGktuGpm/U4By4FfDonL7N/9tATGIF4imikjOuagyMY53tnZq3NP6BcmlrHhEKAfGWjh7Q==}
dependencies:
'@types/unist': 2.0.6
@@ -8355,19 +8093,18 @@ packages:
unist-util-visit-parents: 3.1.1
dev: false
- /universalify/2.0.0:
+ /universalify@2.0.0:
resolution: {integrity: sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==}
engines: {node: '>= 10.0.0'}
dev: false
- /unpipe/1.0.0:
+ /unpipe@1.0.0:
resolution: {integrity: sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==}
engines: {node: '>= 0.8'}
dev: false
- /update-browserslist-db/1.0.10_browserslist@4.21.5:
+ /update-browserslist-db@1.0.10(browserslist@4.21.5):
resolution: {integrity: sha512-OztqDenkfFkbSG+tRxBeAnCVPckDBcvibKd35yDONx6OU8N7sqgwc7rCbkJ/WcYtVRZ4ba68d6byhC21GFh7sQ==}
- hasBin: true
peerDependencies:
browserslist: '>= 4.21.0'
dependencies:
@@ -8376,7 +8113,7 @@ packages:
picocolors: 1.0.0
dev: false
- /update-notifier/5.1.0:
+ /update-notifier@5.1.0:
resolution: {integrity: sha512-ItnICHbeMh9GqUy31hFPrD1kcuZ3rpxDZbf4KUDavXwS0bW5m7SLbDQpGX3UYr072cbrF5hFUs3r5tUsPwjfHw==}
engines: {node: '>=10'}
dependencies:
@@ -8396,13 +8133,13 @@ packages:
xdg-basedir: 4.0.0
dev: false
- /uri-js/4.4.1:
+ /uri-js@4.4.1:
resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==}
dependencies:
punycode: 2.3.0
dev: false
- /url-loader/4.1.1_cj4axkvnwozfmnmvgy4d36yxaq:
+ /url-loader@4.1.1(file-loader@6.2.0)(webpack@5.76.3):
resolution: {integrity: sha512-3BTV812+AVHHOJQO8O5MkWgZ5aosP7GnROJwvzLS9hWDj00lZ6Z0wNak423Lp9PBZN05N+Jk/N5Si8jRAlGyWA==}
engines: {node: '>= 10.13.0'}
peerDependencies:
@@ -8412,21 +8149,21 @@ packages:
file-loader:
optional: true
dependencies:
- file-loader: 6.2.0_webpack@5.76.3
+ file-loader: 6.2.0(webpack@5.76.3)
loader-utils: 2.0.4
mime-types: 2.1.35
schema-utils: 3.1.1
webpack: 5.76.3
dev: false
- /url-parse-lax/3.0.0:
+ /url-parse-lax@3.0.0:
resolution: {integrity: sha512-NjFKA0DidqPa5ciFcSrXnAltTtzz84ogy+NebPvfEgAck0+TNg4UJ4IN+fB7zRZfbgUf0syOo9MDxFkDSMuFaQ==}
engines: {node: '>=4'}
dependencies:
prepend-http: 2.0.0
dev: false
- /use-composed-ref/1.3.0_react@17.0.2:
+ /use-composed-ref@1.3.0(react@17.0.2):
resolution: {integrity: sha512-GLMG0Jc/jiKov/3Ulid1wbv3r54K9HlMW29IWcDFPEqFkSO2nS0MuefWgMJpeHQ9YJeXDL3ZUF+P3jdXlZX/cQ==}
peerDependencies:
react: ^16.8.0 || ^17.0.0 || ^18.0.0
@@ -8434,7 +8171,7 @@ packages:
react: 17.0.2
dev: false
- /use-isomorphic-layout-effect/1.1.2_skqlhrap4das3cz5b6iqdn2lqi:
+ /use-isomorphic-layout-effect@1.1.2(@types/react@17.0.48)(react@17.0.2):
resolution: {integrity: sha512-49L8yCO3iGT/ZF9QttjwLF/ZD9Iwto5LnH5LmEdk/6cFmXddqi2ulF0edxTwjj+7mqvpVVGQWvbXZdn32wRSHA==}
peerDependencies:
'@types/react': '*'
@@ -8447,7 +8184,7 @@ packages:
react: 17.0.2
dev: false
- /use-latest/1.2.1_skqlhrap4das3cz5b6iqdn2lqi:
+ /use-latest@1.2.1(@types/react@17.0.48)(react@17.0.2):
resolution: {integrity: sha512-xA+AVm/Wlg3e2P/JiItTziwS7FK92LWrDB0p+hgXloIMuVCeJJ8v6f0eeHyPZaJrM+usM1FkFfbNCrJGs8A/zw==}
peerDependencies:
'@types/react': '*'
@@ -8458,10 +8195,10 @@ packages:
dependencies:
'@types/react': 17.0.48
react: 17.0.2
- use-isomorphic-layout-effect: 1.1.2_skqlhrap4das3cz5b6iqdn2lqi
+ use-isomorphic-layout-effect: 1.1.2(@types/react@17.0.48)(react@17.0.2)
dev: false
- /use-sync-external-store/1.2.0_react@17.0.2:
+ /use-sync-external-store@1.2.0(react@17.0.2):
resolution: {integrity: sha512-eEgnFxGQ1Ife9bzYs6VLi8/4X6CObHMw9Qr9tPY43iKwsPw8xE8+EFsf/2cFZ5S3esXgpWgtSCtLNS41F+sKPA==}
peerDependencies:
react: ^16.8.0 || ^17.0.0 || ^18.0.0
@@ -8469,50 +8206,49 @@ packages:
react: 17.0.2
dev: false
- /util-deprecate/1.0.2:
+ /util-deprecate@1.0.2:
resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==}
dev: false
- /utila/0.4.0:
+ /utila@0.4.0:
resolution: {integrity: sha512-Z0DbgELS9/L/75wZbro8xAnT50pBVFQZ+hUEueGDU5FN51YSCYM+jdxsfCiHjwNP/4LCDD0i/graKpeBnOXKRA==}
dev: false
- /utility-types/3.10.0:
+ /utility-types@3.10.0:
resolution: {integrity: sha512-O11mqxmi7wMKCo6HKFt5AhO4BwY3VV68YU07tgxfz8zJTIxr4BpsezN49Ffwy9j3ZpwwJp4fkRwjRzq3uWE6Rg==}
engines: {node: '>= 4'}
dev: false
- /utils-merge/1.0.1:
+ /utils-merge@1.0.1:
resolution: {integrity: sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==}
engines: {node: '>= 0.4.0'}
dev: false
- /uuid/8.3.2:
+ /uuid@8.3.2:
resolution: {integrity: sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==}
- hasBin: true
dev: false
- /value-equal/1.0.1:
+ /value-equal@1.0.1:
resolution: {integrity: sha512-NOJ6JZCAWr0zlxZt+xqCHNTEKOsrks2HQd4MqhP1qy4z1SkbEP467eNx6TgDKXMvUOb+OENfJCZwM+16n7fRfw==}
dev: false
- /vary/1.1.2:
+ /vary@1.1.2:
resolution: {integrity: sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==}
engines: {node: '>= 0.8'}
dev: false
- /vfile-location/3.2.0:
+ /vfile-location@3.2.0:
resolution: {integrity: sha512-aLEIZKv/oxuCDZ8lkJGhuhztf/BW4M+iHdCwglA/eWc+vtuRFJj8EtgceYFX4LRjOhCAAiNHsKGssC6onJ+jbA==}
dev: false
- /vfile-message/2.0.4:
+ /vfile-message@2.0.4:
resolution: {integrity: sha512-DjssxRGkMvifUOJre00juHoP9DPWuzjxKuMDrhNbk2TdaYYBNMStsNhEOt3idrtI12VQYM/1+iM0KOzXi4pxwQ==}
dependencies:
'@types/unist': 2.0.6
unist-util-stringify-position: 2.0.3
dev: false
- /vfile/4.2.1:
+ /vfile@4.2.1:
resolution: {integrity: sha512-O6AE4OskCG5S1emQ/4gl8zK586RqA3srz3nfK/Viy0UPToBc5Trp9BVFb1u0CjsKrAWwnpr4ifM/KBXPWwJbCA==}
dependencies:
'@types/unist': 2.0.6
@@ -8521,10 +8257,9 @@ packages:
vfile-message: 2.0.4
dev: false
- /wait-on/6.0.1:
+ /wait-on@6.0.1:
resolution: {integrity: sha512-zht+KASY3usTY5u2LgaNqn/Cd8MukxLGjdcZxT2ns5QzDmTFc4XoWBgC+C/na+sMRZTuVygQoMYwdcVjHnYIVw==}
engines: {node: '>=10.0.0'}
- hasBin: true
dependencies:
axios: 0.25.0
joi: 17.9.1
@@ -8535,7 +8270,7 @@ packages:
- debug
dev: false
- /watchpack/2.4.0:
+ /watchpack@2.4.0:
resolution: {integrity: sha512-Lcvm7MGST/4fup+ifyKi2hjyIAwcdI4HRgtvTpIUxBRhB+RFtUh8XtDOxUfctVCnhVi+QQj49i91OyvzkJl6cg==}
engines: {node: '>=10.13.0'}
dependencies:
@@ -8543,24 +8278,23 @@ packages:
graceful-fs: 4.2.11
dev: false
- /wbuf/1.7.3:
+ /wbuf@1.7.3:
resolution: {integrity: sha512-O84QOnr0icsbFGLS0O3bI5FswxzRr8/gHwWkDlQFskhSPryQXvrTMxjxGP4+iWYoauLoBvfDpkrOauZ+0iZpDA==}
dependencies:
minimalistic-assert: 1.0.1
dev: false
- /web-namespaces/1.1.4:
+ /web-namespaces@1.1.4:
resolution: {integrity: sha512-wYxSGajtmoP4WxfejAPIr4l0fVh+jeMXZb08wNc0tMg6xsfZXj3cECqIK0G7ZAqUq0PP8WlMDtaOGVBTAWztNw==}
dev: false
- /webidl-conversions/3.0.1:
+ /webidl-conversions@3.0.1:
resolution: {integrity: sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==}
dev: false
- /webpack-bundle-analyzer/4.8.0:
+ /webpack-bundle-analyzer@4.8.0:
resolution: {integrity: sha512-ZzoSBePshOKhr+hd8u6oCkZVwpVaXgpw23ScGLFpR6SjYI7+7iIWYarjN6OEYOfRt8o7ZyZZQk0DuMizJ+LEIg==}
engines: {node: '>= 10.13.0'}
- hasBin: true
dependencies:
'@discoveryjs/json-ext': 0.5.7
acorn: 8.8.2
@@ -8577,7 +8311,7 @@ packages:
- utf-8-validate
dev: false
- /webpack-dev-middleware/5.3.3_webpack@5.76.3:
+ /webpack-dev-middleware@5.3.3(webpack@5.76.3):
resolution: {integrity: sha512-hj5CYrY0bZLB+eTO+x/j67Pkrquiy7kWepMHmUMoPsmcUaeEnQJqFzHJOyxgWlq746/wUuA64p9ta34Kyb01pA==}
engines: {node: '>= 12.13.0'}
peerDependencies:
@@ -8591,10 +8325,9 @@ packages:
webpack: 5.76.3
dev: false
- /webpack-dev-server/4.13.1_webpack@5.76.3:
+ /webpack-dev-server@4.13.1(webpack@5.76.3):
resolution: {integrity: sha512-5tWg00bnWbYgkN+pd5yISQKDejRBYGEw15RaEEslH+zdbNDxxaZvEAO2WulaSaFKb5n3YG8JXsGaDsut1D0xdA==}
engines: {node: '>= 12.13.0'}
- hasBin: true
peerDependencies:
webpack: ^4.37.0 || ^5.0.0
webpack-cli: '*'
@@ -8621,7 +8354,7 @@ packages:
express: 4.18.2
graceful-fs: 4.2.11
html-entities: 2.3.3
- http-proxy-middleware: 2.0.6_@types+express@4.17.17
+ http-proxy-middleware: 2.0.6(@types/express@4.17.17)
ipaddr.js: 2.0.1
launch-editor: 2.6.0
open: 8.4.2
@@ -8633,7 +8366,7 @@ packages:
sockjs: 0.3.24
spdy: 4.0.2
webpack: 5.76.3
- webpack-dev-middleware: 5.3.3_webpack@5.76.3
+ webpack-dev-middleware: 5.3.3(webpack@5.76.3)
ws: 8.13.0
transitivePeerDependencies:
- bufferutil
@@ -8642,7 +8375,7 @@ packages:
- utf-8-validate
dev: false
- /webpack-merge/5.8.0:
+ /webpack-merge@5.8.0:
resolution: {integrity: sha512-/SaI7xY0831XwP6kzuwhKWVKDP9t1QY1h65lAFLbZqMPIuYcD9QAW4u9STIbU9kaJbPBB/geU/gLr1wDjOhQ+Q==}
engines: {node: '>=10.0.0'}
dependencies:
@@ -8650,15 +8383,14 @@ packages:
wildcard: 2.0.0
dev: false
- /webpack-sources/3.2.3:
+ /webpack-sources@3.2.3:
resolution: {integrity: sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==}
engines: {node: '>=10.13.0'}
dev: false
- /webpack/5.76.3:
+ /webpack@5.76.3:
resolution: {integrity: sha512-18Qv7uGPU8b2vqGeEEObnfICyw2g39CHlDEK4I7NK13LOur1d0HGmGNKGT58Eluwddpn3oEejwvBPoP4M7/KSA==}
engines: {node: '>=10.13.0'}
- hasBin: true
peerDependencies:
webpack-cli: '*'
peerDependenciesMeta:
@@ -8671,7 +8403,7 @@ packages:
'@webassemblyjs/wasm-edit': 1.11.1
'@webassemblyjs/wasm-parser': 1.11.1
acorn: 8.8.2
- acorn-import-assertions: 1.8.0_acorn@8.8.2
+ acorn-import-assertions: 1.8.0(acorn@8.8.2)
browserslist: 4.21.5
chrome-trace-event: 1.0.3
enhanced-resolve: 5.12.0
@@ -8686,7 +8418,7 @@ packages:
neo-async: 2.6.2
schema-utils: 3.1.1
tapable: 2.2.1
- terser-webpack-plugin: 5.3.7_webpack@5.76.3
+ terser-webpack-plugin: 5.3.7(webpack@5.76.3)
watchpack: 2.4.0
webpack-sources: 3.2.3
transitivePeerDependencies:
@@ -8695,7 +8427,7 @@ packages:
- uglify-js
dev: false
- /webpackbar/5.0.2_webpack@5.76.3:
+ /webpackbar@5.0.2(webpack@5.76.3):
resolution: {integrity: sha512-BmFJo7veBDgQzfWXl/wwYXr/VFus0614qZ8i9znqcl9fnEdiVkdbi0TedLQ6xAK92HZHDJ0QmyQ0fmuZPAgCYQ==}
engines: {node: '>=12'}
peerDependencies:
@@ -8708,7 +8440,7 @@ packages:
webpack: 5.76.3
dev: false
- /websocket-driver/0.7.4:
+ /websocket-driver@0.7.4:
resolution: {integrity: sha512-b17KeDIQVjvb0ssuSDF2cYXSg2iztliJ4B9WdsuB6J952qCPKmnVq4DyW5motImXHDC1cBT/1UezrJVsKw5zjg==}
engines: {node: '>=0.8.0'}
dependencies:
@@ -8717,52 +8449,50 @@ packages:
websocket-extensions: 0.1.4
dev: false
- /websocket-extensions/0.1.4:
+ /websocket-extensions@0.1.4:
resolution: {integrity: sha512-OqedPIGOfsDlo31UNwYbCFMSaO9m9G/0faIHj5/dZFDMFqPTcx6UwqyOy3COEaEOg/9VsGIpdqn62W5KhoKSpg==}
engines: {node: '>=0.8.0'}
dev: false
- /whatwg-url/5.0.0:
+ /whatwg-url@5.0.0:
resolution: {integrity: sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==}
dependencies:
tr46: 0.0.3
webidl-conversions: 3.0.1
dev: false
- /which/1.3.1:
+ /which@1.3.1:
resolution: {integrity: sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==}
- hasBin: true
dependencies:
isexe: 2.0.0
dev: false
- /which/2.0.2:
+ /which@2.0.2:
resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==}
engines: {node: '>= 8'}
- hasBin: true
dependencies:
isexe: 2.0.0
dev: false
- /widest-line/3.1.0:
+ /widest-line@3.1.0:
resolution: {integrity: sha512-NsmoXalsWVDMGupxZ5R08ka9flZjjiLvHVAWYOKtiKM8ujtZWr9cRffak+uSE48+Ob8ObalXpwyeUiyDD6QFgg==}
engines: {node: '>=8'}
dependencies:
string-width: 4.2.3
dev: false
- /widest-line/4.0.1:
+ /widest-line@4.0.1:
resolution: {integrity: sha512-o0cyEG0e8GPzT4iGHphIOh0cJOV8fivsXxddQasHPHfoZf1ZexrfeA21w2NaEN1RHE+fXlfISmOE8R9N3u3Qig==}
engines: {node: '>=12'}
dependencies:
string-width: 5.1.2
dev: false
- /wildcard/2.0.0:
+ /wildcard@2.0.0:
resolution: {integrity: sha512-JcKqAHLPxcdb9KM49dufGXn2x3ssnfjbcaQdLlfZsL9rH9wgDQjUtDxbo8NE0F6SFvydeu1VhZe7hZuHsB2/pw==}
dev: false
- /wrap-ansi/7.0.0:
+ /wrap-ansi@7.0.0:
resolution: {integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==}
engines: {node: '>=10'}
dependencies:
@@ -8771,7 +8501,7 @@ packages:
strip-ansi: 6.0.1
dev: false
- /wrap-ansi/8.1.0:
+ /wrap-ansi@8.1.0:
resolution: {integrity: sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==}
engines: {node: '>=12'}
dependencies:
@@ -8780,11 +8510,11 @@ packages:
strip-ansi: 7.0.1
dev: false
- /wrappy/1.0.2:
+ /wrappy@1.0.2:
resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==}
dev: false
- /write-file-atomic/3.0.3:
+ /write-file-atomic@3.0.3:
resolution: {integrity: sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==}
dependencies:
imurmurhash: 0.1.4
@@ -8793,7 +8523,7 @@ packages:
typedarray-to-buffer: 3.1.5
dev: false
- /ws/7.5.9:
+ /ws@7.5.9:
resolution: {integrity: sha512-F+P9Jil7UiSKSkppIiD94dN07AwvFixvLIj1Og1Rl9GGMuNipJnV9JzjD6XuqmAeiswGvUmNLjr5cFuXwNS77Q==}
engines: {node: '>=8.3.0'}
peerDependencies:
@@ -8806,7 +8536,7 @@ packages:
optional: true
dev: false
- /ws/8.13.0:
+ /ws@8.13.0:
resolution: {integrity: sha512-x9vcZYTrFPC7aSIbj7sRCYo7L/Xb8Iy+pW0ng0wt2vCJv7M9HOMy0UoN3rr+IFC7hb7vXoqS+P9ktyLLLhO+LA==}
engines: {node: '>=10.0.0'}
peerDependencies:
@@ -8819,41 +8549,40 @@ packages:
optional: true
dev: false
- /xdg-basedir/4.0.0:
+ /xdg-basedir@4.0.0:
resolution: {integrity: sha512-PSNhEJDejZYV7h50BohL09Er9VaIefr2LMAf3OEmpCkjOi34eYyQYAXUTjEQtZJTKcF0E2UKTh+osDLsgNim9Q==}
engines: {node: '>=8'}
dev: false
- /xml-js/1.6.11:
+ /xml-js@1.6.11:
resolution: {integrity: sha512-7rVi2KMfwfWFl+GpPg6m80IVMWXLRjO+PxTq7V2CDhoGak0wzYzFgUY2m4XJ47OGdXd8eLE8EmwfAmdjw7lC1g==}
- hasBin: true
dependencies:
sax: 1.2.4
dev: false
- /xtend/4.0.2:
+ /xtend@4.0.2:
resolution: {integrity: sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==}
engines: {node: '>=0.4'}
dev: false
- /yallist/3.1.1:
+ /yallist@3.1.1:
resolution: {integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==}
dev: false
- /yallist/4.0.0:
+ /yallist@4.0.0:
resolution: {integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==}
dev: false
- /yaml/1.10.2:
+ /yaml@1.10.2:
resolution: {integrity: sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==}
engines: {node: '>= 6'}
dev: false
- /yocto-queue/0.1.0:
+ /yocto-queue@0.1.0:
resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==}
engines: {node: '>=10'}
dev: false
- /zwitch/1.0.5:
+ /zwitch@1.0.5:
resolution: {integrity: sha512-V50KMwwzqJV0NpZIZFwfOD5/lyny3WlSzRiXgA0G7VUnRlqttta1L6UQIHzd6EuBY/cHGfwTIck7w1yH6Q5zUw==}
dev: false
diff --git a/sidebars.js b/sidebars.js
index 706528a1..d4d8f2f7 100644
--- a/sidebars.js
+++ b/sidebars.js
@@ -32,18 +32,6 @@ const sidebars = {
}
]
},
- {
- type: 'category',
- label: 'Interact',
- collapsible: true,
- collapsed: false,
- items: [
- {
- type: 'autogenerated',
- dirName: 'interact',
- }
- ]
- },
{
type: 'category',
label: 'EVM',
@@ -68,43 +56,8 @@ const sidebars = {
}
]
},
- {
- type: 'category',
- label: 'Integrate',
- collapsible: true,
- collapsed: false,
- items: [
- {
- type: 'autogenerated',
- dirName: 'integrate',
- }
- ]
- },
- {
- type: 'category',
- label: 'Public APIs',
- collapsible: true,
- collapsed: false,
- items: [
- {
- type: 'autogenerated',
- dirName: 'public-apis',
- }
- ]
- },
+ 'public-apis',
'faq',
- {
- type: 'category',
- label: 'Tools',
- collapsible: true,
- collapsed: false,
- items: [
- {
- type: 'autogenerated',
- dirName: 'tools',
- }
- ]
- },
],
};
diff --git a/src/components/Redirect.js b/src/components/Redirect.js
new file mode 100644
index 00000000..aecc989f
--- /dev/null
+++ b/src/components/Redirect.js
@@ -0,0 +1,9 @@
+import { useEffect } from 'react'
+
+export default function Redirect(props) {
+ useEffect(() => {
+ window.location.href = props.url
+ }, [])
+
+ return null
+}