mirror of
https://github.com/logto-io/logto.git
synced 2025-01-20 21:32:31 -05:00
parent
d2ccd29026
commit
93ad8d7769
9 changed files with 324 additions and 73 deletions
|
@ -82,6 +82,10 @@ const config = {
|
|||
],
|
||||
},
|
||||
footer: {
|
||||
logo: {
|
||||
alt: 'Logto Logo',
|
||||
src: 'img/footer-logo.svg',
|
||||
},
|
||||
style: 'dark',
|
||||
links: [
|
||||
{
|
||||
|
@ -96,15 +100,23 @@ const config = {
|
|||
{
|
||||
title: 'Community',
|
||||
items: [
|
||||
{
|
||||
label: 'GitHub',
|
||||
href: 'https://github.com/logto-io/logto',
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: 'More',
|
||||
items: [
|
||||
{
|
||||
label: 'GitHub',
|
||||
href: 'https://github.com/logto-io/logto',
|
||||
label: 'About Us',
|
||||
href: 'https://logto-io.github.io/website/about',
|
||||
},
|
||||
{
|
||||
label: 'Contact Us',
|
||||
href: 'mailto: contact@logto.io'
|
||||
}
|
||||
],
|
||||
},
|
||||
],
|
||||
|
|
|
@ -23,12 +23,18 @@
|
|||
"@docusaurus/theme-classic": "2.0.0-beta.21",
|
||||
"@docusaurus/types": "2.0.0-beta.21",
|
||||
"@mdx-js/react": "^1.6.22",
|
||||
"@docusaurus/theme-common": "2.0.0-beta.21",
|
||||
"@silverhand/eslint-config": "^0.14.0",
|
||||
"@silverhand/eslint-config-react": "^0.14.0",
|
||||
"@tsconfig/docusaurus": "^1.0.5",
|
||||
"@types/node": "^17.0.23",
|
||||
"@types/react": "^17.0.14",
|
||||
"clsx": "^1.1.1",
|
||||
"core-js": "^3.1.4",
|
||||
"docusaurus-plugin-sass": "^0.2.2",
|
||||
"eslint": "^8.10.0",
|
||||
"postcss": "^8.4.6",
|
||||
"prettier": "^2.3.2",
|
||||
"prism-react-renderer": "^1.3.1",
|
||||
"react": "^17.0.2",
|
||||
"react-dom": "^17.0.2",
|
||||
|
@ -36,6 +42,7 @@
|
|||
"redoc-cli": "^0.13.16",
|
||||
"sass": "^1.52.3",
|
||||
"sass-loader": "^13.0.0",
|
||||
"stylelint": "^14.8.2",
|
||||
"typescript": "^4.6.3",
|
||||
"webpack": "^5.0.0"
|
||||
},
|
||||
|
|
|
@ -5,31 +5,39 @@
|
|||
*/
|
||||
|
||||
/* You can override the default Infima variables here. */
|
||||
|
||||
:root {
|
||||
--ifm-color-primary: #2e8555;
|
||||
--ifm-color-primary-dark: #29784c;
|
||||
--ifm-color-primary-darker: #277148;
|
||||
--ifm-color-primary-darkest: #205d3b;
|
||||
--ifm-color-primary-light: #33925d;
|
||||
--ifm-color-primary-lighter: #359962;
|
||||
--ifm-color-primary-lightest: #3cad6e;
|
||||
--ifm-color-primary: #5d34f2;
|
||||
--ifm-color-primary-dark: #4718f0 ;
|
||||
--ifm-color-primary-darker: #3e0feb;
|
||||
--ifm-color-primary-darkest: #330cc1;
|
||||
--ifm-color-primary-light: #7350f4;
|
||||
--ifm-color-primary-lighter: #7e5df5;
|
||||
--ifm-color-primary-lightest: #9f87f7;
|
||||
--ifm-hover-overlay: rgba(93, 52, 242, 0.12);
|
||||
--ifm-code-font-size: 95%;
|
||||
--doc-sidebar-width: 400px !important;
|
||||
--doc-sidebar-section-title: #eee;
|
||||
}
|
||||
|
||||
|
||||
/* For readability concerns, you should choose a lighter palette in dark mode. */
|
||||
[data-theme='dark'] {
|
||||
--ifm-color-primary: #25c2a0;
|
||||
--ifm-color-primary-dark: #21af90;
|
||||
--ifm-color-primary-darker: #1fa588;
|
||||
--ifm-color-primary-darkest: #1a8870;
|
||||
--ifm-color-primary-light: #29d5b0;
|
||||
--ifm-color-primary-lighter: #32d8b4;
|
||||
--ifm-color-primary-lightest: #4fddbf;
|
||||
--ifm-color-primary: #7958ff;
|
||||
--ifm-color-primary-dark: #5d36ff;
|
||||
--ifm-color-primary-darker: #5025ff;
|
||||
--ifm-color-primary-darkest: #2f00f0;
|
||||
--ifm-color-primary-light: #957aff;
|
||||
--ifm-color-primary-lighter: #a28bff;
|
||||
--ifm-color-primary-lightest: #ccbfff;
|
||||
--ifm-hover-overlay: rgba(202, 190, 255, 0.12);
|
||||
--doc-sidebar-section-title: #777;
|
||||
}
|
||||
|
||||
.menu__link {
|
||||
border-radius: 8px;
|
||||
}
|
||||
|
||||
.docusaurus-highlight-code-line {
|
||||
background-color: rgba(0, 0, 0, 0.1);
|
||||
display: block;
|
||||
|
@ -52,3 +60,21 @@
|
|||
.sidebar-section:not(:first-child) {
|
||||
margin-top: calc(var(--ifm-menu-link-padding-vertical) * 2);
|
||||
}
|
||||
|
||||
|
||||
@media (min-width: 997px) {
|
||||
.menu {
|
||||
display: flex;
|
||||
justify-content: flex-end;
|
||||
}
|
||||
|
||||
.menu__list {
|
||||
min-width: 320px;
|
||||
margin-right: 16px;
|
||||
}
|
||||
|
||||
.footer {
|
||||
padding-top: 80px;
|
||||
padding-bottom: 80px;
|
||||
}
|
||||
}
|
||||
|
|
29
packages/docs/src/theme/Footer/FooterLayout.tsx
Normal file
29
packages/docs/src/theme/Footer/FooterLayout.tsx
Normal file
|
@ -0,0 +1,29 @@
|
|||
import React from 'react';
|
||||
import clsx from 'clsx';
|
||||
import type {Props} from '@theme/Footer/Layout';
|
||||
import styles from './index.module.scss';
|
||||
|
||||
export default function FooterLayout({
|
||||
style,
|
||||
links,
|
||||
logo,
|
||||
copyright,
|
||||
}: Props): JSX.Element {
|
||||
return (
|
||||
<footer
|
||||
className={clsx('footer', {
|
||||
'footer--dark': style === 'dark',
|
||||
})}>
|
||||
<div className="container container-fluid">
|
||||
{logo && <div className={clsx('margin-bottom--lg', styles.logoRow)}>{logo}</div>}
|
||||
{links}
|
||||
{copyright && (
|
||||
<div className="footer__bottom text--center">
|
||||
{copyright}
|
||||
</div>
|
||||
)}
|
||||
</div>
|
||||
</footer>
|
||||
);
|
||||
}
|
||||
|
4
packages/docs/src/theme/Footer/index.d.ts
vendored
Normal file
4
packages/docs/src/theme/Footer/index.d.ts
vendored
Normal file
|
@ -0,0 +1,4 @@
|
|||
import React from 'react';
|
||||
declare function Footer(): JSX.Element | null;
|
||||
declare const _default: React.MemoExoticComponent<typeof Footer>;
|
||||
export default _default;
|
3
packages/docs/src/theme/Footer/index.module.scss
Normal file
3
packages/docs/src/theme/Footer/index.module.scss
Normal file
|
@ -0,0 +1,3 @@
|
|||
.logoRow {
|
||||
border-bottom: solid 1px rgba(202, 190, 255, 0.16);
|
||||
}
|
25
packages/docs/src/theme/Footer/index.tsx
Normal file
25
packages/docs/src/theme/Footer/index.tsx
Normal file
|
@ -0,0 +1,25 @@
|
|||
import React from 'react';
|
||||
import {useThemeConfig} from '@docusaurus/theme-common';
|
||||
import FooterLinks from '@theme/Footer/Links';
|
||||
import FooterLogo from '@theme/Footer/Logo';
|
||||
import FooterCopyright from '@theme/Footer/Copyright';
|
||||
import FooterLayout from './FooterLayout';
|
||||
|
||||
|
||||
const Footer = () => {
|
||||
const {footer} = useThemeConfig();
|
||||
if (!footer) {
|
||||
return null;
|
||||
}
|
||||
const {copyright, links, logo, style} = footer;
|
||||
return (
|
||||
<FooterLayout
|
||||
style={style}
|
||||
links={links && links.length > 0 && <FooterLinks links={links} />}
|
||||
logo={logo && <FooterLogo logo={logo} />}
|
||||
copyright={copyright && <FooterCopyright copyright={copyright} />}
|
||||
/>
|
||||
);
|
||||
}
|
||||
|
||||
export default React.memo(Footer);
|
54
packages/docs/static/img/footer-logo.svg
vendored
Normal file
54
packages/docs/static/img/footer-logo.svg
vendored
Normal file
|
@ -0,0 +1,54 @@
|
|||
<svg width="128" height="56" viewBox="0 0 128 56" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M11.0159 16.0656C11.0159 14.9068 11.9553 13.9673 13.1142 13.9673H33.5732C34.7321 13.9673 35.6716 14.9068 35.6716 16.0656V38.0984C35.6716 39.2573 34.7321 40.1968 33.5732 40.1968H13.1142C11.9553 40.1968 11.0159 39.2573 11.0159 38.0984V16.0656Z" fill="url(#paint0_linear_13_345)"/>
|
||||
<path d="M39.2125 44.6557L15.2781 40L49.8355 40.3934L39.2125 44.6557Z" fill="url(#paint1_linear_13_345)"/>
|
||||
<path d="M11.0159 15.7871C11.0159 14.7428 11.7837 13.8575 12.8175 13.7098L26.9814 11.6864C28.2455 11.5058 29.3765 12.4867 29.3765 13.7637V40.4002C29.3765 41.6772 28.2455 42.6581 26.9814 42.4775L12.8175 40.4541C11.7837 40.3064 11.0159 39.4211 11.0159 38.3768V15.7871Z" fill="url(#paint2_linear_13_345)"/>
|
||||
<g filter="url(#filter0_d_13_345)">
|
||||
<circle cx="25.1797" cy="27.0818" r="1.57377" fill="url(#paint3_linear_13_345)"/>
|
||||
</g>
|
||||
<g filter="url(#filter1_d_13_345)">
|
||||
<rect x="24.3928" y="26.4263" width="1.57377" height="4.19672" rx="0.786885" fill="url(#paint4_linear_13_345)"/>
|
||||
</g>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M67.445 18.9509H63.9641C60.8403 18.9509 59.2783 20.4802 59.2783 23.5387V30.617C59.2783 33.6755 60.8403 35.2048 63.9641 35.2048H67.445C70.5689 35.2048 72.1308 33.6755 72.1308 30.617V23.5387C72.1308 20.4802 70.5689 18.9509 67.445 18.9509ZM69.1854 30.617C69.1854 32.2773 68.3375 33.1075 66.6417 33.1075H64.7674C63.0716 33.1075 62.2237 32.2773 62.2237 30.617V23.5387C62.2237 21.8784 63.0716 21.0482 64.7674 21.0482H66.6417C68.3375 21.0482 69.1854 21.8784 69.1854 23.5387V30.617ZM56.7769 35.2132C57.0456 35.2132 57.18 35.0778 57.18 34.8069V33.4524C57.18 33.1815 57.0456 33.046 56.7769 33.046H49.1192V19.3657C49.1192 19.0948 48.9848 18.9594 48.7162 18.9594H46.5666C46.2979 18.9594 46.1636 19.0948 46.1636 19.3657V34.8069C46.1636 35.0778 46.2979 35.2132 46.5666 35.2132H56.7769ZM108.817 18.9509H112.297C115.421 18.9509 116.983 20.4802 116.983 23.5387V30.617C116.983 33.6755 115.421 35.2048 112.297 35.2048H108.817C105.693 35.2048 104.131 33.6755 104.131 30.617V23.5387C104.131 20.4802 105.693 18.9509 108.817 18.9509ZM111.494 33.1075C113.19 33.1075 114.038 32.2773 114.038 30.617V23.5387C114.038 21.8784 113.19 21.0482 111.494 21.0482H109.62C107.924 21.0482 107.076 21.8784 107.076 23.5387V30.617C107.076 32.2773 107.924 33.1075 109.62 33.1075H111.494ZM86.6714 25.6123H81.2023C80.9288 25.6123 80.7921 25.7456 80.7921 26.012V27.3443C80.7921 27.6108 80.9288 27.744 81.2023 27.744H84.0736V30.5418C84.0736 32.2293 83.2076 33.0731 81.4757 33.0731H79.835C78.1031 33.0731 77.2372 32.2293 77.2372 30.5418V23.6139C77.2372 21.9264 78.1031 21.0826 79.835 21.0826H85.5776C85.851 21.0826 85.9878 20.9494 85.9878 20.6829V19.3506C85.9878 19.0842 85.851 18.9509 85.5776 18.9509H79.0146C75.8243 18.9509 74.2291 20.5053 74.2291 23.6139V30.5418C74.2291 33.6504 75.8243 35.2048 79.0146 35.2048H82.2961C85.4864 35.2048 87.0816 33.6504 87.0816 30.5418V26.012C87.0816 25.7456 86.9449 25.6123 86.6714 25.6123ZM89.5902 18.9509H101.622C101.896 18.9509 102.032 19.0864 102.032 19.3573V20.7118C102.032 20.9827 101.896 21.1181 101.622 21.1181H97.1102V34.7984C97.1102 35.0693 96.9735 35.2048 96.7 35.2048H94.5124C94.2389 35.2048 94.1022 35.0693 94.1022 34.7984V21.1181H89.5902C89.3167 21.1181 89.18 20.9827 89.18 20.7118V19.3573C89.18 19.0864 89.3167 18.9509 89.5902 18.9509Z" fill="#F7F8F8"/>
|
||||
<defs>
|
||||
<filter id="filter0_d_13_345" x="23.4748" y="25.5081" width="3.40976" height="3.40976" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dy="0.131148"/>
|
||||
<feGaussianBlur stdDeviation="0.0655738"/>
|
||||
<feComposite in2="hardAlpha" operator="out"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0.104304 0 0 0 0 0.0825 0 0 0 0 0.2 0 0 0 0.02 0"/>
|
||||
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_13_345"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_13_345" result="shape"/>
|
||||
</filter>
|
||||
<filter id="filter1_d_13_345" x="23.8682" y="26.4263" width="2.36062" height="5.11481" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset dx="-0.131148" dy="0.52459"/>
|
||||
<feGaussianBlur stdDeviation="0.196721"/>
|
||||
<feComposite in2="hardAlpha" operator="out"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0.104304 0 0 0 0 0.0825 0 0 0 0 0.2 0 0 0 0.08 0"/>
|
||||
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_13_345"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_13_345" result="shape"/>
|
||||
</filter>
|
||||
<linearGradient id="paint0_linear_13_345" x1="11.606" y1="28.0001" x2="36.0161" y2="20.1909" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#FFF06A"/>
|
||||
<stop offset="1" stop-color="#EC78FF"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint1_linear_13_345" x1="25.5076" y1="40.7869" x2="40.3273" y2="43.8033" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#ECB6FF"/>
|
||||
<stop offset="1" stop-color="#FFF4F4" stop-opacity="0"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint2_linear_13_345" x1="9.50767" y1="29.377" x2="30.8191" y2="24.7869" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#492EF3"/>
|
||||
<stop offset="1" stop-color="#CF69FF"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint3_linear_13_345" x1="25.1797" y1="25.5081" x2="24.524" y2="28.6556" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#E1BFFF"/>
|
||||
<stop offset="1" stop-color="#AF68EE"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint4_linear_13_345" x1="25.1797" y1="26.4263" x2="23.3208" y2="29.7724" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#F8F2FF"/>
|
||||
<stop offset="1" stop-color="#D185F5"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
</svg>
|
After Width: | Height: | Size: 5.8 KiB |
205
pnpm-lock.yaml
generated
205
pnpm-lock.yaml
generated
|
@ -965,14 +965,20 @@ importers:
|
|||
'@docusaurus/module-type-aliases': 2.0.0-beta.21
|
||||
'@docusaurus/preset-classic': 2.0.0-beta.21
|
||||
'@docusaurus/theme-classic': 2.0.0-beta.21
|
||||
'@docusaurus/theme-common': 2.0.0-beta.21
|
||||
'@docusaurus/types': 2.0.0-beta.21
|
||||
'@mdx-js/react': ^1.6.22
|
||||
'@silverhand/eslint-config': ^0.14.0
|
||||
'@silverhand/eslint-config-react': ^0.14.0
|
||||
'@tsconfig/docusaurus': ^1.0.5
|
||||
'@types/node': ^17.0.23
|
||||
'@types/react': ^17.0.14
|
||||
clsx: ^1.1.1
|
||||
core-js: ^3.1.4
|
||||
docusaurus-plugin-sass: ^0.2.2
|
||||
eslint: ^8.10.0
|
||||
postcss: ^8.4.6
|
||||
prettier: ^2.3.2
|
||||
prism-react-renderer: ^1.3.1
|
||||
react: ^17.0.2
|
||||
react-dom: ^17.0.2
|
||||
|
@ -980,22 +986,29 @@ importers:
|
|||
redoc-cli: ^0.13.16
|
||||
sass: ^1.52.3
|
||||
sass-loader: ^13.0.0
|
||||
stylelint: ^14.8.2
|
||||
typescript: ^4.6.3
|
||||
webpack: ^5.0.0
|
||||
devDependencies:
|
||||
'@algolia/client-search': 4.13.0
|
||||
'@docusaurus/core': 2.0.0-beta.21_fdtqczkawcrswx4npptvkurkw4
|
||||
'@docusaurus/core': 2.0.0-beta.21_7zbbkxc27zhvltsjvx3tvjdibq
|
||||
'@docusaurus/module-type-aliases': 2.0.0-beta.21_sfoxds7t5ydpegc3knd667wn6m
|
||||
'@docusaurus/preset-classic': 2.0.0-beta.21_lkkesvnroznvxikbizbhppdw6u
|
||||
'@docusaurus/theme-classic': 2.0.0-beta.21_fdtqczkawcrswx4npptvkurkw4
|
||||
'@docusaurus/preset-classic': 2.0.0-beta.21_4t7pnpkavygfgqzs4a6tbmil3y
|
||||
'@docusaurus/theme-classic': 2.0.0-beta.21_7zbbkxc27zhvltsjvx3tvjdibq
|
||||
'@docusaurus/theme-common': 2.0.0-beta.21_7zbbkxc27zhvltsjvx3tvjdibq
|
||||
'@docusaurus/types': 2.0.0-beta.21_sfoxds7t5ydpegc3knd667wn6m
|
||||
'@mdx-js/react': 1.6.22_react@17.0.2
|
||||
'@silverhand/eslint-config': 0.14.0_xpq2m6kgodzytx4bqbpsfgmxbe
|
||||
'@silverhand/eslint-config-react': 0.14.0_wfs3lj7jctdcr2gsfi4lvs3yoa
|
||||
'@tsconfig/docusaurus': 1.0.5
|
||||
'@types/node': 17.0.23
|
||||
'@types/react': 17.0.37
|
||||
clsx: 1.1.1
|
||||
core-js: 3.22.7
|
||||
docusaurus-plugin-sass: 0.2.2_nssaivqmlzorkvieuzlzfxhu3e
|
||||
eslint: 8.10.0
|
||||
postcss: 8.4.14
|
||||
prettier: 2.5.1
|
||||
prism-react-renderer: 1.3.1_react@17.0.2
|
||||
react: 17.0.2
|
||||
react-dom: 17.0.2_react@17.0.2
|
||||
|
@ -1003,6 +1016,7 @@ importers:
|
|||
redoc-cli: 0.13.16_ccxkh4djypxkm7iddafys3bdma
|
||||
sass: 1.52.3
|
||||
sass-loader: 13.0.0_sass@1.52.3+webpack@5.72.1
|
||||
stylelint: 14.8.2
|
||||
typescript: 4.6.3
|
||||
webpack: 5.72.1
|
||||
|
||||
|
@ -3177,7 +3191,7 @@ packages:
|
|||
react-dom: 17.0.2_react@17.0.2
|
||||
dev: true
|
||||
|
||||
/@docusaurus/core/2.0.0-beta.21_fdtqczkawcrswx4npptvkurkw4:
|
||||
/@docusaurus/core/2.0.0-beta.21_7zbbkxc27zhvltsjvx3tvjdibq:
|
||||
resolution: {integrity: sha512-qysDMVp1M5UozK3u/qOxsEZsHF7jeBvJDS+5ItMPYmNKvMbNKeYZGA0g6S7F9hRDwjIlEbvo7BaX0UMDcmTAWA==}
|
||||
engines: {node: '>=16.14'}
|
||||
hasBin: true
|
||||
|
@ -3236,7 +3250,7 @@ packages:
|
|||
postcss-loader: 7.0.0_xvg4ntyrrwt57qzvggqcbeozu4
|
||||
prompts: 2.4.2
|
||||
react: 17.0.2
|
||||
react-dev-utils: 12.0.1_6h45roczohgm7o2nc4xumorhj4
|
||||
react-dev-utils: 12.0.1_kvzlca67nxfnqkyddthlsvxxqa
|
||||
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
|
||||
|
@ -3346,14 +3360,14 @@ packages:
|
|||
- webpack-cli
|
||||
dev: true
|
||||
|
||||
/@docusaurus/plugin-content-blog/2.0.0-beta.21_fdtqczkawcrswx4npptvkurkw4:
|
||||
/@docusaurus/plugin-content-blog/2.0.0-beta.21_7zbbkxc27zhvltsjvx3tvjdibq:
|
||||
resolution: {integrity: sha512-IP21yJViP3oBmgsWBU5LhrG1MZXV4mYCQSoCAboimESmy1Z11RCNP2tXaqizE3iTmXOwZZL+SNBk06ajKCEzWg==}
|
||||
engines: {node: '>=16.14'}
|
||||
peerDependencies:
|
||||
react: ^16.8.4 || ^17.0.0
|
||||
react-dom: ^16.8.4 || ^17.0.0
|
||||
dependencies:
|
||||
'@docusaurus/core': 2.0.0-beta.21_fdtqczkawcrswx4npptvkurkw4
|
||||
'@docusaurus/core': 2.0.0-beta.21_7zbbkxc27zhvltsjvx3tvjdibq
|
||||
'@docusaurus/logger': 2.0.0-beta.21
|
||||
'@docusaurus/mdx-loader': 2.0.0-beta.21_sfoxds7t5ydpegc3knd667wn6m
|
||||
'@docusaurus/utils': 2.0.0-beta.21
|
||||
|
@ -3387,14 +3401,14 @@ packages:
|
|||
- webpack-cli
|
||||
dev: true
|
||||
|
||||
/@docusaurus/plugin-content-docs/2.0.0-beta.21_fdtqczkawcrswx4npptvkurkw4:
|
||||
/@docusaurus/plugin-content-docs/2.0.0-beta.21_7zbbkxc27zhvltsjvx3tvjdibq:
|
||||
resolution: {integrity: sha512-aa4vrzJy4xRy81wNskyhE3wzRf3AgcESZ1nfKh8xgHUkT7fDTZ1UWlg50Jb3LBCQFFyQG2XQB9N6llskI/KUnw==}
|
||||
engines: {node: '>=16.14'}
|
||||
peerDependencies:
|
||||
react: ^16.8.4 || ^17.0.0
|
||||
react-dom: ^16.8.4 || ^17.0.0
|
||||
dependencies:
|
||||
'@docusaurus/core': 2.0.0-beta.21_fdtqczkawcrswx4npptvkurkw4
|
||||
'@docusaurus/core': 2.0.0-beta.21_7zbbkxc27zhvltsjvx3tvjdibq
|
||||
'@docusaurus/logger': 2.0.0-beta.21
|
||||
'@docusaurus/mdx-loader': 2.0.0-beta.21_sfoxds7t5ydpegc3knd667wn6m
|
||||
'@docusaurus/utils': 2.0.0-beta.21
|
||||
|
@ -3426,14 +3440,14 @@ packages:
|
|||
- webpack-cli
|
||||
dev: true
|
||||
|
||||
/@docusaurus/plugin-content-pages/2.0.0-beta.21_fdtqczkawcrswx4npptvkurkw4:
|
||||
/@docusaurus/plugin-content-pages/2.0.0-beta.21_7zbbkxc27zhvltsjvx3tvjdibq:
|
||||
resolution: {integrity: sha512-DmXOXjqNI+7X5hISzCvt54QIK6XBugu2MOxjxzuqI7q92Lk/EVdraEj5mthlH8IaEH/VlpWYJ1O9TzLqX5vH2g==}
|
||||
engines: {node: '>=16.14'}
|
||||
peerDependencies:
|
||||
react: ^16.8.4 || ^17.0.0
|
||||
react-dom: ^16.8.4 || ^17.0.0
|
||||
dependencies:
|
||||
'@docusaurus/core': 2.0.0-beta.21_fdtqczkawcrswx4npptvkurkw4
|
||||
'@docusaurus/core': 2.0.0-beta.21_7zbbkxc27zhvltsjvx3tvjdibq
|
||||
'@docusaurus/mdx-loader': 2.0.0-beta.21_sfoxds7t5ydpegc3knd667wn6m
|
||||
'@docusaurus/utils': 2.0.0-beta.21
|
||||
'@docusaurus/utils-validation': 2.0.0-beta.21
|
||||
|
@ -3459,14 +3473,14 @@ packages:
|
|||
- webpack-cli
|
||||
dev: true
|
||||
|
||||
/@docusaurus/plugin-debug/2.0.0-beta.21_lkkesvnroznvxikbizbhppdw6u:
|
||||
/@docusaurus/plugin-debug/2.0.0-beta.21_4t7pnpkavygfgqzs4a6tbmil3y:
|
||||
resolution: {integrity: sha512-P54J4q4ecsyWW0Jy4zbimSIHna999AfbxpXGmF1IjyHrjoA3PtuakV1Ai51XrGEAaIq9q6qMQkEhbUd3CffGAw==}
|
||||
engines: {node: '>=16.14'}
|
||||
peerDependencies:
|
||||
react: ^16.8.4 || ^17.0.0
|
||||
react-dom: ^16.8.4 || ^17.0.0
|
||||
dependencies:
|
||||
'@docusaurus/core': 2.0.0-beta.21_fdtqczkawcrswx4npptvkurkw4
|
||||
'@docusaurus/core': 2.0.0-beta.21_7zbbkxc27zhvltsjvx3tvjdibq
|
||||
'@docusaurus/utils': 2.0.0-beta.21
|
||||
fs-extra: 10.1.0
|
||||
react: 17.0.2
|
||||
|
@ -3491,14 +3505,14 @@ packages:
|
|||
- webpack-cli
|
||||
dev: true
|
||||
|
||||
/@docusaurus/plugin-google-analytics/2.0.0-beta.21_fdtqczkawcrswx4npptvkurkw4:
|
||||
/@docusaurus/plugin-google-analytics/2.0.0-beta.21_7zbbkxc27zhvltsjvx3tvjdibq:
|
||||
resolution: {integrity: sha512-+5MS0PeGaJRgPuNZlbd/WMdQSpOACaxEz7A81HAxm6kE+tIASTW3l8jgj1eWFy/PGPzaLnQrEjxI1McAfnYmQw==}
|
||||
engines: {node: '>=16.14'}
|
||||
peerDependencies:
|
||||
react: ^16.8.4 || ^17.0.0
|
||||
react-dom: ^16.8.4 || ^17.0.0
|
||||
dependencies:
|
||||
'@docusaurus/core': 2.0.0-beta.21_fdtqczkawcrswx4npptvkurkw4
|
||||
'@docusaurus/core': 2.0.0-beta.21_7zbbkxc27zhvltsjvx3tvjdibq
|
||||
'@docusaurus/utils-validation': 2.0.0-beta.21
|
||||
react: 17.0.2
|
||||
react-dom: 17.0.2_react@17.0.2
|
||||
|
@ -3519,14 +3533,14 @@ packages:
|
|||
- webpack-cli
|
||||
dev: true
|
||||
|
||||
/@docusaurus/plugin-google-gtag/2.0.0-beta.21_fdtqczkawcrswx4npptvkurkw4:
|
||||
/@docusaurus/plugin-google-gtag/2.0.0-beta.21_7zbbkxc27zhvltsjvx3tvjdibq:
|
||||
resolution: {integrity: sha512-4zxKZOnf0rfh6myXLG7a6YZfQcxYDMBsWqANEjCX77H5gPdK+GHZuDrxK6sjFvRBv4liYCrNjo7HJ4DpPoT0zA==}
|
||||
engines: {node: '>=16.14'}
|
||||
peerDependencies:
|
||||
react: ^16.8.4 || ^17.0.0
|
||||
react-dom: ^16.8.4 || ^17.0.0
|
||||
dependencies:
|
||||
'@docusaurus/core': 2.0.0-beta.21_fdtqczkawcrswx4npptvkurkw4
|
||||
'@docusaurus/core': 2.0.0-beta.21_7zbbkxc27zhvltsjvx3tvjdibq
|
||||
'@docusaurus/utils-validation': 2.0.0-beta.21
|
||||
react: 17.0.2
|
||||
react-dom: 17.0.2_react@17.0.2
|
||||
|
@ -3547,14 +3561,14 @@ packages:
|
|||
- webpack-cli
|
||||
dev: true
|
||||
|
||||
/@docusaurus/plugin-sitemap/2.0.0-beta.21_fdtqczkawcrswx4npptvkurkw4:
|
||||
/@docusaurus/plugin-sitemap/2.0.0-beta.21_7zbbkxc27zhvltsjvx3tvjdibq:
|
||||
resolution: {integrity: sha512-/ynWbcXZXcYZ6sT2X6vAJbnfqcPxwdGEybd0rcRZi4gBHq6adMofYI25AqELmnbBDxt0If+vlAeUHFRG5ueP7Q==}
|
||||
engines: {node: '>=16.14'}
|
||||
peerDependencies:
|
||||
react: ^16.8.4 || ^17.0.0
|
||||
react-dom: ^16.8.4 || ^17.0.0
|
||||
dependencies:
|
||||
'@docusaurus/core': 2.0.0-beta.21_fdtqczkawcrswx4npptvkurkw4
|
||||
'@docusaurus/core': 2.0.0-beta.21_7zbbkxc27zhvltsjvx3tvjdibq
|
||||
'@docusaurus/logger': 2.0.0-beta.21
|
||||
'@docusaurus/utils': 2.0.0-beta.21
|
||||
'@docusaurus/utils-common': 2.0.0-beta.21
|
||||
|
@ -3580,24 +3594,24 @@ packages:
|
|||
- webpack-cli
|
||||
dev: true
|
||||
|
||||
/@docusaurus/preset-classic/2.0.0-beta.21_lkkesvnroznvxikbizbhppdw6u:
|
||||
/@docusaurus/preset-classic/2.0.0-beta.21_4t7pnpkavygfgqzs4a6tbmil3y:
|
||||
resolution: {integrity: sha512-KvBnIUu7y69pNTJ9UhX6SdNlK6prR//J3L4rhN897tb8xx04xHHILlPXko2Il+C3Xzgh3OCgyvkoz9K6YlFTDw==}
|
||||
engines: {node: '>=16.14'}
|
||||
peerDependencies:
|
||||
react: ^16.8.4 || ^17.0.0
|
||||
react-dom: ^16.8.4 || ^17.0.0
|
||||
dependencies:
|
||||
'@docusaurus/core': 2.0.0-beta.21_fdtqczkawcrswx4npptvkurkw4
|
||||
'@docusaurus/plugin-content-blog': 2.0.0-beta.21_fdtqczkawcrswx4npptvkurkw4
|
||||
'@docusaurus/plugin-content-docs': 2.0.0-beta.21_fdtqczkawcrswx4npptvkurkw4
|
||||
'@docusaurus/plugin-content-pages': 2.0.0-beta.21_fdtqczkawcrswx4npptvkurkw4
|
||||
'@docusaurus/plugin-debug': 2.0.0-beta.21_lkkesvnroznvxikbizbhppdw6u
|
||||
'@docusaurus/plugin-google-analytics': 2.0.0-beta.21_fdtqczkawcrswx4npptvkurkw4
|
||||
'@docusaurus/plugin-google-gtag': 2.0.0-beta.21_fdtqczkawcrswx4npptvkurkw4
|
||||
'@docusaurus/plugin-sitemap': 2.0.0-beta.21_fdtqczkawcrswx4npptvkurkw4
|
||||
'@docusaurus/theme-classic': 2.0.0-beta.21_fdtqczkawcrswx4npptvkurkw4
|
||||
'@docusaurus/theme-common': 2.0.0-beta.21_fdtqczkawcrswx4npptvkurkw4
|
||||
'@docusaurus/theme-search-algolia': 2.0.0-beta.21_lkkesvnroznvxikbizbhppdw6u
|
||||
'@docusaurus/core': 2.0.0-beta.21_7zbbkxc27zhvltsjvx3tvjdibq
|
||||
'@docusaurus/plugin-content-blog': 2.0.0-beta.21_7zbbkxc27zhvltsjvx3tvjdibq
|
||||
'@docusaurus/plugin-content-docs': 2.0.0-beta.21_7zbbkxc27zhvltsjvx3tvjdibq
|
||||
'@docusaurus/plugin-content-pages': 2.0.0-beta.21_7zbbkxc27zhvltsjvx3tvjdibq
|
||||
'@docusaurus/plugin-debug': 2.0.0-beta.21_4t7pnpkavygfgqzs4a6tbmil3y
|
||||
'@docusaurus/plugin-google-analytics': 2.0.0-beta.21_7zbbkxc27zhvltsjvx3tvjdibq
|
||||
'@docusaurus/plugin-google-gtag': 2.0.0-beta.21_7zbbkxc27zhvltsjvx3tvjdibq
|
||||
'@docusaurus/plugin-sitemap': 2.0.0-beta.21_7zbbkxc27zhvltsjvx3tvjdibq
|
||||
'@docusaurus/theme-classic': 2.0.0-beta.21_7zbbkxc27zhvltsjvx3tvjdibq
|
||||
'@docusaurus/theme-common': 2.0.0-beta.21_7zbbkxc27zhvltsjvx3tvjdibq
|
||||
'@docusaurus/theme-search-algolia': 2.0.0-beta.21_4t7pnpkavygfgqzs4a6tbmil3y
|
||||
react: 17.0.2
|
||||
react-dom: 17.0.2_react@17.0.2
|
||||
transitivePeerDependencies:
|
||||
|
@ -3628,18 +3642,18 @@ packages:
|
|||
react: 17.0.2
|
||||
dev: true
|
||||
|
||||
/@docusaurus/theme-classic/2.0.0-beta.21_fdtqczkawcrswx4npptvkurkw4:
|
||||
/@docusaurus/theme-classic/2.0.0-beta.21_7zbbkxc27zhvltsjvx3tvjdibq:
|
||||
resolution: {integrity: sha512-Ge0WNdTefD0VDQfaIMRRWa8tWMG9+8/OlBRd5MK88/TZfqdBq7b/gnCSaalQlvZwwkj6notkKhHx72+MKwWUJA==}
|
||||
engines: {node: '>=16.14'}
|
||||
peerDependencies:
|
||||
react: ^16.8.4 || ^17.0.0
|
||||
react-dom: ^16.8.4 || ^17.0.0
|
||||
dependencies:
|
||||
'@docusaurus/core': 2.0.0-beta.21_fdtqczkawcrswx4npptvkurkw4
|
||||
'@docusaurus/plugin-content-blog': 2.0.0-beta.21_fdtqczkawcrswx4npptvkurkw4
|
||||
'@docusaurus/plugin-content-docs': 2.0.0-beta.21_fdtqczkawcrswx4npptvkurkw4
|
||||
'@docusaurus/plugin-content-pages': 2.0.0-beta.21_fdtqczkawcrswx4npptvkurkw4
|
||||
'@docusaurus/theme-common': 2.0.0-beta.21_fdtqczkawcrswx4npptvkurkw4
|
||||
'@docusaurus/core': 2.0.0-beta.21_7zbbkxc27zhvltsjvx3tvjdibq
|
||||
'@docusaurus/plugin-content-blog': 2.0.0-beta.21_7zbbkxc27zhvltsjvx3tvjdibq
|
||||
'@docusaurus/plugin-content-docs': 2.0.0-beta.21_7zbbkxc27zhvltsjvx3tvjdibq
|
||||
'@docusaurus/plugin-content-pages': 2.0.0-beta.21_7zbbkxc27zhvltsjvx3tvjdibq
|
||||
'@docusaurus/theme-common': 2.0.0-beta.21_7zbbkxc27zhvltsjvx3tvjdibq
|
||||
'@docusaurus/theme-translations': 2.0.0-beta.21
|
||||
'@docusaurus/utils': 2.0.0-beta.21
|
||||
'@docusaurus/utils-common': 2.0.0-beta.21
|
||||
|
@ -3674,7 +3688,7 @@ packages:
|
|||
- webpack-cli
|
||||
dev: true
|
||||
|
||||
/@docusaurus/theme-common/2.0.0-beta.21_fdtqczkawcrswx4npptvkurkw4:
|
||||
/@docusaurus/theme-common/2.0.0-beta.21_7zbbkxc27zhvltsjvx3tvjdibq:
|
||||
resolution: {integrity: sha512-fTKoTLRfjuFG6c3iwnVjIIOensxWMgdBKLfyE5iih3Lq7tQgkE7NyTGG9BKLrnTJ7cAD2UXdXM9xbB7tBf1qzg==}
|
||||
engines: {node: '>=16.14'}
|
||||
peerDependencies:
|
||||
|
@ -3682,9 +3696,9 @@ packages:
|
|||
react-dom: ^16.8.4 || ^17.0.0
|
||||
dependencies:
|
||||
'@docusaurus/module-type-aliases': 2.0.0-beta.21_sfoxds7t5ydpegc3knd667wn6m
|
||||
'@docusaurus/plugin-content-blog': 2.0.0-beta.21_fdtqczkawcrswx4npptvkurkw4
|
||||
'@docusaurus/plugin-content-docs': 2.0.0-beta.21_fdtqczkawcrswx4npptvkurkw4
|
||||
'@docusaurus/plugin-content-pages': 2.0.0-beta.21_fdtqczkawcrswx4npptvkurkw4
|
||||
'@docusaurus/plugin-content-blog': 2.0.0-beta.21_7zbbkxc27zhvltsjvx3tvjdibq
|
||||
'@docusaurus/plugin-content-docs': 2.0.0-beta.21_7zbbkxc27zhvltsjvx3tvjdibq
|
||||
'@docusaurus/plugin-content-pages': 2.0.0-beta.21_7zbbkxc27zhvltsjvx3tvjdibq
|
||||
clsx: 1.1.1
|
||||
parse-numeric-range: 1.3.0
|
||||
prism-react-renderer: 1.3.3_react@17.0.2
|
||||
|
@ -3708,7 +3722,7 @@ packages:
|
|||
- webpack-cli
|
||||
dev: true
|
||||
|
||||
/@docusaurus/theme-search-algolia/2.0.0-beta.21_lkkesvnroznvxikbizbhppdw6u:
|
||||
/@docusaurus/theme-search-algolia/2.0.0-beta.21_4t7pnpkavygfgqzs4a6tbmil3y:
|
||||
resolution: {integrity: sha512-T1jKT8MVSSfnztSqeebUOpWHPoHKtwDXtKYE0xC99JWoZ+mMfv8AFhVSoSddn54jLJjV36mxg841eHQIySMCpQ==}
|
||||
engines: {node: '>=16.14'}
|
||||
peerDependencies:
|
||||
|
@ -3716,10 +3730,10 @@ packages:
|
|||
react-dom: ^16.8.4 || ^17.0.0
|
||||
dependencies:
|
||||
'@docsearch/react': 3.1.0_ku44vyaqhfvsakybl42wrekosu
|
||||
'@docusaurus/core': 2.0.0-beta.21_fdtqczkawcrswx4npptvkurkw4
|
||||
'@docusaurus/core': 2.0.0-beta.21_7zbbkxc27zhvltsjvx3tvjdibq
|
||||
'@docusaurus/logger': 2.0.0-beta.21
|
||||
'@docusaurus/plugin-content-docs': 2.0.0-beta.21_fdtqczkawcrswx4npptvkurkw4
|
||||
'@docusaurus/theme-common': 2.0.0-beta.21_fdtqczkawcrswx4npptvkurkw4
|
||||
'@docusaurus/plugin-content-docs': 2.0.0-beta.21_7zbbkxc27zhvltsjvx3tvjdibq
|
||||
'@docusaurus/theme-common': 2.0.0-beta.21_7zbbkxc27zhvltsjvx3tvjdibq
|
||||
'@docusaurus/theme-translations': 2.0.0-beta.21
|
||||
'@docusaurus/utils': 2.0.0-beta.21
|
||||
'@docusaurus/utils-validation': 2.0.0-beta.21
|
||||
|
@ -4210,6 +4224,7 @@ packages:
|
|||
pacote: 13.4.1
|
||||
semver: 7.3.7
|
||||
transitivePeerDependencies:
|
||||
- bluebird
|
||||
- supports-color
|
||||
dev: true
|
||||
|
||||
|
@ -4240,6 +4255,7 @@ packages:
|
|||
p-waterfall: 2.1.1
|
||||
semver: 7.3.7
|
||||
transitivePeerDependencies:
|
||||
- bluebird
|
||||
- supports-color
|
||||
dev: true
|
||||
|
||||
|
@ -4380,6 +4396,7 @@ packages:
|
|||
whatwg-url: 8.7.0
|
||||
yargs-parser: 20.2.4
|
||||
transitivePeerDependencies:
|
||||
- bluebird
|
||||
- supports-color
|
||||
dev: true
|
||||
|
||||
|
@ -4577,6 +4594,7 @@ packages:
|
|||
npm-registry-fetch: 9.0.0
|
||||
npmlog: 4.1.2
|
||||
transitivePeerDependencies:
|
||||
- bluebird
|
||||
- supports-color
|
||||
dev: true
|
||||
|
||||
|
@ -4606,6 +4624,7 @@ packages:
|
|||
pify: 5.0.0
|
||||
read-package-json: 3.0.1
|
||||
transitivePeerDependencies:
|
||||
- bluebird
|
||||
- supports-color
|
||||
dev: true
|
||||
|
||||
|
@ -4644,6 +4663,7 @@ packages:
|
|||
npmlog: 4.1.2
|
||||
tar: 6.1.11
|
||||
transitivePeerDependencies:
|
||||
- bluebird
|
||||
- supports-color
|
||||
dev: true
|
||||
|
||||
|
@ -4742,6 +4762,7 @@ packages:
|
|||
pacote: 13.4.1
|
||||
semver: 7.3.7
|
||||
transitivePeerDependencies:
|
||||
- bluebird
|
||||
- encoding
|
||||
- supports-color
|
||||
dev: true
|
||||
|
@ -4787,6 +4808,7 @@ packages:
|
|||
'@npmcli/run-script': 3.0.2
|
||||
npmlog: 4.1.2
|
||||
transitivePeerDependencies:
|
||||
- bluebird
|
||||
- supports-color
|
||||
dev: true
|
||||
|
||||
|
@ -4888,6 +4910,7 @@ packages:
|
|||
slash: 3.0.0
|
||||
write-json-file: 4.3.0
|
||||
transitivePeerDependencies:
|
||||
- bluebird
|
||||
- encoding
|
||||
- supports-color
|
||||
dev: true
|
||||
|
@ -5071,6 +5094,7 @@ packages:
|
|||
treeverse: 2.0.0
|
||||
walk-up-path: 1.0.0
|
||||
transitivePeerDependencies:
|
||||
- bluebird
|
||||
- supports-color
|
||||
dev: true
|
||||
|
||||
|
@ -5106,6 +5130,8 @@ packages:
|
|||
promise-retry: 2.0.1
|
||||
semver: 7.3.7
|
||||
which: 2.0.2
|
||||
transitivePeerDependencies:
|
||||
- bluebird
|
||||
dev: true
|
||||
|
||||
/@npmcli/installed-package-contents/1.0.7:
|
||||
|
@ -5136,6 +5162,7 @@ packages:
|
|||
pacote: 13.4.1
|
||||
semver: 7.3.7
|
||||
transitivePeerDependencies:
|
||||
- bluebird
|
||||
- supports-color
|
||||
dev: true
|
||||
|
||||
|
@ -5187,6 +5214,7 @@ packages:
|
|||
node-gyp: 9.0.0
|
||||
read-package-json-fast: 2.0.3
|
||||
transitivePeerDependencies:
|
||||
- bluebird
|
||||
- supports-color
|
||||
dev: true
|
||||
|
||||
|
@ -6269,6 +6297,7 @@ packages:
|
|||
stylelint-config-xo-scss: 0.15.0_cazrl3eatzhkw4y7xb6glndqh4
|
||||
transitivePeerDependencies:
|
||||
- eslint
|
||||
- eslint-import-resolver-webpack
|
||||
- postcss
|
||||
- prettier
|
||||
- supports-color
|
||||
|
@ -6288,6 +6317,7 @@ packages:
|
|||
stylelint-config-xo-scss: 0.15.0_zhymizk4kfitko2u2d4p3qwyee
|
||||
transitivePeerDependencies:
|
||||
- eslint
|
||||
- eslint-import-resolver-webpack
|
||||
- postcss
|
||||
- prettier
|
||||
- supports-color
|
||||
|
@ -6307,6 +6337,7 @@ packages:
|
|||
stylelint-config-xo-scss: 0.15.0_cazrl3eatzhkw4y7xb6glndqh4
|
||||
transitivePeerDependencies:
|
||||
- eslint
|
||||
- eslint-import-resolver-webpack
|
||||
- postcss
|
||||
- prettier
|
||||
- supports-color
|
||||
|
@ -6330,7 +6361,7 @@ packages:
|
|||
eslint-import-resolver-typescript: 2.5.0_rnagsyfcubvpoxo2ynj23pim7u
|
||||
eslint-plugin-consistent-default-export-name: 0.0.7
|
||||
eslint-plugin-eslint-comments: 3.2.0_eslint@8.10.0
|
||||
eslint-plugin-import: 2.25.4_eslint@8.10.0
|
||||
eslint-plugin-import: 2.25.4_sidoke6kqbkbdht6nlmwbfnany
|
||||
eslint-plugin-no-use-extend-native: 0.5.0
|
||||
eslint-plugin-node: 11.1.0_eslint@8.10.0
|
||||
eslint-plugin-prettier: 3.4.1_6pitu4b2tqihty6rv5qeiyb35m
|
||||
|
@ -6340,6 +6371,7 @@ packages:
|
|||
pkg-dir: 4.2.0
|
||||
prettier: 2.5.1
|
||||
transitivePeerDependencies:
|
||||
- eslint-import-resolver-webpack
|
||||
- supports-color
|
||||
- typescript
|
||||
dev: true
|
||||
|
@ -6361,7 +6393,7 @@ packages:
|
|||
eslint-import-resolver-typescript: 2.5.0_rnagsyfcubvpoxo2ynj23pim7u
|
||||
eslint-plugin-consistent-default-export-name: 0.0.7
|
||||
eslint-plugin-eslint-comments: 3.2.0_eslint@8.10.0
|
||||
eslint-plugin-import: 2.25.4_eslint@8.10.0
|
||||
eslint-plugin-import: 2.25.4_sidoke6kqbkbdht6nlmwbfnany
|
||||
eslint-plugin-no-use-extend-native: 0.5.0
|
||||
eslint-plugin-node: 11.1.0_eslint@8.10.0
|
||||
eslint-plugin-prettier: 3.4.1_6pitu4b2tqihty6rv5qeiyb35m
|
||||
|
@ -6371,6 +6403,7 @@ packages:
|
|||
pkg-dir: 4.2.0
|
||||
prettier: 2.5.1
|
||||
transitivePeerDependencies:
|
||||
- eslint-import-resolver-webpack
|
||||
- supports-color
|
||||
- typescript
|
||||
dev: true
|
||||
|
@ -6392,7 +6425,7 @@ packages:
|
|||
eslint-import-resolver-typescript: 2.5.0_rnagsyfcubvpoxo2ynj23pim7u
|
||||
eslint-plugin-consistent-default-export-name: 0.0.7
|
||||
eslint-plugin-eslint-comments: 3.2.0_eslint@8.10.0
|
||||
eslint-plugin-import: 2.25.4_eslint@8.10.0
|
||||
eslint-plugin-import: 2.25.4_sidoke6kqbkbdht6nlmwbfnany
|
||||
eslint-plugin-no-use-extend-native: 0.5.0
|
||||
eslint-plugin-node: 11.1.0_eslint@8.10.0
|
||||
eslint-plugin-prettier: 3.4.1_6pitu4b2tqihty6rv5qeiyb35m
|
||||
|
@ -6402,6 +6435,7 @@ packages:
|
|||
pkg-dir: 4.2.0
|
||||
prettier: 2.5.1
|
||||
transitivePeerDependencies:
|
||||
- eslint-import-resolver-webpack
|
||||
- supports-color
|
||||
- typescript
|
||||
dev: true
|
||||
|
@ -6423,7 +6457,7 @@ packages:
|
|||
eslint-import-resolver-typescript: 2.5.0_rnagsyfcubvpoxo2ynj23pim7u
|
||||
eslint-plugin-consistent-default-export-name: 0.0.7
|
||||
eslint-plugin-eslint-comments: 3.2.0_eslint@8.10.0
|
||||
eslint-plugin-import: 2.25.4_eslint@8.10.0
|
||||
eslint-plugin-import: 2.25.4_sidoke6kqbkbdht6nlmwbfnany
|
||||
eslint-plugin-no-use-extend-native: 0.5.0
|
||||
eslint-plugin-node: 11.1.0_eslint@8.10.0
|
||||
eslint-plugin-prettier: 3.4.1_6pitu4b2tqihty6rv5qeiyb35m
|
||||
|
@ -6433,6 +6467,7 @@ packages:
|
|||
pkg-dir: 4.2.0
|
||||
prettier: 2.5.1
|
||||
transitivePeerDependencies:
|
||||
- eslint-import-resolver-webpack
|
||||
- supports-color
|
||||
- typescript
|
||||
dev: true
|
||||
|
@ -8889,6 +8924,8 @@ packages:
|
|||
ssri: 8.0.1
|
||||
tar: 6.1.11
|
||||
unique-filename: 1.1.1
|
||||
transitivePeerDependencies:
|
||||
- bluebird
|
||||
dev: true
|
||||
|
||||
/cacache/16.1.0:
|
||||
|
@ -8913,6 +8950,8 @@ packages:
|
|||
ssri: 9.0.1
|
||||
tar: 6.1.11
|
||||
unique-filename: 1.1.1
|
||||
transitivePeerDependencies:
|
||||
- bluebird
|
||||
dev: true
|
||||
|
||||
/cache-content-type/1.0.1:
|
||||
|
@ -10165,6 +10204,11 @@ packages:
|
|||
|
||||
/debug/3.2.7:
|
||||
resolution: {integrity: sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==}
|
||||
peerDependencies:
|
||||
supports-color: '*'
|
||||
peerDependenciesMeta:
|
||||
supports-color:
|
||||
optional: true
|
||||
dependencies:
|
||||
ms: 2.1.3
|
||||
dev: true
|
||||
|
@ -10491,7 +10535,7 @@ packages:
|
|||
'@docusaurus/core': ^2.0.0-beta
|
||||
sass: ^1.30.0
|
||||
dependencies:
|
||||
'@docusaurus/core': 2.0.0-beta.21_fdtqczkawcrswx4npptvkurkw4
|
||||
'@docusaurus/core': 2.0.0-beta.21_7zbbkxc27zhvltsjvx3tvjdibq
|
||||
sass: 1.52.3
|
||||
sass-loader: 10.2.1_sass@1.52.3+webpack@5.72.1
|
||||
transitivePeerDependencies:
|
||||
|
@ -10972,6 +11016,8 @@ packages:
|
|||
dependencies:
|
||||
debug: 3.2.7
|
||||
resolve: 1.22.0
|
||||
transitivePeerDependencies:
|
||||
- supports-color
|
||||
dev: true
|
||||
|
||||
/eslint-import-resolver-typescript/2.5.0_rnagsyfcubvpoxo2ynj23pim7u:
|
||||
|
@ -10983,7 +11029,7 @@ packages:
|
|||
dependencies:
|
||||
debug: 4.3.3
|
||||
eslint: 8.10.0
|
||||
eslint-plugin-import: 2.25.4_eslint@8.10.0
|
||||
eslint-plugin-import: 2.25.4_sidoke6kqbkbdht6nlmwbfnany
|
||||
glob: 7.2.0
|
||||
is-glob: 4.0.3
|
||||
resolve: 1.22.0
|
||||
|
@ -10992,12 +11038,31 @@ packages:
|
|||
- supports-color
|
||||
dev: true
|
||||
|
||||
/eslint-module-utils/2.7.3:
|
||||
/eslint-module-utils/2.7.3_l62aq42yiamaj3cnpuf6avthf4:
|
||||
resolution: {integrity: sha512-088JEC7O3lDZM9xGe0RerkOMd0EjFl+Yvd1jPWIkMT5u3H9+HC34mWWPnqPrN13gieT9pBOO+Qt07Nb/6TresQ==}
|
||||
engines: {node: '>=4'}
|
||||
peerDependencies:
|
||||
'@typescript-eslint/parser': '*'
|
||||
eslint-import-resolver-node: '*'
|
||||
eslint-import-resolver-typescript: '*'
|
||||
eslint-import-resolver-webpack: '*'
|
||||
peerDependenciesMeta:
|
||||
'@typescript-eslint/parser':
|
||||
optional: true
|
||||
eslint-import-resolver-node:
|
||||
optional: true
|
||||
eslint-import-resolver-typescript:
|
||||
optional: true
|
||||
eslint-import-resolver-webpack:
|
||||
optional: true
|
||||
dependencies:
|
||||
'@typescript-eslint/parser': 5.14.0_fo4uz55zgcu432252zy2gvpvcu
|
||||
debug: 3.2.7
|
||||
eslint-import-resolver-node: 0.3.6
|
||||
eslint-import-resolver-typescript: 2.5.0_rnagsyfcubvpoxo2ynj23pim7u
|
||||
find-up: 2.1.0
|
||||
transitivePeerDependencies:
|
||||
- supports-color
|
||||
dev: true
|
||||
|
||||
/eslint-plugin-consistent-default-export-name/0.0.7:
|
||||
|
@ -11032,19 +11097,24 @@ packages:
|
|||
ignore: 5.2.0
|
||||
dev: true
|
||||
|
||||
/eslint-plugin-import/2.25.4_eslint@8.10.0:
|
||||
/eslint-plugin-import/2.25.4_sidoke6kqbkbdht6nlmwbfnany:
|
||||
resolution: {integrity: sha512-/KJBASVFxpu0xg1kIBn9AUa8hQVnszpwgE7Ld0lKAlx7Ie87yzEzCgSkekt+le/YVhiaosO4Y14GDAOc41nfxA==}
|
||||
engines: {node: '>=4'}
|
||||
peerDependencies:
|
||||
'@typescript-eslint/parser': '*'
|
||||
eslint: ^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8
|
||||
peerDependenciesMeta:
|
||||
'@typescript-eslint/parser':
|
||||
optional: true
|
||||
dependencies:
|
||||
'@typescript-eslint/parser': 5.14.0_fo4uz55zgcu432252zy2gvpvcu
|
||||
array-includes: 3.1.4
|
||||
array.prototype.flat: 1.2.5
|
||||
debug: 2.6.9
|
||||
doctrine: 2.1.0
|
||||
eslint: 8.10.0
|
||||
eslint-import-resolver-node: 0.3.6
|
||||
eslint-module-utils: 2.7.3
|
||||
eslint-module-utils: 2.7.3_l62aq42yiamaj3cnpuf6avthf4
|
||||
has: 1.0.3
|
||||
is-core-module: 2.8.1
|
||||
is-glob: 4.0.3
|
||||
|
@ -11052,6 +11122,10 @@ packages:
|
|||
object.values: 1.1.5
|
||||
resolve: 1.22.0
|
||||
tsconfig-paths: 3.13.0
|
||||
transitivePeerDependencies:
|
||||
- eslint-import-resolver-typescript
|
||||
- eslint-import-resolver-webpack
|
||||
- supports-color
|
||||
dev: true
|
||||
|
||||
/eslint-plugin-no-use-extend-native/0.5.0:
|
||||
|
@ -11754,7 +11828,7 @@ packages:
|
|||
resolution: {integrity: sha512-k6GAGDyqLe9JaebCsFCoudPPWfihKu8pylYXRlqP1J7ms39iPoTtk2fviNglIeQEwdh0bQeKJ01ZPyuyQvKzwg==}
|
||||
dev: true
|
||||
|
||||
/fork-ts-checker-webpack-plugin/6.5.1_6h45roczohgm7o2nc4xumorhj4:
|
||||
/fork-ts-checker-webpack-plugin/6.5.1_kvzlca67nxfnqkyddthlsvxxqa:
|
||||
resolution: {integrity: sha512-x1wumpHOEf4gDROmKTaB6i4/Q6H3LwmjVO7fIX47vBwlZbtPjU33hgoMuD/Q/y6SU8bnuYSoN6ZQOLshGp0T/g==}
|
||||
engines: {node: '>=10', yarn: '>=1.0.0'}
|
||||
peerDependencies:
|
||||
|
@ -11774,6 +11848,7 @@ packages:
|
|||
chokidar: 3.5.3
|
||||
cosmiconfig: 6.0.0
|
||||
deepmerge: 4.2.2
|
||||
eslint: 8.10.0
|
||||
fs-extra: 9.1.0
|
||||
glob: 7.2.0
|
||||
memfs: 3.4.1
|
||||
|
@ -14427,6 +14502,7 @@ packages:
|
|||
import-local: 3.1.0
|
||||
npmlog: 4.1.2
|
||||
transitivePeerDependencies:
|
||||
- bluebird
|
||||
- encoding
|
||||
- supports-color
|
||||
dev: true
|
||||
|
@ -14459,6 +14535,7 @@ packages:
|
|||
npm-package-arg: 8.1.5
|
||||
npm-registry-fetch: 11.0.0
|
||||
transitivePeerDependencies:
|
||||
- bluebird
|
||||
- supports-color
|
||||
dev: true
|
||||
|
||||
|
@ -14472,6 +14549,7 @@ packages:
|
|||
semver: 7.3.7
|
||||
ssri: 8.0.1
|
||||
transitivePeerDependencies:
|
||||
- bluebird
|
||||
- supports-color
|
||||
dev: true
|
||||
|
||||
|
@ -14858,6 +14936,7 @@ packages:
|
|||
socks-proxy-agent: 6.1.1
|
||||
ssri: 9.0.1
|
||||
transitivePeerDependencies:
|
||||
- bluebird
|
||||
- supports-color
|
||||
dev: true
|
||||
|
||||
|
@ -14881,6 +14960,7 @@ packages:
|
|||
socks-proxy-agent: 5.0.1
|
||||
ssri: 8.0.1
|
||||
transitivePeerDependencies:
|
||||
- bluebird
|
||||
- supports-color
|
||||
dev: true
|
||||
|
||||
|
@ -14905,6 +14985,7 @@ packages:
|
|||
socks-proxy-agent: 6.1.1
|
||||
ssri: 8.0.1
|
||||
transitivePeerDependencies:
|
||||
- bluebird
|
||||
- supports-color
|
||||
dev: true
|
||||
|
||||
|
@ -15876,6 +15957,7 @@ packages:
|
|||
tar: 6.1.11
|
||||
which: 2.0.2
|
||||
transitivePeerDependencies:
|
||||
- bluebird
|
||||
- supports-color
|
||||
dev: true
|
||||
|
||||
|
@ -16082,6 +16164,7 @@ packages:
|
|||
minizlib: 2.1.2
|
||||
npm-package-arg: 8.1.5
|
||||
transitivePeerDependencies:
|
||||
- bluebird
|
||||
- supports-color
|
||||
dev: true
|
||||
|
||||
|
@ -16097,6 +16180,7 @@ packages:
|
|||
npm-package-arg: 9.0.2
|
||||
proc-log: 2.0.1
|
||||
transitivePeerDependencies:
|
||||
- bluebird
|
||||
- supports-color
|
||||
dev: true
|
||||
|
||||
|
@ -16113,6 +16197,7 @@ packages:
|
|||
minizlib: 2.1.2
|
||||
npm-package-arg: 8.1.5
|
||||
transitivePeerDependencies:
|
||||
- bluebird
|
||||
- supports-color
|
||||
dev: true
|
||||
|
||||
|
@ -16603,6 +16688,7 @@ packages:
|
|||
ssri: 9.0.1
|
||||
tar: 6.1.11
|
||||
transitivePeerDependencies:
|
||||
- bluebird
|
||||
- supports-color
|
||||
dev: true
|
||||
|
||||
|
@ -17804,6 +17890,11 @@ packages:
|
|||
|
||||
/promise-inflight/1.0.1:
|
||||
resolution: {integrity: sha1-mEcocL8igTL8vdhoEputEsPAKeM=}
|
||||
peerDependencies:
|
||||
bluebird: '*'
|
||||
peerDependenciesMeta:
|
||||
bluebird:
|
||||
optional: true
|
||||
dev: true
|
||||
|
||||
/promise-retry/2.0.1:
|
||||
|
@ -18083,7 +18174,7 @@ packages:
|
|||
pure-color: 1.3.0
|
||||
dev: true
|
||||
|
||||
/react-dev-utils/12.0.1_6h45roczohgm7o2nc4xumorhj4:
|
||||
/react-dev-utils/12.0.1_kvzlca67nxfnqkyddthlsvxxqa:
|
||||
resolution: {integrity: sha512-84Ivxmr17KjUupyqzFode6xKhjwuEJDROWKJy/BthkL7Wn6NJ8h4WE6k/exAv6ImS+0oZLRRW5j/aINMHyeGeQ==}
|
||||
engines: {node: '>=14'}
|
||||
dependencies:
|
||||
|
@ -18096,7 +18187,7 @@ packages:
|
|||
escape-string-regexp: 4.0.0
|
||||
filesize: 8.0.7
|
||||
find-up: 5.0.0
|
||||
fork-ts-checker-webpack-plugin: 6.5.1_6h45roczohgm7o2nc4xumorhj4
|
||||
fork-ts-checker-webpack-plugin: 6.5.1_kvzlca67nxfnqkyddthlsvxxqa
|
||||
global-modules: 2.0.0
|
||||
globby: 11.1.0
|
||||
gzip-size: 6.0.0
|
||||
|
|
Loading…
Add table
Reference in a new issue