diff --git a/docusaurus.config.js b/docusaurus.config.js
index 6baa2b3..a0c97b6 100644
--- a/docusaurus.config.js
+++ b/docusaurus.config.js
@@ -4,267 +4,266 @@ const katex = require("rehype-katex");
const mermaid = require("mdx-mermaid");
const VersionsArchived = require("./versionsArchived.json");
-// With JSDoc @type annotations, IDEs can provide config autocompletion
-/** @type {import('@docusaurus/types').DocusaurusConfig} */
-(
- module.exports = {
- title: "Halo Documents",
- tagline: "Halo 博客系统的文档站点",
- url: "https://docs.halo.run",
- baseUrl: "/",
- onBrokenLinks: "throw",
- onBrokenMarkdownLinks: "warn",
- favicon: "img/favicon-96x96.png",
- i18n: {
- defaultLocale: "zh-Hans",
- locales: ["zh-Hans"],
- },
- organizationName: "halo-dev", // Usually your GitHub org/user name.
- projectName: "halo", // Usually your repo name.
+/** @type {import('@docusaurus/types').Config} */
+const config = {
+ title: "Halo Documents",
+ tagline: "Halo 博客系统的文档站点",
+ url: "https://docs.halo.run",
+ baseUrl: "/",
+ onBrokenLinks: "warn",
+ onBrokenMarkdownLinks: "warn",
+ favicon: "img/favicon-96x96.png",
+ i18n: {
+ defaultLocale: "zh-Hans",
+ locales: ["zh-Hans"],
+ },
+ organizationName: "halo-dev", // Usually your GitHub org/user name.
+ projectName: "halo", // Usually your repo name.
- presets: [
- [
- "@docusaurus/preset-classic",
- /** @type {import('@docusaurus/preset-classic').Options} */
- ({
- docs: {
- sidebarPath: require.resolve("./sidebars.js"),
- // Please change this to your repo.
- editUrl: "https://github.com/halo-dev/docs/edit/main/",
- routeBasePath: "/",
- showLastUpdateTime: true,
- showLastUpdateAuthor: true,
- remarkPlugins: [math, mermaid],
- rehypePlugins: [katex],
- },
- blog: false,
- theme: {
- customCss: require.resolve("./src/css/custom.css"),
- },
- sitemap: {
- changefreq: "weekly",
- priority: 0.5,
- },
- googleAnalytics: {
- trackingID: "UA-110780416-7",
- },
- gtag: {
- trackingID: "UA-110780416-7",
- },
- }),
- ],
- ],
-
- themeConfig:
- /** @type {import('@docusaurus/preset-classic').ThemeConfig} */
+ presets: [
+ [
+ "classic",
+ /** @type {import('@docusaurus/preset-classic').Options} */
({
- navbar: {
- title: "Halo Documents",
- logo: {
- alt: "Halo Logo",
- src: "https://halo.run/upload/2021/03/Adaptive256-463ca9b92e2d40268431018c07735842.png",
- },
- items: [
- {
- href: "https://halo.run",
- label: "官网",
- },
- {
- href: "https://bbs.halo.run",
- label: "论坛",
- },
- {
- type: "docsVersionDropdown",
- position: "right",
- dropdownActiveClassDisabled: true,
- dropdownItemsAfter: [
- ...Object.entries(VersionsArchived).map(
- ([versionName, versionUrl]) => ({
- label: versionName,
- href: versionUrl,
- })
- ),
- {
- to: "/versions",
- label: "All versions",
- },
- ],
- },
- {
- href: "https://github.com/halo-dev/halo",
- label: "GitHub",
- position: "right",
- },
- {
- href: "https://gitee.com/halo-dev/halo",
- label: "Gitee",
- position: "right",
- },
- ],
+ docs: {
+ sidebarPath: require.resolve("./sidebars.js"),
+ // Please change this to your repo.
+ editUrl: "https://github.com/halo-dev/docs/edit/main/",
+ routeBasePath: "/",
+ showLastUpdateTime: true,
+ showLastUpdateAuthor: true,
+ remarkPlugins: [math, mermaid],
+ rehypePlugins: [katex],
},
- footer: {
- style: "dark",
- copyright: `Copyright © 2022 FIT2CLOUD 飞致云. Built with Docusaurus.`,
- links: [
- {
- title: "关于",
- items: [
- {
- label: "官网",
- href: "https://halo.run",
- },
- {
- label: "主题仓库",
- href: "https://halo.run/themes.html",
- },
- {
- label: "GitHub 组织",
- href: "https://github.com/halo-dev",
- },
- {
- label: "Gitee 组织",
- href: "https://gitee.com/halo-dev",
- },
- {
- label: "Server Status",
- href: "https://status.halo.run",
- },
- ],
- },
- {
- title: "社区",
- items: [
- {
- label: "官方论坛",
- href: "https://bbs.halo.run",
- },
- {
- label: "微信公众号",
- href: "https://halo.run/upload/2021/03/B3C27F16-4890-4633-81CC-20BA4B28F94F-2415126255c749b290312ca22d9bdeb0.jpeg",
- },
- {
- label: "微信群申请",
- href: "https://wj.qq.com/s2/8434455/9170/",
- },
- {
- label: "GitHub Issues",
- href: "https://github.com/halo-dev/halo/issues",
- },
- {
- label: "Telegram Channel",
- href: "https://t.me/halo_dev",
- },
- {
- label: "Telegram Group",
- href: "https://t.me/HaloBlog",
- },
- ],
- },
- ],
+ blog: false,
+ theme: {
+ customCss: require.resolve("./src/css/custom.css"),
},
- prism: {
- theme: darkCodeTheme,
- darkTheme: darkCodeTheme,
+ sitemap: {
+ changefreq: "weekly",
+ priority: 0.5,
},
- algolia: {
- apiKey: "739f2a55c6d13d93af146c22a4885669",
- indexName: "docs",
- contextualSearch: true,
- appId: "OG53LY1OQH",
+ googleAnalytics: {
+ trackingID: "UA-110780416-7",
},
- }),
- plugins: [
- [
- "@docusaurus/plugin-client-redirects",
- {
- redirects: [
- {
- to: "/getting-started/install/linux",
- from: [
- "/zh/install",
- "/install",
- "/zh/install/index",
- "/install/index",
- "/zh/install/linux",
- "/install/linux",
- ],
- },
- {
- to: "/getting-started/install/docker",
- from: ["/zh/install/docker", "/install/docker"],
- },
- {
- to: "/getting-started/install/other/bt-panel",
- from: ["/zh/install/bt-panel", "/install/bt-panel"],
- },
- {
- to: "/getting-started/install/other/oneinstack",
- from: ["/zh/install/oneinstack", "/install/oneinstack"],
- },
- {
- to: "/getting-started/install/other/tencent-cloudbase",
- from: [
- "/zh/install/tencent-cloudbase",
- "/install/tencent-cloudbase",
- ],
- },
- {
- to: "/getting-started/prepare",
- from: ["/zh/install/prepare", "/install/prepare"],
- },
- {
- to: "/getting-started/config",
- from: ["/zh/install/config", "/install/config"],
- },
- {
- to: "/getting-started/upgrade",
- from: ["/zh/install/upgrade", "/install/upgrade"],
- },
- {
- to: "/getting-started/downloads",
- from: ["/zh/install/downloads", "/install/downloads"],
- },
- {
- to: "/user-guide/backup-migration",
- from: ["/zh/user-guide/backup-migration"],
- },
- {
- to: "/user-guide/markdown",
- from: ["/zh/user-guide/markdown"],
- },
- {
- to: "/developer-guide/core/structure",
- from: ["/zh/developer-guide/core", "/developer-guide/core"],
- },
- {
- to: "/developer-guide/theme/prepare",
- from: ["/zh/developer-guide/theme", "/developer-guide/theme"],
- },
- {
- to: "/contribution/issue",
- from: ["/zh/contribution/issue"],
- },
- {
- to: "/contribution/pr",
- from: ["/zh/contribution/pr"],
- },
- ],
+ gtag: {
+ trackingID: "UA-110780416-7",
},
- ],
+ }),
],
- scripts: [
- {
- src: "https://analytics.halo.run/umami.js",
- async: true,
- defer: true,
- "data-website-id": "7e8d48ad-973d-4b44-b36d-ea1f1df25baa",
+ ],
+
+ themeConfig:
+ /** @type {import('@docusaurus/preset-classic').ThemeConfig} */
+ ({
+ navbar: {
+ title: "Halo Documents",
+ logo: {
+ alt: "Halo Logo",
+ src: "https://halo.run/upload/2021/03/Adaptive256-463ca9b92e2d40268431018c07735842.png",
+ },
+ items: [
+ {
+ href: "https://halo.run",
+ label: "官网",
+ },
+ {
+ href: "https://bbs.halo.run",
+ label: "论坛",
+ },
+ {
+ type: "docsVersionDropdown",
+ position: "right",
+ dropdownActiveClassDisabled: true,
+ dropdownItemsAfter: [
+ ...Object.entries(VersionsArchived).map(
+ ([versionName, versionUrl]) => ({
+ label: versionName,
+ href: versionUrl,
+ })
+ ),
+ {
+ to: "/versions",
+ label: "All versions",
+ },
+ ],
+ },
+ {
+ href: "https://github.com/halo-dev/halo",
+ label: "GitHub",
+ position: "right",
+ },
+ {
+ href: "https://gitee.com/halo-dev/halo",
+ label: "Gitee",
+ position: "right",
+ },
+ ],
},
- ],
- stylesheets: [
+ footer: {
+ style: "dark",
+ copyright: `Copyright © 2022 FIT2CLOUD 飞致云. Built with Docusaurus.`,
+ links: [
+ {
+ title: "关于",
+ items: [
+ {
+ label: "官网",
+ href: "https://halo.run",
+ },
+ {
+ label: "主题仓库",
+ href: "https://halo.run/themes.html",
+ },
+ {
+ label: "GitHub 组织",
+ href: "https://github.com/halo-dev",
+ },
+ {
+ label: "Gitee 组织",
+ href: "https://gitee.com/halo-dev",
+ },
+ {
+ label: "Server Status",
+ href: "https://status.halo.run",
+ },
+ ],
+ },
+ {
+ title: "社区",
+ items: [
+ {
+ label: "官方论坛",
+ href: "https://bbs.halo.run",
+ },
+ {
+ label: "微信公众号",
+ href: "https://halo.run/upload/2021/03/B3C27F16-4890-4633-81CC-20BA4B28F94F-2415126255c749b290312ca22d9bdeb0.jpeg",
+ },
+ {
+ label: "微信群申请",
+ href: "https://wj.qq.com/s2/8434455/9170/",
+ },
+ {
+ label: "GitHub Issues",
+ href: "https://github.com/halo-dev/halo/issues",
+ },
+ {
+ label: "Telegram Channel",
+ href: "https://t.me/halo_dev",
+ },
+ {
+ label: "Telegram Group",
+ href: "https://t.me/HaloBlog",
+ },
+ ],
+ },
+ ],
+ },
+ prism: {
+ theme: darkCodeTheme,
+ darkTheme: darkCodeTheme,
+ },
+ algolia: {
+ apiKey: "739f2a55c6d13d93af146c22a4885669",
+ indexName: "docs",
+ contextualSearch: true,
+ appId: "OG53LY1OQH",
+ },
+ }),
+ plugins: [
+ [
+ "@docusaurus/plugin-client-redirects",
{
- href: "https://unpkg.com/katex@0.12.0/dist/katex.min.css",
- type: "text/css",
+ redirects: [
+ {
+ to: "/getting-started/install/linux",
+ from: [
+ "/zh/install",
+ "/install",
+ "/zh/install/index",
+ "/install/index",
+ "/zh/install/linux",
+ "/install/linux",
+ ],
+ },
+ {
+ to: "/getting-started/install/docker",
+ from: ["/zh/install/docker", "/install/docker"],
+ },
+ {
+ to: "/getting-started/install/other/bt-panel",
+ from: ["/zh/install/bt-panel", "/install/bt-panel"],
+ },
+ {
+ to: "/getting-started/install/other/oneinstack",
+ from: ["/zh/install/oneinstack", "/install/oneinstack"],
+ },
+ {
+ to: "/getting-started/install/other/tencent-cloudbase",
+ from: [
+ "/zh/install/tencent-cloudbase",
+ "/install/tencent-cloudbase",
+ ],
+ },
+ {
+ to: "/getting-started/prepare",
+ from: ["/zh/install/prepare", "/install/prepare"],
+ },
+ {
+ to: "/getting-started/config",
+ from: ["/zh/install/config", "/install/config"],
+ },
+ {
+ to: "/getting-started/upgrade",
+ from: ["/zh/install/upgrade", "/install/upgrade"],
+ },
+ {
+ to: "/getting-started/downloads",
+ from: ["/zh/install/downloads", "/install/downloads"],
+ },
+ {
+ to: "/user-guide/backup-migration",
+ from: ["/zh/user-guide/backup-migration"],
+ },
+ {
+ to: "/user-guide/markdown",
+ from: ["/zh/user-guide/markdown"],
+ },
+ {
+ to: "/developer-guide/core/structure",
+ from: ["/zh/developer-guide/core", "/developer-guide/core"],
+ },
+ {
+ to: "/developer-guide/theme/prepare",
+ from: ["/zh/developer-guide/theme", "/developer-guide/theme"],
+ },
+ {
+ to: "/contribution/issue",
+ from: ["/zh/contribution/issue"],
+ },
+ {
+ to: "/contribution/pr",
+ from: ["/zh/contribution/pr"],
+ },
+ ],
},
],
- }
-);
+ ],
+ scripts: [
+ {
+ src: "https://analytics.halo.run/umami.js",
+ async: true,
+ defer: true,
+ "data-website-id": "7e8d48ad-973d-4b44-b36d-ea1f1df25baa",
+ },
+ ],
+ stylesheets: [
+ {
+ href: "https://unpkg.com/katex@0.12.0/dist/katex.min.css",
+ type: "text/css",
+ },
+ ],
+};
+
+module.exports = config;
diff --git a/i18n/zh-Hans/code.json b/i18n/zh-Hans/code.json
index fd14b14..ddae5eb 100644
--- a/i18n/zh-Hans/code.json
+++ b/i18n/zh-Hans/code.json
@@ -25,13 +25,25 @@
"message": "请联系原始链接来源网站的所有者,并告知他们链接已损坏。",
"description": "The 2nd paragraph of the 404 page"
},
- "theme.AnnouncementBar.closeButtonAriaLabel": {
- "message": "关闭",
- "description": "The ARIA label for close button of announcement bar"
+ "theme.admonition.note": {
+ "message": "备注",
+ "description": "The default label used for the Note admonition (:::note)"
},
- "theme.BackToTopButton.buttonAriaLabel": {
- "message": "回到顶部",
- "description": "The ARIA label for the back to top button"
+ "theme.admonition.tip": {
+ "message": "提示",
+ "description": "The default label used for the Tip admonition (:::tip)"
+ },
+ "theme.admonition.danger": {
+ "message": "危险",
+ "description": "The default label used for the Danger admonition (:::danger)"
+ },
+ "theme.admonition.info": {
+ "message": "信息",
+ "description": "The default label used for the Info admonition (:::info)"
+ },
+ "theme.admonition.caution": {
+ "message": "警告",
+ "description": "The default label used for the Caution admonition (:::caution)"
},
"theme.blog.archive.title": {
"message": "历史博文",
@@ -41,17 +53,9 @@
"message": "历史博文",
"description": "The page & hero description of the blog archive page"
},
- "theme.blog.post.readingTime.plurals": {
- "message": "{readingTime} 分钟阅读",
- "description": "Pluralized label for \"{readingTime} min read\". Use as much plural forms (separated by \"|\") as your language support (see https://www.unicode.org/cldr/cldr-aux/charts/34/supplemental/language_plural_rules.html)"
- },
- "theme.blog.post.readMoreLabel": {
- "message": "阅读 {title} 的全文",
- "description": "The ARIA label for the link to full blog posts from excerpts"
- },
- "theme.blog.post.readMore": {
- "message": "阅读更多",
- "description": "The label used in blog post item excerpts to link to full blog posts"
+ "theme.BackToTopButton.buttonAriaLabel": {
+ "message": "回到顶部",
+ "description": "The ARIA label for the back to top button"
},
"theme.blog.paginator.navAriaLabel": {
"message": "博文列表分页导航",
@@ -77,10 +81,6 @@
"message": "较旧一篇",
"description": "The blog post button label to navigate to the older/next post"
},
- "theme.blog.sidebar.navAriaLabel": {
- "message": "最近博文导航",
- "description": "The ARIA label for recent posts in the blog sidebar"
- },
"theme.blog.post.plurals": {
"message": "{count} 篇博文",
"description": "Pluralized label for \"{count} posts\". Use as much plural forms (separated by \"|\") as your language support (see https://www.unicode.org/cldr/cldr-aux/charts/34/supplemental/language_plural_rules.html)"
@@ -93,18 +93,6 @@
"message": "查看所有标签",
"description": "The label of the link targeting the tag list page"
},
- "theme.CodeBlock.copyButtonAriaLabel": {
- "message": "复制代码到剪贴板",
- "description": "The ARIA label for copy code blocks button"
- },
- "theme.CodeBlock.copied": {
- "message": "复制成功",
- "description": "The copied button label on code blocks"
- },
- "theme.CodeBlock.copy": {
- "message": "复制",
- "description": "The copy button label on code blocks"
- },
"theme.colorToggle.ariaLabel": {
"message": "切换浅色/暗黑模式(当前为{mode})",
"description": "The ARIA label for the navbar color mode toggle"
@@ -117,18 +105,18 @@
"message": "浅色模式",
"description": "The name for the light color mode"
},
+ "theme.docs.breadcrumbs.home": {
+ "message": "主页面",
+ "description": "The ARIA label for the home page in the breadcrumbs"
+ },
+ "theme.docs.breadcrumbs.navAriaLabel": {
+ "message": "页面路径",
+ "description": "The ARIA label for the breadcrumbs"
+ },
"theme.docs.DocCard.categoryDescription": {
"message": "{count} 个项目",
"description": "The default description for a category card in the generated index about how many items this category includes"
},
- "theme.docs.sidebar.expandButtonTitle": {
- "message": "展开侧边栏",
- "description": "The ARIA label and title attribute for expand button of doc sidebar"
- },
- "theme.docs.sidebar.expandButtonAriaLabel": {
- "message": "展开侧边栏",
- "description": "The ARIA label and title attribute for expand button of doc sidebar"
- },
"theme.docs.paginator.navAriaLabel": {
"message": "文档分页导航",
"description": "The ARIA label for the docs pagination"
@@ -141,24 +129,12 @@
"message": "下一页",
"description": "The label used to navigate to the next doc"
},
- "theme.docs.sidebar.collapseButtonTitle": {
- "message": "收起侧边栏",
- "description": "The title attribute for collapse button of doc sidebar"
- },
- "theme.docs.sidebar.collapseButtonAriaLabel": {
- "message": "收起侧边栏",
- "description": "The title attribute for collapse button of doc sidebar"
- },
- "theme.DocSidebarItem.toggleCollapsedCategoryAriaLabel": {
- "message": "打开/收起侧边栏菜单「{label}」",
- "description": "The ARIA label to toggle the collapsible sidebar category"
- },
"theme.docs.tagDocListPageTitle.nDocsTagged": {
"message": "{count} 篇文档带有标签",
"description": "Pluralized label for \"{count} docs tagged\". Use as much plural forms (separated by \"|\") as your language support (see https://www.unicode.org/cldr/cldr-aux/charts/34/supplemental/language_plural_rules.html)"
},
"theme.docs.tagDocListPageTitle": {
- "message": "{nDocsTagged} 篇带有标签「{tagName}」",
+ "message": "{nDocsTagged}「{tagName}」",
"description": "The title of the page for a docs tag"
},
"theme.docs.versionBadge.label": {
@@ -200,10 +176,6 @@
"message": "最后{byUser}{atDate}更新",
"description": "The sentence used to display when a page has been last updated, and by who"
},
- "theme.navbar.mobileSidebarSecondaryMenu.backButtonLabel": {
- "message": "← 回到主菜单",
- "description": "The label of the back button to return to main menu, inside the mobile navbar sidebar secondary menu (notably used to display the docs sidebar)"
- },
"theme.navbar.mobileVersionsDropdown.label": {
"message": "选择版本",
"description": "The label for the navbar versions dropdown on mobile view"
@@ -212,25 +184,174 @@
"message": "跳到主要内容",
"description": "The skip to content label used for accessibility, allowing to rapidly navigate to main content with keyboard tab/enter navigation"
},
- "theme.TOCCollapsible.toggleButtonLabel": {
- "message": "本页总览",
- "description": "The label used by the button on the collapsible TOC component"
- },
"theme.tags.tagsListLabel": {
"message": "标签:",
"description": "The label alongside a tag list"
},
+ "theme.AnnouncementBar.closeButtonAriaLabel": {
+ "message": "关闭",
+ "description": "The ARIA label for close button of announcement bar"
+ },
+ "theme.blog.sidebar.navAriaLabel": {
+ "message": "最近博文导航",
+ "description": "The ARIA label for recent posts in the blog sidebar"
+ },
+ "theme.CodeBlock.copied": {
+ "message": "复制成功",
+ "description": "The copied button label on code blocks"
+ },
+ "theme.CodeBlock.copyButtonAriaLabel": {
+ "message": "复制代码到剪贴板",
+ "description": "The ARIA label for copy code blocks button"
+ },
+ "theme.CodeBlock.copy": {
+ "message": "复制",
+ "description": "The copy button label on code blocks"
+ },
+ "theme.CodeBlock.wordWrapToggle": {
+ "message": "切换自动换行",
+ "description": "The title attribute for toggle word wrapping button of code block lines"
+ },
+ "theme.DocSidebarItem.toggleCollapsedCategoryAriaLabel": {
+ "message": "打开/收起侧边栏菜单「{label}」",
+ "description": "The ARIA label to toggle the collapsible sidebar category"
+ },
"theme.navbar.mobileLanguageDropdown.label": {
"message": "选择语言",
"description": "The label for the mobile language switcher dropdown"
},
- "theme.SearchBar.seeAll": {
- "message": "查看全部 {count} 个结果"
+ "theme.TOCCollapsible.toggleButtonLabel": {
+ "message": "本页总览",
+ "description": "The label used by the button on the collapsible TOC component"
+ },
+ "theme.blog.post.readingTime.plurals": {
+ "message": "阅读需 {readingTime} 分钟",
+ "description": "Pluralized label for \"{readingTime} min read\". Use as much plural forms (separated by \"|\") as your language support (see https://www.unicode.org/cldr/cldr-aux/charts/34/supplemental/language_plural_rules.html)"
+ },
+ "theme.blog.post.readMore": {
+ "message": "阅读更多",
+ "description": "The label used in blog post item excerpts to link to full blog posts"
+ },
+ "theme.blog.post.readMoreLabel": {
+ "message": "阅读 {title} 的全文",
+ "description": "The ARIA label for the link to full blog posts from excerpts"
+ },
+ "theme.docs.sidebar.collapseButtonTitle": {
+ "message": "收起侧边栏",
+ "description": "The title attribute for collapse button of doc sidebar"
+ },
+ "theme.docs.sidebar.collapseButtonAriaLabel": {
+ "message": "收起侧边栏",
+ "description": "The title attribute for collapse button of doc sidebar"
+ },
+ "theme.navbar.mobileSidebarSecondaryMenu.backButtonLabel": {
+ "message": "← 回到主菜单",
+ "description": "The label of the back button to return to main menu, inside the mobile navbar sidebar secondary menu (notably used to display the docs sidebar)"
+ },
+ "theme.docs.sidebar.expandButtonTitle": {
+ "message": "展开侧边栏",
+ "description": "The ARIA label and title attribute for expand button of doc sidebar"
+ },
+ "theme.docs.sidebar.expandButtonAriaLabel": {
+ "message": "展开侧边栏",
+ "description": "The ARIA label and title attribute for expand button of doc sidebar"
},
"theme.SearchBar.label": {
"message": "搜索",
"description": "The ARIA label and placeholder for search button"
},
+ "theme.SearchModal.searchBox.resetButtonTitle": {
+ "message": "清除查询",
+ "description": "The label and ARIA label for search box reset button"
+ },
+ "theme.SearchModal.searchBox.cancelButtonText": {
+ "message": "取消",
+ "description": "The label and ARIA label for search box cancel button"
+ },
+ "theme.SearchModal.startScreen.recentSearchesTitle": {
+ "message": "最近搜索",
+ "description": "The title for recent searches"
+ },
+ "theme.SearchModal.startScreen.noRecentSearchesText": {
+ "message": "没有最近搜索",
+ "description": "The text when no recent searches"
+ },
+ "theme.SearchModal.startScreen.saveRecentSearchButtonTitle": {
+ "message": "保存这个搜索",
+ "description": "The label for save recent search button"
+ },
+ "theme.SearchModal.startScreen.removeRecentSearchButtonTitle": {
+ "message": "从历史记录中删除这个搜索",
+ "description": "The label for remove recent search button"
+ },
+ "theme.SearchModal.startScreen.favoriteSearchesTitle": {
+ "message": "收藏",
+ "description": "The title for favorite searches"
+ },
+ "theme.SearchModal.startScreen.removeFavoriteSearchButtonTitle": {
+ "message": "从收藏列表中删除这个搜索",
+ "description": "The label for remove favorite search button"
+ },
+ "theme.SearchModal.errorScreen.titleText": {
+ "message": "无法获取结果",
+ "description": "The title for error screen of search modal"
+ },
+ "theme.SearchModal.errorScreen.helpText": {
+ "message": "你可能需要检查网络连接。",
+ "description": "The help text for error screen of search modal"
+ },
+ "theme.SearchModal.footer.selectText": {
+ "message": "选中",
+ "description": "The explanatory text of the action for the enter key"
+ },
+ "theme.SearchModal.footer.selectKeyAriaLabel": {
+ "message": "Enter 键",
+ "description": "The ARIA label for the Enter key button that makes the selection"
+ },
+ "theme.SearchModal.footer.navigateText": {
+ "message": "导航",
+ "description": "The explanatory text of the action for the Arrow up and Arrow down key"
+ },
+ "theme.SearchModal.footer.navigateUpKeyAriaLabel": {
+ "message": "向上键",
+ "description": "The ARIA label for the Arrow up key button that makes the navigation"
+ },
+ "theme.SearchModal.footer.navigateDownKeyAriaLabel": {
+ "message": "向下键",
+ "description": "The ARIA label for the Arrow down key button that makes the navigation"
+ },
+ "theme.SearchModal.footer.closeText": {
+ "message": "关闭",
+ "description": "The explanatory text of the action for Escape key"
+ },
+ "theme.SearchModal.footer.closeKeyAriaLabel": {
+ "message": "Esc 键",
+ "description": "The ARIA label for the Escape key button that close the modal"
+ },
+ "theme.SearchModal.footer.searchByText": {
+ "message": "搜索提供",
+ "description": "The text explain that the search is making by Algolia"
+ },
+ "theme.SearchModal.noResultsScreen.noResultsText": {
+ "message": "没有结果:",
+ "description": "The text explains that there are no results for the following search"
+ },
+ "theme.SearchModal.noResultsScreen.suggestedQueryText": {
+ "message": "试试搜索",
+ "description": "The text for the suggested query when no results are found for the following search"
+ },
+ "theme.SearchModal.noResultsScreen.reportMissingResultsText": {
+ "message": "认为这个查询应该有结果?",
+ "description": "The text for the question where the user thinks there are missing results"
+ },
+ "theme.SearchModal.noResultsScreen.reportMissingResultsLinkText": {
+ "message": "请告知我们。",
+ "description": "The text for the link to report missing results"
+ },
+ "theme.SearchModal.placeholder": {
+ "message": "搜索文档",
+ "description": "The placeholder of the input of the DocSearch pop-up modal"
+ },
"theme.SearchPage.documentsFound.plurals": {
"message": "找到 {count} 份文件",
"description": "Pluralized label for \"{count} documents found\". Use as much plural forms (separated by \"|\") as your language support (see https://www.unicode.org/cldr/cldr-aux/charts/34/supplemental/language_plural_rules.html)"
@@ -263,6 +384,9 @@
"message": "正在获取新的搜索结果...",
"description": "The paragraph for fetching new search results"
},
+ "theme.SearchBar.seeAll": {
+ "message": "查看全部 {count} 个结果"
+ },
"theme.tags.tagsPageTitle": {
"message": "标签",
"description": "The title of the tag list page"
diff --git a/package.json b/package.json
index 5a535bf..eda622a 100644
--- a/package.json
+++ b/package.json
@@ -1,5 +1,5 @@
{
- "name": "docs-halo-run",
+ "name": "@halo-dev/docs",
"version": "0.0.0",
"private": true,
"scripts": {
@@ -16,23 +16,23 @@
"lint": "markdownlint-cli2 './docs/**/*.md' './versioned_docs/version-1.5.2/**/*.md'"
},
"dependencies": {
- "@docusaurus/core": "2.0.0-beta.17",
- "@docusaurus/plugin-client-redirects": "^2.0.0-beta.17",
- "@docusaurus/preset-classic": "2.0.0-beta.17",
- "@docusaurus/theme-classic": "2.0.0-beta.17",
- "@docusaurus/theme-common": "2.0.0-beta.17",
+ "@docusaurus/core": "2.1.0",
+ "@docusaurus/plugin-client-redirects": "^2.1.0",
+ "@docusaurus/preset-classic": "2.1.0",
+ "@docusaurus/theme-classic": "2.1.0",
+ "@docusaurus/theme-common": "2.1.0",
"@mdx-js/react": "^1.6.22",
"@svgr/webpack": "^5.5.0",
- "clsx": "^1.1.1",
+ "clsx": "^1.2.1",
"file-loader": "^6.2.0",
"hast-util-is-element": "1.1.0",
- "mdx-mermaid": "^1.2.2",
- "mermaid": "^9.0.0",
- "prism-react-renderer": "^1.3.1",
+ "mdx-mermaid": "^1.3.2",
+ "mermaid": "^9.1.7",
+ "prism-react-renderer": "^1.3.5",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"rehype-katex": "5",
- "remark-math": "3",
+ "remark-math": "3.0.1",
"url-loader": "^4.1.1"
},
"browserslist": {
@@ -48,6 +48,7 @@
]
},
"devDependencies": {
+ "@docusaurus/module-type-aliases": "^2.1.0",
"husky": "^7.0.4",
"markdownlint": "^0.25.1",
"markdownlint-cli2": "^0.4.0"
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index 22413b1..726c5ba 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -1,42 +1,43 @@
-lockfileVersion: 5.3
+lockfileVersion: 5.4
specifiers:
- '@docusaurus/core': 2.0.0-beta.17
- '@docusaurus/plugin-client-redirects': ^2.0.0-beta.17
- '@docusaurus/preset-classic': 2.0.0-beta.17
- '@docusaurus/theme-classic': 2.0.0-beta.17
- '@docusaurus/theme-common': 2.0.0-beta.17
+ '@docusaurus/core': 2.1.0
+ '@docusaurus/module-type-aliases': ^2.1.0
+ '@docusaurus/plugin-client-redirects': ^2.1.0
+ '@docusaurus/preset-classic': 2.1.0
+ '@docusaurus/theme-classic': 2.1.0
+ '@docusaurus/theme-common': 2.1.0
'@mdx-js/react': ^1.6.22
'@svgr/webpack': ^5.5.0
- clsx: ^1.1.1
+ clsx: ^1.2.1
file-loader: ^6.2.0
hast-util-is-element: 1.1.0
husky: ^7.0.4
markdownlint: ^0.25.1
markdownlint-cli2: ^0.4.0
- mdx-mermaid: ^1.2.2
- mermaid: ^9.0.0
- prism-react-renderer: ^1.3.1
+ mdx-mermaid: ^1.3.2
+ mermaid: ^9.1.7
+ prism-react-renderer: ^1.3.5
react: ^17.0.2
react-dom: ^17.0.2
rehype-katex: '5'
- remark-math: '3'
+ remark-math: 3.0.1
url-loader: ^4.1.1
dependencies:
- '@docusaurus/core': 2.0.0-beta.17_react-dom@17.0.2+react@17.0.2
- '@docusaurus/plugin-client-redirects': 2.0.0-beta.17_react-dom@17.0.2+react@17.0.2
- '@docusaurus/preset-classic': 2.0.0-beta.17_react-dom@17.0.2+react@17.0.2
- '@docusaurus/theme-classic': 2.0.0-beta.17_react-dom@17.0.2+react@17.0.2
- '@docusaurus/theme-common': 2.0.0-beta.17_react-dom@17.0.2+react@17.0.2
+ '@docusaurus/core': 2.1.0_sfoxds7t5ydpegc3knd667wn6m
+ '@docusaurus/plugin-client-redirects': 2.1.0_sfoxds7t5ydpegc3knd667wn6m
+ '@docusaurus/preset-classic': 2.1.0_sfoxds7t5ydpegc3knd667wn6m
+ '@docusaurus/theme-classic': 2.1.0_sfoxds7t5ydpegc3knd667wn6m
+ '@docusaurus/theme-common': 2.1.0_sfoxds7t5ydpegc3knd667wn6m
'@mdx-js/react': 1.6.22_react@17.0.2
'@svgr/webpack': 5.5.0
- clsx: 1.1.1
+ clsx: 1.2.1
file-loader: 6.2.0
hast-util-is-element: 1.1.0
- mdx-mermaid: 1.2.2_mermaid@9.0.0+react@17.0.2
- mermaid: 9.0.0
- prism-react-renderer: 1.3.1_react@17.0.2
+ mdx-mermaid: 1.3.2_mermaid@9.1.7+react@17.0.2
+ mermaid: 9.1.7
+ prism-react-renderer: 1.3.5_react@17.0.2
react: 17.0.2
react-dom: 17.0.2_react@17.0.2
rehype-katex: 5.0.0
@@ -44,124 +45,125 @@ dependencies:
url-loader: 4.1.1_file-loader@6.2.0
devDependencies:
+ '@docusaurus/module-type-aliases': 2.1.0_sfoxds7t5ydpegc3knd667wn6m
husky: 7.0.4
markdownlint: 0.25.1
markdownlint-cli2: 0.4.0
packages:
- /@algolia/autocomplete-core/1.5.2:
- resolution: {integrity: sha512-DY0bhyczFSS1b/CqJlTE/nQRtnTAHl6IemIkBy0nEWnhDzRDdtdx4p5Uuk3vwAFxwEEgi1WqKwgSSMx6DpNL4A==}
+ /@algolia/autocomplete-core/1.7.1:
+ resolution: {integrity: sha512-eiZw+fxMzNQn01S8dA/hcCpoWCOCwcIIEUtHHdzN5TGB3IpzLbuhqFeTfh2OUhhgkE8Uo17+wH+QJ/wYyQmmzg==}
dependencies:
- '@algolia/autocomplete-shared': 1.5.2
+ '@algolia/autocomplete-shared': 1.7.1
dev: false
- /@algolia/autocomplete-preset-algolia/1.5.2_algoliasearch@4.12.1:
- resolution: {integrity: sha512-3MRYnYQFJyovANzSX2CToS6/5cfVjbLLqFsZTKcvF3abhQzxbqwwaMBlJtt620uBUOeMzhdfasKhCc40+RHiZw==}
+ /@algolia/autocomplete-preset-algolia/1.7.1_algoliasearch@4.14.2:
+ resolution: {integrity: sha512-pJwmIxeJCymU1M6cGujnaIYcY3QPOVYZOXhFkWVM7IxKzy272BwCvMFMyc5NpG/QmiObBxjo7myd060OeTNJXg==}
peerDependencies:
'@algolia/client-search': ^4.9.1
algoliasearch: ^4.9.1
dependencies:
- '@algolia/autocomplete-shared': 1.5.2
- algoliasearch: 4.12.1
+ '@algolia/autocomplete-shared': 1.7.1
+ algoliasearch: 4.14.2
dev: false
- /@algolia/autocomplete-shared/1.5.2:
- resolution: {integrity: sha512-ylQAYv5H0YKMfHgVWX0j0NmL8XBcAeeeVQUmppnnMtzDbDnca6CzhKj3Q8eF9cHCgcdTDdb5K+3aKyGWA0obug==}
+ /@algolia/autocomplete-shared/1.7.1:
+ resolution: {integrity: sha512-eTmGVqY3GeyBTT8IWiB2K5EuURAqhnumfktAEoHxfDY2o7vg2rSnO16ZtIG0fMgt3py28Vwgq42/bVEuaQV7pg==}
dev: false
- /@algolia/cache-browser-local-storage/4.12.1:
- resolution: {integrity: sha512-ERFFOnC9740xAkuO0iZTQqm2AzU7Dpz/s+g7o48GlZgx5p9GgNcsuK5eS0GoW/tAK+fnKlizCtlFHNuIWuvfsg==}
+ /@algolia/cache-browser-local-storage/4.14.2:
+ resolution: {integrity: sha512-FRweBkK/ywO+GKYfAWbrepewQsPTIEirhi1BdykX9mxvBPtGNKccYAxvGdDCumU1jL4r3cayio4psfzKMejBlA==}
dependencies:
- '@algolia/cache-common': 4.12.1
+ '@algolia/cache-common': 4.14.2
dev: false
- /@algolia/cache-common/4.12.1:
- resolution: {integrity: sha512-UugTER3V40jT+e19Dmph5PKMeliYKxycNPwrPNADin0RcWNfT2QksK9Ff2N2W7UKraqMOzoeDb4LAJtxcK1a8Q==}
+ /@algolia/cache-common/4.14.2:
+ resolution: {integrity: sha512-SbvAlG9VqNanCErr44q6lEKD2qoK4XtFNx9Qn8FK26ePCI8I9yU7pYB+eM/cZdS9SzQCRJBbHUumVr4bsQ4uxg==}
dev: false
- /@algolia/cache-in-memory/4.12.1:
- resolution: {integrity: sha512-U6iaunaxK1lHsAf02UWF58foKFEcrVLsHwN56UkCtwn32nlP9rz52WOcHsgk6TJrL8NDcO5swMjtOQ5XHESFLw==}
+ /@algolia/cache-in-memory/4.14.2:
+ resolution: {integrity: sha512-HrOukWoop9XB/VFojPv1R5SVXowgI56T9pmezd/djh2JnVN/vXswhXV51RKy4nCpqxyHt/aGFSq2qkDvj6KiuQ==}
dependencies:
- '@algolia/cache-common': 4.12.1
+ '@algolia/cache-common': 4.14.2
dev: false
- /@algolia/client-account/4.12.1:
- resolution: {integrity: sha512-jGo4ConJNoMdTCR2zouO0jO/JcJmzOK6crFxMMLvdnB1JhmMbuIKluOTJVlBWeivnmcsqb7r0v7qTCPW5PAyxQ==}
+ /@algolia/client-account/4.14.2:
+ resolution: {integrity: sha512-WHtriQqGyibbb/Rx71YY43T0cXqyelEU0lB2QMBRXvD2X0iyeGl4qMxocgEIcbHyK7uqE7hKgjT8aBrHqhgc1w==}
dependencies:
- '@algolia/client-common': 4.12.1
- '@algolia/client-search': 4.12.1
- '@algolia/transporter': 4.12.1
+ '@algolia/client-common': 4.14.2
+ '@algolia/client-search': 4.14.2
+ '@algolia/transporter': 4.14.2
dev: false
- /@algolia/client-analytics/4.12.1:
- resolution: {integrity: sha512-h1It7KXzIthlhuhfBk7LteYq72tym9maQDUsyRW0Gft8b6ZQahnRak9gcCvKwhcJ1vJoP7T7JrNYGiYSicTD9g==}
+ /@algolia/client-analytics/4.14.2:
+ resolution: {integrity: sha512-yBvBv2mw+HX5a+aeR0dkvUbFZsiC4FKSnfqk9rrfX+QrlNOKEhCG0tJzjiOggRW4EcNqRmaTULIYvIzQVL2KYQ==}
dependencies:
- '@algolia/client-common': 4.12.1
- '@algolia/client-search': 4.12.1
- '@algolia/requester-common': 4.12.1
- '@algolia/transporter': 4.12.1
+ '@algolia/client-common': 4.14.2
+ '@algolia/client-search': 4.14.2
+ '@algolia/requester-common': 4.14.2
+ '@algolia/transporter': 4.14.2
dev: false
- /@algolia/client-common/4.12.1:
- resolution: {integrity: sha512-obnJ8eSbv+h94Grk83DTGQ3bqhViSWureV6oK1s21/KMGWbb3DkduHm+lcwFrMFkjSUSzosLBHV9EQUIBvueTw==}
+ /@algolia/client-common/4.14.2:
+ resolution: {integrity: sha512-43o4fslNLcktgtDMVaT5XwlzsDPzlqvqesRi4MjQz2x4/Sxm7zYg5LRYFol1BIhG6EwxKvSUq8HcC/KxJu3J0Q==}
dependencies:
- '@algolia/requester-common': 4.12.1
- '@algolia/transporter': 4.12.1
+ '@algolia/requester-common': 4.14.2
+ '@algolia/transporter': 4.14.2
dev: false
- /@algolia/client-personalization/4.12.1:
- resolution: {integrity: sha512-sMSnjjPjRgByGHYygV+5L/E8a6RgU7l2GbpJukSzJ9GRY37tHmBHuvahv8JjdCGJ2p7QDYLnQy5bN5Z02qjc7Q==}
+ /@algolia/client-personalization/4.14.2:
+ resolution: {integrity: sha512-ACCoLi0cL8CBZ1W/2juehSltrw2iqsQBnfiu/Rbl9W2yE6o2ZUb97+sqN/jBqYNQBS+o0ekTMKNkQjHHAcEXNw==}
dependencies:
- '@algolia/client-common': 4.12.1
- '@algolia/requester-common': 4.12.1
- '@algolia/transporter': 4.12.1
+ '@algolia/client-common': 4.14.2
+ '@algolia/requester-common': 4.14.2
+ '@algolia/transporter': 4.14.2
dev: false
- /@algolia/client-search/4.12.1:
- resolution: {integrity: sha512-MwwKKprfY6X2nJ5Ki/ccXM2GDEePvVjZnnoOB2io3dLKW4fTqeSRlC5DRXeFD7UM0vOPPHr4ItV2aj19APKNVQ==}
+ /@algolia/client-search/4.14.2:
+ resolution: {integrity: sha512-L5zScdOmcZ6NGiVbLKTvP02UbxZ0njd5Vq9nJAmPFtjffUSOGEp11BmD2oMJ5QvARgx2XbX4KzTTNS5ECYIMWw==}
dependencies:
- '@algolia/client-common': 4.12.1
- '@algolia/requester-common': 4.12.1
- '@algolia/transporter': 4.12.1
+ '@algolia/client-common': 4.14.2
+ '@algolia/requester-common': 4.14.2
+ '@algolia/transporter': 4.14.2
dev: false
/@algolia/events/4.0.1:
resolution: {integrity: sha512-FQzvOCgoFXAbf5Y6mYozw2aj5KCJoA3m4heImceldzPSMbdyS4atVjJzXKMsfX3wnZTFYwkkt8/z8UesLHlSBQ==}
dev: false
- /@algolia/logger-common/4.12.1:
- resolution: {integrity: sha512-fCgrzlXGATNqdFTxwx0GsyPXK+Uqrx1SZ3iuY2VGPPqdt1a20clAG2n2OcLHJpvaa6vMFPlJyWvbqAgzxdxBlQ==}
+ /@algolia/logger-common/4.14.2:
+ resolution: {integrity: sha512-/JGlYvdV++IcMHBnVFsqEisTiOeEr6cUJtpjz8zc0A9c31JrtLm318Njc72p14Pnkw3A/5lHHh+QxpJ6WFTmsA==}
dev: false
- /@algolia/logger-console/4.12.1:
- resolution: {integrity: sha512-0owaEnq/davngQMYqxLA4KrhWHiXujQ1CU3FFnyUcMyBR7rGHI48zSOUpqnsAXrMBdSH6rH5BDkSUUFwsh8RkQ==}
+ /@algolia/logger-console/4.14.2:
+ resolution: {integrity: sha512-8S2PlpdshbkwlLCSAB5f8c91xyc84VM9Ar9EdfE9UmX+NrKNYnWR1maXXVDQQoto07G1Ol/tYFnFVhUZq0xV/g==}
dependencies:
- '@algolia/logger-common': 4.12.1
+ '@algolia/logger-common': 4.14.2
dev: false
- /@algolia/requester-browser-xhr/4.12.1:
- resolution: {integrity: sha512-OaMxDyG0TZG0oqz1lQh9e3woantAG1bLnuwq3fmypsrQxra4IQZiyn1x+kEb69D2TcXApI5gOgrD4oWhtEVMtw==}
+ /@algolia/requester-browser-xhr/4.14.2:
+ resolution: {integrity: sha512-CEh//xYz/WfxHFh7pcMjQNWgpl4wFB85lUMRyVwaDPibNzQRVcV33YS+63fShFWc2+42YEipFGH2iPzlpszmDw==}
dependencies:
- '@algolia/requester-common': 4.12.1
+ '@algolia/requester-common': 4.14.2
dev: false
- /@algolia/requester-common/4.12.1:
- resolution: {integrity: sha512-XWIrWQNJ1vIrSuL/bUk3ZwNMNxl+aWz6dNboRW6+lGTcMIwc3NBFE90ogbZKhNrFRff8zI4qCF15tjW+Fyhpow==}
+ /@algolia/requester-common/4.14.2:
+ resolution: {integrity: sha512-73YQsBOKa5fvVV3My7iZHu1sUqmjjfs9TteFWwPwDmnad7T0VTCopttcsM3OjLxZFtBnX61Xxl2T2gmG2O4ehg==}
dev: false
- /@algolia/requester-node-http/4.12.1:
- resolution: {integrity: sha512-awBtwaD+s0hxkA1aehYn8F0t9wqGoBVWgY4JPHBmp1ChO3pK7RKnnvnv7QQa9vTlllX29oPt/BBVgMo1Z3n1Qg==}
+ /@algolia/requester-node-http/4.14.2:
+ resolution: {integrity: sha512-oDbb02kd1o5GTEld4pETlPZLY0e+gOSWjWMJHWTgDXbv9rm/o2cF7japO6Vj1ENnrqWvLBmW1OzV9g6FUFhFXg==}
dependencies:
- '@algolia/requester-common': 4.12.1
+ '@algolia/requester-common': 4.14.2
dev: false
- /@algolia/transporter/4.12.1:
- resolution: {integrity: sha512-BGeNgdEHc6dXIk2g8kdlOoQ6fQ6OIaKQcplEj7HPoi+XZUeAvRi3Pff3QWd7YmybWkjzd9AnTzieTASDWhL+sQ==}
+ /@algolia/transporter/4.14.2:
+ resolution: {integrity: sha512-t89dfQb2T9MFQHidjHcfhh6iGMNwvuKUvojAj+JsrHAGbuSy7yE4BylhLX6R0Q1xYRoC4Vvv+O5qIw/LdnQfsQ==}
dependencies:
- '@algolia/cache-common': 4.12.1
- '@algolia/logger-common': 4.12.1
- '@algolia/requester-common': 4.12.1
+ '@algolia/cache-common': 4.14.2
+ '@algolia/logger-common': 4.14.2
+ '@algolia/requester-common': 4.14.2
dev: false
/@ampproject/remapping/2.1.2:
@@ -178,27 +180,39 @@ packages:
'@babel/highlight': 7.16.10
dev: false
+ /@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.17.0:
resolution: {integrity: sha512-392byTlpGWXMv4FbyWw3sAZ/FrW/DrwqLGXpy0mbyNe9Taqv1mg9yON5/o0cnr8XYCkFTZbC1eV+c+LAROgrng==}
engines: {node: '>=6.9.0'}
dev: false
+ /@babel/compat-data/7.19.3:
+ resolution: {integrity: sha512-prBHMK4JYYK+wDjJF1q99KK4JLL+egWS4nmNqdlMUgCExMZ+iZW0hGhyC3VEbsPjvaN0TBhW//VIFwBrk8sEiw==}
+ engines: {node: '>=6.9.0'}
+ dev: false
+
/@babel/core/7.12.9:
resolution: {integrity: sha512-gTXYh3M5wb7FRXQy+FErKFAv90BnlOuNn1QkCK2lREoPAjrQCO49+HVSrFoe5uakFAF5eenS75KbO2vQiLrTMQ==}
engines: {node: '>=6.9.0'}
dependencies:
- '@babel/code-frame': 7.16.7
- '@babel/generator': 7.17.3
- '@babel/helper-module-transforms': 7.17.6
- '@babel/helpers': 7.17.2
- '@babel/parser': 7.17.3
- '@babel/template': 7.16.7
- '@babel/traverse': 7.17.3
- '@babel/types': 7.17.0
+ '@babel/code-frame': 7.18.6
+ '@babel/generator': 7.19.3
+ '@babel/helper-module-transforms': 7.19.0
+ '@babel/helpers': 7.19.0
+ '@babel/parser': 7.19.3
+ '@babel/template': 7.18.10
+ '@babel/traverse': 7.19.3
+ '@babel/types': 7.19.3
convert-source-map: 1.8.0
debug: 4.3.3
gensync: 1.0.0-beta.2
- json5: 2.2.0
+ json5: 2.2.1
lodash: 4.17.21
resolve: 1.22.0
semver: 5.7.1
@@ -230,6 +244,29 @@ packages:
- supports-color
dev: false
+ /@babel/core/7.19.3:
+ resolution: {integrity: sha512-WneDJxdsjEvyKtXKsaBGbDeiyOjR5vYq4HcShxnIbG0qixpoHjI3MqeZM9NDvsojNCEBItQE4juOo/bU6e72gQ==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ '@ampproject/remapping': 2.1.2
+ '@babel/code-frame': 7.18.6
+ '@babel/generator': 7.19.3
+ '@babel/helper-compilation-targets': 7.19.3_@babel+core@7.19.3
+ '@babel/helper-module-transforms': 7.19.0
+ '@babel/helpers': 7.19.0
+ '@babel/parser': 7.19.3
+ '@babel/template': 7.18.10
+ '@babel/traverse': 7.19.3
+ '@babel/types': 7.19.3
+ convert-source-map: 1.8.0
+ debug: 4.3.3
+ gensync: 1.0.0-beta.2
+ json5: 2.2.1
+ semver: 6.3.0
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
/@babel/generator/7.17.3:
resolution: {integrity: sha512-+R6Dctil/MgUsZsZAkYgK+ADNSZzJRRy0TvY65T71z/CR854xHQ1EweBYXdfT+HNeN7w0cSJJEzgxZMv40pxsg==}
engines: {node: '>=6.9.0'}
@@ -239,6 +276,15 @@ packages:
source-map: 0.5.7
dev: false
+ /@babel/generator/7.19.3:
+ resolution: {integrity: sha512-fqVZnmp1ncvZU757UzDheKZpfPgatqY59XtW2/j/18H7u76akb8xqvjw82f+i2UKd/ksYsSick/BCLQUUtJ/qQ==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ '@babel/types': 7.19.3
+ '@jridgewell/gen-mapping': 0.3.2
+ jsesc: 2.5.2
+ dev: false
+
/@babel/helper-annotate-as-pure/7.16.7:
resolution: {integrity: sha512-s6t2w/IPQVTAET1HitoowRGXooX8mCgtuP5195wD/QJPV6wYjpujCGF7JuMODVX2ZAJOf1GT6DT9MHEZvLOFSw==}
engines: {node: '>=6.9.0'}
@@ -246,6 +292,13 @@ packages:
'@babel/types': 7.17.0
dev: false
+ /@babel/helper-annotate-as-pure/7.18.6:
+ resolution: {integrity: sha512-duORpUiYrEpzKIop6iNbjnwKLAKnJ47csTyRACyEmWj0QdUrm5aqNJGHSSEQSUAvNW0ojX0dOmK9dZduvkfeXA==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ '@babel/types': 7.19.3
+ dev: false
+
/@babel/helper-builder-binary-assignment-operator-visitor/7.16.7:
resolution: {integrity: sha512-C6FdbRaxYjwVu/geKW4ZeQ0Q31AftgRcdSnZ5/jsH6BzCJbtvXvhpfkbkThYSuutZA7nCXpPR6AD9zd1dprMkA==}
engines: {node: '>=6.9.0'}
@@ -254,6 +307,14 @@ packages:
'@babel/types': 7.17.0
dev: false
+ /@babel/helper-builder-binary-assignment-operator-visitor/7.18.9:
+ resolution: {integrity: sha512-yFQ0YCHoIqarl8BCRwBL8ulYUaZpz3bNsA7oFepAzee+8/+ImtADXNOmO5vJvsPff3qi+hvpkY/NYBTrBQgdNw==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ '@babel/helper-explode-assignable-expression': 7.18.6
+ '@babel/types': 7.19.3
+ dev: false
+
/@babel/helper-compilation-targets/7.16.7_@babel+core@7.17.5:
resolution: {integrity: sha512-mGojBwIWcwGD6rfqgRXVlVYmPAv7eOpIemUG3dGnDdCY4Pae70ROij3XmfrH6Fa1h1aiDylpglbZyktfzyo/hA==}
engines: {node: '>=6.9.0'}
@@ -267,6 +328,19 @@ packages:
semver: 6.3.0
dev: false
+ /@babel/helper-compilation-targets/7.19.3_@babel+core@7.19.3:
+ resolution: {integrity: sha512-65ESqLGyGmLvgR0mst5AdW1FkNlj9rQsCKduzEoEPhBCDFGXvz2jW6bXFG6i0/MrV2s7hhXjjb2yAzcPuQlLwg==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0
+ dependencies:
+ '@babel/compat-data': 7.19.3
+ '@babel/core': 7.19.3
+ '@babel/helper-validator-option': 7.18.6
+ browserslist: 4.21.4
+ semver: 6.3.0
+ dev: false
+
/@babel/helper-create-class-features-plugin/7.17.6_@babel+core@7.17.5:
resolution: {integrity: sha512-SogLLSxXm2OkBbSsHZMM4tUi8fUzjs63AT/d0YQIzr6GSd8Hxsbk2KYDX0k0DweAzGMj/YWeiCsorIdtdcW8Eg==}
engines: {node: '>=6.9.0'}
@@ -285,6 +359,24 @@ packages:
- supports-color
dev: false
+ /@babel/helper-create-class-features-plugin/7.19.0_@babel+core@7.19.3:
+ resolution: {integrity: sha512-NRz8DwF4jT3UfrmUoZjd0Uph9HQnP30t7Ash+weACcyNkiYTywpIjDBgReJMKgr+n86sn2nPVVmJ28Dm053Kqw==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0
+ dependencies:
+ '@babel/core': 7.19.3
+ '@babel/helper-annotate-as-pure': 7.18.6
+ '@babel/helper-environment-visitor': 7.18.9
+ '@babel/helper-function-name': 7.19.0
+ '@babel/helper-member-expression-to-functions': 7.18.9
+ '@babel/helper-optimise-call-expression': 7.18.6
+ '@babel/helper-replace-supers': 7.19.1
+ '@babel/helper-split-export-declaration': 7.18.6
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
/@babel/helper-create-regexp-features-plugin/7.17.0_@babel+core@7.17.5:
resolution: {integrity: sha512-awO2So99wG6KnlE+TPs6rn83gCz5WlEePJDTnLEqbchMVrBeAujURVphRdigsk094VhvZehFoNOihSlcBjwsXA==}
engines: {node: '>=6.9.0'}
@@ -296,6 +388,28 @@ packages:
regexpu-core: 5.0.1
dev: false
+ /@babel/helper-create-regexp-features-plugin/7.17.0_@babel+core@7.19.3:
+ resolution: {integrity: sha512-awO2So99wG6KnlE+TPs6rn83gCz5WlEePJDTnLEqbchMVrBeAujURVphRdigsk094VhvZehFoNOihSlcBjwsXA==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0
+ dependencies:
+ '@babel/core': 7.19.3
+ '@babel/helper-annotate-as-pure': 7.16.7
+ regexpu-core: 5.0.1
+ dev: false
+
+ /@babel/helper-create-regexp-features-plugin/7.19.0_@babel+core@7.19.3:
+ resolution: {integrity: sha512-htnV+mHX32DF81amCDrwIDr8nrp1PTm+3wfBN9/v8QJOLEioOCOG7qNyq0nHeFiWbT3Eb7gsPwEmV64UCQ1jzw==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0
+ dependencies:
+ '@babel/core': 7.19.3
+ '@babel/helper-annotate-as-pure': 7.18.6
+ regexpu-core: 5.2.1
+ dev: false
+
/@babel/helper-define-polyfill-provider/0.3.1_@babel+core@7.17.5:
resolution: {integrity: sha512-J9hGMpJQmtWmj46B3kBHmL38UhJGhYX7eqkcq+2gsstyYt341HmPeWspihX43yVRA0mS+8GGk2Gckc7bY/HCmA==}
peerDependencies:
@@ -314,6 +428,22 @@ packages:
- supports-color
dev: false
+ /@babel/helper-define-polyfill-provider/0.3.3_@babel+core@7.19.3:
+ resolution: {integrity: sha512-z5aQKU4IzbqCC1XH0nAqfsFLMVSo22SBKUc0BxGrLkolTdPTructy0ToNnlO2zA4j9Q/7pjMZf0DSY+DSTYzww==}
+ peerDependencies:
+ '@babel/core': ^7.4.0-0
+ dependencies:
+ '@babel/core': 7.19.3
+ '@babel/helper-compilation-targets': 7.19.3_@babel+core@7.19.3
+ '@babel/helper-plugin-utils': 7.19.0
+ debug: 4.3.3
+ lodash.debounce: 4.0.8
+ resolve: 1.22.0
+ semver: 6.3.0
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
/@babel/helper-environment-visitor/7.16.7:
resolution: {integrity: sha512-SLLb0AAn6PkUeAfKJCCOl9e1R53pQlGAfc4y4XuMRZfqeMYLE0dM1LMhqbGAlGQY0lfw5/ohoYWAe9V1yibRag==}
engines: {node: '>=6.9.0'}
@@ -321,6 +451,11 @@ packages:
'@babel/types': 7.17.0
dev: false
+ /@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.16.7:
resolution: {integrity: sha512-KyUenhWMC8VrxzkGP0Jizjo4/Zx+1nNZhgocs+gLzyZyB8SHidhoq9KK/8Ato4anhwsivfkBLftky7gvzbZMtQ==}
engines: {node: '>=6.9.0'}
@@ -328,6 +463,13 @@ packages:
'@babel/types': 7.17.0
dev: false
+ /@babel/helper-explode-assignable-expression/7.18.6:
+ resolution: {integrity: sha512-eyAYAsQmB80jNfg4baAtLeWAQHfHFiR483rzFK+BhETlGZaQC9bsfrugfXDCbRHLQbIA7U5NxhhOxN7p/dWIcg==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ '@babel/types': 7.19.3
+ dev: false
+
/@babel/helper-function-name/7.16.7:
resolution: {integrity: sha512-QfDfEnIUyyBSR3HtrtGECuZ6DAyCkYFp7GHl75vFtTnn6pjKeK0T1DB5lLkFvBea8MdaiUABx3osbgLyInoejA==}
engines: {node: '>=6.9.0'}
@@ -337,6 +479,14 @@ packages:
'@babel/types': 7.17.0
dev: false
+ /@babel/helper-function-name/7.19.0:
+ resolution: {integrity: sha512-WAwHBINyrpqywkUH0nTnNgI5ina5TFn85HKS0pbPDfxFfhyR/aNQEn4hGi1P1JyT//I0t4OgXUlofzWILRvS5w==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ '@babel/template': 7.18.10
+ '@babel/types': 7.19.3
+ dev: false
+
/@babel/helper-get-function-arity/7.16.7:
resolution: {integrity: sha512-flc+RLSOBXzNzVhcLu6ujeHUrD6tANAOU5ojrRx/as+tbzf8+stUCj7+IfRRoAbEZqj/ahXEMsjhOhgeZsrnTw==}
engines: {node: '>=6.9.0'}
@@ -351,6 +501,13 @@ packages:
'@babel/types': 7.17.0
dev: false
+ /@babel/helper-hoist-variables/7.18.6:
+ resolution: {integrity: sha512-UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ '@babel/types': 7.19.3
+ dev: false
+
/@babel/helper-member-expression-to-functions/7.16.7:
resolution: {integrity: sha512-VtJ/65tYiU/6AbMTDwyoXGPKHgTsfRarivm+YbB5uAzKUyuPjgZSgAFeG87FCigc7KNHu2Pegh1XIT3lXjvz3Q==}
engines: {node: '>=6.9.0'}
@@ -358,6 +515,13 @@ packages:
'@babel/types': 7.17.0
dev: false
+ /@babel/helper-member-expression-to-functions/7.18.9:
+ resolution: {integrity: sha512-RxifAh2ZoVU67PyKIO4AMi1wTenGfMR/O/ae0CCRqwgBAt5v7xjdtRw7UoSbsreKrQn5t7r89eruK/9JjYHuDg==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ '@babel/types': 7.19.3
+ dev: false
+
/@babel/helper-module-imports/7.16.7:
resolution: {integrity: sha512-LVtS6TqjJHFc+nYeITRo6VLXve70xmq7wPhWTqDJusJEgGmkAACWwMiTNrvfoQo6hEhFwAIixNkvB0jPXDL8Wg==}
engines: {node: '>=6.9.0'}
@@ -365,6 +529,13 @@ packages:
'@babel/types': 7.17.0
dev: false
+ /@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.19.3
+ dev: false
+
/@babel/helper-module-transforms/7.17.6:
resolution: {integrity: sha512-2ULmRdqoOMpdvkbT8jONrZML/XALfzxlb052bldftkicAUy8AxSCkD5trDPQcwHNmolcl7wP6ehNqMlyUw6AaA==}
engines: {node: '>=6.9.0'}
@@ -381,6 +552,22 @@ packages:
- supports-color
dev: false
+ /@babel/helper-module-transforms/7.19.0:
+ resolution: {integrity: sha512-3HBZ377Fe14RbLIA+ac3sY4PTgpxHVkFrESaWhoI5PuyXPBBX8+C34qblV9G89ZtycGJCmCI/Ut+VUDK4bltNQ==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ '@babel/helper-environment-visitor': 7.18.9
+ '@babel/helper-module-imports': 7.18.6
+ '@babel/helper-simple-access': 7.18.6
+ '@babel/helper-split-export-declaration': 7.18.6
+ '@babel/helper-validator-identifier': 7.19.1
+ '@babel/template': 7.18.10
+ '@babel/traverse': 7.19.3
+ '@babel/types': 7.19.3
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
/@babel/helper-optimise-call-expression/7.16.7:
resolution: {integrity: sha512-EtgBhg7rd/JcnpZFXpBy0ze1YRfdm7BnBX4uKMBd3ixa3RGAE002JZB66FJyNH7g0F38U05pXmA5P8cBh7z+1w==}
engines: {node: '>=6.9.0'}
@@ -388,6 +575,13 @@ packages:
'@babel/types': 7.17.0
dev: false
+ /@babel/helper-optimise-call-expression/7.18.6:
+ resolution: {integrity: sha512-HP59oD9/fEHQkdcbgFCnbmgH5vIQTJbxh2yf+CdM89/glUNnuzr87Q8GIjGEnOktTROemO0Pe0iPAYbqZuOUiA==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ '@babel/types': 7.19.3
+ dev: false
+
/@babel/helper-plugin-utils/7.10.4:
resolution: {integrity: sha512-O4KCvQA6lLiMU9l2eawBPMf1xPP8xPfB3iEQw150hOVTqj/rfXz0ThTb4HEzqQfs2Bmo5Ay8BzxfzVtBrr9dVg==}
dev: false
@@ -397,6 +591,11 @@ packages:
engines: {node: '>=6.9.0'}
dev: false
+ /@babel/helper-plugin-utils/7.19.0:
+ resolution: {integrity: sha512-40Ryx7I8mT+0gaNxm8JGTZFUITNqdLAgdg0hXzeVZxVD6nFsdhQvip6v8dqkRHzsz1VFpFAaOCHNn0vKBL7Czw==}
+ engines: {node: '>=6.9.0'}
+ dev: false
+
/@babel/helper-remap-async-to-generator/7.16.8:
resolution: {integrity: sha512-fm0gH7Flb8H51LqJHy3HJ3wnE1+qtYR2A99K06ahwrawLdOFsCEWjZOrYricXJHoPSudNKxrMBUPEIPxiIIvBw==}
engines: {node: '>=6.9.0'}
@@ -408,6 +607,21 @@ packages:
- supports-color
dev: false
+ /@babel/helper-remap-async-to-generator/7.18.9_@babel+core@7.19.3:
+ resolution: {integrity: sha512-dI7q50YKd8BAv3VEfgg7PS7yD3Rtbi2J1XMXaalXO0W0164hYLnh8zpjRS0mte9MfVp/tltvr/cfdXPvJr1opA==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0
+ dependencies:
+ '@babel/core': 7.19.3
+ '@babel/helper-annotate-as-pure': 7.18.6
+ '@babel/helper-environment-visitor': 7.18.9
+ '@babel/helper-wrap-function': 7.19.0
+ '@babel/types': 7.19.3
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
/@babel/helper-replace-supers/7.16.7:
resolution: {integrity: sha512-y9vsWilTNaVnVh6xiJfABzsNpgDPKev9HnAgz6Gb1p6UUwf9NepdlsV7VXGCftJM+jqD5f7JIEubcpLjZj5dBw==}
engines: {node: '>=6.9.0'}
@@ -421,6 +635,19 @@ packages:
- supports-color
dev: false
+ /@babel/helper-replace-supers/7.19.1:
+ resolution: {integrity: sha512-T7ahH7wV0Hfs46SFh5Jz3s0B6+o8g3c+7TMxu7xKfmHikg7EAZ3I2Qk9LFhjxXq8sL7UkP5JflezNwoZa8WvWw==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ '@babel/helper-environment-visitor': 7.18.9
+ '@babel/helper-member-expression-to-functions': 7.18.9
+ '@babel/helper-optimise-call-expression': 7.18.6
+ '@babel/traverse': 7.19.3
+ '@babel/types': 7.19.3
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
/@babel/helper-simple-access/7.16.7:
resolution: {integrity: sha512-ZIzHVyoeLMvXMN/vok/a4LWRy8G2v205mNP0XOuf9XRLyX5/u9CnVulUtDgUTama3lT+bf/UqucuZjqiGuTS1g==}
engines: {node: '>=6.9.0'}
@@ -428,6 +655,13 @@ packages:
'@babel/types': 7.17.0
dev: false
+ /@babel/helper-simple-access/7.18.6:
+ resolution: {integrity: sha512-iNpIgTgyAvDQpDj76POqg+YEt8fPxx3yaNBg3S30dxNKm2SWfYhD0TGrK/Eu9wHpUW63VQU894TsTg+GLbUa1g==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ '@babel/types': 7.19.3
+ dev: false
+
/@babel/helper-skip-transparent-expression-wrappers/7.16.0:
resolution: {integrity: sha512-+il1gTy0oHwUsBQZyJvukbB4vPMdcYBrFHa0Uc4AizLxbq6BOYC51Rv4tWocX9BLBDLZ4kc6qUFpQ6HRgL+3zw==}
engines: {node: '>=6.9.0'}
@@ -435,6 +669,13 @@ packages:
'@babel/types': 7.17.0
dev: false
+ /@babel/helper-skip-transparent-expression-wrappers/7.18.9:
+ resolution: {integrity: sha512-imytd2gHi3cJPsybLRbmFrF7u5BIEuI2cNheyKi3/iOBC63kNn3q8Crn2xVuESli0aM4KYsyEqKyS7lFL8YVtw==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ '@babel/types': 7.19.3
+ dev: false
+
/@babel/helper-split-export-declaration/7.16.7:
resolution: {integrity: sha512-xbWoy/PFoxSWazIToT9Sif+jJTlrMcndIsaOKvTA6u7QEo7ilkRZpjew18/W3c7nm8fXdUDXh02VXTbZ0pGDNw==}
engines: {node: '>=6.9.0'}
@@ -442,16 +683,38 @@ packages:
'@babel/types': 7.17.0
dev: false
+ /@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.19.3
+ dev: false
+
+ /@babel/helper-string-parser/7.18.10:
+ resolution: {integrity: sha512-XtIfWmeNY3i4t7t4D2t02q50HvqHybPqW2ki1kosnvWCwuCMeo81Jf0gwr85jy/neUdg5XDdeFE/80DXiO+njw==}
+ engines: {node: '>=6.9.0'}
+ dev: false
+
/@babel/helper-validator-identifier/7.16.7:
resolution: {integrity: sha512-hsEnFemeiW4D08A5gUAZxLBTXpZ39P+a+DGDsHw1yxqyQ/jzFEnxf5uTEGp+3bzAbNOxU1paTgYS4ECU/IgfDw==}
engines: {node: '>=6.9.0'}
dev: false
+ /@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.16.7:
resolution: {integrity: sha512-TRtenOuRUVo9oIQGPC5G9DgK4743cdxvtOw0weQNpZXaS16SCBi5MNjZF8vba3ETURjZpTbVn7Vvcf2eAwFozQ==}
engines: {node: '>=6.9.0'}
dev: false
+ /@babel/helper-validator-option/7.18.6:
+ resolution: {integrity: sha512-XO7gESt5ouv/LRJdrVjkShckw6STTaB7l9BrpBaAHDeF5YZT+01PCwmR0SJHnkW6i8OwW/EVWRShfi4j2x+KQw==}
+ engines: {node: '>=6.9.0'}
+ dev: false
+
/@babel/helper-wrap-function/7.16.8:
resolution: {integrity: sha512-8RpyRVIAW1RcDDGTA+GpPAwV22wXCfKOoM9bet6TLkGIFTkRQSkH1nMQ5Yet4MpoXe1ZwHPVtNasc2w0uZMqnw==}
engines: {node: '>=6.9.0'}
@@ -464,6 +727,18 @@ packages:
- supports-color
dev: false
+ /@babel/helper-wrap-function/7.19.0:
+ resolution: {integrity: sha512-txX8aN8CZyYGTwcLhlk87KRqncAzhh5TpQamZUa0/u3an36NtDpUP6bQgBCBcLeBs09R/OwQu3OjK0k/HwfNDg==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ '@babel/helper-function-name': 7.19.0
+ '@babel/template': 7.18.10
+ '@babel/traverse': 7.19.3
+ '@babel/types': 7.19.3
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
/@babel/helpers/7.17.2:
resolution: {integrity: sha512-0Qu7RLR1dILozr/6M0xgj+DFPmi6Bnulgm9M8BVa9ZCWxDqlSnqt3cf8IDPB5m45sVXUZ0kuQAgUrdSFFH79fQ==}
engines: {node: '>=6.9.0'}
@@ -475,6 +750,17 @@ packages:
- supports-color
dev: false
+ /@babel/helpers/7.19.0:
+ resolution: {integrity: sha512-DRBCKGwIEdqY3+rPJgG/dKfQy9+08rHIAJx8q2p+HSWP87s2HCrQmaAMMyMll2kIXKCW0cO1RdQskx15Xakftg==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ '@babel/template': 7.18.10
+ '@babel/traverse': 7.19.3
+ '@babel/types': 7.19.3
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
/@babel/highlight/7.16.10:
resolution: {integrity: sha512-5FnTQLSLswEj6IkgVw5KusNUUFY9ZGqe/TRFnP/BKYHYgfh7tc+C7mwiy95/yNP7Dh9x580Vv8r7u7ZfTBFxdw==}
engines: {node: '>=6.9.0'}
@@ -484,10 +770,29 @@ packages:
js-tokens: 4.0.0
dev: false
+ /@babel/highlight/7.18.6:
+ resolution: {integrity: sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ '@babel/helper-validator-identifier': 7.19.1
+ chalk: 2.4.2
+ js-tokens: 4.0.0
+ dev: false
+
/@babel/parser/7.17.3:
resolution: {integrity: sha512-7yJPvPV+ESz2IUTPbOL+YkIGyCqOyNIzdguKQuJGnH7bg1WTIifuM21YqokFt/THWh1AkCRn9IgoykTRCBVpzA==}
engines: {node: '>=6.0.0'}
hasBin: true
+ dependencies:
+ '@babel/types': 7.17.0
+ dev: false
+
+ /@babel/parser/7.19.3:
+ resolution: {integrity: sha512-pJ9xOlNWHiy9+FuFP09DEAFbAn4JskgRsVcc169w2xRBC3FRGuQEwjeIMMND9L2zc0iEhO/tGv4Zq+km+hxNpQ==}
+ engines: {node: '>=6.0.0'}
+ hasBin: true
+ dependencies:
+ '@babel/types': 7.19.3
dev: false
/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/7.16.7_@babel+core@7.17.5:
@@ -500,6 +805,16 @@ packages:
'@babel/helper-plugin-utils': 7.16.7
dev: false
+ /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/7.18.6_@babel+core@7.19.3:
+ resolution: {integrity: sha512-Dgxsyg54Fx1d4Nge8UnvTrED63vrwOdPmyvPzlNN/boaliRP54pm3pGzZD1SJUwrBA+Cs/xdG8kXX6Mn/RfISQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0
+ dependencies:
+ '@babel/core': 7.19.3
+ '@babel/helper-plugin-utils': 7.19.0
+ dev: false
+
/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/7.16.7_@babel+core@7.17.5:
resolution: {integrity: sha512-di8vUHRdf+4aJ7ltXhaDbPoszdkh59AQtJM5soLsuHpQJdFQZOA4uGj0V2u/CZ8bJ/u8ULDL5yq6FO/bCXnKHw==}
engines: {node: '>=6.9.0'}
@@ -512,6 +827,18 @@ packages:
'@babel/plugin-proposal-optional-chaining': 7.16.7_@babel+core@7.17.5
dev: false
+ /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/7.18.9_@babel+core@7.19.3:
+ resolution: {integrity: sha512-AHrP9jadvH7qlOj6PINbgSuphjQUAK7AOT7DPjBo9EHoLhQTnnK5u45e1Hd4DbSQEO9nqPWtQ89r+XEOWFScKg==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.13.0
+ dependencies:
+ '@babel/core': 7.19.3
+ '@babel/helper-plugin-utils': 7.19.0
+ '@babel/helper-skip-transparent-expression-wrappers': 7.18.9
+ '@babel/plugin-proposal-optional-chaining': 7.18.9_@babel+core@7.19.3
+ dev: false
+
/@babel/plugin-proposal-async-generator-functions/7.16.8_@babel+core@7.17.5:
resolution: {integrity: sha512-71YHIvMuiuqWJQkebWJtdhQTfd4Q4mF76q2IX37uZPkG9+olBxsX+rH1vkhFto4UeJZ9dPY2s+mDvhDm1u2BGQ==}
engines: {node: '>=6.9.0'}
@@ -526,6 +853,21 @@ packages:
- supports-color
dev: false
+ /@babel/plugin-proposal-async-generator-functions/7.19.1_@babel+core@7.19.3:
+ resolution: {integrity: sha512-0yu8vNATgLy4ivqMNBIwb1HebCelqN7YX8SL3FDXORv/RqT0zEEWUCH4GH44JsSrvCu6GqnAdR5EBFAPeNBB4Q==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.19.3
+ '@babel/helper-environment-visitor': 7.18.9
+ '@babel/helper-plugin-utils': 7.19.0
+ '@babel/helper-remap-async-to-generator': 7.18.9_@babel+core@7.19.3
+ '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.19.3
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
/@babel/plugin-proposal-class-properties/7.16.7_@babel+core@7.17.5:
resolution: {integrity: sha512-IobU0Xme31ewjYOShSIqd/ZGM/r/cuOz2z0MDbNrhF5FW+ZVgi0f2lyeoj9KFPDOAqsYxmLWZte1WOwlvY9aww==}
engines: {node: '>=6.9.0'}
@@ -539,6 +881,19 @@ packages:
- supports-color
dev: false
+ /@babel/plugin-proposal-class-properties/7.18.6_@babel+core@7.19.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.19.3
+ '@babel/helper-create-class-features-plugin': 7.19.0_@babel+core@7.19.3
+ '@babel/helper-plugin-utils': 7.19.0
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
/@babel/plugin-proposal-class-static-block/7.17.6_@babel+core@7.17.5:
resolution: {integrity: sha512-X/tididvL2zbs7jZCeeRJ8167U/+Ac135AM6jCAx6gYXDUviZV5Ku9UDvWS2NCuWlFjIRXklYhwo6HhAC7ETnA==}
engines: {node: '>=6.9.0'}
@@ -553,6 +908,20 @@ packages:
- supports-color
dev: false
+ /@babel/plugin-proposal-class-static-block/7.18.6_@babel+core@7.19.3:
+ resolution: {integrity: sha512-+I3oIiNxrCpup3Gi8n5IGMwj0gOCAjcJUSQEcotNnCCPMEnixawOQ+KeJPlgfjzx+FKQ1QSyZOWe7wmoJp7vhw==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.12.0
+ dependencies:
+ '@babel/core': 7.19.3
+ '@babel/helper-create-class-features-plugin': 7.19.0_@babel+core@7.19.3
+ '@babel/helper-plugin-utils': 7.19.0
+ '@babel/plugin-syntax-class-static-block': 7.14.5_@babel+core@7.19.3
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
/@babel/plugin-proposal-dynamic-import/7.16.7_@babel+core@7.17.5:
resolution: {integrity: sha512-I8SW9Ho3/8DRSdmDdH3gORdyUuYnk1m4cMxUAdu5oy4n3OfN8flDEH+d60iG7dUfi0KkYwSvoalHzzdRzpWHTg==}
engines: {node: '>=6.9.0'}
@@ -564,6 +933,17 @@ packages:
'@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.17.5
dev: false
+ /@babel/plugin-proposal-dynamic-import/7.18.6_@babel+core@7.19.3:
+ resolution: {integrity: sha512-1auuwmK+Rz13SJj36R+jqFPMJWyKEDd7lLSdOj4oJK0UTgGueSAtkrCvz9ewmgyU/P941Rv2fQwZJN8s6QruXw==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.19.3
+ '@babel/helper-plugin-utils': 7.19.0
+ '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.19.3
+ dev: false
+
/@babel/plugin-proposal-export-namespace-from/7.16.7_@babel+core@7.17.5:
resolution: {integrity: sha512-ZxdtqDXLRGBL64ocZcs7ovt71L3jhC1RGSyR996svrCi3PYqHNkb3SwPJCs8RIzD86s+WPpt2S73+EHCGO+NUA==}
engines: {node: '>=6.9.0'}
@@ -575,6 +955,17 @@ packages:
'@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.17.5
dev: false
+ /@babel/plugin-proposal-export-namespace-from/7.18.9_@babel+core@7.19.3:
+ resolution: {integrity: sha512-k1NtHyOMvlDDFeb9G5PhUXuGj8m/wiwojgQVEhJ/fsVsMCpLyOP4h0uGEjYJKrRI+EVPlb5Jk+Gt9P97lOGwtA==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.19.3
+ '@babel/helper-plugin-utils': 7.19.0
+ '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.19.3
+ dev: false
+
/@babel/plugin-proposal-json-strings/7.16.7_@babel+core@7.17.5:
resolution: {integrity: sha512-lNZ3EEggsGY78JavgbHsK9u5P3pQaW7k4axlgFLYkMd7UBsiNahCITShLjNQschPyjtO6dADrL24757IdhBrsQ==}
engines: {node: '>=6.9.0'}
@@ -586,6 +977,17 @@ packages:
'@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.17.5
dev: false
+ /@babel/plugin-proposal-json-strings/7.18.6_@babel+core@7.19.3:
+ resolution: {integrity: sha512-lr1peyn9kOdbYc0xr0OdHTZ5FMqS6Di+H0Fz2I/JwMzGmzJETNeOFq2pBySw6X/KFL5EWDjlJuMsUGRFb8fQgQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.19.3
+ '@babel/helper-plugin-utils': 7.19.0
+ '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.19.3
+ dev: false
+
/@babel/plugin-proposal-logical-assignment-operators/7.16.7_@babel+core@7.17.5:
resolution: {integrity: sha512-K3XzyZJGQCr00+EtYtrDjmwX7o7PLK6U9bi1nCwkQioRFVUv6dJoxbQjtWVtP+bCPy82bONBKG8NPyQ4+i6yjg==}
engines: {node: '>=6.9.0'}
@@ -597,6 +999,17 @@ packages:
'@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.17.5
dev: false
+ /@babel/plugin-proposal-logical-assignment-operators/7.18.9_@babel+core@7.19.3:
+ resolution: {integrity: sha512-128YbMpjCrP35IOExw2Fq+x55LMP42DzhOhX2aNNIdI9avSWl2PI0yuBWarr3RYpZBSPtabfadkH2yeRiMD61Q==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.19.3
+ '@babel/helper-plugin-utils': 7.19.0
+ '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.19.3
+ dev: false
+
/@babel/plugin-proposal-nullish-coalescing-operator/7.16.7_@babel+core@7.17.5:
resolution: {integrity: sha512-aUOrYU3EVtjf62jQrCj63pYZ7k6vns2h/DQvHPWGmsJRYzWXZ6/AsfgpiRy6XiuIDADhJzP2Q9MwSMKauBQ+UQ==}
engines: {node: '>=6.9.0'}
@@ -608,6 +1021,17 @@ packages:
'@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.17.5
dev: false
+ /@babel/plugin-proposal-nullish-coalescing-operator/7.18.6_@babel+core@7.19.3:
+ resolution: {integrity: sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.19.3
+ '@babel/helper-plugin-utils': 7.19.0
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.19.3
+ dev: false
+
/@babel/plugin-proposal-numeric-separator/7.16.7_@babel+core@7.17.5:
resolution: {integrity: sha512-vQgPMknOIgiuVqbokToyXbkY/OmmjAzr/0lhSIbG/KmnzXPGwW/AdhdKpi+O4X/VkWiWjnkKOBiqJrTaC98VKw==}
engines: {node: '>=6.9.0'}
@@ -619,15 +1043,26 @@ packages:
'@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.17.5
dev: false
+ /@babel/plugin-proposal-numeric-separator/7.18.6_@babel+core@7.19.3:
+ resolution: {integrity: sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.19.3
+ '@babel/helper-plugin-utils': 7.19.0
+ '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.19.3
+ dev: false
+
/@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.16.7
+ '@babel/helper-plugin-utils': 7.19.0
'@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.12.9
- '@babel/plugin-transform-parameters': 7.16.7_@babel+core@7.12.9
+ '@babel/plugin-transform-parameters': 7.18.8_@babel+core@7.12.9
dev: false
/@babel/plugin-proposal-object-rest-spread/7.17.3_@babel+core@7.17.5:
@@ -644,15 +1079,40 @@ packages:
'@babel/plugin-transform-parameters': 7.16.7_@babel+core@7.17.5
dev: false
- /@babel/plugin-proposal-optional-catch-binding/7.16.7_@babel+core@7.17.5:
- resolution: {integrity: sha512-eMOH/L4OvWSZAE1VkHbr1vckLG1WUcHGJSLqqQwl2GaUqG6QjddvrOaTUMNYiv77H5IKPMZ9U9P7EaHwvAShfA==}
+ /@babel/plugin-proposal-object-rest-spread/7.18.9_@babel+core@7.19.3:
+ resolution: {integrity: sha512-kDDHQ5rflIeY5xl69CEqGEZ0KY369ehsCIEbTGb4siHG5BE9sga/T0r0OUwyZNLMmZE79E1kbsqAjwFCW4ds6Q==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.17.5
- '@babel/helper-plugin-utils': 7.16.7
- '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.17.5
+ '@babel/compat-data': 7.19.3
+ '@babel/core': 7.19.3
+ '@babel/helper-compilation-targets': 7.19.3_@babel+core@7.19.3
+ '@babel/helper-plugin-utils': 7.19.0
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.19.3
+ '@babel/plugin-transform-parameters': 7.18.8_@babel+core@7.19.3
+ dev: false
+
+ /@babel/plugin-proposal-optional-catch-binding/7.16.7_@babel+core@7.17.5:
+ resolution: {integrity: sha512-eMOH/L4OvWSZAE1VkHbr1vckLG1WUcHGJSLqqQwl2GaUqG6QjddvrOaTUMNYiv77H5IKPMZ9U9P7EaHwvAShfA==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.17.5
+ '@babel/helper-plugin-utils': 7.16.7
+ '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.17.5
+ dev: false
+
+ /@babel/plugin-proposal-optional-catch-binding/7.18.6_@babel+core@7.19.3:
+ resolution: {integrity: sha512-Q40HEhs9DJQyaZfUjjn6vE8Cv4GmMHCYuMGIWUnlxH6400VGxOuwWsPt4FxXxJkC/5eOzgn0z21M9gMT4MOhbw==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.19.3
+ '@babel/helper-plugin-utils': 7.19.0
+ '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.19.3
dev: false
/@babel/plugin-proposal-optional-chaining/7.16.7_@babel+core@7.17.5:
@@ -667,6 +1127,18 @@ packages:
'@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.17.5
dev: false
+ /@babel/plugin-proposal-optional-chaining/7.18.9_@babel+core@7.19.3:
+ resolution: {integrity: sha512-v5nwt4IqBXihxGsW2QmCWMDS3B3bzGIk/EQVZz2ei7f3NJl8NzAJVvUmpDW5q1CRNY+Beb/k58UAH1Km1N411w==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.19.3
+ '@babel/helper-plugin-utils': 7.19.0
+ '@babel/helper-skip-transparent-expression-wrappers': 7.18.9
+ '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.19.3
+ dev: false
+
/@babel/plugin-proposal-private-methods/7.16.11_@babel+core@7.17.5:
resolution: {integrity: sha512-F/2uAkPlXDr8+BHpZvo19w3hLFKge+k75XUprE6jaqKxjGkSYcK+4c+bup5PdW/7W/Rpjwql7FTVEDW+fRAQsw==}
engines: {node: '>=6.9.0'}
@@ -680,6 +1152,19 @@ packages:
- supports-color
dev: false
+ /@babel/plugin-proposal-private-methods/7.18.6_@babel+core@7.19.3:
+ resolution: {integrity: sha512-nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.19.3
+ '@babel/helper-create-class-features-plugin': 7.19.0_@babel+core@7.19.3
+ '@babel/helper-plugin-utils': 7.19.0
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
/@babel/plugin-proposal-private-property-in-object/7.16.7_@babel+core@7.17.5:
resolution: {integrity: sha512-rMQkjcOFbm+ufe3bTZLyOfsOUOxyvLXZJCTARhJr+8UMSoZmqTe1K1BgkFcrW37rAchWg57yI69ORxiWvUINuQ==}
engines: {node: '>=6.9.0'}
@@ -695,6 +1180,21 @@ packages:
- supports-color
dev: false
+ /@babel/plugin-proposal-private-property-in-object/7.18.6_@babel+core@7.19.3:
+ resolution: {integrity: sha512-9Rysx7FOctvT5ouj5JODjAFAkgGoudQuLPamZb0v1TGLpapdNaftzifU8NTWQm0IRjqoYypdrSmyWgkocDQ8Dw==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.19.3
+ '@babel/helper-annotate-as-pure': 7.18.6
+ '@babel/helper-create-class-features-plugin': 7.19.0_@babel+core@7.19.3
+ '@babel/helper-plugin-utils': 7.19.0
+ '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.19.3
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
/@babel/plugin-proposal-unicode-property-regex/7.16.7_@babel+core@7.17.5:
resolution: {integrity: sha512-QRK0YI/40VLhNVGIjRNAAQkEHws0cswSdFFjpFyt943YmJIU1da9uW63Iu6NFV6CxTZW5eTDCrwZUstBWgp/Rg==}
engines: {node: '>=4'}
@@ -706,6 +1206,28 @@ packages:
'@babel/helper-plugin-utils': 7.16.7
dev: false
+ /@babel/plugin-proposal-unicode-property-regex/7.16.7_@babel+core@7.19.3:
+ resolution: {integrity: sha512-QRK0YI/40VLhNVGIjRNAAQkEHws0cswSdFFjpFyt943YmJIU1da9uW63Iu6NFV6CxTZW5eTDCrwZUstBWgp/Rg==}
+ engines: {node: '>=4'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.19.3
+ '@babel/helper-create-regexp-features-plugin': 7.17.0_@babel+core@7.19.3
+ '@babel/helper-plugin-utils': 7.16.7
+ dev: false
+
+ /@babel/plugin-proposal-unicode-property-regex/7.18.6_@babel+core@7.19.3:
+ resolution: {integrity: sha512-2BShG/d5yoZyXZfVePH91urL5wTG6ASZU9M4o03lKK8u8UW1y08OMttBSOADTcJrnPMpvDXRG3G8fyLh4ovs8w==}
+ engines: {node: '>=4'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.19.3
+ '@babel/helper-create-regexp-features-plugin': 7.19.0_@babel+core@7.19.3
+ '@babel/helper-plugin-utils': 7.19.0
+ dev: false
+
/@babel/plugin-syntax-async-generators/7.8.4_@babel+core@7.17.5:
resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==}
peerDependencies:
@@ -715,6 +1237,15 @@ packages:
'@babel/helper-plugin-utils': 7.16.7
dev: false
+ /@babel/plugin-syntax-async-generators/7.8.4_@babel+core@7.19.3:
+ resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.19.3
+ '@babel/helper-plugin-utils': 7.16.7
+ dev: false
+
/@babel/plugin-syntax-class-properties/7.12.13_@babel+core@7.17.5:
resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==}
peerDependencies:
@@ -724,6 +1255,15 @@ packages:
'@babel/helper-plugin-utils': 7.16.7
dev: false
+ /@babel/plugin-syntax-class-properties/7.12.13_@babel+core@7.19.3:
+ resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.19.3
+ '@babel/helper-plugin-utils': 7.16.7
+ dev: false
+
/@babel/plugin-syntax-class-static-block/7.14.5_@babel+core@7.17.5:
resolution: {integrity: sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==}
engines: {node: '>=6.9.0'}
@@ -734,6 +1274,16 @@ packages:
'@babel/helper-plugin-utils': 7.16.7
dev: false
+ /@babel/plugin-syntax-class-static-block/7.14.5_@babel+core@7.19.3:
+ resolution: {integrity: sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.19.3
+ '@babel/helper-plugin-utils': 7.16.7
+ dev: false
+
/@babel/plugin-syntax-dynamic-import/7.8.3_@babel+core@7.17.5:
resolution: {integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==}
peerDependencies:
@@ -743,6 +1293,15 @@ packages:
'@babel/helper-plugin-utils': 7.16.7
dev: false
+ /@babel/plugin-syntax-dynamic-import/7.8.3_@babel+core@7.19.3:
+ resolution: {integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.19.3
+ '@babel/helper-plugin-utils': 7.16.7
+ dev: false
+
/@babel/plugin-syntax-export-namespace-from/7.8.3_@babel+core@7.17.5:
resolution: {integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==}
peerDependencies:
@@ -752,6 +1311,25 @@ packages:
'@babel/helper-plugin-utils': 7.16.7
dev: false
+ /@babel/plugin-syntax-export-namespace-from/7.8.3_@babel+core@7.19.3:
+ resolution: {integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.19.3
+ '@babel/helper-plugin-utils': 7.16.7
+ dev: false
+
+ /@babel/plugin-syntax-import-assertions/7.18.6_@babel+core@7.19.3:
+ resolution: {integrity: sha512-/DU3RXad9+bZwrgWJQKbr39gYbJpLJHezqEzRzi/BHRlJ9zsQb4CK2CA/5apllXNomwA1qHwzvHl+AdEmC5krQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.19.3
+ '@babel/helper-plugin-utils': 7.19.0
+ dev: false
+
/@babel/plugin-syntax-json-strings/7.8.3_@babel+core@7.17.5:
resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==}
peerDependencies:
@@ -761,13 +1339,22 @@ packages:
'@babel/helper-plugin-utils': 7.16.7
dev: false
+ /@babel/plugin-syntax-json-strings/7.8.3_@babel+core@7.19.3:
+ resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.19.3
+ '@babel/helper-plugin-utils': 7.16.7
+ dev: false
+
/@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
dependencies:
'@babel/core': 7.12.9
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/helper-plugin-utils': 7.19.0
dev: false
/@babel/plugin-syntax-jsx/7.16.7_@babel+core@7.17.5:
@@ -780,6 +1367,16 @@ packages:
'@babel/helper-plugin-utils': 7.16.7
dev: false
+ /@babel/plugin-syntax-jsx/7.18.6_@babel+core@7.19.3:
+ resolution: {integrity: sha512-6mmljtAedFGTWu2p/8WIORGwy+61PLgOMPOdazc7YoJ9ZCWUyFy3A6CpPkRKLKD1ToAesxX8KGEViAiLo9N+7Q==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.19.3
+ '@babel/helper-plugin-utils': 7.19.0
+ dev: false
+
/@babel/plugin-syntax-logical-assignment-operators/7.10.4_@babel+core@7.17.5:
resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==}
peerDependencies:
@@ -789,6 +1386,15 @@ packages:
'@babel/helper-plugin-utils': 7.16.7
dev: false
+ /@babel/plugin-syntax-logical-assignment-operators/7.10.4_@babel+core@7.19.3:
+ resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.19.3
+ '@babel/helper-plugin-utils': 7.16.7
+ dev: false
+
/@babel/plugin-syntax-nullish-coalescing-operator/7.8.3_@babel+core@7.17.5:
resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==}
peerDependencies:
@@ -798,6 +1404,15 @@ packages:
'@babel/helper-plugin-utils': 7.16.7
dev: false
+ /@babel/plugin-syntax-nullish-coalescing-operator/7.8.3_@babel+core@7.19.3:
+ resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.19.3
+ '@babel/helper-plugin-utils': 7.16.7
+ dev: false
+
/@babel/plugin-syntax-numeric-separator/7.10.4_@babel+core@7.17.5:
resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==}
peerDependencies:
@@ -807,6 +1422,15 @@ packages:
'@babel/helper-plugin-utils': 7.16.7
dev: false
+ /@babel/plugin-syntax-numeric-separator/7.10.4_@babel+core@7.19.3:
+ resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.19.3
+ '@babel/helper-plugin-utils': 7.16.7
+ dev: false
+
/@babel/plugin-syntax-object-rest-spread/7.8.3_@babel+core@7.12.9:
resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==}
peerDependencies:
@@ -825,6 +1449,15 @@ packages:
'@babel/helper-plugin-utils': 7.16.7
dev: false
+ /@babel/plugin-syntax-object-rest-spread/7.8.3_@babel+core@7.19.3:
+ resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.19.3
+ '@babel/helper-plugin-utils': 7.16.7
+ dev: false
+
/@babel/plugin-syntax-optional-catch-binding/7.8.3_@babel+core@7.17.5:
resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==}
peerDependencies:
@@ -834,6 +1467,15 @@ packages:
'@babel/helper-plugin-utils': 7.16.7
dev: false
+ /@babel/plugin-syntax-optional-catch-binding/7.8.3_@babel+core@7.19.3:
+ resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.19.3
+ '@babel/helper-plugin-utils': 7.16.7
+ dev: false
+
/@babel/plugin-syntax-optional-chaining/7.8.3_@babel+core@7.17.5:
resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==}
peerDependencies:
@@ -843,6 +1485,15 @@ packages:
'@babel/helper-plugin-utils': 7.16.7
dev: false
+ /@babel/plugin-syntax-optional-chaining/7.8.3_@babel+core@7.19.3:
+ resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.19.3
+ '@babel/helper-plugin-utils': 7.16.7
+ dev: false
+
/@babel/plugin-syntax-private-property-in-object/7.14.5_@babel+core@7.17.5:
resolution: {integrity: sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==}
engines: {node: '>=6.9.0'}
@@ -853,6 +1504,16 @@ packages:
'@babel/helper-plugin-utils': 7.16.7
dev: false
+ /@babel/plugin-syntax-private-property-in-object/7.14.5_@babel+core@7.19.3:
+ resolution: {integrity: sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.19.3
+ '@babel/helper-plugin-utils': 7.16.7
+ dev: false
+
/@babel/plugin-syntax-top-level-await/7.14.5_@babel+core@7.17.5:
resolution: {integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==}
engines: {node: '>=6.9.0'}
@@ -863,16 +1524,26 @@ packages:
'@babel/helper-plugin-utils': 7.16.7
dev: false
- /@babel/plugin-syntax-typescript/7.16.7_@babel+core@7.17.5:
- resolution: {integrity: sha512-YhUIJHHGkqPgEcMYkPCKTyGUdoGKWtopIycQyjJH8OjvRgOYsXsaKehLVPScKJWAULPxMa4N1vCe6szREFlZ7A==}
+ /@babel/plugin-syntax-top-level-await/7.14.5_@babel+core@7.19.3:
+ resolution: {integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.17.5
+ '@babel/core': 7.19.3
'@babel/helper-plugin-utils': 7.16.7
dev: false
+ /@babel/plugin-syntax-typescript/7.18.6_@babel+core@7.19.3:
+ resolution: {integrity: sha512-mAWAuq4rvOepWCBid55JuRNvpTNf2UGVgoz4JV0fXEKolsVZDzsa4NqCef758WZJj/GDu0gVGItjKFiClTAmZA==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.19.3
+ '@babel/helper-plugin-utils': 7.19.0
+ dev: false
+
/@babel/plugin-transform-arrow-functions/7.16.7_@babel+core@7.17.5:
resolution: {integrity: sha512-9ffkFFMbvzTvv+7dTp/66xvZAWASuPD5Tl9LK3Z9vhOmANo6j94rik+5YMBt4CwHVMWLWpMsriIc2zsa3WW3xQ==}
engines: {node: '>=6.9.0'}
@@ -883,6 +1554,16 @@ packages:
'@babel/helper-plugin-utils': 7.16.7
dev: false
+ /@babel/plugin-transform-arrow-functions/7.18.6_@babel+core@7.19.3:
+ resolution: {integrity: sha512-9S9X9RUefzrsHZmKMbDXxweEH+YlE8JJEuat9FdvW9Qh1cw7W64jELCtWNkPBPX5En45uy28KGvA/AySqUh8CQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.19.3
+ '@babel/helper-plugin-utils': 7.19.0
+ dev: false
+
/@babel/plugin-transform-async-to-generator/7.16.8_@babel+core@7.17.5:
resolution: {integrity: sha512-MtmUmTJQHCnyJVrScNzNlofQJ3dLFuobYn3mwOTKHnSCMtbNsqvF71GQmJfFjdrXSsAA7iysFmYWw4bXZ20hOg==}
engines: {node: '>=6.9.0'}
@@ -897,6 +1578,20 @@ packages:
- supports-color
dev: false
+ /@babel/plugin-transform-async-to-generator/7.18.6_@babel+core@7.19.3:
+ resolution: {integrity: sha512-ARE5wZLKnTgPW7/1ftQmSi1CmkqqHo2DNmtztFhvgtOWSDfq0Cq9/9L+KnZNYSNrydBekhW3rwShduf59RoXag==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.19.3
+ '@babel/helper-module-imports': 7.18.6
+ '@babel/helper-plugin-utils': 7.19.0
+ '@babel/helper-remap-async-to-generator': 7.18.9_@babel+core@7.19.3
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
/@babel/plugin-transform-block-scoped-functions/7.16.7_@babel+core@7.17.5:
resolution: {integrity: sha512-JUuzlzmF40Z9cXyytcbZEZKckgrQzChbQJw/5PuEHYeqzCsvebDx0K0jWnIIVcmmDOAVctCgnYs0pMcrYj2zJg==}
engines: {node: '>=6.9.0'}
@@ -907,6 +1602,16 @@ packages:
'@babel/helper-plugin-utils': 7.16.7
dev: false
+ /@babel/plugin-transform-block-scoped-functions/7.18.6_@babel+core@7.19.3:
+ resolution: {integrity: sha512-ExUcOqpPWnliRcPqves5HJcJOvHvIIWfuS4sroBUenPuMdmW+SMHDakmtS7qOo13sVppmUijqeTv7qqGsvURpQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.19.3
+ '@babel/helper-plugin-utils': 7.19.0
+ dev: false
+
/@babel/plugin-transform-block-scoping/7.16.7_@babel+core@7.17.5:
resolution: {integrity: sha512-ObZev2nxVAYA4bhyusELdo9hb3H+A56bxH3FZMbEImZFiEDYVHXQSJ1hQKFlDnlt8G9bBrCZ5ZpURZUrV4G5qQ==}
engines: {node: '>=6.9.0'}
@@ -917,6 +1622,16 @@ packages:
'@babel/helper-plugin-utils': 7.16.7
dev: false
+ /@babel/plugin-transform-block-scoping/7.18.9_@babel+core@7.19.3:
+ resolution: {integrity: sha512-5sDIJRV1KtQVEbt/EIBwGy4T01uYIo4KRB3VUqzkhrAIOGx7AoctL9+Ux88btY0zXdDyPJ9mW+bg+v+XEkGmtw==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.19.3
+ '@babel/helper-plugin-utils': 7.19.0
+ dev: false
+
/@babel/plugin-transform-classes/7.16.7_@babel+core@7.17.5:
resolution: {integrity: sha512-WY7og38SFAGYRe64BrjKf8OrE6ulEHtr5jEYaZMwox9KebgqPi67Zqz8K53EKk1fFEJgm96r32rkKZ3qA2nCWQ==}
engines: {node: '>=6.9.0'}
@@ -936,6 +1651,26 @@ packages:
- supports-color
dev: false
+ /@babel/plugin-transform-classes/7.19.0_@babel+core@7.19.3:
+ resolution: {integrity: sha512-YfeEE9kCjqTS9IitkgfJuxjcEtLUHMqa8yUJ6zdz8vR7hKuo6mOy2C05P0F1tdMmDCeuyidKnlrw/iTppHcr2A==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.19.3
+ '@babel/helper-annotate-as-pure': 7.18.6
+ '@babel/helper-compilation-targets': 7.19.3_@babel+core@7.19.3
+ '@babel/helper-environment-visitor': 7.18.9
+ '@babel/helper-function-name': 7.19.0
+ '@babel/helper-optimise-call-expression': 7.18.6
+ '@babel/helper-plugin-utils': 7.19.0
+ '@babel/helper-replace-supers': 7.19.1
+ '@babel/helper-split-export-declaration': 7.18.6
+ globals: 11.12.0
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
/@babel/plugin-transform-computed-properties/7.16.7_@babel+core@7.17.5:
resolution: {integrity: sha512-gN72G9bcmenVILj//sv1zLNaPyYcOzUho2lIJBMh/iakJ9ygCo/hEF9cpGb61SCMEDxbbyBoVQxrt+bWKu5KGw==}
engines: {node: '>=6.9.0'}
@@ -946,6 +1681,16 @@ packages:
'@babel/helper-plugin-utils': 7.16.7
dev: false
+ /@babel/plugin-transform-computed-properties/7.18.9_@babel+core@7.19.3:
+ resolution: {integrity: sha512-+i0ZU1bCDymKakLxn5srGHrsAPRELC2WIbzwjLhHW9SIE1cPYkLCL0NlnXMZaM1vhfgA2+M7hySk42VBvrkBRw==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.19.3
+ '@babel/helper-plugin-utils': 7.19.0
+ dev: false
+
/@babel/plugin-transform-destructuring/7.17.3_@babel+core@7.17.5:
resolution: {integrity: sha512-dDFzegDYKlPqa72xIlbmSkly5MluLoaC1JswABGktyt6NTXSBcUuse/kWE/wvKFWJHPETpi158qJZFS3JmykJg==}
engines: {node: '>=6.9.0'}
@@ -956,6 +1701,16 @@ packages:
'@babel/helper-plugin-utils': 7.16.7
dev: false
+ /@babel/plugin-transform-destructuring/7.18.13_@babel+core@7.19.3:
+ resolution: {integrity: sha512-TodpQ29XekIsex2A+YJPj5ax2plkGa8YYY6mFjCohk/IG9IY42Rtuj1FuDeemfg2ipxIFLzPeA83SIBnlhSIow==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.19.3
+ '@babel/helper-plugin-utils': 7.19.0
+ dev: false
+
/@babel/plugin-transform-dotall-regex/7.16.7_@babel+core@7.17.5:
resolution: {integrity: sha512-Lyttaao2SjZF6Pf4vk1dVKv8YypMpomAbygW+mU5cYP3S5cWTfCJjG8xV6CFdzGFlfWK81IjL9viiTvpb6G7gQ==}
engines: {node: '>=6.9.0'}
@@ -967,6 +1722,28 @@ packages:
'@babel/helper-plugin-utils': 7.16.7
dev: false
+ /@babel/plugin-transform-dotall-regex/7.16.7_@babel+core@7.19.3:
+ resolution: {integrity: sha512-Lyttaao2SjZF6Pf4vk1dVKv8YypMpomAbygW+mU5cYP3S5cWTfCJjG8xV6CFdzGFlfWK81IjL9viiTvpb6G7gQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.19.3
+ '@babel/helper-create-regexp-features-plugin': 7.17.0_@babel+core@7.19.3
+ '@babel/helper-plugin-utils': 7.16.7
+ dev: false
+
+ /@babel/plugin-transform-dotall-regex/7.18.6_@babel+core@7.19.3:
+ resolution: {integrity: sha512-6S3jpun1eEbAxq7TdjLotAsl4WpQI9DxfkycRcKrjhQYzU87qpXdknpBg/e+TdcMehqGnLFi7tnFUBR02Vq6wg==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.19.3
+ '@babel/helper-create-regexp-features-plugin': 7.19.0_@babel+core@7.19.3
+ '@babel/helper-plugin-utils': 7.19.0
+ dev: false
+
/@babel/plugin-transform-duplicate-keys/7.16.7_@babel+core@7.17.5:
resolution: {integrity: sha512-03DvpbRfvWIXyK0/6QiR1KMTWeT6OcQ7tbhjrXyFS02kjuX/mu5Bvnh5SDSWHxyawit2g5aWhKwI86EE7GUnTw==}
engines: {node: '>=6.9.0'}
@@ -977,6 +1754,16 @@ packages:
'@babel/helper-plugin-utils': 7.16.7
dev: false
+ /@babel/plugin-transform-duplicate-keys/7.18.9_@babel+core@7.19.3:
+ resolution: {integrity: sha512-d2bmXCtZXYc59/0SanQKbiWINadaJXqtvIQIzd4+hNwkWBgyCd5F/2t1kXoUdvPMrxzPvhK6EMQRROxsue+mfw==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.19.3
+ '@babel/helper-plugin-utils': 7.19.0
+ dev: false
+
/@babel/plugin-transform-exponentiation-operator/7.16.7_@babel+core@7.17.5:
resolution: {integrity: sha512-8UYLSlyLgRixQvlYH3J2ekXFHDFLQutdy7FfFAMm3CPZ6q9wHCwnUyiXpQCe3gVVnQlHc5nsuiEVziteRNTXEA==}
engines: {node: '>=6.9.0'}
@@ -988,6 +1775,17 @@ packages:
'@babel/helper-plugin-utils': 7.16.7
dev: false
+ /@babel/plugin-transform-exponentiation-operator/7.18.6_@babel+core@7.19.3:
+ resolution: {integrity: sha512-wzEtc0+2c88FVR34aQmiz56dxEkxr2g8DQb/KfaFa1JYXOFVsbhvAonFN6PwVWj++fKmku8NP80plJ5Et4wqHw==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.19.3
+ '@babel/helper-builder-binary-assignment-operator-visitor': 7.18.9
+ '@babel/helper-plugin-utils': 7.19.0
+ dev: false
+
/@babel/plugin-transform-for-of/7.16.7_@babel+core@7.17.5:
resolution: {integrity: sha512-/QZm9W92Ptpw7sjI9Nx1mbcsWz33+l8kuMIQnDwgQBG5s3fAfQvkRjQ7NqXhtNcKOnPkdICmUHyCaWW06HCsqg==}
engines: {node: '>=6.9.0'}
@@ -998,6 +1796,16 @@ packages:
'@babel/helper-plugin-utils': 7.16.7
dev: false
+ /@babel/plugin-transform-for-of/7.18.8_@babel+core@7.19.3:
+ resolution: {integrity: sha512-yEfTRnjuskWYo0k1mHUqrVWaZwrdq8AYbfrpqULOJOaucGSp4mNMVps+YtA8byoevxS/urwU75vyhQIxcCgiBQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.19.3
+ '@babel/helper-plugin-utils': 7.19.0
+ dev: false
+
/@babel/plugin-transform-function-name/7.16.7_@babel+core@7.17.5:
resolution: {integrity: sha512-SU/C68YVwTRxqWj5kgsbKINakGag0KTgq9f2iZEXdStoAbOzLHEBRYzImmA6yFo8YZhJVflvXmIHUO7GWHmxxA==}
engines: {node: '>=6.9.0'}
@@ -1010,6 +1818,18 @@ packages:
'@babel/helper-plugin-utils': 7.16.7
dev: false
+ /@babel/plugin-transform-function-name/7.18.9_@babel+core@7.19.3:
+ resolution: {integrity: sha512-WvIBoRPaJQ5yVHzcnJFor7oS5Ls0PYixlTYE63lCj2RtdQEl15M68FXQlxnG6wdraJIXRdR7KI+hQ7q/9QjrCQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.19.3
+ '@babel/helper-compilation-targets': 7.19.3_@babel+core@7.19.3
+ '@babel/helper-function-name': 7.19.0
+ '@babel/helper-plugin-utils': 7.19.0
+ dev: false
+
/@babel/plugin-transform-literals/7.16.7_@babel+core@7.17.5:
resolution: {integrity: sha512-6tH8RTpTWI0s2sV6uq3e/C9wPo4PTqqZps4uF0kzQ9/xPLFQtipynvmT1g/dOfEJ+0EQsHhkQ/zyRId8J2b8zQ==}
engines: {node: '>=6.9.0'}
@@ -1020,6 +1840,16 @@ packages:
'@babel/helper-plugin-utils': 7.16.7
dev: false
+ /@babel/plugin-transform-literals/7.18.9_@babel+core@7.19.3:
+ resolution: {integrity: sha512-IFQDSRoTPnrAIrI5zoZv73IFeZu2dhu6irxQjY9rNjTT53VmKg9fenjvoiOWOkJ6mm4jKVPtdMzBY98Fp4Z4cg==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.19.3
+ '@babel/helper-plugin-utils': 7.19.0
+ dev: false
+
/@babel/plugin-transform-member-expression-literals/7.16.7_@babel+core@7.17.5:
resolution: {integrity: sha512-mBruRMbktKQwbxaJof32LT9KLy2f3gH+27a5XSuXo6h7R3vqltl0PgZ80C8ZMKw98Bf8bqt6BEVi3svOh2PzMw==}
engines: {node: '>=6.9.0'}
@@ -1030,6 +1860,16 @@ packages:
'@babel/helper-plugin-utils': 7.16.7
dev: false
+ /@babel/plugin-transform-member-expression-literals/7.18.6_@babel+core@7.19.3:
+ resolution: {integrity: sha512-qSF1ihLGO3q+/g48k85tUjD033C29TNTVB2paCwZPVmOsjn9pClvYYrM2VeJpBY2bcNkuny0YUyTNRyRxJ54KA==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.19.3
+ '@babel/helper-plugin-utils': 7.19.0
+ dev: false
+
/@babel/plugin-transform-modules-amd/7.16.7_@babel+core@7.17.5:
resolution: {integrity: sha512-KaaEtgBL7FKYwjJ/teH63oAmE3lP34N3kshz8mm4VMAw7U3PxjVwwUmxEFksbgsNUaO3wId9R2AVQYSEGRa2+g==}
engines: {node: '>=6.9.0'}
@@ -1044,6 +1884,20 @@ packages:
- supports-color
dev: false
+ /@babel/plugin-transform-modules-amd/7.18.6_@babel+core@7.19.3:
+ resolution: {integrity: sha512-Pra5aXsmTsOnjM3IajS8rTaLCy++nGM4v3YR4esk5PCsyg9z8NA5oQLwxzMUtDBd8F+UmVza3VxoAaWCbzH1rg==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.19.3
+ '@babel/helper-module-transforms': 7.19.0
+ '@babel/helper-plugin-utils': 7.19.0
+ babel-plugin-dynamic-import-node: 2.3.3
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
/@babel/plugin-transform-modules-commonjs/7.16.8_@babel+core@7.17.5:
resolution: {integrity: sha512-oflKPvsLT2+uKQopesJt3ApiaIS2HW+hzHFcwRNtyDGieAeC/dIHZX8buJQ2J2X1rxGPy4eRcUijm3qcSPjYcA==}
engines: {node: '>=6.9.0'}
@@ -1059,6 +1913,21 @@ packages:
- supports-color
dev: false
+ /@babel/plugin-transform-modules-commonjs/7.18.6_@babel+core@7.19.3:
+ resolution: {integrity: sha512-Qfv2ZOWikpvmedXQJDSbxNqy7Xr/j2Y8/KfijM0iJyKkBTmWuvCA1yeH1yDM7NJhBW/2aXxeucLj6i80/LAJ/Q==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.19.3
+ '@babel/helper-module-transforms': 7.19.0
+ '@babel/helper-plugin-utils': 7.19.0
+ '@babel/helper-simple-access': 7.18.6
+ babel-plugin-dynamic-import-node: 2.3.3
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
/@babel/plugin-transform-modules-systemjs/7.16.7_@babel+core@7.17.5:
resolution: {integrity: sha512-DuK5E3k+QQmnOqBR9UkusByy5WZWGRxfzV529s9nPra1GE7olmxfqO2FHobEOYSPIjPBTr4p66YDcjQnt8cBmw==}
engines: {node: '>=6.9.0'}
@@ -1075,6 +1944,22 @@ packages:
- supports-color
dev: false
+ /@babel/plugin-transform-modules-systemjs/7.19.0_@babel+core@7.19.3:
+ resolution: {integrity: sha512-x9aiR0WXAWmOWsqcsnrzGR+ieaTMVyGyffPVA7F8cXAGt/UxefYv6uSHZLkAFChN5M5Iy1+wjE+xJuPt22H39A==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.19.3
+ '@babel/helper-hoist-variables': 7.18.6
+ '@babel/helper-module-transforms': 7.19.0
+ '@babel/helper-plugin-utils': 7.19.0
+ '@babel/helper-validator-identifier': 7.19.1
+ babel-plugin-dynamic-import-node: 2.3.3
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
/@babel/plugin-transform-modules-umd/7.16.7_@babel+core@7.17.5:
resolution: {integrity: sha512-EMh7uolsC8O4xhudF2F6wedbSHm1HHZ0C6aJ7K67zcDNidMzVcxWdGr+htW9n21klm+bOn+Rx4CBsAntZd3rEQ==}
engines: {node: '>=6.9.0'}
@@ -1088,6 +1973,19 @@ packages:
- supports-color
dev: false
+ /@babel/plugin-transform-modules-umd/7.18.6_@babel+core@7.19.3:
+ resolution: {integrity: sha512-dcegErExVeXcRqNtkRU/z8WlBLnvD4MRnHgNs3MytRO1Mn1sHRyhbcpYbVMGclAqOjdW+9cfkdZno9dFdfKLfQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.19.3
+ '@babel/helper-module-transforms': 7.19.0
+ '@babel/helper-plugin-utils': 7.19.0
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
/@babel/plugin-transform-named-capturing-groups-regex/7.16.8_@babel+core@7.17.5:
resolution: {integrity: sha512-j3Jw+n5PvpmhRR+mrgIh04puSANCk/T/UA3m3P1MjJkhlK906+ApHhDIqBQDdOgL/r1UYpz4GNclTXxyZrYGSw==}
engines: {node: '>=6.9.0'}
@@ -1098,6 +1996,17 @@ packages:
'@babel/helper-create-regexp-features-plugin': 7.17.0_@babel+core@7.17.5
dev: false
+ /@babel/plugin-transform-named-capturing-groups-regex/7.19.1_@babel+core@7.19.3:
+ resolution: {integrity: sha512-oWk9l9WItWBQYS4FgXD4Uyy5kq898lvkXpXQxoJEY1RnvPk4R/Dvu2ebXU9q8lP+rlMwUQTFf2Ok6d78ODa0kw==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0
+ dependencies:
+ '@babel/core': 7.19.3
+ '@babel/helper-create-regexp-features-plugin': 7.19.0_@babel+core@7.19.3
+ '@babel/helper-plugin-utils': 7.19.0
+ dev: false
+
/@babel/plugin-transform-new-target/7.16.7_@babel+core@7.17.5:
resolution: {integrity: sha512-xiLDzWNMfKoGOpc6t3U+etCE2yRnn3SM09BXqWPIZOBpL2gvVrBWUKnsJx0K/ADi5F5YC5f8APFfWrz25TdlGg==}
engines: {node: '>=6.9.0'}
@@ -1108,6 +2017,16 @@ packages:
'@babel/helper-plugin-utils': 7.16.7
dev: false
+ /@babel/plugin-transform-new-target/7.18.6_@babel+core@7.19.3:
+ resolution: {integrity: sha512-DjwFA/9Iu3Z+vrAn+8pBUGcjhxKguSMlsFqeCKbhb9BAV756v0krzVK04CRDi/4aqmk8BsHb4a/gFcaA5joXRw==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.19.3
+ '@babel/helper-plugin-utils': 7.19.0
+ dev: false
+
/@babel/plugin-transform-object-super/7.16.7_@babel+core@7.17.5:
resolution: {integrity: sha512-14J1feiQVWaGvRxj2WjyMuXS2jsBkgB3MdSN5HuC2G5nRspa5RK9COcs82Pwy5BuGcjb+fYaUj94mYcOj7rCvw==}
engines: {node: '>=6.9.0'}
@@ -1121,24 +2040,47 @@ packages:
- supports-color
dev: false
- /@babel/plugin-transform-parameters/7.16.7_@babel+core@7.12.9:
- resolution: {integrity: sha512-AT3MufQ7zZEhU2hwOA11axBnExW0Lszu4RL/tAlUJBuNoRak+wehQW8h6KcXOcgjY42fHtDxswuMhMjFEuv/aw==}
+ /@babel/plugin-transform-object-super/7.18.6_@babel+core@7.19.3:
+ resolution: {integrity: sha512-uvGz6zk+pZoS1aTZrOvrbj6Pp/kK2mp45t2B+bTDre2UgsZZ8EZLSJtUg7m/no0zOJUWgFONpB7Zv9W2tSaFlA==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.19.3
+ '@babel/helper-plugin-utils': 7.19.0
+ '@babel/helper-replace-supers': 7.19.1
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
+ /@babel/plugin-transform-parameters/7.16.7_@babel+core@7.17.5:
+ resolution: {integrity: sha512-AT3MufQ7zZEhU2hwOA11axBnExW0Lszu4RL/tAlUJBuNoRak+wehQW8h6KcXOcgjY42fHtDxswuMhMjFEuv/aw==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.17.5
+ '@babel/helper-plugin-utils': 7.16.7
+ dev: false
+
+ /@babel/plugin-transform-parameters/7.18.8_@babel+core@7.12.9:
+ resolution: {integrity: sha512-ivfbE3X2Ss+Fj8nnXvKJS6sjRG4gzwPMsP+taZC+ZzEGjAYlvENixmt1sZ5Ca6tWls+BlKSGKPJ6OOXvXCbkFg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.12.9
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/helper-plugin-utils': 7.19.0
dev: false
- /@babel/plugin-transform-parameters/7.16.7_@babel+core@7.17.5:
- resolution: {integrity: sha512-AT3MufQ7zZEhU2hwOA11axBnExW0Lszu4RL/tAlUJBuNoRak+wehQW8h6KcXOcgjY42fHtDxswuMhMjFEuv/aw==}
+ /@babel/plugin-transform-parameters/7.18.8_@babel+core@7.19.3:
+ resolution: {integrity: sha512-ivfbE3X2Ss+Fj8nnXvKJS6sjRG4gzwPMsP+taZC+ZzEGjAYlvENixmt1sZ5Ca6tWls+BlKSGKPJ6OOXvXCbkFg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.17.5
- '@babel/helper-plugin-utils': 7.16.7
+ '@babel/core': 7.19.3
+ '@babel/helper-plugin-utils': 7.19.0
dev: false
/@babel/plugin-transform-property-literals/7.16.7_@babel+core@7.17.5:
@@ -1151,6 +2093,16 @@ packages:
'@babel/helper-plugin-utils': 7.16.7
dev: false
+ /@babel/plugin-transform-property-literals/7.18.6_@babel+core@7.19.3:
+ resolution: {integrity: sha512-cYcs6qlgafTud3PAzrrRNbQtfpQ8+y/+M5tKmksS9+M1ckbH6kzY8MrexEM9mcA6JDsukE19iIRvAyYl463sMg==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.19.3
+ '@babel/helper-plugin-utils': 7.19.0
+ dev: false
+
/@babel/plugin-transform-react-constant-elements/7.17.6_@babel+core@7.17.5:
resolution: {integrity: sha512-OBv9VkyyKtsHZiHLoSfCn+h6yU7YKX8nrs32xUmOa1SRSk+t03FosB6fBZ0Yz4BpD1WV7l73Nsad+2Tz7APpqw==}
engines: {node: '>=6.9.0'}
@@ -1161,6 +2113,16 @@ packages:
'@babel/helper-plugin-utils': 7.16.7
dev: false
+ /@babel/plugin-transform-react-constant-elements/7.17.6_@babel+core@7.19.3:
+ resolution: {integrity: sha512-OBv9VkyyKtsHZiHLoSfCn+h6yU7YKX8nrs32xUmOa1SRSk+t03FosB6fBZ0Yz4BpD1WV7l73Nsad+2Tz7APpqw==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.19.3
+ '@babel/helper-plugin-utils': 7.16.7
+ dev: false
+
/@babel/plugin-transform-react-display-name/7.16.7_@babel+core@7.17.5:
resolution: {integrity: sha512-qgIg8BcZgd0G/Cz916D5+9kqX0c7nPZyXaP8R2tLNN5tkyIZdG5fEwBrxwplzSnjC1jvQmyMNVwUCZPcbGY7Pg==}
engines: {node: '>=6.9.0'}
@@ -1171,6 +2133,16 @@ packages:
'@babel/helper-plugin-utils': 7.16.7
dev: false
+ /@babel/plugin-transform-react-display-name/7.18.6_@babel+core@7.19.3:
+ resolution: {integrity: sha512-TV4sQ+T013n61uMoygyMRm+xf04Bd5oqFpv2jAEQwSZ8NwQA7zeRPg1LMVg2PWi3zWBz+CLKD+v5bcpZ/BS0aA==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.19.3
+ '@babel/helper-plugin-utils': 7.19.0
+ dev: false
+
/@babel/plugin-transform-react-jsx-development/7.16.7_@babel+core@7.17.5:
resolution: {integrity: sha512-RMvQWvpla+xy6MlBpPlrKZCMRs2AGiHOGHY3xRwl0pEeim348dDyxeH4xBsMPbIMhujeq7ihE702eM2Ew0Wo+A==}
engines: {node: '>=6.9.0'}
@@ -1181,6 +2153,16 @@ packages:
'@babel/plugin-transform-react-jsx': 7.17.3_@babel+core@7.17.5
dev: false
+ /@babel/plugin-transform-react-jsx-development/7.18.6_@babel+core@7.19.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.19.3
+ '@babel/plugin-transform-react-jsx': 7.19.0_@babel+core@7.19.3
+ dev: false
+
/@babel/plugin-transform-react-jsx/7.17.3_@babel+core@7.17.5:
resolution: {integrity: sha512-9tjBm4O07f7mzKSIlEmPdiE6ub7kfIe6Cd+w+oQebpATfTQMAgW+YOuWxogbKVTulA+MEO7byMeIUtQ1z+z+ZQ==}
engines: {node: '>=6.9.0'}
@@ -1195,6 +2177,20 @@ packages:
'@babel/types': 7.17.0
dev: false
+ /@babel/plugin-transform-react-jsx/7.19.0_@babel+core@7.19.3:
+ resolution: {integrity: sha512-UVEvX3tXie3Szm3emi1+G63jyw1w5IcMY0FSKM+CRnKRI5Mr1YbCNgsSTwoTwKphQEG9P+QqmuRFneJPZuHNhg==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.19.3
+ '@babel/helper-annotate-as-pure': 7.18.6
+ '@babel/helper-module-imports': 7.18.6
+ '@babel/helper-plugin-utils': 7.19.0
+ '@babel/plugin-syntax-jsx': 7.18.6_@babel+core@7.19.3
+ '@babel/types': 7.19.3
+ dev: false
+
/@babel/plugin-transform-react-pure-annotations/7.16.7_@babel+core@7.17.5:
resolution: {integrity: sha512-hs71ToC97k3QWxswh2ElzMFABXHvGiJ01IB1TbYQDGeWRKWz/MPUTh5jGExdHvosYKpnJW5Pm3S4+TA3FyX+GA==}
engines: {node: '>=6.9.0'}
@@ -1206,6 +2202,17 @@ packages:
'@babel/helper-plugin-utils': 7.16.7
dev: false
+ /@babel/plugin-transform-react-pure-annotations/7.18.6_@babel+core@7.19.3:
+ resolution: {integrity: sha512-I8VfEPg9r2TRDdvnHgPepTKvuRomzA8+u+nhY7qSI1fR2hRNebasZEETLyM5mAUr0Ku56OkXJ0I7NHJnO6cJiQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.19.3
+ '@babel/helper-annotate-as-pure': 7.18.6
+ '@babel/helper-plugin-utils': 7.19.0
+ dev: false
+
/@babel/plugin-transform-regenerator/7.16.7_@babel+core@7.17.5:
resolution: {integrity: sha512-mF7jOgGYCkSJagJ6XCujSQg+6xC1M77/03K2oBmVJWoFGNUtnVJO4WHKJk3dnPC8HCcj4xBQP1Egm8DWh3Pb3Q==}
engines: {node: '>=6.9.0'}
@@ -1216,6 +2223,17 @@ packages:
regenerator-transform: 0.14.5
dev: false
+ /@babel/plugin-transform-regenerator/7.18.6_@babel+core@7.19.3:
+ resolution: {integrity: sha512-poqRI2+qiSdeldcz4wTSTXBRryoq3Gc70ye7m7UD5Ww0nE29IXqMl6r7Nd15WBgRd74vloEMlShtH6CKxVzfmQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.19.3
+ '@babel/helper-plugin-utils': 7.19.0
+ regenerator-transform: 0.15.0
+ dev: false
+
/@babel/plugin-transform-reserved-words/7.16.7_@babel+core@7.17.5:
resolution: {integrity: sha512-KQzzDnZ9hWQBjwi5lpY5v9shmm6IVG0U9pB18zvMu2i4H90xpT4gmqwPYsn8rObiadYe2M0gmgsiOIF5A/2rtg==}
engines: {node: '>=6.9.0'}
@@ -1226,18 +2244,28 @@ packages:
'@babel/helper-plugin-utils': 7.16.7
dev: false
- /@babel/plugin-transform-runtime/7.17.0_@babel+core@7.17.5:
- resolution: {integrity: sha512-fr7zPWnKXNc1xoHfrIU9mN/4XKX4VLZ45Q+oMhfsYIaHvg7mHgmhfOy/ckRWqDK7XF3QDigRpkh5DKq6+clE8A==}
+ /@babel/plugin-transform-reserved-words/7.18.6_@babel+core@7.19.3:
+ resolution: {integrity: sha512-oX/4MyMoypzHjFrT1CdivfKZ+XvIPMFXwwxHp/r0Ddy2Vuomt4HDFGmft1TAY2yiTKiNSsh3kjBAzcM8kSdsjA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.17.5
- '@babel/helper-module-imports': 7.16.7
- '@babel/helper-plugin-utils': 7.16.7
- babel-plugin-polyfill-corejs2: 0.3.1_@babel+core@7.17.5
- babel-plugin-polyfill-corejs3: 0.5.2_@babel+core@7.17.5
- babel-plugin-polyfill-regenerator: 0.3.1_@babel+core@7.17.5
+ '@babel/core': 7.19.3
+ '@babel/helper-plugin-utils': 7.19.0
+ dev: false
+
+ /@babel/plugin-transform-runtime/7.19.1_@babel+core@7.19.3:
+ resolution: {integrity: sha512-2nJjTUFIzBMP/f/miLxEK9vxwW/KUXsdvN4sR//TmuDhe6yU2h57WmIOE12Gng3MDP/xpjUV/ToZRdcf8Yj4fA==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.19.3
+ '@babel/helper-module-imports': 7.18.6
+ '@babel/helper-plugin-utils': 7.19.0
+ babel-plugin-polyfill-corejs2: 0.3.3_@babel+core@7.19.3
+ babel-plugin-polyfill-corejs3: 0.6.0_@babel+core@7.19.3
+ babel-plugin-polyfill-regenerator: 0.4.1_@babel+core@7.19.3
semver: 6.3.0
transitivePeerDependencies:
- supports-color
@@ -1253,6 +2281,16 @@ packages:
'@babel/helper-plugin-utils': 7.16.7
dev: false
+ /@babel/plugin-transform-shorthand-properties/7.18.6_@babel+core@7.19.3:
+ resolution: {integrity: sha512-eCLXXJqv8okzg86ywZJbRn19YJHU4XUa55oz2wbHhaQVn/MM+XhukiT7SYqp/7o00dg52Rj51Ny+Ecw4oyoygw==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.19.3
+ '@babel/helper-plugin-utils': 7.19.0
+ dev: false
+
/@babel/plugin-transform-spread/7.16.7_@babel+core@7.17.5:
resolution: {integrity: sha512-+pjJpgAngb53L0iaA5gU/1MLXJIfXcYepLgXB3esVRf4fqmj8f2cxM3/FKaHsZms08hFQJkFccEWuIpm429TXg==}
engines: {node: '>=6.9.0'}
@@ -1264,6 +2302,17 @@ packages:
'@babel/helper-skip-transparent-expression-wrappers': 7.16.0
dev: false
+ /@babel/plugin-transform-spread/7.19.0_@babel+core@7.19.3:
+ resolution: {integrity: sha512-RsuMk7j6n+r752EtzyScnWkQyuJdli6LdO5Klv8Yx0OfPVTcQkIUfS8clx5e9yHXzlnhOZF3CbQ8C2uP5j074w==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.19.3
+ '@babel/helper-plugin-utils': 7.19.0
+ '@babel/helper-skip-transparent-expression-wrappers': 7.18.9
+ dev: false
+
/@babel/plugin-transform-sticky-regex/7.16.7_@babel+core@7.17.5:
resolution: {integrity: sha512-NJa0Bd/87QV5NZZzTuZG5BPJjLYadeSZ9fO6oOUoL4iQx+9EEuw/eEM92SrsT19Yc2jgB1u1hsjqDtH02c3Drw==}
engines: {node: '>=6.9.0'}
@@ -1274,6 +2323,16 @@ packages:
'@babel/helper-plugin-utils': 7.16.7
dev: false
+ /@babel/plugin-transform-sticky-regex/7.18.6_@babel+core@7.19.3:
+ resolution: {integrity: sha512-kfiDrDQ+PBsQDO85yj1icueWMfGfJFKN1KCkndygtu/C9+XUfydLC8Iv5UYJqRwy4zk8EcplRxEOeLyjq1gm6Q==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.19.3
+ '@babel/helper-plugin-utils': 7.19.0
+ dev: false
+
/@babel/plugin-transform-template-literals/7.16.7_@babel+core@7.17.5:
resolution: {integrity: sha512-VwbkDDUeenlIjmfNeDX/V0aWrQH2QiVyJtwymVQSzItFDTpxfyJh3EVaQiS0rIN/CqbLGr0VcGmuwyTdZtdIsA==}
engines: {node: '>=6.9.0'}
@@ -1284,6 +2343,16 @@ packages:
'@babel/helper-plugin-utils': 7.16.7
dev: false
+ /@babel/plugin-transform-template-literals/7.18.9_@babel+core@7.19.3:
+ resolution: {integrity: sha512-S8cOWfT82gTezpYOiVaGHrCbhlHgKhQt8XH5ES46P2XWmX92yisoZywf5km75wv5sYcXDUCLMmMxOLCtthDgMA==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.19.3
+ '@babel/helper-plugin-utils': 7.19.0
+ dev: false
+
/@babel/plugin-transform-typeof-symbol/7.16.7_@babel+core@7.17.5:
resolution: {integrity: sha512-p2rOixCKRJzpg9JB4gjnG4gjWkWa89ZoYUnl9snJ1cWIcTH/hvxZqfO+WjG6T8DRBpctEol5jw1O5rA8gkCokQ==}
engines: {node: '>=6.9.0'}
@@ -1294,16 +2363,26 @@ packages:
'@babel/helper-plugin-utils': 7.16.7
dev: false
- /@babel/plugin-transform-typescript/7.16.8_@babel+core@7.17.5:
- resolution: {integrity: sha512-bHdQ9k7YpBDO2d0NVfkj51DpQcvwIzIusJ7mEUaMlbZq3Kt/U47j24inXZHQ5MDiYpCs+oZiwnXyKedE8+q7AQ==}
+ /@babel/plugin-transform-typeof-symbol/7.18.9_@babel+core@7.19.3:
+ resolution: {integrity: sha512-SRfwTtF11G2aemAZWivL7PD+C9z52v9EvMqH9BuYbabyPuKUvSWks3oCg6041pT925L4zVFqaVBeECwsmlguEw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.17.5
- '@babel/helper-create-class-features-plugin': 7.17.6_@babel+core@7.17.5
- '@babel/helper-plugin-utils': 7.16.7
- '@babel/plugin-syntax-typescript': 7.16.7_@babel+core@7.17.5
+ '@babel/core': 7.19.3
+ '@babel/helper-plugin-utils': 7.19.0
+ dev: false
+
+ /@babel/plugin-transform-typescript/7.19.3_@babel+core@7.19.3:
+ resolution: {integrity: sha512-z6fnuK9ve9u/0X0rRvI9MY0xg+DOUaABDYOe+/SQTxtlptaBB/V9JIUxJn6xp3lMBeb9qe8xSFmHU35oZDXD+w==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.19.3
+ '@babel/helper-create-class-features-plugin': 7.19.0_@babel+core@7.19.3
+ '@babel/helper-plugin-utils': 7.19.0
+ '@babel/plugin-syntax-typescript': 7.18.6_@babel+core@7.19.3
transitivePeerDependencies:
- supports-color
dev: false
@@ -1318,6 +2397,16 @@ packages:
'@babel/helper-plugin-utils': 7.16.7
dev: false
+ /@babel/plugin-transform-unicode-escapes/7.18.10_@babel+core@7.19.3:
+ resolution: {integrity: sha512-kKAdAI+YzPgGY/ftStBFXTI1LZFju38rYThnfMykS+IXy8BVx+res7s2fxf1l8I35DV2T97ezo6+SGrXz6B3iQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.19.3
+ '@babel/helper-plugin-utils': 7.19.0
+ dev: false
+
/@babel/plugin-transform-unicode-regex/7.16.7_@babel+core@7.17.5:
resolution: {integrity: sha512-oC5tYYKw56HO75KZVLQ+R/Nl3Hro9kf8iG0hXoaHP7tjAyCpvqBiSNe6vGrZni1Z6MggmUOC6A7VP7AVmw225Q==}
engines: {node: '>=6.9.0'}
@@ -1329,6 +2418,17 @@ packages:
'@babel/helper-plugin-utils': 7.16.7
dev: false
+ /@babel/plugin-transform-unicode-regex/7.18.6_@babel+core@7.19.3:
+ resolution: {integrity: sha512-gE7A6Lt7YLnNOL3Pb9BNeZvi+d8l7tcRrG4+pwJjK9hD2xX4mEvjlQW60G9EEmfXVYRPv9VRQcyegIVHCql/AA==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.19.3
+ '@babel/helper-create-regexp-features-plugin': 7.19.0_@babel+core@7.19.3
+ '@babel/helper-plugin-utils': 7.19.0
+ dev: false
+
/@babel/preset-env/7.16.11_@babel+core@7.17.5:
resolution: {integrity: sha512-qcmWG8R7ZW6WBRPZK//y+E3Cli151B20W1Rv7ln27vuPaXU/8TKms6jFdiJtF7UDTxcrb7mZd88tAeK9LjdT8g==}
engines: {node: '>=6.9.0'}
@@ -1414,6 +2514,92 @@ packages:
- supports-color
dev: false
+ /@babel/preset-env/7.19.3_@babel+core@7.19.3:
+ resolution: {integrity: sha512-ziye1OTc9dGFOAXSWKUqQblYHNlBOaDl8wzqf2iKXJAltYiR3hKHUKmkt+S9PppW7RQpq4fFCrwwpIDj/f5P4w==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/compat-data': 7.19.3
+ '@babel/core': 7.19.3
+ '@babel/helper-compilation-targets': 7.19.3_@babel+core@7.19.3
+ '@babel/helper-plugin-utils': 7.19.0
+ '@babel/helper-validator-option': 7.18.6
+ '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.18.6_@babel+core@7.19.3
+ '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.18.9_@babel+core@7.19.3
+ '@babel/plugin-proposal-async-generator-functions': 7.19.1_@babel+core@7.19.3
+ '@babel/plugin-proposal-class-properties': 7.18.6_@babel+core@7.19.3
+ '@babel/plugin-proposal-class-static-block': 7.18.6_@babel+core@7.19.3
+ '@babel/plugin-proposal-dynamic-import': 7.18.6_@babel+core@7.19.3
+ '@babel/plugin-proposal-export-namespace-from': 7.18.9_@babel+core@7.19.3
+ '@babel/plugin-proposal-json-strings': 7.18.6_@babel+core@7.19.3
+ '@babel/plugin-proposal-logical-assignment-operators': 7.18.9_@babel+core@7.19.3
+ '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6_@babel+core@7.19.3
+ '@babel/plugin-proposal-numeric-separator': 7.18.6_@babel+core@7.19.3
+ '@babel/plugin-proposal-object-rest-spread': 7.18.9_@babel+core@7.19.3
+ '@babel/plugin-proposal-optional-catch-binding': 7.18.6_@babel+core@7.19.3
+ '@babel/plugin-proposal-optional-chaining': 7.18.9_@babel+core@7.19.3
+ '@babel/plugin-proposal-private-methods': 7.18.6_@babel+core@7.19.3
+ '@babel/plugin-proposal-private-property-in-object': 7.18.6_@babel+core@7.19.3
+ '@babel/plugin-proposal-unicode-property-regex': 7.18.6_@babel+core@7.19.3
+ '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.19.3
+ '@babel/plugin-syntax-class-properties': 7.12.13_@babel+core@7.19.3
+ '@babel/plugin-syntax-class-static-block': 7.14.5_@babel+core@7.19.3
+ '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.19.3
+ '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.19.3
+ '@babel/plugin-syntax-import-assertions': 7.18.6_@babel+core@7.19.3
+ '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.19.3
+ '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.19.3
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.19.3
+ '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.19.3
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.19.3
+ '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.19.3
+ '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.19.3
+ '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.19.3
+ '@babel/plugin-syntax-top-level-await': 7.14.5_@babel+core@7.19.3
+ '@babel/plugin-transform-arrow-functions': 7.18.6_@babel+core@7.19.3
+ '@babel/plugin-transform-async-to-generator': 7.18.6_@babel+core@7.19.3
+ '@babel/plugin-transform-block-scoped-functions': 7.18.6_@babel+core@7.19.3
+ '@babel/plugin-transform-block-scoping': 7.18.9_@babel+core@7.19.3
+ '@babel/plugin-transform-classes': 7.19.0_@babel+core@7.19.3
+ '@babel/plugin-transform-computed-properties': 7.18.9_@babel+core@7.19.3
+ '@babel/plugin-transform-destructuring': 7.18.13_@babel+core@7.19.3
+ '@babel/plugin-transform-dotall-regex': 7.18.6_@babel+core@7.19.3
+ '@babel/plugin-transform-duplicate-keys': 7.18.9_@babel+core@7.19.3
+ '@babel/plugin-transform-exponentiation-operator': 7.18.6_@babel+core@7.19.3
+ '@babel/plugin-transform-for-of': 7.18.8_@babel+core@7.19.3
+ '@babel/plugin-transform-function-name': 7.18.9_@babel+core@7.19.3
+ '@babel/plugin-transform-literals': 7.18.9_@babel+core@7.19.3
+ '@babel/plugin-transform-member-expression-literals': 7.18.6_@babel+core@7.19.3
+ '@babel/plugin-transform-modules-amd': 7.18.6_@babel+core@7.19.3
+ '@babel/plugin-transform-modules-commonjs': 7.18.6_@babel+core@7.19.3
+ '@babel/plugin-transform-modules-systemjs': 7.19.0_@babel+core@7.19.3
+ '@babel/plugin-transform-modules-umd': 7.18.6_@babel+core@7.19.3
+ '@babel/plugin-transform-named-capturing-groups-regex': 7.19.1_@babel+core@7.19.3
+ '@babel/plugin-transform-new-target': 7.18.6_@babel+core@7.19.3
+ '@babel/plugin-transform-object-super': 7.18.6_@babel+core@7.19.3
+ '@babel/plugin-transform-parameters': 7.18.8_@babel+core@7.19.3
+ '@babel/plugin-transform-property-literals': 7.18.6_@babel+core@7.19.3
+ '@babel/plugin-transform-regenerator': 7.18.6_@babel+core@7.19.3
+ '@babel/plugin-transform-reserved-words': 7.18.6_@babel+core@7.19.3
+ '@babel/plugin-transform-shorthand-properties': 7.18.6_@babel+core@7.19.3
+ '@babel/plugin-transform-spread': 7.19.0_@babel+core@7.19.3
+ '@babel/plugin-transform-sticky-regex': 7.18.6_@babel+core@7.19.3
+ '@babel/plugin-transform-template-literals': 7.18.9_@babel+core@7.19.3
+ '@babel/plugin-transform-typeof-symbol': 7.18.9_@babel+core@7.19.3
+ '@babel/plugin-transform-unicode-escapes': 7.18.10_@babel+core@7.19.3
+ '@babel/plugin-transform-unicode-regex': 7.18.6_@babel+core@7.19.3
+ '@babel/preset-modules': 0.1.5_@babel+core@7.19.3
+ '@babel/types': 7.19.3
+ babel-plugin-polyfill-corejs2: 0.3.3_@babel+core@7.19.3
+ babel-plugin-polyfill-corejs3: 0.6.0_@babel+core@7.19.3
+ babel-plugin-polyfill-regenerator: 0.4.1_@babel+core@7.19.3
+ core-js-compat: 3.25.3
+ semver: 6.3.0
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
/@babel/preset-modules/0.1.5_@babel+core@7.17.5:
resolution: {integrity: sha512-A57th6YRG7oR3cq/yt/Y84MvGgE0eJG2F1JLhKuyG+jFxEgrd/HAMJatiFtmOiZurz+0DkrvbheCLaV5f2JfjA==}
peerDependencies:
@@ -1427,6 +2613,19 @@ packages:
esutils: 2.0.3
dev: false
+ /@babel/preset-modules/0.1.5_@babel+core@7.19.3:
+ resolution: {integrity: sha512-A57th6YRG7oR3cq/yt/Y84MvGgE0eJG2F1JLhKuyG+jFxEgrd/HAMJatiFtmOiZurz+0DkrvbheCLaV5f2JfjA==}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.19.3
+ '@babel/helper-plugin-utils': 7.16.7
+ '@babel/plugin-proposal-unicode-property-regex': 7.16.7_@babel+core@7.19.3
+ '@babel/plugin-transform-dotall-regex': 7.16.7_@babel+core@7.19.3
+ '@babel/types': 7.17.0
+ esutils: 2.0.3
+ dev: false
+
/@babel/preset-react/7.16.7_@babel+core@7.17.5:
resolution: {integrity: sha512-fWpyI8UM/HE6DfPBzD8LnhQ/OcH8AgTaqcqP2nGOXEUV+VKBR5JRN9hCk9ai+zQQ57vtm9oWeXguBCPNUjytgA==}
engines: {node: '>=6.9.0'}
@@ -1442,25 +2641,40 @@ packages:
'@babel/plugin-transform-react-pure-annotations': 7.16.7_@babel+core@7.17.5
dev: false
- /@babel/preset-typescript/7.16.7_@babel+core@7.17.5:
- resolution: {integrity: sha512-WbVEmgXdIyvzB77AQjGBEyYPZx+8tTsO50XtfozQrkW8QB2rLJpH2lgx0TRw5EJrBxOZQ+wCcyPVQvS8tjEHpQ==}
+ /@babel/preset-react/7.18.6_@babel+core@7.19.3:
+ resolution: {integrity: sha512-zXr6atUmyYdiWRVLOZahakYmOBHtWc2WGCkP8PYTgZi0iJXDY2CN180TdrIW4OGOAdLc7TifzDIvtx6izaRIzg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.17.5
- '@babel/helper-plugin-utils': 7.16.7
- '@babel/helper-validator-option': 7.16.7
- '@babel/plugin-transform-typescript': 7.16.8_@babel+core@7.17.5
+ '@babel/core': 7.19.3
+ '@babel/helper-plugin-utils': 7.19.0
+ '@babel/helper-validator-option': 7.18.6
+ '@babel/plugin-transform-react-display-name': 7.18.6_@babel+core@7.19.3
+ '@babel/plugin-transform-react-jsx': 7.19.0_@babel+core@7.19.3
+ '@babel/plugin-transform-react-jsx-development': 7.18.6_@babel+core@7.19.3
+ '@babel/plugin-transform-react-pure-annotations': 7.18.6_@babel+core@7.19.3
+ dev: false
+
+ /@babel/preset-typescript/7.18.6_@babel+core@7.19.3:
+ resolution: {integrity: sha512-s9ik86kXBAnD760aybBucdpnLsAt0jK1xqJn2juOn9lkOvSHV60os5hxoVJsPzMQxvnUJFAlkont2DvvaYEBtQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.19.3
+ '@babel/helper-plugin-utils': 7.19.0
+ '@babel/helper-validator-option': 7.18.6
+ '@babel/plugin-transform-typescript': 7.19.3_@babel+core@7.19.3
transitivePeerDependencies:
- supports-color
dev: false
- /@babel/runtime-corejs3/7.17.2:
- resolution: {integrity: sha512-NcKtr2epxfIrNM4VOmPKO46TvDMCBhgi2CrSHaEarrz+Plk2K5r9QemmOFTGpZaoKnWoGH5MO+CzeRsih/Fcgg==}
+ /@babel/runtime-corejs3/7.19.1:
+ resolution: {integrity: sha512-j2vJGnkopRzH+ykJ8h68wrHnEUmtK//E723jjixiAl/PPf6FhqY/vYRcMVlNydRKQjQsTsYEjpx+DZMIvnGk/g==}
engines: {node: '>=6.9.0'}
dependencies:
- core-js-pure: 3.21.1
+ core-js-pure: 3.25.3
regenerator-runtime: 0.13.9
dev: false
@@ -1471,6 +2685,12 @@ packages:
regenerator-runtime: 0.13.9
dev: false
+ /@babel/runtime/7.19.0:
+ resolution: {integrity: sha512-eR8Lo9hnDS7tqkO7NsV+mKvCmv5boaXFSZ70DnfhcgiEne8hv9oCEd36Klw74EtizEqLsy4YnW8UWwpBVolHZA==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ regenerator-runtime: 0.13.9
+
/@babel/template/7.16.7:
resolution: {integrity: sha512-I8j/x8kHUrbYRTUxXrrMbfCa7jxkE7tZre39x3kjr9hvI82cK1FfqLygotcWN5kdPGWcLdWMHpSBavse5tWw3w==}
engines: {node: '>=6.9.0'}
@@ -1480,6 +2700,15 @@ packages:
'@babel/types': 7.17.0
dev: false
+ /@babel/template/7.18.10:
+ resolution: {integrity: sha512-TI+rCtooWHr3QJ27kJxfjutghu44DLnasDMwpDqCXVTal9RLp3RSYNh4NdBrRP2cQAoG9A8juOQl6P6oZG4JxA==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ '@babel/code-frame': 7.18.6
+ '@babel/parser': 7.19.3
+ '@babel/types': 7.19.3
+ dev: false
+
/@babel/traverse/7.17.3:
resolution: {integrity: sha512-5irClVky7TxRWIRtxlh2WPUUOLhcPN06AGgaQSB8AEwuyEBgJVuJ5imdHm5zxk8w0QS5T+tDfnDxAlhWjpb7cw==}
engines: {node: '>=6.9.0'}
@@ -1498,6 +2727,24 @@ packages:
- supports-color
dev: false
+ /@babel/traverse/7.19.3:
+ resolution: {integrity: sha512-qh5yf6149zhq2sgIXmwjnsvmnNQC2iw70UFjp4olxucKrWd/dvlUsBI88VSLUsnMNF7/vnOiA+nk1+yLoCqROQ==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ '@babel/code-frame': 7.18.6
+ '@babel/generator': 7.19.3
+ '@babel/helper-environment-visitor': 7.18.9
+ '@babel/helper-function-name': 7.19.0
+ '@babel/helper-hoist-variables': 7.18.6
+ '@babel/helper-split-export-declaration': 7.18.6
+ '@babel/parser': 7.19.3
+ '@babel/types': 7.19.3
+ debug: 4.3.3
+ globals: 11.12.0
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
/@babel/types/7.17.0:
resolution: {integrity: sha512-TmKSNO4D5rzhL5bjWFcVHHLETzfQ/AmbKpKPOSjlP0WoHZ6L911fgoOKY4Alp/emzG4cHJdyN49zpgkbXFEHHw==}
engines: {node: '>=6.9.0'}
@@ -1506,172 +2753,333 @@ packages:
to-fast-properties: 2.0.0
dev: false
+ /@babel/types/7.19.3:
+ resolution: {integrity: sha512-hGCaQzIY22DJlDh9CH7NOxgKkFjBk0Cw9xDO1Xmh2151ti7wiGfQ3LauXzL4HP1fmFlTX6XjpRETTpUcv7wQLw==}
+ engines: {node: '>=6.9.0'}
+ dependencies:
+ '@babel/helper-string-parser': 7.18.10
+ '@babel/helper-validator-identifier': 7.19.1
+ to-fast-properties: 2.0.0
+ dev: false
+
/@braintree/sanitize-url/6.0.0:
resolution: {integrity: sha512-mgmE7XBYY/21erpzhexk4Cj1cyTQ9LzvnTxtzM17BJ7ERMNE6W72mQRo0I1Ud8eFJ+RVVIcBNhLFZ3GX4XFz5w==}
dev: false
- /@docsearch/css/3.0.0:
- resolution: {integrity: sha512-1kkV7tkAsiuEd0shunYRByKJe3xQDG2q7wYg24SOw1nV9/2lwEd4WrUYRJC/ukGTl2/kHeFxsaUvtiOy0y6fFA==}
+ /@colors/colors/1.5.0:
+ resolution: {integrity: sha512-ooWCrlZP11i8GImSjTHYHLkvFDP48nS4+204nGb1RiX/WXYHmJA2III9/e2DWVabCESdW7hBAEzHRqUn9OUVvQ==}
+ engines: {node: '>=0.1.90'}
+ requiresBuild: true
+ dev: false
+ optional: true
+
+ /@docsearch/css/3.2.1:
+ resolution: {integrity: sha512-gaP6TxxwQC+K8D6TRx5WULUWKrcbzECOPA2KCVMuI+6C7dNiGUk5yXXzVhc5sld79XKYLnO9DRTI4mjXDYkh+g==}
dev: false
- /@docsearch/react/3.0.0_react-dom@17.0.2+react@17.0.2:
- resolution: {integrity: sha512-yhMacqS6TVQYoBh/o603zszIb5Bl8MIXuOc6Vy617I74pirisDzzcNh0NEaYQt50fVVR3khUbeEhUEWEWipESg==}
+ /@docsearch/react/3.2.1_sfoxds7t5ydpegc3knd667wn6m:
+ resolution: {integrity: sha512-EzTQ/y82s14IQC5XVestiK/kFFMe2aagoYFuTAIfIb/e+4FU7kSMKonRtLwsCiLQHmjvNQq+HO+33giJ5YVtaQ==}
peerDependencies:
- '@types/react': '>= 16.8.0 < 18.0.0'
- react: '>= 16.8.0 < 18.0.0'
- react-dom: '>= 16.8.0 < 18.0.0'
+ '@types/react': '>= 16.8.0 < 19.0.0'
+ react: '>= 16.8.0 < 19.0.0'
+ react-dom: '>= 16.8.0 < 19.0.0'
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ react:
+ optional: true
+ react-dom:
+ optional: true
dependencies:
- '@algolia/autocomplete-core': 1.5.2
- '@algolia/autocomplete-preset-algolia': 1.5.2_algoliasearch@4.12.1
- '@docsearch/css': 3.0.0
- algoliasearch: 4.12.1
+ '@algolia/autocomplete-core': 1.7.1
+ '@algolia/autocomplete-preset-algolia': 1.7.1_algoliasearch@4.14.2
+ '@docsearch/css': 3.2.1
+ algoliasearch: 4.14.2
react: 17.0.2
react-dom: 17.0.2_react@17.0.2
transitivePeerDependencies:
- '@algolia/client-search'
dev: false
- /@docusaurus/core/2.0.0-beta.17_react-dom@17.0.2+react@17.0.2:
- resolution: {integrity: sha512-iNdW7CsmHNOgc4PxD9BFxa+MD8+i7ln7erOBkF3FSMMPnsKUeVqsR3rr31aLmLZRlTXMITSPLxlXwtBZa3KPCw==}
- engines: {node: '>=14'}
+ /@docusaurus/core/2.1.0_ny44vnc5t4rlukh2kzmv2f2kze:
+ resolution: {integrity: sha512-/ZJ6xmm+VB9Izbn0/s6h6289cbPy2k4iYFwWDhjiLsVqwa/Y0YBBcXvStfaHccudUC3OfP+26hMk7UCjc50J6Q==}
+ 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.17.5
- '@babel/generator': 7.17.3
- '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.17.5
- '@babel/plugin-transform-runtime': 7.17.0_@babel+core@7.17.5
- '@babel/preset-env': 7.16.11_@babel+core@7.17.5
- '@babel/preset-react': 7.16.7_@babel+core@7.17.5
- '@babel/preset-typescript': 7.16.7_@babel+core@7.17.5
- '@babel/runtime': 7.17.2
- '@babel/runtime-corejs3': 7.17.2
- '@babel/traverse': 7.17.3
- '@docusaurus/cssnano-preset': 2.0.0-beta.17
- '@docusaurus/logger': 2.0.0-beta.17
- '@docusaurus/mdx-loader': 2.0.0-beta.17_react-dom@17.0.2+react@17.0.2
+ '@babel/core': 7.19.3
+ '@babel/generator': 7.19.3
+ '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.19.3
+ '@babel/plugin-transform-runtime': 7.19.1_@babel+core@7.19.3
+ '@babel/preset-env': 7.19.3_@babel+core@7.19.3
+ '@babel/preset-react': 7.18.6_@babel+core@7.19.3
+ '@babel/preset-typescript': 7.18.6_@babel+core@7.19.3
+ '@babel/runtime': 7.19.0
+ '@babel/runtime-corejs3': 7.19.1
+ '@babel/traverse': 7.19.3
+ '@docusaurus/cssnano-preset': 2.1.0
+ '@docusaurus/logger': 2.1.0
+ '@docusaurus/mdx-loader': 2.1.0_ny44vnc5t4rlukh2kzmv2f2kze
'@docusaurus/react-loadable': 5.5.2_react@17.0.2
- '@docusaurus/utils': 2.0.0-beta.17
- '@docusaurus/utils-common': 2.0.0-beta.17
- '@docusaurus/utils-validation': 2.0.0-beta.17
- '@slorber/static-site-generator-webpack-plugin': 4.0.1
+ '@docusaurus/utils': 2.1.0_@docusaurus+types@2.1.0
+ '@docusaurus/utils-common': 2.1.0_@docusaurus+types@2.1.0
+ '@docusaurus/utils-validation': 2.1.0_@docusaurus+types@2.1.0
+ '@slorber/static-site-generator-webpack-plugin': 4.0.7
'@svgr/webpack': 6.2.1
- autoprefixer: 10.4.2_postcss@8.4.7
- babel-loader: 8.2.3_9351ded4f79a023849d74b5df047d562
- babel-plugin-dynamic-import-node: 2.3.0
+ autoprefixer: 10.4.12_postcss@8.4.16
+ babel-loader: 8.2.5_wfdvla2jorjoj23kkavho2upde
+ babel-plugin-dynamic-import-node: 2.3.3
boxen: 6.2.1
+ chalk: 4.1.2
chokidar: 3.5.3
- clean-css: 5.2.4
- cli-table3: 0.6.1
+ clean-css: 5.3.1
+ cli-table3: 0.6.3
combine-promises: 1.1.0
commander: 5.1.0
- copy-webpack-plugin: 10.2.4_webpack@5.69.1
- core-js: 3.21.1
- css-loader: 6.6.0_webpack@5.69.1
- css-minimizer-webpack-plugin: 3.4.1_clean-css@5.2.4+webpack@5.69.1
- cssnano: 5.0.17_postcss@8.4.7
- del: 6.0.0
+ copy-webpack-plugin: 11.0.0_webpack@5.74.0
+ core-js: 3.25.3
+ css-loader: 6.7.1_webpack@5.74.0
+ css-minimizer-webpack-plugin: 4.1.0_kwz7aenajwsweas6icw5ncsgdy
+ cssnano: 5.1.13_postcss@8.4.16
+ del: 6.1.1
detect-port: 1.3.0
escape-html: 1.0.3
eta: 1.12.3
- file-loader: 6.2.0_webpack@5.69.1
- fs-extra: 10.0.1
+ file-loader: 6.2.0_webpack@5.74.0
+ fs-extra: 10.1.0
html-minifier-terser: 6.1.0
- html-tags: 3.1.0
- html-webpack-plugin: 5.5.0_webpack@5.69.1
+ html-tags: 3.2.0
+ html-webpack-plugin: 5.5.0_webpack@5.74.0
import-fresh: 3.3.0
- is-root: 2.1.0
leven: 3.1.0
lodash: 4.17.21
- mini-css-extract-plugin: 2.5.3_webpack@5.69.1
- nprogress: 0.2.0
- postcss: 8.4.7
- postcss-loader: 6.2.1_postcss@8.4.7+webpack@5.69.1
+ mini-css-extract-plugin: 2.6.1_webpack@5.74.0
+ postcss: 8.4.16
+ postcss-loader: 7.0.1_qjv4cptcpse3y5hrjkrbb7drda
+ prompts: 2.4.2
+ react: 17.0.2
+ react-dev-utils: 12.0.1_webpack@5.74.0
+ 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_jyzm4i6gssn5i7hvhuq33bg7ba
+ react-router: 5.3.3_react@17.0.2
+ react-router-config: 5.1.1_oyuskl3t7voyrff2xstzuy4hqu
+ react-router-dom: 5.3.3_react@17.0.2
+ rtl-detect: 1.0.4
+ semver: 7.3.7
+ serve-handler: 6.1.3
+ shelljs: 0.8.5
+ terser-webpack-plugin: 5.3.6_webpack@5.74.0
+ tslib: 2.4.0
+ update-notifier: 5.1.0
+ url-loader: 4.1.1_u4acmn7fe6yqgbrqzialkgh5lu
+ wait-on: 6.0.1
+ webpack: 5.74.0
+ webpack-bundle-analyzer: 4.5.0
+ webpack-dev-server: 4.11.1_webpack@5.74.0
+ webpack-merge: 5.8.0
+ webpackbar: 5.0.2_webpack@5.74.0
+ transitivePeerDependencies:
+ - '@docusaurus/types'
+ - '@parcel/css'
+ - '@swc/core'
+ - bufferutil
+ - csso
+ - debug
+ - esbuild
+ - eslint
+ - lightningcss
+ - supports-color
+ - typescript
+ - uglify-js
+ - utf-8-validate
+ - vue-template-compiler
+ - webpack-cli
+ dev: false
+
+ /@docusaurus/core/2.1.0_sfoxds7t5ydpegc3knd667wn6m:
+ resolution: {integrity: sha512-/ZJ6xmm+VB9Izbn0/s6h6289cbPy2k4iYFwWDhjiLsVqwa/Y0YBBcXvStfaHccudUC3OfP+26hMk7UCjc50J6Q==}
+ 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.19.3
+ '@babel/generator': 7.19.3
+ '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.19.3
+ '@babel/plugin-transform-runtime': 7.19.1_@babel+core@7.19.3
+ '@babel/preset-env': 7.19.3_@babel+core@7.19.3
+ '@babel/preset-react': 7.18.6_@babel+core@7.19.3
+ '@babel/preset-typescript': 7.18.6_@babel+core@7.19.3
+ '@babel/runtime': 7.19.0
+ '@babel/runtime-corejs3': 7.19.1
+ '@babel/traverse': 7.19.3
+ '@docusaurus/cssnano-preset': 2.1.0
+ '@docusaurus/logger': 2.1.0
+ '@docusaurus/mdx-loader': 2.1.0_sfoxds7t5ydpegc3knd667wn6m
+ '@docusaurus/react-loadable': 5.5.2_react@17.0.2
+ '@docusaurus/utils': 2.1.0
+ '@docusaurus/utils-common': 2.1.0
+ '@docusaurus/utils-validation': 2.1.0
+ '@slorber/static-site-generator-webpack-plugin': 4.0.7
+ '@svgr/webpack': 6.2.1
+ autoprefixer: 10.4.12_postcss@8.4.16
+ babel-loader: 8.2.5_wfdvla2jorjoj23kkavho2upde
+ babel-plugin-dynamic-import-node: 2.3.3
+ boxen: 6.2.1
+ chalk: 4.1.2
+ chokidar: 3.5.3
+ clean-css: 5.3.1
+ cli-table3: 0.6.3
+ combine-promises: 1.1.0
+ commander: 5.1.0
+ copy-webpack-plugin: 11.0.0_webpack@5.74.0
+ core-js: 3.25.3
+ css-loader: 6.7.1_webpack@5.74.0
+ css-minimizer-webpack-plugin: 4.1.0_kwz7aenajwsweas6icw5ncsgdy
+ cssnano: 5.1.13_postcss@8.4.16
+ del: 6.1.1
+ detect-port: 1.3.0
+ escape-html: 1.0.3
+ eta: 1.12.3
+ file-loader: 6.2.0_webpack@5.74.0
+ fs-extra: 10.1.0
+ html-minifier-terser: 6.1.0
+ html-tags: 3.2.0
+ html-webpack-plugin: 5.5.0_webpack@5.74.0
+ import-fresh: 3.3.0
+ leven: 3.1.0
+ lodash: 4.17.21
+ mini-css-extract-plugin: 2.6.1_webpack@5.74.0
+ postcss: 8.4.16
+ postcss-loader: 7.0.1_qjv4cptcpse3y5hrjkrbb7drda
prompts: 2.4.2
react: 17.0.2
- react-dev-utils: 12.0.0_webpack@5.69.1
+ react-dev-utils: 12.0.1_webpack@5.74.0
react-dom: 17.0.2_react@17.0.2
- react-helmet-async: 1.2.3_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_420fbef245c20ae321de3407a55f25ff
- react-router: 5.2.1_react@17.0.2
- react-router-config: 5.1.1_react-router@5.2.1+react@17.0.2
- react-router-dom: 5.3.0_react@17.0.2
- remark-admonitions: 1.2.1
+ react-loadable-ssr-addon-v5-slorber: 1.0.1_jyzm4i6gssn5i7hvhuq33bg7ba
+ react-router: 5.3.3_react@17.0.2
+ react-router-config: 5.1.1_oyuskl3t7voyrff2xstzuy4hqu
+ react-router-dom: 5.3.3_react@17.0.2
rtl-detect: 1.0.4
- semver: 7.3.5
+ semver: 7.3.7
serve-handler: 6.1.3
shelljs: 0.8.5
- terser-webpack-plugin: 5.3.1_webpack@5.69.1
- tslib: 2.3.1
+ terser-webpack-plugin: 5.3.6_webpack@5.74.0
+ tslib: 2.4.0
update-notifier: 5.1.0
- url-loader: 4.1.1_file-loader@6.2.0+webpack@5.69.1
+ url-loader: 4.1.1_u4acmn7fe6yqgbrqzialkgh5lu
wait-on: 6.0.1
- webpack: 5.69.1
+ webpack: 5.74.0
webpack-bundle-analyzer: 4.5.0
- webpack-dev-server: 4.7.4_webpack@5.69.1
+ webpack-dev-server: 4.11.1_webpack@5.74.0
webpack-merge: 5.8.0
- webpackbar: 5.0.2_webpack@5.69.1
+ webpackbar: 5.0.2_webpack@5.74.0
transitivePeerDependencies:
+ - '@docusaurus/types'
- '@parcel/css'
- '@swc/core'
- bufferutil
- csso
- debug
- esbuild
- - eslint
+ - eslint
+ - lightningcss
+ - supports-color
+ - typescript
+ - uglify-js
+ - utf-8-validate
+ - vue-template-compiler
+ - webpack-cli
+ dev: false
+
+ /@docusaurus/cssnano-preset/2.1.0:
+ resolution: {integrity: sha512-pRLewcgGhOies6pzsUROfmPStDRdFw+FgV5sMtLr5+4Luv2rty5+b/eSIMMetqUsmg3A9r9bcxHk9bKAKvx3zQ==}
+ engines: {node: '>=16.14'}
+ dependencies:
+ cssnano-preset-advanced: 5.3.8_postcss@8.4.16
+ postcss: 8.4.16
+ postcss-sort-media-queries: 4.2.1_postcss@8.4.16
+ tslib: 2.4.0
+ dev: false
+
+ /@docusaurus/logger/2.1.0:
+ resolution: {integrity: sha512-uuJx2T6hDBg82joFeyobywPjSOIfeq05GfyKGHThVoXuXsu1KAzMDYcjoDxarb9CoHCI/Dor8R2MoL6zII8x1Q==}
+ engines: {node: '>=16.14'}
+ dependencies:
+ chalk: 4.1.2
+ tslib: 2.4.0
+ dev: false
+
+ /@docusaurus/mdx-loader/2.1.0_ny44vnc5t4rlukh2kzmv2f2kze:
+ resolution: {integrity: sha512-i97hi7hbQjsD3/8OSFhLy7dbKGH8ryjEzOfyhQIn2CFBYOY3ko0vMVEf3IY9nD3Ld7amYzsZ8153RPkcnXA+Lg==}
+ engines: {node: '>=16.14'}
+ peerDependencies:
+ react: ^16.8.4 || ^17.0.0
+ react-dom: ^16.8.4 || ^17.0.0
+ dependencies:
+ '@babel/parser': 7.19.3
+ '@babel/traverse': 7.19.3
+ '@docusaurus/logger': 2.1.0
+ '@docusaurus/utils': 2.1.0_@docusaurus+types@2.1.0
+ '@mdx-js/mdx': 1.6.22
+ escape-html: 1.0.3
+ file-loader: 6.2.0_webpack@5.74.0
+ fs-extra: 10.1.0
+ image-size: 1.0.1
+ 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.4.0
+ unified: 9.2.2
+ unist-util-visit: 2.0.3
+ url-loader: 4.1.1_u4acmn7fe6yqgbrqzialkgh5lu
+ webpack: 5.74.0
+ transitivePeerDependencies:
+ - '@docusaurus/types'
+ - '@swc/core'
+ - esbuild
- supports-color
- - typescript
- uglify-js
- - utf-8-validate
- - vue-template-compiler
- webpack-cli
dev: false
- /@docusaurus/cssnano-preset/2.0.0-beta.17:
- resolution: {integrity: sha512-DoBwtLjJ9IY9/lNMHIEdo90L4NDayvU28nLgtjR2Sc6aBIMEB/3a5Ndjehnp+jZAkwcDdNASA86EkZVUyz1O1A==}
- dependencies:
- cssnano-preset-advanced: 5.1.12_postcss@8.4.7
- postcss: 8.4.7
- postcss-sort-media-queries: 4.2.1_postcss@8.4.7
- dev: false
-
- /@docusaurus/logger/2.0.0-beta.17:
- resolution: {integrity: sha512-F9JDl06/VLg+ylsvnq9NpILSUeWtl0j4H2LtlLzX5gufEL4dGiCMlnUzYdHl7FSHSzYJ0A/R7vu0SYofsexC4w==}
- engines: {node: '>=14'}
- dependencies:
- chalk: 4.1.2
- tslib: 2.3.1
- dev: false
-
- /@docusaurus/mdx-loader/2.0.0-beta.17_react-dom@17.0.2+react@17.0.2:
- resolution: {integrity: sha512-AhJ3GWRmjQYCyINHE595pff5tn3Rt83oGpdev5UT9uvG9lPYPC8nEmh1LI6c0ogfw7YkNznzxWSW4hyyVbYQ3A==}
- engines: {node: '>=14'}
+ /@docusaurus/mdx-loader/2.1.0_sfoxds7t5ydpegc3knd667wn6m:
+ resolution: {integrity: sha512-i97hi7hbQjsD3/8OSFhLy7dbKGH8ryjEzOfyhQIn2CFBYOY3ko0vMVEf3IY9nD3Ld7amYzsZ8153RPkcnXA+Lg==}
+ engines: {node: '>=16.14'}
peerDependencies:
react: ^16.8.4 || ^17.0.0
react-dom: ^16.8.4 || ^17.0.0
dependencies:
- '@babel/parser': 7.17.3
- '@babel/traverse': 7.17.3
- '@docusaurus/logger': 2.0.0-beta.17
- '@docusaurus/utils': 2.0.0-beta.17
+ '@babel/parser': 7.19.3
+ '@babel/traverse': 7.19.3
+ '@docusaurus/logger': 2.1.0
+ '@docusaurus/utils': 2.1.0
'@mdx-js/mdx': 1.6.22
escape-html: 1.0.3
- file-loader: 6.2.0_webpack@5.69.1
- fs-extra: 10.0.1
+ file-loader: 6.2.0_webpack@5.74.0
+ fs-extra: 10.1.0
image-size: 1.0.1
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.3.1
+ tslib: 2.4.0
+ unified: 9.2.2
unist-util-visit: 2.0.3
- url-loader: 4.1.1_file-loader@6.2.0+webpack@5.69.1
- webpack: 5.69.1
+ url-loader: 4.1.1_u4acmn7fe6yqgbrqzialkgh5lu
+ webpack: 5.74.0
transitivePeerDependencies:
+ - '@docusaurus/types'
- '@swc/core'
- esbuild
- supports-color
@@ -1679,45 +3087,48 @@ packages:
- webpack-cli
dev: false
- /@docusaurus/module-type-aliases/2.0.0-beta.17_react-dom@17.0.2+react@17.0.2:
- resolution: {integrity: sha512-Tu+8geC/wyygBudbSwvWIHEvt5RwyA7dEoE1JmPbgQtmqUxOZ9bgnfemwXpJW5mKuDiJASbN4of1DhbLqf4sPg==}
+ /@docusaurus/module-type-aliases/2.1.0_sfoxds7t5ydpegc3knd667wn6m:
+ resolution: {integrity: sha512-Z8WZaK5cis3xEtyfOT817u9xgGUauT0PuuVo85ysnFRX8n7qLN1lTPCkC+aCmFm/UcV8h/W5T4NtIsst94UntQ==}
peerDependencies:
react: '*'
react-dom: '*'
dependencies:
- '@docusaurus/types': 2.0.0-beta.17
+ '@docusaurus/react-loadable': 5.5.2_react@17.0.2
+ '@docusaurus/types': 2.1.0_sfoxds7t5ydpegc3knd667wn6m
+ '@types/history': 4.7.11
'@types/react': 17.0.39
'@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.2.3_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
transitivePeerDependencies:
- '@swc/core'
- esbuild
- uglify-js
- webpack-cli
- dev: false
- /@docusaurus/plugin-client-redirects/2.0.0-beta.17_react-dom@17.0.2+react@17.0.2:
- resolution: {integrity: sha512-PfITCVgENyB0j1ErwSOQ3d1dvxbBEcZxiJrlu41v5Q6GiZWWJ4wSJRpOzqZiVUotfhnBn4NmpgVfGnmGkGPK4A==}
- engines: {node: '>=14'}
+ /@docusaurus/plugin-client-redirects/2.1.0_sfoxds7t5ydpegc3knd667wn6m:
+ resolution: {integrity: sha512-3PhzwHSyZWqBAFPJuLJE3dZVuKWQEj9ReQP85Z3/2hpnQoVNBgAqc+64FIko0FvvK1iluLeasO7NWGyuATngvw==}
+ 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.17_react-dom@17.0.2+react@17.0.2
- '@docusaurus/logger': 2.0.0-beta.17
- '@docusaurus/utils': 2.0.0-beta.17
- '@docusaurus/utils-common': 2.0.0-beta.17
- '@docusaurus/utils-validation': 2.0.0-beta.17
+ '@docusaurus/core': 2.1.0_sfoxds7t5ydpegc3knd667wn6m
+ '@docusaurus/logger': 2.1.0
+ '@docusaurus/utils': 2.1.0
+ '@docusaurus/utils-common': 2.1.0
+ '@docusaurus/utils-validation': 2.1.0
eta: 1.12.3
- fs-extra: 10.0.1
+ fs-extra: 10.1.0
lodash: 4.17.21
react: 17.0.2
react-dom: 17.0.2_react@17.0.2
- tslib: 2.3.1
+ tslib: 2.4.0
transitivePeerDependencies:
+ - '@docusaurus/types'
- '@parcel/css'
- '@swc/core'
- bufferutil
@@ -1725,6 +3136,7 @@ packages:
- debug
- esbuild
- eslint
+ - lightningcss
- supports-color
- typescript
- uglify-js
@@ -1733,30 +3145,31 @@ packages:
- webpack-cli
dev: false
- /@docusaurus/plugin-content-blog/2.0.0-beta.17_react-dom@17.0.2+react@17.0.2:
- resolution: {integrity: sha512-gcX4UR+WKT4bhF8FICBQHy+ESS9iRMeaglSboTZbA/YHGax/3EuZtcPU3dU4E/HFJeZ866wgUdbLKpIpsZOidg==}
- engines: {node: '>=14'}
+ /@docusaurus/plugin-content-blog/2.1.0_sfoxds7t5ydpegc3knd667wn6m:
+ resolution: {integrity: sha512-xEp6jlu92HMNUmyRBEeJ4mCW1s77aAEQO4Keez94cUY/Ap7G/r0Awa6xSLff7HL0Fjg8KK1bEbDy7q9voIavdg==}
+ 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.17_react-dom@17.0.2+react@17.0.2
- '@docusaurus/logger': 2.0.0-beta.17
- '@docusaurus/mdx-loader': 2.0.0-beta.17_react-dom@17.0.2+react@17.0.2
- '@docusaurus/utils': 2.0.0-beta.17
- '@docusaurus/utils-common': 2.0.0-beta.17
- '@docusaurus/utils-validation': 2.0.0-beta.17
- cheerio: 1.0.0-rc.10
+ '@docusaurus/core': 2.1.0_ny44vnc5t4rlukh2kzmv2f2kze
+ '@docusaurus/logger': 2.1.0
+ '@docusaurus/mdx-loader': 2.1.0_ny44vnc5t4rlukh2kzmv2f2kze
+ '@docusaurus/types': 2.1.0_sfoxds7t5ydpegc3knd667wn6m
+ '@docusaurus/utils': 2.1.0_@docusaurus+types@2.1.0
+ '@docusaurus/utils-common': 2.1.0_@docusaurus+types@2.1.0
+ '@docusaurus/utils-validation': 2.1.0_@docusaurus+types@2.1.0
+ cheerio: 1.0.0-rc.12
feed: 4.2.2
- fs-extra: 10.0.1
+ fs-extra: 10.1.0
lodash: 4.17.21
react: 17.0.2
react-dom: 17.0.2_react@17.0.2
reading-time: 1.5.0
- remark-admonitions: 1.2.1
- tslib: 2.3.1
+ tslib: 2.4.0
+ unist-util-visit: 2.0.3
utility-types: 3.10.0
- webpack: 5.69.1
+ webpack: 5.74.0
transitivePeerDependencies:
- '@parcel/css'
- '@swc/core'
@@ -1765,6 +3178,7 @@ packages:
- debug
- esbuild
- eslint
+ - lightningcss
- supports-color
- typescript
- uglify-js
@@ -1773,29 +3187,31 @@ packages:
- webpack-cli
dev: false
- /@docusaurus/plugin-content-docs/2.0.0-beta.17_react-dom@17.0.2+react@17.0.2:
- resolution: {integrity: sha512-YYrBpuRfTfE6NtENrpSHTJ7K7PZifn6j6hcuvdC0QKE+WD8pS+O2/Ws30yoyvHwLnAnfhvaderh1v9Kaa0/ANg==}
- engines: {node: '>=14'}
+ /@docusaurus/plugin-content-docs/2.1.0_sfoxds7t5ydpegc3knd667wn6m:
+ resolution: {integrity: sha512-Rup5pqXrXlKGIC4VgwvioIhGWF7E/NNSlxv+JAxRYpik8VKlWsk9ysrdHIlpX+KJUCO9irnY21kQh2814mlp/Q==}
+ 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.17_react-dom@17.0.2+react@17.0.2
- '@docusaurus/logger': 2.0.0-beta.17
- '@docusaurus/mdx-loader': 2.0.0-beta.17_react-dom@17.0.2+react@17.0.2
- '@docusaurus/utils': 2.0.0-beta.17
- '@docusaurus/utils-validation': 2.0.0-beta.17
+ '@docusaurus/core': 2.1.0_ny44vnc5t4rlukh2kzmv2f2kze
+ '@docusaurus/logger': 2.1.0
+ '@docusaurus/mdx-loader': 2.1.0_ny44vnc5t4rlukh2kzmv2f2kze
+ '@docusaurus/module-type-aliases': 2.1.0_sfoxds7t5ydpegc3knd667wn6m
+ '@docusaurus/types': 2.1.0_sfoxds7t5ydpegc3knd667wn6m
+ '@docusaurus/utils': 2.1.0_@docusaurus+types@2.1.0
+ '@docusaurus/utils-validation': 2.1.0_@docusaurus+types@2.1.0
+ '@types/react-router-config': 5.0.6
combine-promises: 1.1.0
- fs-extra: 10.0.1
+ fs-extra: 10.1.0
import-fresh: 3.3.0
js-yaml: 4.1.0
lodash: 4.17.21
react: 17.0.2
react-dom: 17.0.2_react@17.0.2
- remark-admonitions: 1.2.1
- tslib: 2.3.1
+ tslib: 2.4.0
utility-types: 3.10.0
- webpack: 5.69.1
+ webpack: 5.74.0
transitivePeerDependencies:
- '@parcel/css'
- '@swc/core'
@@ -1804,6 +3220,7 @@ packages:
- debug
- esbuild
- eslint
+ - lightningcss
- supports-color
- typescript
- uglify-js
@@ -1812,23 +3229,23 @@ packages:
- webpack-cli
dev: false
- /@docusaurus/plugin-content-pages/2.0.0-beta.17_react-dom@17.0.2+react@17.0.2:
- resolution: {integrity: sha512-d5x0mXTMJ44ojRQccmLyshYoamFOep2AnBe69osCDnwWMbD3Or3pnc2KMK9N7mVpQFnNFKbHNCLrX3Rv0uwEHA==}
- engines: {node: '>=14'}
+ /@docusaurus/plugin-content-pages/2.1.0_sfoxds7t5ydpegc3knd667wn6m:
+ resolution: {integrity: sha512-SwZdDZRlObHNKXTnFo7W2aF6U5ZqNVI55Nw2GCBryL7oKQSLeI0lsrMlMXdzn+fS7OuBTd3MJBO1T4Zpz0i/+g==}
+ 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.17_react-dom@17.0.2+react@17.0.2
- '@docusaurus/mdx-loader': 2.0.0-beta.17_react-dom@17.0.2+react@17.0.2
- '@docusaurus/utils': 2.0.0-beta.17
- '@docusaurus/utils-validation': 2.0.0-beta.17
- fs-extra: 10.0.1
+ '@docusaurus/core': 2.1.0_ny44vnc5t4rlukh2kzmv2f2kze
+ '@docusaurus/mdx-loader': 2.1.0_ny44vnc5t4rlukh2kzmv2f2kze
+ '@docusaurus/types': 2.1.0_sfoxds7t5ydpegc3knd667wn6m
+ '@docusaurus/utils': 2.1.0_@docusaurus+types@2.1.0
+ '@docusaurus/utils-validation': 2.1.0_@docusaurus+types@2.1.0
+ fs-extra: 10.1.0
react: 17.0.2
react-dom: 17.0.2_react@17.0.2
- remark-admonitions: 1.2.1
- tslib: 2.3.1
- webpack: 5.69.1
+ tslib: 2.4.0
+ webpack: 5.74.0
transitivePeerDependencies:
- '@parcel/css'
- '@swc/core'
@@ -1837,6 +3254,7 @@ packages:
- debug
- esbuild
- eslint
+ - lightningcss
- supports-color
- typescript
- uglify-js
@@ -1845,20 +3263,21 @@ packages:
- webpack-cli
dev: false
- /@docusaurus/plugin-debug/2.0.0-beta.17_react-dom@17.0.2+react@17.0.2:
- resolution: {integrity: sha512-p26fjYFRSC0esEmKo/kRrLVwXoFnzPCFDumwrImhPyqfVxbj+IKFaiXkayb2qHnyEGE/1KSDIgRF4CHt/pyhiw==}
- engines: {node: '>=14'}
+ /@docusaurus/plugin-debug/2.1.0_sfoxds7t5ydpegc3knd667wn6m:
+ resolution: {integrity: sha512-8wsDq3OIfiy6440KLlp/qT5uk+WRHQXIXklNHEeZcar+Of0TZxCNe2FBpv+bzb/0qcdP45ia5i5WmR5OjN6DPw==}
+ 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.17_react-dom@17.0.2+react@17.0.2
- '@docusaurus/utils': 2.0.0-beta.17
- fs-extra: 10.0.1
+ '@docusaurus/core': 2.1.0_ny44vnc5t4rlukh2kzmv2f2kze
+ '@docusaurus/types': 2.1.0_sfoxds7t5ydpegc3knd667wn6m
+ '@docusaurus/utils': 2.1.0_@docusaurus+types@2.1.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_react-dom@17.0.2+react@17.0.2
- tslib: 2.3.1
+ react-json-view: 1.21.3_sfoxds7t5ydpegc3knd667wn6m
+ tslib: 2.4.0
transitivePeerDependencies:
- '@parcel/css'
- '@swc/core'
@@ -1869,6 +3288,7 @@ packages:
- encoding
- esbuild
- eslint
+ - lightningcss
- supports-color
- typescript
- uglify-js
@@ -1877,18 +3297,19 @@ packages:
- webpack-cli
dev: false
- /@docusaurus/plugin-google-analytics/2.0.0-beta.17_react-dom@17.0.2+react@17.0.2:
- resolution: {integrity: sha512-jvgYIhggYD1W2jymqQVAAyjPJUV1xMCn70bAzaCMxriureMWzhQ/kQMVQpop0ijTMvifOxaV9yTcL1VRXev++A==}
- engines: {node: '>=14'}
+ /@docusaurus/plugin-google-analytics/2.1.0_sfoxds7t5ydpegc3knd667wn6m:
+ resolution: {integrity: sha512-4cgeqIly/wcFVbbWP03y1QJJBgH8W+Bv6AVbWnsXNOZa1yB3AO6hf3ZdeQH9x20v9T2pREogVgAH0rSoVnNsgg==}
+ 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.17_react-dom@17.0.2+react@17.0.2
- '@docusaurus/utils-validation': 2.0.0-beta.17
+ '@docusaurus/core': 2.1.0_ny44vnc5t4rlukh2kzmv2f2kze
+ '@docusaurus/types': 2.1.0_sfoxds7t5ydpegc3knd667wn6m
+ '@docusaurus/utils-validation': 2.1.0_@docusaurus+types@2.1.0
react: 17.0.2
react-dom: 17.0.2_react@17.0.2
- tslib: 2.3.1
+ tslib: 2.4.0
transitivePeerDependencies:
- '@parcel/css'
- '@swc/core'
@@ -1897,6 +3318,7 @@ packages:
- debug
- esbuild
- eslint
+ - lightningcss
- supports-color
- typescript
- uglify-js
@@ -1905,18 +3327,19 @@ packages:
- webpack-cli
dev: false
- /@docusaurus/plugin-google-gtag/2.0.0-beta.17_react-dom@17.0.2+react@17.0.2:
- resolution: {integrity: sha512-1pnWHtIk1Jfeqwvr8PlcPE5SODWT1gW4TI+ptmJbJ296FjjyvL/pG0AcGEJmYLY/OQc3oz0VQ0W2ognw9jmFIw==}
- engines: {node: '>=14'}
+ /@docusaurus/plugin-google-gtag/2.1.0_sfoxds7t5ydpegc3knd667wn6m:
+ resolution: {integrity: sha512-/3aDlv2dMoCeiX2e+DTGvvrdTA+v3cKQV3DbmfsF4ENhvc5nKV23nth04Z3Vq0Ci1ui6Sn80TkhGk/tiCMW2AA==}
+ 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.17_react-dom@17.0.2+react@17.0.2
- '@docusaurus/utils-validation': 2.0.0-beta.17
+ '@docusaurus/core': 2.1.0_ny44vnc5t4rlukh2kzmv2f2kze
+ '@docusaurus/types': 2.1.0_sfoxds7t5ydpegc3knd667wn6m
+ '@docusaurus/utils-validation': 2.1.0_@docusaurus+types@2.1.0
react: 17.0.2
react-dom: 17.0.2_react@17.0.2
- tslib: 2.3.1
+ tslib: 2.4.0
transitivePeerDependencies:
- '@parcel/css'
- '@swc/core'
@@ -1925,6 +3348,7 @@ packages:
- debug
- esbuild
- eslint
+ - lightningcss
- supports-color
- typescript
- uglify-js
@@ -1933,22 +3357,24 @@ packages:
- webpack-cli
dev: false
- /@docusaurus/plugin-sitemap/2.0.0-beta.17_react-dom@17.0.2+react@17.0.2:
- resolution: {integrity: sha512-19/PaGCsap6cjUPZPGs87yV9e1hAIyd0CTSeVV6Caega8nmOKk20FTrQGFJjZPeX8jvD9QIXcdg6BJnPxcKkaQ==}
- engines: {node: '>=14'}
+ /@docusaurus/plugin-sitemap/2.1.0_sfoxds7t5ydpegc3knd667wn6m:
+ resolution: {integrity: sha512-2Y6Br8drlrZ/jN9MwMBl0aoi9GAjpfyfMBYpaQZXimbK+e9VjYnujXlvQ4SxtM60ASDgtHIAzfVFBkSR/MwRUw==}
+ 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.17_react-dom@17.0.2+react@17.0.2
- '@docusaurus/utils': 2.0.0-beta.17
- '@docusaurus/utils-common': 2.0.0-beta.17
- '@docusaurus/utils-validation': 2.0.0-beta.17
- fs-extra: 10.0.1
+ '@docusaurus/core': 2.1.0_ny44vnc5t4rlukh2kzmv2f2kze
+ '@docusaurus/logger': 2.1.0
+ '@docusaurus/types': 2.1.0_sfoxds7t5ydpegc3knd667wn6m
+ '@docusaurus/utils': 2.1.0_@docusaurus+types@2.1.0
+ '@docusaurus/utils-common': 2.1.0_@docusaurus+types@2.1.0
+ '@docusaurus/utils-validation': 2.1.0_@docusaurus+types@2.1.0
+ fs-extra: 10.1.0
react: 17.0.2
react-dom: 17.0.2_react@17.0.2
sitemap: 7.1.1
- tslib: 2.3.1
+ tslib: 2.4.0
transitivePeerDependencies:
- '@parcel/css'
- '@swc/core'
@@ -1957,6 +3383,7 @@ packages:
- debug
- esbuild
- eslint
+ - lightningcss
- supports-color
- typescript
- uglify-js
@@ -1965,24 +3392,25 @@ packages:
- webpack-cli
dev: false
- /@docusaurus/preset-classic/2.0.0-beta.17_react-dom@17.0.2+react@17.0.2:
- resolution: {integrity: sha512-7YUxPEgM09aZWr25/hpDEp1gPl+1KsCPV1ZTRW43sbQ9TinPm+9AKR3rHVDa8ea8MdiS7BpqCVyK+H/eiyQrUw==}
- engines: {node: '>=14'}
+ /@docusaurus/preset-classic/2.1.0_sfoxds7t5ydpegc3knd667wn6m:
+ resolution: {integrity: sha512-NQMnaq974K4BcSMXFSJBQ5itniw6RSyW+VT+6i90kGZzTwiuKZmsp0r9lC6BYAvvVMQUNJQwrETmlu7y2XKW7w==}
+ 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.17_react-dom@17.0.2+react@17.0.2
- '@docusaurus/plugin-content-blog': 2.0.0-beta.17_react-dom@17.0.2+react@17.0.2
- '@docusaurus/plugin-content-docs': 2.0.0-beta.17_react-dom@17.0.2+react@17.0.2
- '@docusaurus/plugin-content-pages': 2.0.0-beta.17_react-dom@17.0.2+react@17.0.2
- '@docusaurus/plugin-debug': 2.0.0-beta.17_react-dom@17.0.2+react@17.0.2
- '@docusaurus/plugin-google-analytics': 2.0.0-beta.17_react-dom@17.0.2+react@17.0.2
- '@docusaurus/plugin-google-gtag': 2.0.0-beta.17_react-dom@17.0.2+react@17.0.2
- '@docusaurus/plugin-sitemap': 2.0.0-beta.17_react-dom@17.0.2+react@17.0.2
- '@docusaurus/theme-classic': 2.0.0-beta.17_react-dom@17.0.2+react@17.0.2
- '@docusaurus/theme-common': 2.0.0-beta.17_react-dom@17.0.2+react@17.0.2
- '@docusaurus/theme-search-algolia': 2.0.0-beta.17_react-dom@17.0.2+react@17.0.2
+ '@docusaurus/core': 2.1.0_ny44vnc5t4rlukh2kzmv2f2kze
+ '@docusaurus/plugin-content-blog': 2.1.0_sfoxds7t5ydpegc3knd667wn6m
+ '@docusaurus/plugin-content-docs': 2.1.0_sfoxds7t5ydpegc3knd667wn6m
+ '@docusaurus/plugin-content-pages': 2.1.0_sfoxds7t5ydpegc3knd667wn6m
+ '@docusaurus/plugin-debug': 2.1.0_sfoxds7t5ydpegc3knd667wn6m
+ '@docusaurus/plugin-google-analytics': 2.1.0_sfoxds7t5ydpegc3knd667wn6m
+ '@docusaurus/plugin-google-gtag': 2.1.0_sfoxds7t5ydpegc3knd667wn6m
+ '@docusaurus/plugin-sitemap': 2.1.0_sfoxds7t5ydpegc3knd667wn6m
+ '@docusaurus/theme-classic': 2.1.0_sfoxds7t5ydpegc3knd667wn6m
+ '@docusaurus/theme-common': 2.1.0_ny44vnc5t4rlukh2kzmv2f2kze
+ '@docusaurus/theme-search-algolia': 2.1.0_ny44vnc5t4rlukh2kzmv2f2kze
+ '@docusaurus/types': 2.1.0_sfoxds7t5ydpegc3knd667wn6m
react: 17.0.2
react-dom: 17.0.2_react@17.0.2
transitivePeerDependencies:
@@ -1996,6 +3424,7 @@ packages:
- encoding
- esbuild
- eslint
+ - lightningcss
- supports-color
- typescript
- uglify-js
@@ -2012,36 +3441,41 @@ packages:
'@types/react': 17.0.39
prop-types: 15.8.1
react: 17.0.2
- dev: false
- /@docusaurus/theme-classic/2.0.0-beta.17_react-dom@17.0.2+react@17.0.2:
- resolution: {integrity: sha512-xfZ9kpgqo0lP9YO4rJj79wtiQJXU6ARo5wYy10IIwiWN+lg00scJHhkmNV431b05xIUjUr0cKeH9nqZmEsQRKg==}
- engines: {node: '>=14'}
+ /@docusaurus/theme-classic/2.1.0_sfoxds7t5ydpegc3knd667wn6m:
+ resolution: {integrity: sha512-xn8ZfNMsf7gaSy9+ClFnUu71o7oKgMo5noYSS1hy3svNifRTkrBp6+MReLDsmIaj3mLf2e7+JCBYKBFbaGzQng==}
+ 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.17_react-dom@17.0.2+react@17.0.2
- '@docusaurus/plugin-content-blog': 2.0.0-beta.17_react-dom@17.0.2+react@17.0.2
- '@docusaurus/plugin-content-docs': 2.0.0-beta.17_react-dom@17.0.2+react@17.0.2
- '@docusaurus/plugin-content-pages': 2.0.0-beta.17_react-dom@17.0.2+react@17.0.2
- '@docusaurus/theme-common': 2.0.0-beta.17_react-dom@17.0.2+react@17.0.2
- '@docusaurus/theme-translations': 2.0.0-beta.17
- '@docusaurus/utils': 2.0.0-beta.17
- '@docusaurus/utils-common': 2.0.0-beta.17
- '@docusaurus/utils-validation': 2.0.0-beta.17
+ '@docusaurus/core': 2.1.0_ny44vnc5t4rlukh2kzmv2f2kze
+ '@docusaurus/mdx-loader': 2.1.0_ny44vnc5t4rlukh2kzmv2f2kze
+ '@docusaurus/module-type-aliases': 2.1.0_sfoxds7t5ydpegc3knd667wn6m
+ '@docusaurus/plugin-content-blog': 2.1.0_sfoxds7t5ydpegc3knd667wn6m
+ '@docusaurus/plugin-content-docs': 2.1.0_sfoxds7t5ydpegc3knd667wn6m
+ '@docusaurus/plugin-content-pages': 2.1.0_sfoxds7t5ydpegc3knd667wn6m
+ '@docusaurus/theme-common': 2.1.0_ny44vnc5t4rlukh2kzmv2f2kze
+ '@docusaurus/theme-translations': 2.1.0
+ '@docusaurus/types': 2.1.0_sfoxds7t5ydpegc3knd667wn6m
+ '@docusaurus/utils': 2.1.0_@docusaurus+types@2.1.0
+ '@docusaurus/utils-common': 2.1.0_@docusaurus+types@2.1.0
+ '@docusaurus/utils-validation': 2.1.0_@docusaurus+types@2.1.0
'@mdx-js/react': 1.6.22_react@17.0.2
- clsx: 1.1.1
+ clsx: 1.2.1
copy-text-to-clipboard: 3.0.1
- infima: 0.2.0-alpha.37
+ infima: 0.2.0-alpha.42
lodash: 4.17.21
- postcss: 8.4.7
- prism-react-renderer: 1.3.1_react@17.0.2
- prismjs: 1.27.0
+ nprogress: 0.2.0
+ postcss: 8.4.16
+ 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.0_react@17.0.2
+ react-router-dom: 5.3.3_react@17.0.2
rtlcss: 3.5.0
+ tslib: 2.4.0
+ utility-types: 3.10.0
transitivePeerDependencies:
- '@parcel/css'
- '@swc/core'
@@ -2050,6 +3484,7 @@ packages:
- debug
- esbuild
- eslint
+ - lightningcss
- supports-color
- typescript
- uglify-js
@@ -2058,25 +3493,31 @@ packages:
- webpack-cli
dev: false
- /@docusaurus/theme-common/2.0.0-beta.17_react-dom@17.0.2+react@17.0.2:
- resolution: {integrity: sha512-LJBDhx+Qexn1JHBqZbE4k+7lBaV1LgpE33enXf43ShB7ebhC91d5HLHhBwgt0pih4+elZU4rG+BG/roAmsNM0g==}
- engines: {node: '>=14'}
+ /@docusaurus/theme-common/2.1.0_ny44vnc5t4rlukh2kzmv2f2kze:
+ resolution: {integrity: sha512-vT1otpVPbKux90YpZUnvknsn5zvpLf+AW1W0EDcpE9up4cDrPqfsh0QoxGHFJnobE2/qftsBFC19BneN4BH8Ag==}
+ engines: {node: '>=16.14'}
peerDependencies:
react: ^16.8.4 || ^17.0.0
react-dom: ^16.8.4 || ^17.0.0
dependencies:
- '@docusaurus/module-type-aliases': 2.0.0-beta.17_react-dom@17.0.2+react@17.0.2
- '@docusaurus/plugin-content-blog': 2.0.0-beta.17_react-dom@17.0.2+react@17.0.2
- '@docusaurus/plugin-content-docs': 2.0.0-beta.17_react-dom@17.0.2+react@17.0.2
- '@docusaurus/plugin-content-pages': 2.0.0-beta.17_react-dom@17.0.2+react@17.0.2
- clsx: 1.1.1
+ '@docusaurus/mdx-loader': 2.1.0_ny44vnc5t4rlukh2kzmv2f2kze
+ '@docusaurus/module-type-aliases': 2.1.0_sfoxds7t5ydpegc3knd667wn6m
+ '@docusaurus/plugin-content-blog': 2.1.0_sfoxds7t5ydpegc3knd667wn6m
+ '@docusaurus/plugin-content-docs': 2.1.0_sfoxds7t5ydpegc3knd667wn6m
+ '@docusaurus/plugin-content-pages': 2.1.0_sfoxds7t5ydpegc3knd667wn6m
+ '@docusaurus/utils': 2.1.0_@docusaurus+types@2.1.0
+ '@types/history': 4.7.11
+ '@types/react': 17.0.39
+ '@types/react-router-config': 5.0.6
+ clsx: 1.2.1
parse-numeric-range: 1.3.0
- prism-react-renderer: 1.3.1_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
- tslib: 2.3.1
+ tslib: 2.4.0
utility-types: 3.10.0
transitivePeerDependencies:
+ - '@docusaurus/types'
- '@parcel/css'
- '@swc/core'
- bufferutil
@@ -2084,6 +3525,7 @@ packages:
- debug
- esbuild
- eslint
+ - lightningcss
- supports-color
- typescript
- uglify-js
@@ -2092,32 +3534,75 @@ packages:
- webpack-cli
dev: false
- /@docusaurus/theme-search-algolia/2.0.0-beta.17_react-dom@17.0.2+react@17.0.2:
- resolution: {integrity: sha512-W12XKM7QC5Jmrec359bJ7aDp5U8DNkCxjVKsMNIs8rDunBoI/N+R35ERJ0N7Bg9ONAWO6o7VkUERQsfGqdvr9w==}
- engines: {node: '>=14'}
+ /@docusaurus/theme-common/2.1.0_sfoxds7t5ydpegc3knd667wn6m:
+ resolution: {integrity: sha512-vT1otpVPbKux90YpZUnvknsn5zvpLf+AW1W0EDcpE9up4cDrPqfsh0QoxGHFJnobE2/qftsBFC19BneN4BH8Ag==}
+ 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.1.0_sfoxds7t5ydpegc3knd667wn6m
+ '@docusaurus/module-type-aliases': 2.1.0_sfoxds7t5ydpegc3knd667wn6m
+ '@docusaurus/plugin-content-blog': 2.1.0_sfoxds7t5ydpegc3knd667wn6m
+ '@docusaurus/plugin-content-docs': 2.1.0_sfoxds7t5ydpegc3knd667wn6m
+ '@docusaurus/plugin-content-pages': 2.1.0_sfoxds7t5ydpegc3knd667wn6m
+ '@docusaurus/utils': 2.1.0
+ '@types/history': 4.7.11
+ '@types/react': 17.0.39
+ '@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.4.0
+ utility-types: 3.10.0
+ transitivePeerDependencies:
+ - '@docusaurus/types'
+ - '@parcel/css'
+ - '@swc/core'
+ - bufferutil
+ - csso
+ - debug
+ - esbuild
+ - eslint
+ - lightningcss
+ - supports-color
+ - typescript
+ - uglify-js
+ - utf-8-validate
+ - vue-template-compiler
+ - webpack-cli
+ dev: false
+
+ /@docusaurus/theme-search-algolia/2.1.0_ny44vnc5t4rlukh2kzmv2f2kze:
+ resolution: {integrity: sha512-rNBvi35VvENhucslEeVPOtbAzBdZY/9j55gdsweGV5bYoAXy4mHB6zTGjealcB4pJ6lJY4a5g75fXXMOlUqPfg==}
+ engines: {node: '>=16.14'}
peerDependencies:
react: ^16.8.4 || ^17.0.0
react-dom: ^16.8.4 || ^17.0.0
dependencies:
- '@docsearch/react': 3.0.0_react-dom@17.0.2+react@17.0.2
- '@docusaurus/core': 2.0.0-beta.17_react-dom@17.0.2+react@17.0.2
- '@docusaurus/logger': 2.0.0-beta.17
- '@docusaurus/theme-common': 2.0.0-beta.17_react-dom@17.0.2+react@17.0.2
- '@docusaurus/theme-translations': 2.0.0-beta.17
- '@docusaurus/utils': 2.0.0-beta.17
- '@docusaurus/utils-validation': 2.0.0-beta.17
- algoliasearch: 4.12.1
- algoliasearch-helper: 3.7.0_algoliasearch@4.12.1
- clsx: 1.1.1
+ '@docsearch/react': 3.2.1_sfoxds7t5ydpegc3knd667wn6m
+ '@docusaurus/core': 2.1.0_ny44vnc5t4rlukh2kzmv2f2kze
+ '@docusaurus/logger': 2.1.0
+ '@docusaurus/plugin-content-docs': 2.1.0_sfoxds7t5ydpegc3knd667wn6m
+ '@docusaurus/theme-common': 2.1.0_ny44vnc5t4rlukh2kzmv2f2kze
+ '@docusaurus/theme-translations': 2.1.0
+ '@docusaurus/utils': 2.1.0_@docusaurus+types@2.1.0
+ '@docusaurus/utils-validation': 2.1.0_@docusaurus+types@2.1.0
+ algoliasearch: 4.14.2
+ algoliasearch-helper: 3.11.1_algoliasearch@4.14.2
+ clsx: 1.2.1
eta: 1.12.3
- fs-extra: 10.0.1
+ fs-extra: 10.1.0
lodash: 4.17.21
react: 17.0.2
react-dom: 17.0.2_react@17.0.2
- tslib: 2.3.1
+ tslib: 2.4.0
utility-types: 3.10.0
transitivePeerDependencies:
- '@algolia/client-search'
+ - '@docusaurus/types'
- '@parcel/css'
- '@swc/core'
- '@types/react'
@@ -2126,6 +3611,7 @@ packages:
- debug
- esbuild
- eslint
+ - lightningcss
- supports-color
- typescript
- uglify-js
@@ -2134,46 +3620,72 @@ packages:
- webpack-cli
dev: false
- /@docusaurus/theme-translations/2.0.0-beta.17:
- resolution: {integrity: sha512-oxCX6khjZH3lgdRCL0DH06KkUM/kDr9+lzB35+vY8rpFeQruVgRdi8ekPqG3+Wr0U/N+LMhcYE5BmCb6D0Fv2A==}
- engines: {node: '>=14'}
+ /@docusaurus/theme-translations/2.1.0:
+ resolution: {integrity: sha512-07n2akf2nqWvtJeMy3A+7oSGMuu5F673AovXVwY0aGAux1afzGCiqIFlYW3EP0CujvDJAEFSQi/Tetfh+95JNg==}
+ engines: {node: '>=16.14'}
dependencies:
- fs-extra: 10.0.1
- tslib: 2.3.1
+ fs-extra: 10.1.0
+ tslib: 2.4.0
dev: false
- /@docusaurus/types/2.0.0-beta.17:
- resolution: {integrity: sha512-4o7TXu5sKlQpybfFFtsGUElBXwSpiXKsQyyWaRKj7DRBkvMtkDX6ITZNnZO9+EHfLbP/cfrokB8C/oO7mCQ5BQ==}
+ /@docusaurus/types/2.1.0_sfoxds7t5ydpegc3knd667wn6m:
+ resolution: {integrity: sha512-BS1ebpJZnGG6esKqsjtEC9U9qSaPylPwlO7cQ1GaIE7J/kMZI3FITnNn0otXXu7c7ZTqhb6+8dOrG6fZn6fqzQ==}
+ peerDependencies:
+ react: ^16.8.4 || ^17.0.0
+ react-dom: ^16.8.4 || ^17.0.0
dependencies:
+ '@types/history': 4.7.11
+ '@types/react': 17.0.39
commander: 5.1.0
joi: 17.6.0
- querystring: 0.2.1
+ react: 17.0.2
+ react-dom: 17.0.2_react@17.0.2
+ react-helmet-async: 1.3.0_sfoxds7t5ydpegc3knd667wn6m
utility-types: 3.10.0
- webpack: 5.69.1
+ webpack: 5.74.0
webpack-merge: 5.8.0
transitivePeerDependencies:
- '@swc/core'
- esbuild
- uglify-js
- webpack-cli
+
+ /@docusaurus/utils-common/2.1.0:
+ resolution: {integrity: sha512-F2vgmt4yRFgRQR2vyEFGTWeyAdmgKbtmu3sjHObF0tjjx/pN0Iw/c6eCopaH34E6tc9nO0nvp01pwW+/86d1fg==}
+ engines: {node: '>=16.14'}
+ peerDependencies:
+ '@docusaurus/types': '*'
+ peerDependenciesMeta:
+ '@docusaurus/types':
+ optional: true
+ dependencies:
+ tslib: 2.4.0
dev: false
- /@docusaurus/utils-common/2.0.0-beta.17:
- resolution: {integrity: sha512-90WCVdj6zYzs7neEIS594qfLO78cUL6EVK1CsRHJgVkkGjcYlCQ1NwkyO7bOb+nIAwdJrPJRc2FBSpuEGxPD3w==}
- engines: {node: '>=14'}
+ /@docusaurus/utils-common/2.1.0_@docusaurus+types@2.1.0:
+ resolution: {integrity: sha512-F2vgmt4yRFgRQR2vyEFGTWeyAdmgKbtmu3sjHObF0tjjx/pN0Iw/c6eCopaH34E6tc9nO0nvp01pwW+/86d1fg==}
+ engines: {node: '>=16.14'}
+ peerDependencies:
+ '@docusaurus/types': '*'
+ peerDependenciesMeta:
+ '@docusaurus/types':
+ optional: true
dependencies:
- tslib: 2.3.1
+ '@docusaurus/types': 2.1.0_sfoxds7t5ydpegc3knd667wn6m
+ tslib: 2.4.0
dev: false
- /@docusaurus/utils-validation/2.0.0-beta.17:
- resolution: {integrity: sha512-5UjayUP16fDjgd52eSEhL7SlN9x60pIhyS+K7kt7RmpSLy42+4/bSr2pns2VlATmuaoNOO6iIFdB2jgSYJ6SGA==}
- engines: {node: '>=14'}
+ /@docusaurus/utils-validation/2.1.0:
+ resolution: {integrity: sha512-AMJzWYKL3b7FLltKtDXNLO9Y649V2BXvrnRdnW2AA+PpBnYV78zKLSCz135cuWwRj1ajNtP4onbXdlnyvCijGQ==}
+ engines: {node: '>=16.14'}
dependencies:
- '@docusaurus/logger': 2.0.0-beta.17
- '@docusaurus/utils': 2.0.0-beta.17
+ '@docusaurus/logger': 2.1.0
+ '@docusaurus/utils': 2.1.0
joi: 17.6.0
- tslib: 2.3.1
+ js-yaml: 4.1.0
+ tslib: 2.4.0
transitivePeerDependencies:
+ - '@docusaurus/types'
- '@swc/core'
- esbuild
- supports-color
@@ -2181,25 +3693,81 @@ packages:
- webpack-cli
dev: false
- /@docusaurus/utils/2.0.0-beta.17:
- resolution: {integrity: sha512-yRKGdzSc5v6M/6GyQ4omkrAHCleevwKYiIrufCJgRbOtkhYE574d8mIjjirOuA/emcyLxjh+TLtqAA5TwhIryA==}
- engines: {node: '>=14'}
+ /@docusaurus/utils-validation/2.1.0_@docusaurus+types@2.1.0:
+ resolution: {integrity: sha512-AMJzWYKL3b7FLltKtDXNLO9Y649V2BXvrnRdnW2AA+PpBnYV78zKLSCz135cuWwRj1ajNtP4onbXdlnyvCijGQ==}
+ engines: {node: '>=16.14'}
+ dependencies:
+ '@docusaurus/logger': 2.1.0
+ '@docusaurus/utils': 2.1.0_@docusaurus+types@2.1.0
+ joi: 17.6.0
+ js-yaml: 4.1.0
+ tslib: 2.4.0
+ transitivePeerDependencies:
+ - '@docusaurus/types'
+ - '@swc/core'
+ - esbuild
+ - supports-color
+ - uglify-js
+ - webpack-cli
+ dev: false
+
+ /@docusaurus/utils/2.1.0:
+ resolution: {integrity: sha512-fPvrfmAuC54n8MjZuG4IysaMdmvN5A/qr7iFLbSGSyDrsbP4fnui6KdZZIa/YOLIPLec8vjZ8RIITJqF18mx4A==}
+ engines: {node: '>=16.14'}
+ peerDependencies:
+ '@docusaurus/types': '*'
+ peerDependenciesMeta:
+ '@docusaurus/types':
+ optional: true
dependencies:
- '@docusaurus/logger': 2.0.0-beta.17
+ '@docusaurus/logger': 2.1.0
'@svgr/webpack': 6.2.1
- file-loader: 6.2.0_webpack@5.69.1
- fs-extra: 10.0.1
+ file-loader: 6.2.0_webpack@5.74.0
+ fs-extra: 10.1.0
github-slugger: 1.4.0
globby: 11.1.0
gray-matter: 4.0.3
js-yaml: 4.1.0
lodash: 4.17.21
- micromatch: 4.0.4
+ micromatch: 4.0.5
+ resolve-pathname: 3.0.0
+ shelljs: 0.8.5
+ tslib: 2.4.0
+ url-loader: 4.1.1_u4acmn7fe6yqgbrqzialkgh5lu
+ webpack: 5.74.0
+ transitivePeerDependencies:
+ - '@swc/core'
+ - esbuild
+ - supports-color
+ - uglify-js
+ - webpack-cli
+ dev: false
+
+ /@docusaurus/utils/2.1.0_@docusaurus+types@2.1.0:
+ resolution: {integrity: sha512-fPvrfmAuC54n8MjZuG4IysaMdmvN5A/qr7iFLbSGSyDrsbP4fnui6KdZZIa/YOLIPLec8vjZ8RIITJqF18mx4A==}
+ engines: {node: '>=16.14'}
+ peerDependencies:
+ '@docusaurus/types': '*'
+ peerDependenciesMeta:
+ '@docusaurus/types':
+ optional: true
+ dependencies:
+ '@docusaurus/logger': 2.1.0
+ '@docusaurus/types': 2.1.0_sfoxds7t5ydpegc3knd667wn6m
+ '@svgr/webpack': 6.2.1
+ file-loader: 6.2.0_webpack@5.74.0
+ fs-extra: 10.1.0
+ github-slugger: 1.4.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.3.1
- url-loader: 4.1.1_file-loader@6.2.0+webpack@5.69.1
- webpack: 5.69.1
+ tslib: 2.4.0
+ url-loader: 4.1.1_u4acmn7fe6yqgbrqzialkgh5lu
+ webpack: 5.74.0
transitivePeerDependencies:
- '@swc/core'
- esbuild
@@ -2210,22 +3778,42 @@ packages:
/@hapi/hoek/9.2.1:
resolution: {integrity: sha512-gfta+H8aziZsm8pZa0vj04KO6biEiisppNgA1kbJvFrrWu9Vm7eaUEy76DIxsuTaWvti5fkJVhllWc6ZTE+Mdw==}
- dev: false
/@hapi/topo/5.1.0:
resolution: {integrity: sha512-foQZKJig7Ob0BMAYBfcJk8d77QtOe7Wo4ox7ff1lQYoNNAb6jwcY1ncdoy2e9wQZzvNy7ODZCYJkK8kzmcAnAg==}
dependencies:
'@hapi/hoek': 9.2.1
- dev: false
+
+ /@jridgewell/gen-mapping/0.3.2:
+ resolution: {integrity: sha512-mh65xKQAzI6iBcFzwv28KVWSmCkdRBWoOh+bYQGW3+6OZvbbN3TqMGo5hqYxQniRcH9F2VZIoJCm4pa3BPDK/A==}
+ engines: {node: '>=6.0.0'}
+ dependencies:
+ '@jridgewell/set-array': 1.1.2
+ '@jridgewell/sourcemap-codec': 1.4.11
+ '@jridgewell/trace-mapping': 0.3.15
/@jridgewell/resolve-uri/3.0.5:
resolution: {integrity: sha512-VPeQ7+wH0itvQxnG+lIzWgkysKIr3L9sslimFW55rHMdGu/qCQ5z5h9zq4gI8uBtqkpHhsF4Z/OwExufUCThew==}
engines: {node: '>=6.0.0'}
- dev: false
+
+ /@jridgewell/set-array/1.1.2:
+ resolution: {integrity: sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==}
+ engines: {node: '>=6.0.0'}
+
+ /@jridgewell/source-map/0.3.2:
+ resolution: {integrity: sha512-m7O9o2uR8k2ObDysZYzdfhb08VuEml5oWGiosa1VdaPZ/A6QyPkAJuwN0Q1lhULOf6B7MtQmHENS743hWtCrgw==}
+ dependencies:
+ '@jridgewell/gen-mapping': 0.3.2
+ '@jridgewell/trace-mapping': 0.3.15
/@jridgewell/sourcemap-codec/1.4.11:
resolution: {integrity: sha512-Fg32GrJo61m+VqYSdRSjRXMjQ06j8YIYfcTqndLYVAaHmroZHLJZCydsWBOTDqXS2v+mjxohBWEMfg97GXmYQg==}
- dev: false
+
+ /@jridgewell/trace-mapping/0.3.15:
+ resolution: {integrity: sha512-oWZNOULl+UbhsgB51uuZzglikfIKSUBO/M9W2OfEjn7cmqoAiCgmv9lyACTUacZwBz0ITnJ2NqjU8Tx0DHL88g==}
+ dependencies:
+ '@jridgewell/resolve-uri': 3.0.5
+ '@jridgewell/sourcemap-codec': 1.4.11
/@jridgewell/trace-mapping/0.3.4:
resolution: {integrity: sha512-vFv9ttIedivx0ux3QSjhgtCVjPZd5l46ZOMDSCwnH1yUO2e964gO8LZGyv2QkqcgR6TnBU1v+1IFqmeoG+0UJQ==}
@@ -2234,6 +3822,10 @@ packages:
'@jridgewell/sourcemap-codec': 1.4.11
dev: false
+ /@leichtgewicht/ip-codec/2.0.4:
+ resolution: {integrity: sha512-Hcv+nVC0kZnQ3tD9GVu5xSMR4VVYOteQIr/hwFPVEvPdlXqgGEuRjiheChHgdM+JyqdgNcmzZOX/tnl0JOiI7A==}
+ dev: false
+
/@mdx-js/mdx/1.6.22:
resolution: {integrity: sha512-AMxuLxPz2j5/6TpF/XSdKpQP1NlG0z11dFOlq+2IP/lSgl11GY8ji6S/rgsViN/L0BDvHvUMruRb7ub+24LUYA==}
dependencies:
@@ -2298,29 +3890,25 @@ packages:
resolution: {integrity: sha512-8ncEUtmnTsMmL7z1YPB47kPUq7LpKWJNFPsRzHiIajGC5uXlWGn+AmkYPcHNl8S4tcEGx+cnORnNYaw2wvL+LQ==}
dependencies:
'@hapi/hoek': 9.2.1
- dev: false
/@sideway/formula/3.0.0:
resolution: {integrity: sha512-vHe7wZ4NOXVfkoRb8T5otiENVlT7a3IAiw7H5M2+GO+9CDgcVUUsX1zalAztCmwyOr2RUTGJdgB+ZvSVqmdHmg==}
- dev: false
/@sideway/pinpoint/2.0.0:
resolution: {integrity: sha512-RNiOoTPkptFtSVzQevY/yWtZwf/RxyVnPy/OcA9HBM3MlGDnBEYL5B41H0MTn0Uec8Hi+2qUtTfG2WWZBmMejQ==}
- dev: false
/@sindresorhus/is/0.14.0:
resolution: {integrity: sha512-9NET910DNaIPngYnLLPeg+Ogzqsi9uM4mSboU5y6p8S5DzMTVEsJZrawi+BoDNUVBa2DhJqQYUFvMDfgU062LQ==}
engines: {node: '>=6'}
dev: false
- /@slorber/static-site-generator-webpack-plugin/4.0.1:
- resolution: {integrity: sha512-PSv4RIVO1Y3kvHxjvqeVisk3E9XFoO04uwYBDWe217MFqKspplYswTuKLiJu0aLORQWzuQjfVsSlLPojwfYsLw==}
+ /@slorber/static-site-generator-webpack-plugin/4.0.7:
+ resolution: {integrity: sha512-Ug7x6z5lwrz0WqdnNFOMYrDQNTPAprvHLSh6+/fmml3qUiz6l5eq+2MzLKWtn/q5K5NpSiFsZTP/fck/3vjSxA==}
+ engines: {node: '>=14'}
dependencies:
- bluebird: 3.7.2
- cheerio: 0.22.0
- eval: 0.1.6
- url: 0.11.0
- webpack-sources: 1.4.3
+ eval: 0.1.8
+ p-map: 4.0.0
+ webpack-sources: 3.2.3
dev: false
/@svgr/babel-plugin-add-jsx-attribute/5.4.0:
@@ -2328,13 +3916,13 @@ packages:
engines: {node: '>=10'}
dev: false
- /@svgr/babel-plugin-add-jsx-attribute/6.0.0_@babel+core@7.17.5:
+ /@svgr/babel-plugin-add-jsx-attribute/6.0.0_@babel+core@7.19.3:
resolution: {integrity: sha512-MdPdhdWLtQsjd29Wa4pABdhWbaRMACdM1h31BY+c6FghTZqNGT7pEYdBoaGeKtdTOBC/XNFQaKVj+r/Ei2ryWA==}
engines: {node: '>=10'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.17.5
+ '@babel/core': 7.19.3
dev: false
/@svgr/babel-plugin-remove-jsx-attribute/5.4.0:
@@ -2342,13 +3930,13 @@ packages:
engines: {node: '>=10'}
dev: false
- /@svgr/babel-plugin-remove-jsx-attribute/6.0.0_@babel+core@7.17.5:
+ /@svgr/babel-plugin-remove-jsx-attribute/6.0.0_@babel+core@7.19.3:
resolution: {integrity: sha512-aVdtfx9jlaaxc3unA6l+M9YRnKIZjOhQPthLKqmTXC8UVkBLDRGwPKo+r8n3VZN8B34+yVajzPTZ+ptTSuZZCw==}
engines: {node: '>=10'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.17.5
+ '@babel/core': 7.19.3
dev: false
/@svgr/babel-plugin-remove-jsx-empty-expression/5.0.1:
@@ -2356,13 +3944,13 @@ packages:
engines: {node: '>=10'}
dev: false
- /@svgr/babel-plugin-remove-jsx-empty-expression/6.0.0_@babel+core@7.17.5:
+ /@svgr/babel-plugin-remove-jsx-empty-expression/6.0.0_@babel+core@7.19.3:
resolution: {integrity: sha512-Ccj42ApsePD451AZJJf1QzTD1B/BOU392URJTeXFxSK709i0KUsGtbwyiqsKu7vsYxpTM0IA5clAKDyf9RCZyA==}
engines: {node: '>=10'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.17.5
+ '@babel/core': 7.19.3
dev: false
/@svgr/babel-plugin-replace-jsx-attribute-value/5.0.1:
@@ -2370,13 +3958,13 @@ packages:
engines: {node: '>=10'}
dev: false
- /@svgr/babel-plugin-replace-jsx-attribute-value/6.0.0_@babel+core@7.17.5:
+ /@svgr/babel-plugin-replace-jsx-attribute-value/6.0.0_@babel+core@7.19.3:
resolution: {integrity: sha512-88V26WGyt1Sfd1emBYmBJRWMmgarrExpKNVmI9vVozha4kqs6FzQJ/Kp5+EYli1apgX44518/0+t9+NU36lThQ==}
engines: {node: '>=10'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.17.5
+ '@babel/core': 7.19.3
dev: false
/@svgr/babel-plugin-svg-dynamic-title/5.4.0:
@@ -2384,13 +3972,13 @@ packages:
engines: {node: '>=10'}
dev: false
- /@svgr/babel-plugin-svg-dynamic-title/6.0.0_@babel+core@7.17.5:
+ /@svgr/babel-plugin-svg-dynamic-title/6.0.0_@babel+core@7.19.3:
resolution: {integrity: sha512-F7YXNLfGze+xv0KMQxrl2vkNbI9kzT9oDK55/kUuymh1ACyXkMV+VZWX1zEhSTfEKh7VkHVZGmVtHg8eTZ6PRg==}
engines: {node: '>=10'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.17.5
+ '@babel/core': 7.19.3
dev: false
/@svgr/babel-plugin-svg-em-dimensions/5.4.0:
@@ -2398,13 +3986,13 @@ packages:
engines: {node: '>=10'}
dev: false
- /@svgr/babel-plugin-svg-em-dimensions/6.0.0_@babel+core@7.17.5:
+ /@svgr/babel-plugin-svg-em-dimensions/6.0.0_@babel+core@7.19.3:
resolution: {integrity: sha512-+rghFXxdIqJNLQK08kwPBD3Z22/0b2tEZ9lKiL/yTfuyj1wW8HUXu4bo/XkogATIYuXSghVQOOCwURXzHGKyZA==}
engines: {node: '>=10'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.17.5
+ '@babel/core': 7.19.3
dev: false
/@svgr/babel-plugin-transform-react-native-svg/5.4.0:
@@ -2412,13 +4000,13 @@ packages:
engines: {node: '>=10'}
dev: false
- /@svgr/babel-plugin-transform-react-native-svg/6.0.0_@babel+core@7.17.5:
+ /@svgr/babel-plugin-transform-react-native-svg/6.0.0_@babel+core@7.19.3:
resolution: {integrity: sha512-VaphyHZ+xIKv5v0K0HCzyfAaLhPGJXSk2HkpYfXIOKb7DjLBv0soHDxNv6X0vr2titsxE7klb++u7iOf7TSrFQ==}
engines: {node: '>=10'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.17.5
+ '@babel/core': 7.19.3
dev: false
/@svgr/babel-plugin-transform-svg-component/5.5.0:
@@ -2426,13 +4014,13 @@ packages:
engines: {node: '>=10'}
dev: false
- /@svgr/babel-plugin-transform-svg-component/6.2.0_@babel+core@7.17.5:
+ /@svgr/babel-plugin-transform-svg-component/6.2.0_@babel+core@7.19.3:
resolution: {integrity: sha512-bhYIpsORb++wpsp91fymbFkf09Z/YEKR0DnFjxvN+8JHeCUD2unnh18jIMKnDJTWtvpTaGYPXELVe4OOzFI0xg==}
engines: {node: '>=12'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.17.5
+ '@babel/core': 7.19.3
dev: false
/@svgr/babel-preset/5.5.0:
@@ -2449,21 +4037,21 @@ packages:
'@svgr/babel-plugin-transform-svg-component': 5.5.0
dev: false
- /@svgr/babel-preset/6.2.0_@babel+core@7.17.5:
+ /@svgr/babel-preset/6.2.0_@babel+core@7.19.3:
resolution: {integrity: sha512-4WQNY0J71JIaL03DRn0vLiz87JXx0b9dYm2aA8XHlQJQoixMl4r/soYHm8dsaJZ3jWtkCiOYy48dp9izvXhDkQ==}
engines: {node: '>=10'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.17.5
- '@svgr/babel-plugin-add-jsx-attribute': 6.0.0_@babel+core@7.17.5
- '@svgr/babel-plugin-remove-jsx-attribute': 6.0.0_@babel+core@7.17.5
- '@svgr/babel-plugin-remove-jsx-empty-expression': 6.0.0_@babel+core@7.17.5
- '@svgr/babel-plugin-replace-jsx-attribute-value': 6.0.0_@babel+core@7.17.5
- '@svgr/babel-plugin-svg-dynamic-title': 6.0.0_@babel+core@7.17.5
- '@svgr/babel-plugin-svg-em-dimensions': 6.0.0_@babel+core@7.17.5
- '@svgr/babel-plugin-transform-react-native-svg': 6.0.0_@babel+core@7.17.5
- '@svgr/babel-plugin-transform-svg-component': 6.2.0_@babel+core@7.17.5
+ '@babel/core': 7.19.3
+ '@svgr/babel-plugin-add-jsx-attribute': 6.0.0_@babel+core@7.19.3
+ '@svgr/babel-plugin-remove-jsx-attribute': 6.0.0_@babel+core@7.19.3
+ '@svgr/babel-plugin-remove-jsx-empty-expression': 6.0.0_@babel+core@7.19.3
+ '@svgr/babel-plugin-replace-jsx-attribute-value': 6.0.0_@babel+core@7.19.3
+ '@svgr/babel-plugin-svg-dynamic-title': 6.0.0_@babel+core@7.19.3
+ '@svgr/babel-plugin-svg-em-dimensions': 6.0.0_@babel+core@7.19.3
+ '@svgr/babel-plugin-transform-react-native-svg': 6.0.0_@babel+core@7.19.3
+ '@svgr/babel-plugin-transform-svg-component': 6.2.0_@babel+core@7.19.3
dev: false
/@svgr/core/5.5.0:
@@ -2499,7 +4087,7 @@ packages:
resolution: {integrity: sha512-pt7MMkQFDlWJVy9ULJ1h+hZBDGFfSCwlBNW1HkLnVi7jUhyEXUaGYWi1x6bM2IXuAR9l265khBT4Av4lPmaNLQ==}
engines: {node: '>=10'}
dependencies:
- '@babel/types': 7.17.0
+ '@babel/types': 7.19.3
entities: 3.0.1
dev: false
@@ -2521,8 +4109,8 @@ packages:
peerDependencies:
'@svgr/core': ^6.0.0
dependencies:
- '@babel/core': 7.17.5
- '@svgr/babel-preset': 6.2.0_@babel+core@7.17.5
+ '@babel/core': 7.19.3
+ '@svgr/babel-preset': 6.2.0_@babel+core@7.19.3
'@svgr/core': 6.2.1
'@svgr/hast-util-to-babel-ast': 6.2.1
svg-parser: 2.0.4
@@ -2571,11 +4159,11 @@ packages:
resolution: {integrity: sha512-h09ngMNd13hnePwgXa+Y5CgOjzlCvfWLHg+MBnydEedAnuLRzUHUJmGS3o2OsrhxTOOqEsPOFt5v/f6C5Qulcw==}
engines: {node: '>=10'}
dependencies:
- '@babel/core': 7.17.5
- '@babel/plugin-transform-react-constant-elements': 7.17.6_@babel+core@7.17.5
- '@babel/preset-env': 7.16.11_@babel+core@7.17.5
- '@babel/preset-react': 7.16.7_@babel+core@7.17.5
- '@babel/preset-typescript': 7.16.7_@babel+core@7.17.5
+ '@babel/core': 7.19.3
+ '@babel/plugin-transform-react-constant-elements': 7.17.6_@babel+core@7.19.3
+ '@babel/preset-env': 7.19.3_@babel+core@7.19.3
+ '@babel/preset-react': 7.18.6_@babel+core@7.19.3
+ '@babel/preset-typescript': 7.18.6_@babel+core@7.19.3
'@svgr/core': 6.2.1
'@svgr/plugin-jsx': 6.2.1_@svgr+core@6.2.1
'@svgr/plugin-svgo': 6.2.0_@svgr+core@6.2.1
@@ -2626,18 +4214,15 @@ packages:
dependencies:
'@types/eslint': 8.4.1
'@types/estree': 0.0.51
- dev: false
/@types/eslint/8.4.1:
resolution: {integrity: sha512-GE44+DNEyxxh2Kc6ro/VkIj+9ma0pO0bwv9+uHSyBrikYOHr8zYcdPvnBOp1aw8s+CjRvuSx7CyWqRrNFQ59mA==}
dependencies:
'@types/estree': 0.0.51
'@types/json-schema': 7.0.9
- dev: false
/@types/estree/0.0.51:
resolution: {integrity: sha512-CuPgU6f3eT/XgKKPqKd/gLZV1Xmvf1a2R5POBOGQa6uv82xpls89HU5zKeVoyR8XzHd1RGNOlQlvUe3CFkjWNQ==}
- dev: false
/@types/express-serve-static-core/4.17.28:
resolution: {integrity: sha512-P1BJAEAW3E2DJUlkgq4tOL3RyMunoWXqbSCygWo5ZIWTjUgN1YnaXWW4VWl/oc8vs/XoYibEGBKP0uZyF4AHig==}
@@ -2664,7 +4249,6 @@ packages:
/@types/history/4.7.11:
resolution: {integrity: sha512-qjDJRrmvBMiTx+jyLxvLfJU7UznFuokDv4f3WRuriHKERccVpFU+8XMQUAbDzoiJCsmexxRExQeMwwCdamSKDA==}
- dev: false
/@types/html-minifier-terser/6.1.0:
resolution: {integrity: sha512-oh/6byDPnL1zeNXFrDXFLyZjkr1MsBG667IM792caf1L2UPOOMf65NFzjUH/ltyfwjAGfs1rsX1eftK0jC/KIg==}
@@ -2678,12 +4262,17 @@ packages:
/@types/json-schema/7.0.9:
resolution: {integrity: sha512-qcUXuemtEu+E5wZSJHNxUXeCZhAfXKQ41D+duX+VYPde7xyEVZci+/oXKJL13tnRs9lR2pr4fod59GT6/X1/yQ==}
- dev: false
/@types/katex/0.11.1:
resolution: {integrity: sha512-DUlIj2nk0YnJdlWgsFuVKcX27MLW0KbKmGVoUHmFr+74FYYNUDAaj9ZqTADvsbE8rfxuVmSFc7KczYn5Y09ozg==}
dev: false
+ /@types/keyv/3.1.4:
+ resolution: {integrity: sha512-BQ5aZNSCpj7D6K2ksrRCTmKRLEpnPvWDiLPfoGyhZ++8YtiK9d/3DBKPJgry359X/P1PfruyYwvnvwFjuEiEIg==}
+ dependencies:
+ '@types/node': 17.0.21
+ dev: false
+
/@types/mdast/3.0.10:
resolution: {integrity: sha512-W864tg/Osz1+9f4lrGTZpCSO5/z4608eUp19tbozkq2HJK6i3z1kT0H9tlADXuYIb1YYOBByU4Jsqkk75q48qA==}
dependencies:
@@ -2696,7 +4285,6 @@ packages:
/@types/node/17.0.21:
resolution: {integrity: sha512-DBZCJbhII3r90XbQxI8Y9IjjiiOGlZ0Hr32omXIZvwwZ7p4DMMXGrKXVyPfuoBOri9XNtL0UK69jYIBIsRX3QQ==}
- dev: false
/@types/parse-json/4.0.0:
resolution: {integrity: sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA==}
@@ -2708,7 +4296,6 @@ packages:
/@types/prop-types/15.7.4:
resolution: {integrity: sha512-rZ5drC/jWjrArrS8BR6SIr4cWpW09RNTYt9AMZo3Jwwif+iacXAqgVjm0B0Bv/S1jhDXKHqRVNCbACkJ89RAnQ==}
- dev: false
/@types/q/1.5.5:
resolution: {integrity: sha512-L28j2FcJfSZOnL1WBjDYp2vUHCeIFlyYI/53EwD/rKUBQ7MtUUfbQWiyKJGpcnv4/WgrhWsFKrcPstcAt/J0tQ==}
@@ -2728,7 +4315,6 @@ packages:
'@types/history': 4.7.11
'@types/react': 17.0.39
'@types/react-router': 5.1.18
- dev: false
/@types/react-router-dom/5.3.3:
resolution: {integrity: sha512-kpqnYK4wcdm5UaWI3fLcELopqLrHgLqNsdpHauzlQktfkHL3npOSwtj1Uz9oKBAzs7lFtVkV8j83voAz2D8fhw==}
@@ -2736,14 +4322,12 @@ packages:
'@types/history': 4.7.11
'@types/react': 17.0.39
'@types/react-router': 5.1.18
- dev: false
/@types/react-router/5.1.18:
resolution: {integrity: sha512-YYknwy0D0iOwKQgz9v8nOzt2J6l4gouBmDnWqUUznltOTaon+r8US8ky8HvN0tXvc38U9m6z/t2RsVsnd1zM0g==}
dependencies:
'@types/history': 4.7.11
'@types/react': 17.0.39
- dev: false
/@types/react/17.0.39:
resolution: {integrity: sha512-UVavlfAxDd/AgAacMa60Azl7ygyQNRwC/DsHZmKgNvPmRR5p70AJ5Q9EAmL2NWOJmeV+vVUI4IAP7GZrN8h8Ug==}
@@ -2751,6 +4335,11 @@ packages:
'@types/prop-types': 15.7.4
'@types/scheduler': 0.16.2
csstype: 3.0.10
+
+ /@types/responselike/1.0.0:
+ resolution: {integrity: sha512-85Y2BjiufFzaMIlvJDvTTB8Fxl2xfLo4HgmHzVBz08w4wDePCTjYw66PdrolO0kzli3yam/YCgRufyo1DdQVTA==}
+ dependencies:
+ '@types/node': 17.0.21
dev: false
/@types/retry/0.12.1:
@@ -2765,7 +4354,6 @@ packages:
/@types/scheduler/0.16.2:
resolution: {integrity: sha512-hppQEBDmlwhFAXKJX2KnWLYu5yMfi91yazPb2l+lbJiwW+wdo1gNeRA+3RgNSO39WYX2euey41KEwnqesU2Jew==}
- dev: false
/@types/serve-index/1.9.1:
resolution: {integrity: sha512-d/Hs3nWDxNL2xAczmOVZNj92YZCS6RGxfBPjKzuu/XirCgXdpKEb88dYNbrYGint6IVWLNP+yonwVAuRC0T2Dg==}
@@ -2801,19 +4389,15 @@ packages:
dependencies:
'@webassemblyjs/helper-numbers': 1.11.1
'@webassemblyjs/helper-wasm-bytecode': 1.11.1
- dev: false
/@webassemblyjs/floating-point-hex-parser/1.11.1:
resolution: {integrity: sha512-iGRfyc5Bq+NnNuX8b5hwBrRjzf0ocrJPI6GWFodBFzmFnyvrQ83SHKhmilCU/8Jv67i4GJZBMhEzltxzcNagtQ==}
- dev: false
/@webassemblyjs/helper-api-error/1.11.1:
resolution: {integrity: sha512-RlhS8CBCXfRUR/cwo2ho9bkheSXG0+NwooXcc3PAILALf2QLdFyj7KGsKRbVc95hZnhnERon4kW/D3SZpp6Tcg==}
- dev: false
/@webassemblyjs/helper-buffer/1.11.1:
resolution: {integrity: sha512-gwikF65aDNeeXa8JxXa2BAk+REjSyhrNC9ZwdT0f8jc4dQQeDQ7G4m0f2QCLPJiMTTO6wfDmRmj/pW0PsUvIcA==}
- dev: false
/@webassemblyjs/helper-numbers/1.11.1:
resolution: {integrity: sha512-vDkbxiB8zfnPdNK9Rajcey5C0w+QJugEglN0of+kmO8l7lDb77AnlKYQF7aarZuCrv+l0UvqL+68gSDr3k9LPQ==}
@@ -2821,11 +4405,9 @@ packages:
'@webassemblyjs/floating-point-hex-parser': 1.11.1
'@webassemblyjs/helper-api-error': 1.11.1
'@xtuc/long': 4.2.2
- dev: false
/@webassemblyjs/helper-wasm-bytecode/1.11.1:
resolution: {integrity: sha512-PvpoOGiJwXeTrSf/qfudJhwlvDQxFgelbMqtq52WWiXC6Xgg1IREdngmPN3bs4RoO83PnL/nFrxucXj1+BX62Q==}
- dev: false
/@webassemblyjs/helper-wasm-section/1.11.1:
resolution: {integrity: sha512-10P9No29rYX1j7F3EVPX3JvGPQPae+AomuSTPiF9eBQeChHI6iqjMIwR9JmOJXwpnn/oVGDk7I5IlskuMwU/pg==}
@@ -2834,23 +4416,19 @@ packages:
'@webassemblyjs/helper-buffer': 1.11.1
'@webassemblyjs/helper-wasm-bytecode': 1.11.1
'@webassemblyjs/wasm-gen': 1.11.1
- dev: false
/@webassemblyjs/ieee754/1.11.1:
resolution: {integrity: sha512-hJ87QIPtAMKbFq6CGTkZYJivEwZDbQUgYd3qKSadTNOhVY7p+gfP6Sr0lLRVTaG1JjFj+r3YchoqRYxNH3M0GQ==}
dependencies:
'@xtuc/ieee754': 1.2.0
- dev: false
/@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:
resolution: {integrity: sha512-9kqcxAEdMhiwQkHpkNiorZzqpGrodQQ2IGrHHxCy+Ozng0ofyMA0lTqiLkVs1uzTRejX+/O0EOT7KxqVPuXosQ==}
- dev: false
/@webassemblyjs/wasm-edit/1.11.1:
resolution: {integrity: sha512-g+RsupUC1aTHfR8CDgnsVRVZFJqdkFHpsHMfJuWQzWU3tvnLC07UqHICfP+4XyL2tnr1amvl1Sdp06TnYCmVkA==}
@@ -2863,7 +4441,6 @@ packages:
'@webassemblyjs/wasm-opt': 1.11.1
'@webassemblyjs/wasm-parser': 1.11.1
'@webassemblyjs/wast-printer': 1.11.1
- dev: false
/@webassemblyjs/wasm-gen/1.11.1:
resolution: {integrity: sha512-F7QqKXwwNlMmsulj6+O7r4mmtAlCWfO/0HdgOxSklZfQcDu0TpLiD1mRt/zF25Bk59FIjEuGAIyn5ei4yMfLhA==}
@@ -2873,7 +4450,6 @@ packages:
'@webassemblyjs/ieee754': 1.11.1
'@webassemblyjs/leb128': 1.11.1
'@webassemblyjs/utf8': 1.11.1
- dev: false
/@webassemblyjs/wasm-opt/1.11.1:
resolution: {integrity: sha512-VqnkNqnZlU5EB64pp1l7hdm3hmQw7Vgqa0KF/KCNO9sIpI6Fk6brDEiX+iCOYrvMuBWDws0NkTOxYEb85XQHHw==}
@@ -2882,7 +4458,6 @@ packages:
'@webassemblyjs/helper-buffer': 1.11.1
'@webassemblyjs/wasm-gen': 1.11.1
'@webassemblyjs/wasm-parser': 1.11.1
- dev: false
/@webassemblyjs/wasm-parser/1.11.1:
resolution: {integrity: sha512-rrBujw+dJu32gYB7/Lup6UhdkPx9S9SnobZzRVL7VcBH9Bt9bCBLEuX/YXOOtBsOZ4NQrRykKhffRWHvigQvOA==}
@@ -2893,22 +4468,18 @@ packages:
'@webassemblyjs/ieee754': 1.11.1
'@webassemblyjs/leb128': 1.11.1
'@webassemblyjs/utf8': 1.11.1
- dev: false
/@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:
resolution: {integrity: sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==}
- dev: false
/@xtuc/long/4.2.2:
resolution: {integrity: sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==}
- dev: false
/accepts/1.3.8:
resolution: {integrity: sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==}
@@ -2918,13 +4489,12 @@ packages:
negotiator: 0.6.3
dev: false
- /acorn-import-assertions/1.8.0_acorn@8.7.0:
+ /acorn-import-assertions/1.8.0_acorn@8.8.0:
resolution: {integrity: sha512-m7VZ3jwz4eK6A4Vtt8Ew1/mNbP24u0FhdyfA7fSvnJR6LMdfOYnmuIrrJAgrYfYJ10F/otaHTtrtrtmHdMNzEw==}
peerDependencies:
acorn: ^8
dependencies:
- acorn: 8.7.0
- dev: false
+ acorn: 8.8.0
/acorn-walk/8.2.0:
resolution: {integrity: sha512-k+iyHEuPgSw6SbuDpGQM+06HQUa04DZ3o+F6CSzXMvvI5KMvnaEqXe+YVe555R9nn6GPt404fos4wcgpw12SDA==}
@@ -2937,6 +4507,11 @@ packages:
hasBin: true
dev: false
+ /acorn/8.8.0:
+ resolution: {integrity: sha512-QOxyigPVrpZ2GXT+PFyZTl6TtOFc5egxHIP9IlQ+RbupQuX4RkT/Bee4/kQuC02Xkzg84JcT7oLYtDIQxp+v7w==}
+ engines: {node: '>=0.4.0'}
+ hasBin: true
+
/address/1.1.2:
resolution: {integrity: sha512-aT6camzM4xEA54YVJYSqxz1kv4IHnQZRtThJJHhUMRExaU5spC7jX5ugSwTaTgJliIgs4VhZOk7htClvQ/LmRA==}
engines: {node: '>= 0.12.0'}
@@ -2965,7 +4540,6 @@ packages:
ajv: ^6.9.1
dependencies:
ajv: 6.12.6
- dev: false
/ajv-keywords/5.1.0_ajv@8.10.0:
resolution: {integrity: sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==}
@@ -2983,7 +4557,6 @@ packages:
fast-json-stable-stringify: 2.1.0
json-schema-traverse: 0.4.1
uri-js: 4.4.1
- dev: false
/ajv/8.10.0:
resolution: {integrity: sha512-bzqAEZOjkrUMl2afH8dknrq5KEk2SrwdBROR+vH1EKVQTqaUbJVPdc/gEdggTMM0Se+s+Ja4ju4TlNcStKl2Hw==}
@@ -2994,32 +4567,32 @@ packages:
uri-js: 4.4.1
dev: false
- /algoliasearch-helper/3.7.0_algoliasearch@4.12.1:
- resolution: {integrity: sha512-XJ3QfERBLfeVCyTVx80gon7r3/rgm/CE8Ha1H7cbablRe/X7SfYQ14g/eO+MhjVKIQp+gy9oC6G5ilmLwS1k6w==}
+ /algoliasearch-helper/3.11.1_algoliasearch@4.14.2:
+ resolution: {integrity: sha512-mvsPN3eK4E0bZG0/WlWJjeqe/bUD2KOEVOl0GyL/TGXn6wcpZU8NOuztGHCUKXkyg5gq6YzUakVTmnmSSO5Yiw==}
peerDependencies:
- algoliasearch: '>= 3.1 < 5'
+ algoliasearch: '>= 3.1 < 6'
dependencies:
'@algolia/events': 4.0.1
- algoliasearch: 4.12.1
+ algoliasearch: 4.14.2
dev: false
- /algoliasearch/4.12.1:
- resolution: {integrity: sha512-c0dM1g3zZBJrkzE5GA/Nu1y3fFxx3LCzxKzcmp2dgGS8P4CjszB/l3lsSh2MSrrK1Hn/KV4BlbBMXtYgG1Bfrw==}
+ /algoliasearch/4.14.2:
+ resolution: {integrity: sha512-ngbEQonGEmf8dyEh5f+uOIihv4176dgbuOZspiuhmTTBRBuzWu3KCGHre6uHj5YyuC7pNvQGzB6ZNJyZi0z+Sg==}
dependencies:
- '@algolia/cache-browser-local-storage': 4.12.1
- '@algolia/cache-common': 4.12.1
- '@algolia/cache-in-memory': 4.12.1
- '@algolia/client-account': 4.12.1
- '@algolia/client-analytics': 4.12.1
- '@algolia/client-common': 4.12.1
- '@algolia/client-personalization': 4.12.1
- '@algolia/client-search': 4.12.1
- '@algolia/logger-common': 4.12.1
- '@algolia/logger-console': 4.12.1
- '@algolia/requester-browser-xhr': 4.12.1
- '@algolia/requester-common': 4.12.1
- '@algolia/requester-node-http': 4.12.1
- '@algolia/transporter': 4.12.1
+ '@algolia/cache-browser-local-storage': 4.14.2
+ '@algolia/cache-common': 4.14.2
+ '@algolia/cache-in-memory': 4.14.2
+ '@algolia/client-account': 4.14.2
+ '@algolia/client-analytics': 4.14.2
+ '@algolia/client-common': 4.14.2
+ '@algolia/client-personalization': 4.14.2
+ '@algolia/client-search': 4.14.2
+ '@algolia/logger-common': 4.14.2
+ '@algolia/logger-console': 4.14.2
+ '@algolia/requester-browser-xhr': 4.14.2
+ '@algolia/requester-common': 4.14.2
+ '@algolia/requester-node-http': 4.14.2
+ '@algolia/transporter': 4.14.2
dev: false
/ansi-align/3.0.1:
@@ -3028,24 +4601,12 @@ packages:
string-width: 4.2.3
dev: false
- /ansi-escapes/4.3.2:
- resolution: {integrity: sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==}
- engines: {node: '>=8'}
- dependencies:
- type-fest: 0.21.3
- dev: false
-
/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/2.1.1:
- resolution: {integrity: sha1-w7M6te42DYbg5ijwRorn7yfWVN8=}
- engines: {node: '>=0.10.0'}
- dev: false
-
/ansi-regex/5.0.1:
resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==}
engines: {node: '>=8'}
@@ -3056,11 +4617,6 @@ packages:
engines: {node: '>=12'}
dev: false
- /ansi-styles/2.2.1:
- resolution: {integrity: sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=}
- engines: {node: '>=0.10.0'}
- dev: false
-
/ansi-styles/3.2.1:
resolution: {integrity: sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==}
engines: {node: '>=4'}
@@ -3088,13 +4644,6 @@ packages:
picomatch: 2.3.1
dev: false
- /app-path/3.3.0:
- resolution: {integrity: sha512-EAgEXkdcxH1cgEePOSsmUtw9ItPl0KTxnh/pj9ZbhvbKbij9x0oX6PWpGnorDr0DS5AosLgoa5n3T/hZmKQpYA==}
- engines: {node: '>=8'}
- dependencies:
- execa: 1.0.0
- dev: false
-
/arg/5.0.1:
resolution: {integrity: sha512-e0hDa9H2Z9AwFkk2qDlwhoMYE4eToKarchkQHovNdLTCYMHZHeRjI71crOh+dio4K6u1IcwubQqo79Ga4CyAQA==}
dev: false
@@ -3109,7 +4658,7 @@ packages:
resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==}
/array-flatten/1.1.1:
- resolution: {integrity: sha1-ml9pkFGx5wczKPKgCJaLZOopVdI=}
+ resolution: {integrity: sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==}
dev: false
/array-flatten/2.1.2:
@@ -3124,15 +4673,10 @@ packages:
/array-union/3.0.1:
resolution: {integrity: sha512-1OvF9IbWwaeiM9VhzYXVQacMibxpXOMYVNIvMtKRyX9SImBXpKcFr8XvFDeEslCyuH/t6KRt7HEO94AlP8Iatw==}
engines: {node: '>=12'}
+ dev: true
/asap/2.0.6:
- resolution: {integrity: sha1-5QNHYR1+aQlDIIu9r+vLwvuGbUY=}
- dev: false
-
- /async/2.6.3:
- resolution: {integrity: sha512-zflvls11DCy+dQWzTW2dzuilv8Z5X/pjfmZOWba6TNIVDm+2UDaJmXSOXlasHKfNBs8oo3M0aT50fDEWfKZjXg==}
- dependencies:
- lodash: 4.17.21
+ resolution: {integrity: sha512-BSHWgDSAiKs50o2Re8ppvp3seVHXSRM44cdSsT9FfNEUUZLOGWVCsiWaRPWM1Znn+mqZ1OfVZ3z3DWEzSp7hRA==}
dev: false
/at-least-node/1.0.0:
@@ -3140,19 +4684,19 @@ packages:
engines: {node: '>= 4.0.0'}
dev: false
- /autoprefixer/10.4.2_postcss@8.4.7:
- resolution: {integrity: sha512-9fOPpHKuDW1w/0EKfRmVnxTDt8166MAnLI3mgZ1JCnhNtYWxcJ6Ud5CO/AVOZi/AvFa8DY9RTy3h3+tFBlrrdQ==}
+ /autoprefixer/10.4.12_postcss@8.4.16:
+ resolution: {integrity: sha512-WrCGV9/b97Pa+jtwf5UGaRjgQIg7OK3D06GnoYoZNcG1Xb8Gt3EfuKjlhh9i/VtT16g6PYjZ69jdJ2g8FxSC4Q==}
engines: {node: ^10 || ^12 || >=14}
hasBin: true
peerDependencies:
postcss: ^8.1.0
dependencies:
- browserslist: 4.19.3
- caniuse-lite: 1.0.30001312
- fraction.js: 4.1.3
+ browserslist: 4.21.4
+ caniuse-lite: 1.0.30001412
+ fraction.js: 4.2.0
normalize-range: 0.1.2
picocolors: 1.0.0
- postcss: 8.4.7
+ postcss: 8.4.16
postcss-value-parser: 4.2.0
dev: false
@@ -3164,19 +4708,19 @@ packages:
- debug
dev: false
- /babel-loader/8.2.3_9351ded4f79a023849d74b5df047d562:
- resolution: {integrity: sha512-n4Zeta8NC3QAsuyiizu0GkmRcQ6clkV9WFUnUf1iXP//IeSKbWjofW3UHyZVwlOB4y039YQKefawyTn64Zwbuw==}
+ /babel-loader/8.2.5_wfdvla2jorjoj23kkavho2upde:
+ resolution: {integrity: sha512-OSiFfH89LrEMiWd4pLNqGz4CwJDtbs2ZVc+iGu2HrkRfPxId9F2anQj38IxWpmRfsUY0aBZYi1EFcd3mhtRMLQ==}
engines: {node: '>= 8.9'}
peerDependencies:
'@babel/core': ^7.0.0
webpack: '>=2'
dependencies:
- '@babel/core': 7.17.5
+ '@babel/core': 7.19.3
find-cache-dir: 3.3.2
- loader-utils: 1.4.0
+ loader-utils: 2.0.2
make-dir: 3.1.0
schema-utils: 2.7.1
- webpack: 5.69.1
+ webpack: 5.74.0
dev: false
/babel-plugin-apply-mdx-type-prop/1.6.22_@babel+core@7.12.9:
@@ -3189,12 +4733,6 @@ packages:
'@mdx-js/util': 1.6.22
dev: false
- /babel-plugin-dynamic-import-node/2.3.0:
- resolution: {integrity: sha512-o6qFkpeQEBxcqt0XYlWzAVxNCSCZdUgcR8IRlhD/8DylxjjO4foPcvTW0GGKa/cVt3rvxZ7o5ippJ+/0nvLhlQ==}
- dependencies:
- object.assign: 4.1.2
- dev: false
-
/babel-plugin-dynamic-import-node/2.3.3:
resolution: {integrity: sha512-jZVI+s9Zg3IqA/kdi0i6UDCybUI3aSBLnglhYbSSjKlV7yF1F/5LWv8MakQmvYpnbJDS6fcBL2KzHSxNCMtWSQ==}
dependencies:
@@ -3220,25 +4758,61 @@ packages:
- supports-color
dev: false
- /babel-plugin-polyfill-corejs3/0.5.2_@babel+core@7.17.5:
- resolution: {integrity: sha512-G3uJih0XWiID451fpeFaYGVuxHEjzKTHtc9uGFEjR6hHrvNzeS/PX+LLLcetJcytsB5m4j+K3o/EpXJNb/5IEQ==}
+ /babel-plugin-polyfill-corejs2/0.3.3_@babel+core@7.19.3:
+ resolution: {integrity: sha512-8hOdmFYFSZhqg2C/JgLUQ+t52o5nirNwaWM2B9LWteozwIvM14VSwdsCAUET10qT+kmySAlseadmfeeSWFCy+Q==}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/compat-data': 7.19.3
+ '@babel/core': 7.19.3
+ '@babel/helper-define-polyfill-provider': 0.3.3_@babel+core@7.19.3
+ semver: 6.3.0
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
+ /babel-plugin-polyfill-corejs3/0.5.2_@babel+core@7.17.5:
+ resolution: {integrity: sha512-G3uJih0XWiID451fpeFaYGVuxHEjzKTHtc9uGFEjR6hHrvNzeS/PX+LLLcetJcytsB5m4j+K3o/EpXJNb/5IEQ==}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.17.5
+ '@babel/helper-define-polyfill-provider': 0.3.1_@babel+core@7.17.5
+ core-js-compat: 3.21.1
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
+ /babel-plugin-polyfill-corejs3/0.6.0_@babel+core@7.19.3:
+ resolution: {integrity: sha512-+eHqR6OPcBhJOGgsIar7xoAB1GcSwVUA3XjAd7HJNzOXT4wv6/H7KIdA/Nc60cvUlDbKApmqNvD1B1bzOt4nyA==}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+ dependencies:
+ '@babel/core': 7.19.3
+ '@babel/helper-define-polyfill-provider': 0.3.3_@babel+core@7.19.3
+ core-js-compat: 3.25.3
+ transitivePeerDependencies:
+ - supports-color
+ dev: false
+
+ /babel-plugin-polyfill-regenerator/0.3.1_@babel+core@7.17.5:
+ resolution: {integrity: sha512-Y2B06tvgHYt1x0yz17jGkGeeMr5FeKUu+ASJ+N6nB5lQ8Dapfg42i0OVrf8PNGJ3zKL4A23snMi1IRwrqqND7A==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.17.5
'@babel/helper-define-polyfill-provider': 0.3.1_@babel+core@7.17.5
- core-js-compat: 3.21.1
transitivePeerDependencies:
- supports-color
dev: false
- /babel-plugin-polyfill-regenerator/0.3.1_@babel+core@7.17.5:
- resolution: {integrity: sha512-Y2B06tvgHYt1x0yz17jGkGeeMr5FeKUu+ASJ+N6nB5lQ8Dapfg42i0OVrf8PNGJ3zKL4A23snMi1IRwrqqND7A==}
+ /babel-plugin-polyfill-regenerator/0.4.1_@babel+core@7.19.3:
+ resolution: {integrity: sha512-NtQGmyQDXjQqQ+IzRkBVwEOz9lQ4zxAQZgoAYEtU9dJjnl1Oc98qnN7jcp+bE7O7aYzVpavXE3/VKXNzUbh7aw==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.17.5
- '@babel/helper-define-polyfill-provider': 0.3.1_@babel+core@7.17.5
+ '@babel/core': 7.19.3
+ '@babel/helper-define-polyfill-provider': 0.3.3_@babel+core@7.19.3
transitivePeerDependencies:
- supports-color
dev: false
@@ -3252,15 +4826,11 @@ packages:
dev: false
/base16/1.0.0:
- resolution: {integrity: sha1-4pf2DX7BAUp6lxo568ipjAtoHnA=}
- dev: false
-
- /base64-js/1.5.1:
- resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==}
+ resolution: {integrity: sha512-pNdYkNPiJUnEhnfXV56+sQy8+AaPcG3POZAUnwr4EeqCUZFz4u2PePbo3e5Gj4ziYPCWGUZT9RHisvJKnwFuBQ==}
dev: false
/batch/0.6.1:
- resolution: {integrity: sha1-3DQxT05nkxgJP8dgJyUl+UvyXBY=}
+ resolution: {integrity: sha512-x+VAiMRL6UPkx+kudNvxTl6hB2XNNCG2r+7wixVfIYwu/2HKRXimwQyaumLjMveWvT2Hkd/cAJw+QBMfJ/EKVw==}
dev: false
/big.js/5.2.2:
@@ -3272,10 +4842,6 @@ packages:
engines: {node: '>=8'}
dev: false
- /bluebird/3.7.2:
- resolution: {integrity: sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==}
- dev: false
-
/body-parser/1.19.2:
resolution: {integrity: sha512-SAAwOxgoCKMGs9uUAUFHygfLAyaniaoun6I8mFY9pRAJL9+Kec34aU+oIjDhTycub1jozEfEwx1W1IuOYxVSFw==}
engines: {node: '>= 0.8'}
@@ -3290,17 +4856,17 @@ packages:
qs: 6.9.7
raw-body: 2.4.3
type-is: 1.6.18
+ transitivePeerDependencies:
+ - supports-color
dev: false
- /bonjour/3.5.0:
- resolution: {integrity: sha1-jokKGD2O6aI5OzhExpGkK897yfU=}
+ /bonjour-service/1.0.14:
+ resolution: {integrity: sha512-HIMbgLnk1Vqvs6B4Wq5ep7mxvj9sGz5d1JJyDNSGNIdA/w2MCz6GTjWTdjqOJV1bEPj+6IkxDvWNFKEBxNt4kQ==}
dependencies:
array-flatten: 2.1.2
- deep-equal: 1.1.1
dns-equal: 1.0.0
- dns-txt: 2.0.2
- multicast-dns: 6.2.3
- multicast-dns-service-types: 1.1.0
+ fast-deep-equal: 3.1.3
+ multicast-dns: 7.2.5
dev: false
/boolbase/1.0.0:
@@ -3360,16 +4926,21 @@ packages:
picocolors: 1.0.0
dev: false
+ /browserslist/4.21.4:
+ resolution: {integrity: sha512-CBHJJdDmgjl3daYjN5Cp5kbTf1mUhZoS+beLklHIvkOWscs83YAhLlF3Wsh/lciQYAcbBJgTOD44VtG31ZM4Hw==}
+ engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
+ hasBin: true
+ dependencies:
+ caniuse-lite: 1.0.30001412
+ electron-to-chromium: 1.4.266
+ node-releases: 2.0.6
+ update-browserslist-db: 1.0.9_browserslist@4.21.4
+
/buffer-from/1.1.2:
resolution: {integrity: sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==}
- dev: false
-
- /buffer-indexof/1.1.1:
- resolution: {integrity: sha512-4/rOEg86jivtPTeOUUT61jJO1Ya1TrR/OkqCSZDyq84WJh3LuuiphBYJN+fm5xufIk4XAFcEwte/8WzC8If/1g==}
- dev: false
/bytes/3.0.0:
- resolution: {integrity: sha1-0ygVQE1olpn4Wk6k+odV3ROpYEg=}
+ resolution: {integrity: sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw==}
engines: {node: '>= 0.8'}
dev: false
@@ -3407,7 +4978,7 @@ packages:
resolution: {integrity: sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw==}
dependencies:
pascal-case: 3.1.2
- tslib: 2.3.1
+ tslib: 2.4.0
dev: false
/camelcase-css/2.0.1:
@@ -3423,8 +4994,8 @@ packages:
/caniuse-api/3.0.0:
resolution: {integrity: sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==}
dependencies:
- browserslist: 4.19.3
- caniuse-lite: 1.0.30001312
+ browserslist: 4.21.4
+ caniuse-lite: 1.0.30001412
lodash.memoize: 4.1.2
lodash.uniq: 4.5.0
dev: false
@@ -3433,21 +5004,13 @@ packages:
resolution: {integrity: sha512-Wiz1Psk2MEK0pX3rUzWaunLTZzqS2JYZFzNKqAiJGiuxIjRPLgV6+VDPOg6lQOUxmDwhTlh198JsTTi8Hzw6aQ==}
dev: false
+ /caniuse-lite/1.0.30001412:
+ resolution: {integrity: sha512-+TeEIee1gS5bYOiuf+PS/kp2mrXic37Hl66VY6EAfxasIk5fELTktK2oOezYed12H8w7jt3s512PpulQidPjwA==}
+
/ccount/1.1.0:
resolution: {integrity: sha512-vlNK021QdI7PNeiUh/lKkC/mNHHfV0m/Ad5JoI0TYtlBnJAslM/JIkm/tGC88bkLIwO6OQ5uV6ztS6kVAtCDlg==}
dev: false
- /chalk/1.1.3:
- resolution: {integrity: sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=}
- engines: {node: '>=0.10.0'}
- dependencies:
- ansi-styles: 2.2.1
- escape-string-regexp: 1.0.5
- has-ansi: 2.0.0
- strip-ansi: 3.0.1
- supports-color: 2.0.0
- dev: false
-
/chalk/2.4.2:
resolution: {integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==}
engines: {node: '>=4'}
@@ -3477,49 +5040,28 @@ packages:
resolution: {integrity: sha512-mKKUkUbhPpQlCOfIuZkvSEgktjPFIsZKRRbC6KWVEMvlzblj3i3asQv5ODsrwt0N3pHAEvjP8KTQPHkp0+6jOg==}
dev: false
- /cheerio-select/1.5.0:
- resolution: {integrity: sha512-qocaHPv5ypefh6YNxvnbABM07KMxExbtbfuJoIie3iZXX1ERwYmJcIiRrr9H05ucQP1k28dav8rpdDgjQd8drg==}
+ /cheerio-select/2.1.0:
+ resolution: {integrity: sha512-9v9kG0LvzrlcungtnJtpGNxY+fzECQKhK4EGJX2vByejiMX84MFNQw4UxPJl3bFbTMw+Dfs37XaIkCwTZfLh4g==}
dependencies:
- css-select: 4.2.1
- css-what: 5.1.0
- domelementtype: 2.2.0
- domhandler: 4.3.0
- domutils: 2.8.0
+ boolbase: 1.0.0
+ css-select: 5.1.0
+ css-what: 6.1.0
+ domelementtype: 2.3.0
+ domhandler: 5.0.3
+ domutils: 3.0.1
dev: false
- /cheerio/0.22.0:
- resolution: {integrity: sha1-qbqoYKP5tZWmuBsahocxIe06Jp4=}
- engines: {node: '>= 0.6'}
- dependencies:
- css-select: 1.2.0
- dom-serializer: 0.1.1
- entities: 1.1.2
- htmlparser2: 3.10.1
- lodash.assignin: 4.2.0
- lodash.bind: 4.2.1
- lodash.defaults: 4.2.0
- lodash.filter: 4.6.0
- lodash.flatten: 4.4.0
- lodash.foreach: 4.5.0
- lodash.map: 4.6.0
- lodash.merge: 4.6.2
- lodash.pick: 4.4.0
- lodash.reduce: 4.6.0
- lodash.reject: 4.6.0
- lodash.some: 4.6.0
- dev: false
-
- /cheerio/1.0.0-rc.10:
- resolution: {integrity: sha512-g0J0q/O6mW8z5zxQ3A8E8J1hUgp4SMOvEoW/x84OwyHKe/Zccz83PVT4y5Crcr530FV6NgmKI1qvGTKVl9XXVw==}
+ /cheerio/1.0.0-rc.12:
+ resolution: {integrity: sha512-VqR8m68vM46BNnuZ5NtnGBKIE/DfN0cRIzg9n40EIq9NOv90ayxLBXA8fXC5gquFRGJSTRqBq25Jt2ECLR431Q==}
engines: {node: '>= 6'}
dependencies:
- cheerio-select: 1.5.0
- dom-serializer: 1.3.2
- domhandler: 4.3.0
- htmlparser2: 6.1.0
- parse5: 6.0.1
- parse5-htmlparser2-tree-adapter: 6.0.1
- tslib: 2.3.1
+ cheerio-select: 2.1.0
+ dom-serializer: 2.0.0
+ domhandler: 5.0.3
+ domutils: 3.0.1
+ htmlparser2: 8.0.1
+ parse5: 7.1.1
+ parse5-htmlparser2-tree-adapter: 7.0.0
dev: false
/chokidar/3.5.3:
@@ -3540,14 +5082,13 @@ packages:
/chrome-trace-event/1.0.3:
resolution: {integrity: sha512-p3KULyQg4S7NIHixdwbGX+nFHkoBiA4YQmyWtjb8XngSKV124nJmRysgAeujbUVb15vh+RvFUfCPqU7rXk+hZg==}
engines: {node: '>=6.0'}
- dev: false
/ci-info/2.0.0:
resolution: {integrity: sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ==}
dev: false
- /clean-css/5.2.4:
- resolution: {integrity: sha512-nKseG8wCzEuji/4yrgM/5cthL9oTDc5UOQyFMvW/Q53oP6gLH690o1NbuTh6Y18nujr7BxlsFuS7gXLnLzKJGg==}
+ /clean-css/5.3.1:
+ resolution: {integrity: sha512-lCr8OHhiWCTw4v8POJovCoh4T7I9U11yVsPjMWWnnMmp9ZowCxyad1Pathle/9HjaDp+fdQKjO9fQydE6RHTZg==}
engines: {node: '>= 10.0'}
dependencies:
source-map: 0.6.1
@@ -3568,13 +5109,13 @@ packages:
engines: {node: '>=10'}
dev: false
- /cli-table3/0.6.1:
- resolution: {integrity: sha512-w0q/enDHhPLq44ovMGdQeeDLvwxwavsJX7oQGYt/LrBlYsyaxyDnp6z3QzFut/6kLLKnlcUVJLrpB7KBfgG/RA==}
+ /cli-table3/0.6.3:
+ resolution: {integrity: sha512-w5Jac5SykAeZJKntOxJCrm63Eg5/4dhMWIcuTbo9rpE+brgaSZo0RuNJZeOyMgsUdhDeojvgyQLmjI+K50ZGyg==}
engines: {node: 10.* || >= 12.*}
dependencies:
string-width: 4.2.3
optionalDependencies:
- colors: 1.4.0
+ '@colors/colors': 1.5.0
dev: false
/clone-deep/4.0.1:
@@ -3584,16 +5125,15 @@ packages:
is-plain-object: 2.0.4
kind-of: 6.0.3
shallow-clone: 3.0.1
- dev: false
/clone-response/1.0.2:
- resolution: {integrity: sha1-0dyXOSAxTfZ/vrlCI7TuNQI56Ws=}
+ resolution: {integrity: sha512-yjLXh88P599UOyPTFX0POsd7WxnbsVsGohcwzHOLspIhhpalPw1BcqED8NblyZLKcGrL8dTgMlcaZxV2jAD41Q==}
dependencies:
mimic-response: 1.0.1
dev: false
- /clsx/1.1.1:
- resolution: {integrity: sha512-6/bPho624p3S2pMyvP5kKBPXnI3ufHLObBFCfgx+LkeR5lg2XYy2hqZqUf45ypD8COn2bhgGJSUE+l5dhNBieA==}
+ /clsx/1.2.1:
+ resolution: {integrity: sha512-EcR6r5a8bj6pu3ycsa/E/cKVGuTgZJZdsyUYHOksG/UHIiKfjxzRxYJpyVBwYaQeOvghal9fcc4PidlgzugAQg==}
engines: {node: '>=6'}
dev: false
@@ -3639,13 +5179,6 @@ packages:
resolution: {integrity: sha512-hUewv7oMjCp+wkBv5Rm0v87eJhq4woh5rSR+42YSQJKecCqgIqNkZ6lAlQms/BwHPJA5NKMRlpxPRv0n8HQW6g==}
dev: false
- /colors/1.4.0:
- resolution: {integrity: sha512-a+UqTh4kgZg/SlGvfbzDHpgRu7AAQOmmqRHJnxhRZICKFUT91brVhNNt58CMWU9PsBbv3PDCZUHbVxuDiH2mtA==}
- engines: {node: '>=0.1.90'}
- requiresBuild: true
- dev: false
- optional: true
-
/combine-promises/1.1.0:
resolution: {integrity: sha512-ZI9jvcLDxqwaXEixOhArm3r7ReIivsXkpbyEWyeOhzz1QS0iSgBPnWvEqvIQtYyamGCYA88gFhmUrs9hrrQ0pg==}
engines: {node: '>=10'}
@@ -3657,12 +5190,10 @@ packages:
/commander/2.20.3:
resolution: {integrity: sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==}
- dev: false
/commander/5.1.0:
resolution: {integrity: sha512-P0CysNDQ7rtVw4QIQtm+MRxV66vKFSvlsQvGYXZWR3qFU0jlMKHZZZgw8e+8DSah4UDKMqnknRDQz+xuQXQ/Zg==}
engines: {node: '>= 6'}
- dev: false
/commander/7.2.0:
resolution: {integrity: sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==}
@@ -3675,7 +5206,7 @@ packages:
dev: false
/commondir/1.0.1:
- resolution: {integrity: sha1-3dgA2gxmEnOTzKWVDqloo6rxJTs=}
+ resolution: {integrity: sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==}
dev: false
/compressible/2.0.18:
@@ -3696,10 +5227,12 @@ packages:
on-headers: 1.0.2
safe-buffer: 5.1.2
vary: 1.1.2
+ transitivePeerDependencies:
+ - supports-color
dev: false
/concat-map/0.0.1:
- resolution: {integrity: sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=}
+ resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==}
dev: false
/configstore/5.0.1:
@@ -3714,8 +5247,8 @@ packages:
xdg-basedir: 4.0.0
dev: false
- /connect-history-api-fallback/1.6.0:
- resolution: {integrity: sha512-e54B99q/OUoH64zYYRf3HBP5z24G38h5D3qXu23JGRoigpX5Ss4r9ZnDk3g0Z8uQC2x2lPaJ+UlWBc1ZWBWdLg==}
+ /connect-history-api-fallback/2.0.0:
+ resolution: {integrity: sha512-U73+6lQFmfiNPrYbXqr6kZ1i1wiRqXnp2nhMsINseWXO8lDau0LGEffJ8kQi4EjLZympVgRdvqjAgiZ1tgzDDA==}
engines: {node: '>=0.8'}
dev: false
@@ -3724,7 +5257,7 @@ packages:
dev: false
/content-disposition/0.5.2:
- resolution: {integrity: sha1-DPaLud318r55YcOoUXjLhdunjLQ=}
+ resolution: {integrity: sha512-kRGRZw3bLlFISDBgwTSA1TMBFN6J6GWDeubmDE3AF+3+yXL8hTWv8r5rkLbqYXY4RjPk/EzHnClI3zQf1cFmHA==}
engines: {node: '>= 0.6'}
dev: false
@@ -3747,7 +5280,7 @@ packages:
dev: false
/cookie-signature/1.0.6:
- resolution: {integrity: sha1-4wOogrNCzD7oylE6eZmXNNqzriw=}
+ resolution: {integrity: sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==}
dev: false
/cookie/0.4.2:
@@ -3760,19 +5293,19 @@ packages:
engines: {node: '>=12'}
dev: false
- /copy-webpack-plugin/10.2.4_webpack@5.69.1:
- resolution: {integrity: sha512-xFVltahqlsRcyyJqQbDY6EYTtyQZF9rf+JPjwHObLdPFMEISqkFkr7mFoVOC6BfYS/dNThyoQKvziugm+OnwBg==}
- engines: {node: '>= 12.20.0'}
+ /copy-webpack-plugin/11.0.0_webpack@5.74.0:
+ resolution: {integrity: sha512-fX2MWpamkW0hZxMEg0+mYnA40LTosOSa5TqZ9GYIBzyJa9C3QUaMPSE2xAi/buNr8u89SfD9wHSQVBzrRa/SOQ==}
+ engines: {node: '>= 14.15.0'}
peerDependencies:
webpack: ^5.1.0
dependencies:
fast-glob: 3.2.11
glob-parent: 6.0.2
- globby: 12.2.0
+ globby: 13.1.2
normalize-path: 3.0.0
schema-utils: 4.0.0
serialize-javascript: 6.0.0
- webpack: 5.69.1
+ webpack: 5.74.0
dev: false
/core-js-compat/3.21.1:
@@ -3782,13 +5315,19 @@ packages:
semver: 7.0.0
dev: false
- /core-js-pure/3.21.1:
- resolution: {integrity: sha512-12VZfFIu+wyVbBebyHmRTuEE/tZrB4tJToWcwAMcsp3h4+sHR+fMJWbKpYiCRWlhFBq+KNyO8rIV9rTkeVmznQ==}
+ /core-js-compat/3.25.3:
+ resolution: {integrity: sha512-xVtYpJQ5grszDHEUU9O7XbjjcZ0ccX3LgQsyqSvTnjX97ZqEgn9F5srmrwwwMtbKzDllyFPL+O+2OFMl1lU4TQ==}
+ dependencies:
+ browserslist: 4.21.4
+ dev: false
+
+ /core-js-pure/3.25.3:
+ resolution: {integrity: sha512-T/7qvgv70MEvRkZ8p6BasLZmOVYKzOaWNBEHAU8FmveCJkl4nko2quqPQOmy6AJIp5MBanhz9no3A94NoRb0XA==}
requiresBuild: true
dev: false
- /core-js/3.21.1:
- resolution: {integrity: sha512-FRq5b/VMrWlrmCzwRrpDYNxyHP9BcAZC+xHJaqTgIE5091ZV1NTmyh0sGOg5XqpnHvR0svdy0sv1gWA1zmhxig==}
+ /core-js/3.25.3:
+ resolution: {integrity: sha512-y1hvKXmPHvm5B7w4ln1S4uc9eV/O5+iFExSRUimnvIph11uaizFR8LFMdONN8hG3P2pipUfX4Y/fR8rAEtcHcQ==}
requiresBuild: true
dev: false
@@ -3826,17 +5365,6 @@ packages:
- encoding
dev: false
- /cross-spawn/6.0.5:
- resolution: {integrity: sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==}
- engines: {node: '>=4.8'}
- dependencies:
- nice-try: 1.0.5
- path-key: 2.0.1
- semver: 5.7.1
- shebang-command: 1.2.0
- which: 1.3.1
- dev: false
-
/cross-spawn/7.0.3:
resolution: {integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==}
engines: {node: '>= 8'}
@@ -3851,41 +5379,41 @@ packages:
engines: {node: '>=8'}
dev: false
- /css-declaration-sorter/6.1.4_postcss@8.4.7:
- resolution: {integrity: sha512-lpfkqS0fctcmZotJGhnxkIyJWvBXgpyi2wsFd4J8VB7wzyrT6Ch/3Q+FMNJpjK4gu1+GN5khOnpU2ZVKrLbhCw==}
- engines: {node: '>= 10'}
+ /css-declaration-sorter/6.3.1_postcss@8.4.16:
+ resolution: {integrity: sha512-fBffmak0bPAnyqc/HO8C3n2sHrp9wcqQz6ES9koRF2/mLOVAx9zIQ3Y7R29sYCteTPqMCwns4WYQoCX91Xl3+w==}
+ engines: {node: ^10 || ^12 || >=14}
peerDependencies:
postcss: ^8.0.9
dependencies:
- postcss: 8.4.7
- timsort: 0.3.0
+ postcss: 8.4.16
dev: false
- /css-loader/6.6.0_webpack@5.69.1:
- resolution: {integrity: sha512-FK7H2lisOixPT406s5gZM1S3l8GrfhEBT3ZiL2UX1Ng1XWs0y2GPllz/OTyvbaHe12VgQrIXIzuEGVlbUhodqg==}
+ /css-loader/6.7.1_webpack@5.74.0:
+ resolution: {integrity: sha512-yB5CNFa14MbPJcomwNh3wLThtkZgcNyI2bNMRt8iE5Z8Vwl7f8vQXFAzn2HDOJvtDq2NTZBUGMSUNNyrv3/+cw==}
engines: {node: '>= 12.13.0'}
peerDependencies:
webpack: ^5.0.0
dependencies:
- icss-utils: 5.1.0_postcss@8.4.7
- postcss: 8.4.7
- postcss-modules-extract-imports: 3.0.0_postcss@8.4.7
- postcss-modules-local-by-default: 4.0.0_postcss@8.4.7
- postcss-modules-scope: 3.0.0_postcss@8.4.7
- postcss-modules-values: 4.0.0_postcss@8.4.7
+ icss-utils: 5.1.0_postcss@8.4.16
+ postcss: 8.4.16
+ postcss-modules-extract-imports: 3.0.0_postcss@8.4.16
+ postcss-modules-local-by-default: 4.0.0_postcss@8.4.16
+ postcss-modules-scope: 3.0.0_postcss@8.4.16
+ postcss-modules-values: 4.0.0_postcss@8.4.16
postcss-value-parser: 4.2.0
- semver: 7.3.5
- webpack: 5.69.1
+ semver: 7.3.7
+ webpack: 5.74.0
dev: false
- /css-minimizer-webpack-plugin/3.4.1_clean-css@5.2.4+webpack@5.69.1:
- resolution: {integrity: sha512-1u6D71zeIfgngN2XNRJefc/hY7Ybsxd74Jm4qngIXyUEk7fss3VUzuHxLAq/R8NAba4QU9OUSaMZlbpRc7bM4Q==}
- engines: {node: '>= 12.13.0'}
+ /css-minimizer-webpack-plugin/4.1.0_kwz7aenajwsweas6icw5ncsgdy:
+ resolution: {integrity: sha512-Zd+yz4nta4GXi3pMqF6skO8kjzuCUbr62z8SLMGZZtxWxTGTLopOiabPGNDEyjHCRhnhdA1EfHmqLa2Oekjtng==}
+ engines: {node: '>= 14.15.0'}
peerDependencies:
'@parcel/css': '*'
clean-css: '*'
csso: '*'
esbuild: '*'
+ lightningcss: '*'
webpack: ^5.0.0
peerDependenciesMeta:
'@parcel/css':
@@ -3896,30 +5424,23 @@ packages:
optional: true
esbuild:
optional: true
+ lightningcss:
+ optional: true
dependencies:
- clean-css: 5.2.4
- cssnano: 5.0.17_postcss@8.4.7
+ clean-css: 5.3.1
+ cssnano: 5.1.13_postcss@8.4.16
jest-worker: 27.5.1
- postcss: 8.4.7
+ postcss: 8.4.16
schema-utils: 4.0.0
serialize-javascript: 6.0.0
source-map: 0.6.1
- webpack: 5.69.1
+ webpack: 5.74.0
dev: false
/css-select-base-adapter/0.1.1:
resolution: {integrity: sha512-jQVeeRG70QI08vSTwf1jHxp74JoZsr2XSgETae8/xC8ovSnL2WF87GTLO86Sbwdt2lK4Umg4HnnwMO4YF3Ce7w==}
dev: false
- /css-select/1.2.0:
- resolution: {integrity: sha1-KzoRBTnFNV8c2NMUYj6HCxIeyFg=}
- dependencies:
- boolbase: 1.0.0
- css-what: 2.1.3
- domutils: 1.5.1
- nth-check: 1.0.2
- dev: false
-
/css-select/2.1.0:
resolution: {integrity: sha512-Dqk7LQKpwLoH3VovzZnkzegqNSuAziQyNZUcrdDM401iY+R5NkGBXGmtO05/yaXQziALuPogeG0b7UAgjnTJTQ==}
dependencies:
@@ -3939,6 +5460,16 @@ packages:
nth-check: 2.0.1
dev: false
+ /css-select/5.1.0:
+ resolution: {integrity: sha512-nwoRF1rvRRnnCqqY7updORDsuqKzqYJ28+oSMaJMMgOauh3fvwHqMS7EZpIPqK8GL+g9mKxF1vP/ZjSeNjEVHg==}
+ dependencies:
+ boolbase: 1.0.0
+ css-what: 6.1.0
+ domhandler: 5.0.3
+ domutils: 3.0.1
+ nth-check: 2.0.1
+ dev: false
+
/css-tree/1.0.0-alpha.37:
resolution: {integrity: sha512-DMxWJg0rnz7UgxKT0Q1HU/L9BeJI0M6ksor0OgqOnF+aRCDWg/N2641HmVyU9KVIu0OVVWOb2IpC9A+BJRnejg==}
engines: {node: '>=8.0.0'}
@@ -3955,10 +5486,6 @@ packages:
source-map: 0.6.1
dev: false
- /css-what/2.1.3:
- resolution: {integrity: sha512-a+EPoD+uZiNfh+5fxw2nO9QwFa6nJe2Or35fGY6Ipw1R3R4AGz1d1TEZrCegvw2YTmZ0jXirGYlzxxpYSHwpEg==}
- dev: false
-
/css-what/3.4.2:
resolution: {integrity: sha512-ACUm3L0/jiZTqfzRM3Hi9Q8eZqd6IK37mMWPLz9PJxkLWllYeRf+EHUSHYEtFop2Eqytaq1FizFVh7XfBnXCDQ==}
engines: {node: '>= 6'}
@@ -3969,83 +5496,88 @@ packages:
engines: {node: '>= 6'}
dev: false
+ /css-what/6.1.0:
+ resolution: {integrity: sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==}
+ engines: {node: '>= 6'}
+ dev: false
+
/cssesc/3.0.0:
resolution: {integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==}
engines: {node: '>=4'}
hasBin: true
dev: false
- /cssnano-preset-advanced/5.1.12_postcss@8.4.7:
- resolution: {integrity: sha512-5WWV9mbqVNwH4nRjs5UbhNl7eKo+16eYNzGogmz0Sa6iqWUeLdN8oo83WuTTqz5vjEKhTbRM5oX6WV1i6ees6g==}
+ /cssnano-preset-advanced/5.3.8_postcss@8.4.16:
+ resolution: {integrity: sha512-xUlLLnEB1LjpEik+zgRNlk8Y/koBPPtONZjp7JKbXigeAmCrFvq9H0pXW5jJV45bQWAlmJ0sKy+IMr0XxLYQZg==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- autoprefixer: 10.4.2_postcss@8.4.7
- cssnano-preset-default: 5.1.12_postcss@8.4.7
- postcss: 8.4.7
- postcss-discard-unused: 5.0.3_postcss@8.4.7
- postcss-merge-idents: 5.0.3_postcss@8.4.7
- postcss-reduce-idents: 5.0.3_postcss@8.4.7
- postcss-zindex: 5.0.2_postcss@8.4.7
+ autoprefixer: 10.4.12_postcss@8.4.16
+ cssnano-preset-default: 5.2.12_postcss@8.4.16
+ postcss: 8.4.16
+ postcss-discard-unused: 5.1.0_postcss@8.4.16
+ postcss-merge-idents: 5.1.1_postcss@8.4.16
+ postcss-reduce-idents: 5.2.0_postcss@8.4.16
+ postcss-zindex: 5.1.0_postcss@8.4.16
dev: false
- /cssnano-preset-default/5.1.12_postcss@8.4.7:
- resolution: {integrity: sha512-rO/JZYyjW1QNkWBxMGV28DW7d98UDLaF759frhli58QFehZ+D/LSmwQ2z/ylBAe2hUlsIWTq6NYGfQPq65EF9w==}
+ /cssnano-preset-default/5.2.12_postcss@8.4.16:
+ resolution: {integrity: sha512-OyCBTZi+PXgylz9HAA5kHyoYhfGcYdwFmyaJzWnzxuGRtnMw/kR6ilW9XzlzlRAtB6PLT/r+prYgkef7hngFew==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- css-declaration-sorter: 6.1.4_postcss@8.4.7
- cssnano-utils: 3.0.2_postcss@8.4.7
- postcss: 8.4.7
- postcss-calc: 8.2.4_postcss@8.4.7
- postcss-colormin: 5.2.5_postcss@8.4.7
- postcss-convert-values: 5.0.4_postcss@8.4.7
- postcss-discard-comments: 5.0.3_postcss@8.4.7
- postcss-discard-duplicates: 5.0.3_postcss@8.4.7
- postcss-discard-empty: 5.0.3_postcss@8.4.7
- postcss-discard-overridden: 5.0.4_postcss@8.4.7
- postcss-merge-longhand: 5.0.6_postcss@8.4.7
- postcss-merge-rules: 5.0.6_postcss@8.4.7
- postcss-minify-font-values: 5.0.4_postcss@8.4.7
- postcss-minify-gradients: 5.0.6_postcss@8.4.7
- postcss-minify-params: 5.0.5_postcss@8.4.7
- postcss-minify-selectors: 5.1.3_postcss@8.4.7
- postcss-normalize-charset: 5.0.3_postcss@8.4.7
- postcss-normalize-display-values: 5.0.3_postcss@8.4.7
- postcss-normalize-positions: 5.0.4_postcss@8.4.7
- postcss-normalize-repeat-style: 5.0.4_postcss@8.4.7
- postcss-normalize-string: 5.0.4_postcss@8.4.7
- postcss-normalize-timing-functions: 5.0.3_postcss@8.4.7
- postcss-normalize-unicode: 5.0.4_postcss@8.4.7
- postcss-normalize-url: 5.0.5_postcss@8.4.7
- postcss-normalize-whitespace: 5.0.4_postcss@8.4.7
- postcss-ordered-values: 5.0.5_postcss@8.4.7
- postcss-reduce-initial: 5.0.3_postcss@8.4.7
- postcss-reduce-transforms: 5.0.4_postcss@8.4.7
- postcss-svgo: 5.0.4_postcss@8.4.7
- postcss-unique-selectors: 5.0.4_postcss@8.4.7
- dev: false
-
- /cssnano-utils/3.0.2_postcss@8.4.7:
- resolution: {integrity: sha512-KhprijuQv2sP4kT92sSQwhlK3SJTbDIsxcfIEySB0O+3m9esFOai7dP9bMx5enHAh2MwarVIcnwiWoOm01RIbQ==}
+ css-declaration-sorter: 6.3.1_postcss@8.4.16
+ cssnano-utils: 3.1.0_postcss@8.4.16
+ postcss: 8.4.16
+ postcss-calc: 8.2.4_postcss@8.4.16
+ postcss-colormin: 5.3.0_postcss@8.4.16
+ postcss-convert-values: 5.1.2_postcss@8.4.16
+ postcss-discard-comments: 5.1.2_postcss@8.4.16
+ postcss-discard-duplicates: 5.1.0_postcss@8.4.16
+ postcss-discard-empty: 5.1.1_postcss@8.4.16
+ postcss-discard-overridden: 5.1.0_postcss@8.4.16
+ postcss-merge-longhand: 5.1.6_postcss@8.4.16
+ postcss-merge-rules: 5.1.2_postcss@8.4.16
+ postcss-minify-font-values: 5.1.0_postcss@8.4.16
+ postcss-minify-gradients: 5.1.1_postcss@8.4.16
+ postcss-minify-params: 5.1.3_postcss@8.4.16
+ postcss-minify-selectors: 5.2.1_postcss@8.4.16
+ postcss-normalize-charset: 5.1.0_postcss@8.4.16
+ postcss-normalize-display-values: 5.1.0_postcss@8.4.16
+ postcss-normalize-positions: 5.1.1_postcss@8.4.16
+ postcss-normalize-repeat-style: 5.1.1_postcss@8.4.16
+ postcss-normalize-string: 5.1.0_postcss@8.4.16
+ postcss-normalize-timing-functions: 5.1.0_postcss@8.4.16
+ postcss-normalize-unicode: 5.1.0_postcss@8.4.16
+ postcss-normalize-url: 5.1.0_postcss@8.4.16
+ postcss-normalize-whitespace: 5.1.1_postcss@8.4.16
+ postcss-ordered-values: 5.1.3_postcss@8.4.16
+ postcss-reduce-initial: 5.1.0_postcss@8.4.16
+ postcss-reduce-transforms: 5.1.0_postcss@8.4.16
+ postcss-svgo: 5.1.0_postcss@8.4.16
+ postcss-unique-selectors: 5.1.1_postcss@8.4.16
+ dev: false
+
+ /cssnano-utils/3.1.0_postcss@8.4.16:
+ resolution: {integrity: sha512-JQNR19/YZhz4psLX/rQ9M83e3z2Wf/HdJbryzte4a3NSuafyp9w/I4U+hx5C2S9g41qlstH7DEWnZaaj83OuEA==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- postcss: 8.4.7
+ postcss: 8.4.16
dev: false
- /cssnano/5.0.17_postcss@8.4.7:
- resolution: {integrity: sha512-fmjLP7k8kL18xSspeXTzRhaFtRI7DL9b8IcXR80JgtnWBpvAzHT7sCR/6qdn0tnxIaINUN6OEQu83wF57Gs3Xw==}
+ /cssnano/5.1.13_postcss@8.4.16:
+ resolution: {integrity: sha512-S2SL2ekdEz6w6a2epXn4CmMKU4K3KpcyXLKfAYc9UQQqJRkD/2eLUG0vJ3Db/9OvO5GuAdgXw3pFbR6abqghDQ==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- cssnano-preset-default: 5.1.12_postcss@8.4.7
+ cssnano-preset-default: 5.2.12_postcss@8.4.16
lilconfig: 2.0.4
- postcss: 8.4.7
+ postcss: 8.4.16
yaml: 1.10.2
dev: false
@@ -4058,23 +5590,6 @@ packages:
/csstype/3.0.10:
resolution: {integrity: sha512-2u44ZG2OcNUO9HDp/Jl8C07x6pU/eTR3ncV91SiK3dhG9TWvRVsCoJw14Ckx5DgWkzGA3waZWO3d7pgqpUI/XA==}
- dev: false
-
- /cypress-image-snapshot/4.0.1:
- resolution: {integrity: sha512-PBpnhX/XItlx3/DAk5ozsXQHUi72exybBNH5Mpqj1DVmjq+S5Jd9WE5CRa4q5q0zuMZb2V2VpXHth6MjFpgj9Q==}
- engines: {node: '>=8'}
- peerDependencies:
- cypress: ^4.5.0
- dependencies:
- chalk: 2.4.2
- fs-extra: 7.0.1
- glob: 7.2.0
- jest-image-snapshot: 4.2.0
- pkg-dir: 3.0.0
- term-img: 4.1.0
- transitivePeerDependencies:
- - jest
- dev: false
/d3-array/1.2.4:
resolution: {integrity: sha512-KHW6M86R+FUPYGb3R5XiYjXPq7VzwxZ22buHhAEVG5ztoEcZZMLov530mmccaqA1GghZArjQV46fuc8kUqhhHw==}
@@ -4559,16 +6074,15 @@ packages:
/debug/2.6.9:
resolution: {integrity: sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==}
+ peerDependencies:
+ supports-color: '*'
+ peerDependenciesMeta:
+ supports-color:
+ optional: true
dependencies:
ms: 2.0.0
dev: false
- /debug/3.2.7:
- resolution: {integrity: sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==}
- dependencies:
- ms: 2.1.3
- dev: false
-
/debug/4.3.3:
resolution: {integrity: sha512-/zxw5+vh1Tfv+4Qn7a5nsbcJKPaSvCDhojn6FEl9vupwK2VCSDtEiEtqr8DFtzYFOdz63LBkxec7DYuc2jon6Q==}
engines: {node: '>=6.0'}
@@ -4582,23 +6096,12 @@ packages:
dev: false
/decompress-response/3.3.0:
- resolution: {integrity: sha1-gKTdMjdIOEv6JICDYirt7Jgq3/M=}
+ resolution: {integrity: sha512-BzRPQuY1ip+qDonAOz42gRm/pg9F768C+npV/4JOsxRC2sq+Rlk+Q4ZCAsOhnIaMrgarILY+RMUIvMmmX1qAEA==}
engines: {node: '>=4'}
dependencies:
mimic-response: 1.0.1
dev: false
- /deep-equal/1.1.1:
- resolution: {integrity: sha512-yd9c5AdiqVcR+JjcwUQb9DkhJc8ngNr0MahEBGvDiJw8puWab2yZlh+nkasOnZP+EGTAP6rRp2JzJhJZzvNF8g==}
- dependencies:
- is-arguments: 1.1.1
- is-date-object: 1.0.5
- is-regex: 1.1.4
- object-is: 1.1.5
- object-keys: 1.1.1
- regexp.prototype.flags: 1.4.1
- dev: false
-
/deep-extend/0.6.0:
resolution: {integrity: sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==}
engines: {node: '>=4.0.0'}
@@ -4632,8 +6135,8 @@ packages:
object-keys: 1.1.1
dev: false
- /del/6.0.0:
- resolution: {integrity: sha512-1shh9DQ23L16oXSZKB2JxpL7iMy2E0S9d517ptA1P8iw0alkPtQcrKH7ru31rYtKwF499HkTu+DRzq3TCKDFRQ==}
+ /del/6.1.1:
+ resolution: {integrity: sha512-ua8BhapfP0JUJKC/zV9yHHDW/rDoDxP4Zhn3AkA6/xT6gY7jYXJiaeyBZznYVujhZZET+UgcbZiQ7sN3WqcImg==}
engines: {node: '>=10'}
dependencies:
globby: 11.1.0
@@ -4653,12 +6156,12 @@ packages:
dev: false
/depd/1.1.2:
- resolution: {integrity: sha1-m81S4UwJd2PnSbJ0xDRu0uVgtak=}
+ resolution: {integrity: sha512-7emPTl6Dpo6JRXOXjLRxck+FlLRX5847cLKEn00PLAgc3g2hTZZgr+e4c2v6QpSmLeFP3n5yUo7ft6avBK/5jQ==}
engines: {node: '>= 0.6'}
dev: false
/destroy/1.0.4:
- resolution: {integrity: sha1-l4hXRCxEdJ5CBmE+N5RiBYJqvYA=}
+ resolution: {integrity: sha512-3NdhDuEXnfun/z7x9GOElY49LoqVHoGScmOKwmxhsS8N5Y+Z8KyPPDnaSzqWgYt/ji4mqwfTS34Htrk0zPIXVg==}
dev: false
/detab/2.0.4:
@@ -4678,6 +6181,8 @@ packages:
dependencies:
address: 1.1.2
debug: 2.6.9
+ transitivePeerDependencies:
+ - supports-color
dev: false
/detect-port/1.3.0:
@@ -4687,6 +6192,8 @@ packages:
dependencies:
address: 1.1.2
debug: 2.6.9
+ transitivePeerDependencies:
+ - supports-color
dev: false
/dir-glob/3.0.1:
@@ -4696,20 +6203,14 @@ packages:
path-type: 4.0.0
/dns-equal/1.0.0:
- resolution: {integrity: sha1-s55/HabrCnW6nBcySzR1PEfgZU0=}
- dev: false
-
- /dns-packet/1.3.4:
- resolution: {integrity: sha512-BQ6F4vycLXBvdrJZ6S3gZewt6rcrks9KBgM9vrhW+knGRqc8uEdT7fuCwloc7nny5xNoMJ17HGH0R/6fpo8ECA==}
- dependencies:
- ip: 1.1.5
- safe-buffer: 5.2.1
+ resolution: {integrity: sha512-z+paD6YUQsk+AbGCEM4PrOXSss5gd66QfcVBFTKR/HpFL9jCqikS94HYwKww6fQyO7IxrIIyUu+g0Ka9tUS2Cg==}
dev: false
- /dns-txt/2.0.2:
- resolution: {integrity: sha1-uR2Ab10nGI5Ks+fRB9iBocxGQrY=}
+ /dns-packet/5.4.0:
+ resolution: {integrity: sha512-EgqGeaBB8hLiHLZtp/IbaDQTL8pZ0+IvwzSHA6d7VyMDM+B9hgddEMa9xjK5oYnw0ci0JQ6g2XCD7/f6cafU6g==}
+ engines: {node: '>=6'}
dependencies:
- buffer-indexof: 1.1.1
+ '@leichtgewicht/ip-codec': 2.0.4
dev: false
/dom-converter/0.2.0:
@@ -4718,13 +6219,6 @@ packages:
utila: 0.4.0
dev: false
- /dom-serializer/0.1.1:
- resolution: {integrity: sha512-l0IU0pPzLWSHBcieZbpOKgkIn3ts3vAh7ZuFyXNwJxJXk/c4Gwj9xaTJwIDVQCXawWD0qb3IzMGH5rglQaO0XA==}
- dependencies:
- domelementtype: 1.3.1
- entities: 1.1.2
- dev: false
-
/dom-serializer/0.2.2:
resolution: {integrity: sha512-2/xPb3ORsQ42nHYiSunXkDjPLBaEj/xTwUO4B7XCZQTRk7EBtTOPaygh10YAAh2OI1Qrp6NWfpAhzswj0ydt9g==}
dependencies:
@@ -4735,11 +6229,19 @@ packages:
/dom-serializer/1.3.2:
resolution: {integrity: sha512-5c54Bk5Dw4qAxNOI1pFEizPSjVsx5+bpJKmL2kPn8JhBUq2q09tTCa3mjijun2NfK78NMouDYNMBkOrPZiS+ig==}
dependencies:
- domelementtype: 2.2.0
+ domelementtype: 2.3.0
domhandler: 4.3.0
entities: 2.2.0
dev: false
+ /dom-serializer/2.0.0:
+ resolution: {integrity: sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg==}
+ dependencies:
+ domelementtype: 2.3.0
+ domhandler: 5.0.3
+ entities: 4.4.0
+ dev: false
+
/domelementtype/1.3.1:
resolution: {integrity: sha512-BSKB+TSpMpFI/HOxCNr1O8aMOTZ8hT3pM3GQ0w/mWRmkhEDSFJkkyzz4XQsBV44BChwGkrDfMyjVD0eA2aFV3w==}
dev: false
@@ -4748,28 +6250,26 @@ packages:
resolution: {integrity: sha512-DtBMo82pv1dFtUmHyr48beiuq792Sxohr+8Hm9zoxklYPfa6n0Z3Byjj2IV7bmr2IyqClnqEQhfgHJJ5QF0R5A==}
dev: false
- /domhandler/2.4.2:
- resolution: {integrity: sha512-JiK04h0Ht5u/80fdLMCEmV4zkNh2BcoMFBmZ/91WtYZ8qVXSKjiw7fXMgFPnHcSZgOo3XdinHvmnDUeMf5R4wA==}
- dependencies:
- domelementtype: 1.3.1
+ /domelementtype/2.3.0:
+ resolution: {integrity: sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==}
dev: false
/domhandler/4.3.0:
resolution: {integrity: sha512-fC0aXNQXqKSFTr2wDNZDhsEYjCiYsDWl3D01kwt25hm1YIPyDGHvvi3rw+PLqHAl/m71MaiF7d5zvBr0p5UB2g==}
engines: {node: '>= 4'}
dependencies:
- domelementtype: 2.2.0
+ domelementtype: 2.3.0
dev: false
- /dompurify/2.3.6:
- resolution: {integrity: sha512-OFP2u/3T1R5CEgWCEONuJ1a5+MFKnOYpkywpUSxv/dj1LeBT1erK+JwM7zK0ROy2BRhqVCf0LRw/kHqKuMkVGg==}
+ /domhandler/5.0.3:
+ resolution: {integrity: sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w==}
+ engines: {node: '>= 4'}
+ dependencies:
+ domelementtype: 2.3.0
dev: false
- /domutils/1.5.1:
- resolution: {integrity: sha1-3NhIiib1Y9YQeeSMn3t+Mjc2gs8=}
- dependencies:
- dom-serializer: 0.2.2
- domelementtype: 1.3.1
+ /dompurify/2.4.0:
+ resolution: {integrity: sha512-Be9tbQMZds4a3C6xTmz68NlMfeONA//4dOavl/1rNw50E+/QO0KVpbcU0PcaW0nsQxurXls9ZocqFxk8R2mWEA==}
dev: false
/domutils/1.7.0:
@@ -4783,15 +6283,23 @@ packages:
resolution: {integrity: sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==}
dependencies:
dom-serializer: 1.3.2
- domelementtype: 2.2.0
+ domelementtype: 2.3.0
domhandler: 4.3.0
dev: false
+ /domutils/3.0.1:
+ resolution: {integrity: sha512-z08c1l761iKhDFtfXO04C7kTdPBLi41zwOZl00WS8b5eiaebNpY00HKbztwBq+e3vyqWNwWF3mP9YLUeqIrF+Q==}
+ dependencies:
+ dom-serializer: 2.0.0
+ domelementtype: 2.3.0
+ domhandler: 5.0.3
+ dev: false
+
/dot-case/3.0.4:
resolution: {integrity: sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==}
dependencies:
no-case: 3.0.4
- tslib: 2.3.1
+ tslib: 2.4.0
dev: false
/dot-prop/5.3.0:
@@ -4806,7 +6314,7 @@ packages:
dev: false
/duplexer3/0.1.4:
- resolution: {integrity: sha1-7gHdHKwO08vH/b6jfcCo8c4ALOI=}
+ resolution: {integrity: sha512-CEj8FwwNA4cVH2uFCoHUrmojhYh1vmCdOaneKJXwkeY1i9jnlslVo9dx+hQ5Hl9GnH/Bwy/IjxAyOePyPKYnzA==}
dev: false
/eastasianwidth/0.2.0:
@@ -4814,9 +6322,12 @@ packages:
dev: false
/ee-first/1.1.1:
- resolution: {integrity: sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0=}
+ resolution: {integrity: sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==}
dev: false
+ /electron-to-chromium/1.4.266:
+ resolution: {integrity: sha512-saJTYECxUSv7eSpnXw0XIEvUkP9x4s/x2mm3TVX7k4rIFS6f5TjBih1B5h437WzIhHQjid+d8ouQzPQskMervQ==}
+
/electron-to-chromium/1.4.73:
resolution: {integrity: sha512-RlCffXkE/LliqfA5m29+dVDPB2r72y2D2egMMfIy3Le8ODrxjuZNVo4NIC2yPL01N4xb4nZQLwzi6Z5tGIGLnA==}
dev: false
@@ -4839,7 +6350,7 @@ packages:
dev: false
/encodeurl/1.0.2:
- resolution: {integrity: sha1-rT/0yG7C0CkyL1oCw6mmBslbP1k=}
+ resolution: {integrity: sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==}
engines: {node: '>= 0.8'}
dev: false
@@ -4849,17 +6360,12 @@ packages:
once: 1.4.0
dev: false
- /enhanced-resolve/5.9.1:
- resolution: {integrity: sha512-jdyZMwCQ5Oj4c5+BTnkxPgDZO/BJzh/ADDmKebayyzNwjVX1AFCeGkOfxNx0mHi2+8BKC5VxUYiw3TIvoT7vhw==}
+ /enhanced-resolve/5.10.0:
+ resolution: {integrity: sha512-T0yTFjdpldGY8PmuXXR0PyQ1ufZpEGiHVrp7zHKB7jdR4qlmZHhONVM5AQOAWXuF/w3dnHbEQVrNptJgt7F+cQ==}
engines: {node: '>=10.13.0'}
dependencies:
graceful-fs: 4.2.9
tapable: 2.2.1
- dev: false
-
- /entities/1.1.2:
- resolution: {integrity: sha512-f2LZMYl1Fzu7YSBKg+RoROelpOaNrcGmE9AZubeDfrCEia483oW4MI4VyFd5VNHIgQ/7qm1I0wUHK1eJnn2y2w==}
- dev: false
/entities/2.1.0:
resolution: {integrity: sha512-hCx1oky9PFrJ611mf0ifBLBRW8lUUVRlFolb5gWRfIELabBlbp9xZvrqZLZAs+NxFnbfQoeGd8wDkygjg7U85w==}
@@ -4874,6 +6380,11 @@ packages:
engines: {node: '>=0.12'}
dev: false
+ /entities/4.4.0:
+ resolution: {integrity: sha512-oYp7156SP8LkeGD0GF85ad1X9Ai79WtRsZ2gxJqtBuzH+98YUV6jkHEKlZkMbcrjJjIVJNIDP/3WL9wQkoPbWA==}
+ engines: {node: '>=0.12'}
+ dev: false
+
/error-ex/1.3.2:
resolution: {integrity: sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==}
dependencies:
@@ -4908,7 +6419,6 @@ packages:
/es-module-lexer/0.9.3:
resolution: {integrity: sha512-1HQ2M2sPtxwnvOvT1ZClHyQDiggdNjURWpY2we6aMKCQiUVxTmVs2UYPLIrD84sS+kMdUwfBSylbJPwNnBrnHQ==}
- dev: false
/es-to-primitive/1.2.1:
resolution: {integrity: sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==}
@@ -4922,7 +6432,6 @@ packages:
/escalade/3.1.1:
resolution: {integrity: sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==}
engines: {node: '>=6'}
- dev: false
/escape-goat/2.1.1:
resolution: {integrity: sha512-8/uIhbG12Csjy2JEW7D9pHbreaVaS/OpN3ycnyvElTdwM5n6GY6W6e2IPemfvGZeUMqZ9A/3GqIZMgKnBhAw/Q==}
@@ -4930,7 +6439,7 @@ packages:
dev: false
/escape-html/1.0.3:
- resolution: {integrity: sha1-Aljq5NPQwJdN4cFpGI7wBR0dGYg=}
+ resolution: {integrity: sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==}
dev: false
/escape-string-regexp/1.0.5:
@@ -4949,7 +6458,6 @@ packages:
dependencies:
esrecurse: 4.3.0
estraverse: 4.3.0
- dev: false
/esprima/4.0.1:
resolution: {integrity: sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==}
@@ -4962,17 +6470,14 @@ packages:
engines: {node: '>=4.0'}
dependencies:
estraverse: 5.3.0
- dev: false
/estraverse/4.3.0:
resolution: {integrity: sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==}
engines: {node: '>=4.0'}
- dev: false
/estraverse/5.3.0:
resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==}
engines: {node: '>=4.0'}
- dev: false
/esutils/2.0.3:
resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==}
@@ -4985,14 +6490,15 @@ packages:
dev: false
/etag/1.8.1:
- resolution: {integrity: sha1-Qa4u62XvpiJorr/qg6x9eSmbCIc=}
+ resolution: {integrity: sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==}
engines: {node: '>= 0.6'}
dev: false
- /eval/0.1.6:
- resolution: {integrity: sha512-o0XUw+5OGkXw4pJZzQoXUk+H87DHuC+7ZE//oSrRGtatTmr12oTnLfg6QOq9DyTt0c/p4TwzgmkKrBzWTSizyQ==}
+ /eval/0.1.8:
+ resolution: {integrity: sha512-EzV94NYKoO09GLXGjXj9JIlXijVck4ONSr5wiCWDvhsvj5jxSrzTmRU/9C1DyB6uToszLs8aifA6NQ7lEQdvFw==}
engines: {node: '>= 0.8'}
dependencies:
+ '@types/node': 17.0.21
require-like: 0.1.2
dev: false
@@ -5003,20 +6509,6 @@ packages:
/events/3.3.0:
resolution: {integrity: sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==}
engines: {node: '>=0.8.x'}
- dev: false
-
- /execa/1.0.0:
- resolution: {integrity: sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA==}
- engines: {node: '>=6'}
- dependencies:
- cross-spawn: 6.0.5
- get-stream: 4.1.0
- is-stream: 1.1.0
- npm-run-path: 2.0.2
- p-finally: 1.0.0
- signal-exit: 3.0.7
- strip-eof: 1.0.0
- dev: false
/execa/5.1.1:
resolution: {integrity: sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==}
@@ -5067,10 +6559,12 @@ packages:
type-is: 1.6.18
utils-merge: 1.0.1
vary: 1.1.2
+ transitivePeerDependencies:
+ - supports-color
dev: false
/extend-shallow/2.0.1:
- resolution: {integrity: sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=}
+ resolution: {integrity: sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==}
engines: {node: '>=0.10.0'}
dependencies:
is-extendable: 0.1.1
@@ -5082,7 +6576,6 @@ packages:
/fast-deep-equal/3.1.3:
resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==}
- dev: false
/fast-glob/3.2.11:
resolution: {integrity: sha512-xrO3+1bxSo3ZVHAnqzyuewYT6aMFHRAd4Kcs92MAonjwQZLsK9d0SF1IyQ3k5PoirxTW0Oe/RqFgMQ6TcNE5Ew==}
@@ -5096,10 +6589,9 @@ packages:
/fast-json-stable-stringify/2.1.0:
resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==}
- dev: false
/fast-url-parser/1.1.3:
- resolution: {integrity: sha1-9K8+qfNNiicc9YrSs3WfQx8LMY0=}
+ resolution: {integrity: sha512-5jOCVXADYNuRkKFzNJ0dCCewsZiYo0dz8QNYljkOpFC6r2U4OBmKtvm/Tsuh4w1YYdDqDb31a8TVhBJ2OJKdqQ==}
dependencies:
punycode: 1.4.1
dev: false
@@ -5159,7 +6651,7 @@ packages:
schema-utils: 3.1.1
dev: false
- /file-loader/6.2.0_webpack@5.69.1:
+ /file-loader/6.2.0_webpack@5.74.0:
resolution: {integrity: sha512-qo3glqyTa61Ytg4u73GultjHGjdRyig3tG6lPtyX/jOEJvHif9uB0/OCI2Kif6ctF3caQTW2G5gym21oAsI4pw==}
engines: {node: '>= 10.13.0'}
peerDependencies:
@@ -5167,7 +6659,7 @@ packages:
dependencies:
loader-utils: 2.0.2
schema-utils: 3.1.1
- webpack: 5.69.1
+ webpack: 5.74.0
dev: false
/filesize/8.0.7:
@@ -5192,6 +6684,8 @@ packages:
parseurl: 1.3.3
statuses: 1.5.0
unpipe: 1.0.0
+ transitivePeerDependencies:
+ - supports-color
dev: false
/find-cache-dir/3.3.2:
@@ -5248,7 +6742,7 @@ packages:
optional: true
dev: false
- /fork-ts-checker-webpack-plugin/6.5.0_webpack@5.69.1:
+ /fork-ts-checker-webpack-plugin/6.5.0_webpack@5.74.0:
resolution: {integrity: sha512-cS178Y+xxtIjEUorcHddKS7yCMlrDPV31mt47blKKRfMd70Kxu5xruAFE2o9sDY6wVC5deuob/u/alD04YYHnw==}
engines: {node: '>=10', yarn: '>=1.0.0'}
peerDependencies:
@@ -5262,7 +6756,7 @@ packages:
vue-template-compiler:
optional: true
dependencies:
- '@babel/code-frame': 7.16.7
+ '@babel/code-frame': 7.18.6
'@types/json-schema': 7.0.9
chalk: 4.1.2
chokidar: 3.5.3
@@ -5273,9 +6767,9 @@ packages:
memfs: 3.4.1
minimatch: 3.1.2
schema-utils: 2.7.0
- semver: 7.3.5
+ semver: 7.3.7
tapable: 1.1.3
- webpack: 5.69.1
+ webpack: 5.74.0
dev: false
/forwarded/0.2.0:
@@ -5283,17 +6777,17 @@ packages:
engines: {node: '>= 0.6'}
dev: false
- /fraction.js/4.1.3:
- resolution: {integrity: sha512-pUHWWt6vHzZZiQJcM6S/0PXfS+g6FM4BF5rj9wZyreivhQPdsh5PpE25VtSNxq80wHS5RfY51Ii+8Z0Zl/pmzg==}
+ /fraction.js/4.2.0:
+ resolution: {integrity: sha512-MhLuK+2gUcnZe8ZHlaaINnQLl0xRIGRfcGk2yl8xoQAfHrSsL3rYu6FCmBdkdbhc9EPlwyGHewaRsvwRMJtAlA==}
dev: false
/fresh/0.5.2:
- resolution: {integrity: sha1-PYyt2Q2XZWn6g1qx+OSyOhBWBac=}
+ resolution: {integrity: sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==}
engines: {node: '>= 0.6'}
dev: false
- /fs-extra/10.0.1:
- resolution: {integrity: sha512-NbdoVMZso2Lsrn/QwLXOy6rm0ufY2zEOKCDzJR/0kBsb0E6qed0P3iYK+Ath3BfvXEeu4JhEtXLgILx5psUfag==}
+ /fs-extra/10.1.0:
+ resolution: {integrity: sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==}
engines: {node: '>=12'}
dependencies:
graceful-fs: 4.2.9
@@ -5301,15 +6795,6 @@ packages:
universalify: 2.0.0
dev: false
- /fs-extra/7.0.1:
- resolution: {integrity: sha512-YJDaCJZEnBmcbw13fvdAM9AwNOJwOzrE4pqMqBq5nFiEqXUqHwlK4B+3pUw6JNvfSPtX05xFHtYy/1ni01eGCw==}
- engines: {node: '>=6 <7 || >=8'}
- dependencies:
- graceful-fs: 4.2.9
- jsonfile: 4.0.0
- universalify: 0.1.2
- dev: false
-
/fs-extra/9.1.0:
resolution: {integrity: sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==}
engines: {node: '>=10'}
@@ -5325,7 +6810,7 @@ packages:
dev: false
/fs.realpath/1.0.0:
- resolution: {integrity: sha1-FQStJSMVjKpA20onh8sBQRmU6k8=}
+ resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==}
dev: false
/fsevents/2.3.2:
@@ -5357,11 +6842,6 @@ packages:
resolution: {integrity: sha512-I0UBV/XOz1XkIJHEUDMZAbzCThU/H8DxmSfmdGcKPnVhu2VfFqr34jr9777IyaTYvxjedWhqVIilEDsCdP5G6g==}
dev: false
- /get-stdin/5.0.1:
- resolution: {integrity: sha1-Ei4WFZHiH/TFJTAwVpPyDmOTo5g=}
- engines: {node: '>=0.12.0'}
- dev: false
-
/get-stream/4.1.0:
resolution: {integrity: sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==}
engines: {node: '>=6'}
@@ -5408,7 +6888,6 @@ packages:
/glob-to-regexp/0.4.1:
resolution: {integrity: sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==}
- dev: false
/glob/7.2.0:
resolution: {integrity: sha512-lmLf6gtyrPq8tTjSmrO94wBeQbFR3HbLHbuyD69wuyQkImp2hWqMGB47OX65FBkPffO641IP9jWa1z4ivqG26Q==}
@@ -5473,11 +6952,10 @@ packages:
slash: 4.0.0
dev: true
- /globby/12.2.0:
- resolution: {integrity: sha512-wiSuFQLZ+urS9x2gGPl1H5drc5twabmm4m2gTR27XDFyjUHJUNsS8o/2aKyIF6IoBaR630atdher0XJ5g6OMmA==}
+ /globby/13.1.2:
+ resolution: {integrity: sha512-LKSDZXToac40u8Q1PQtZihbNdTYSNMuWe+K5l+oa6KgDzSvVrHXlJy40hUP522RjAIoNLJYBJi7ow+rbFpIhHQ==}
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
dependencies:
- array-union: 3.0.1
dir-glob: 3.0.1
fast-glob: 3.2.11
ignore: 5.2.0
@@ -5485,16 +6963,14 @@ packages:
slash: 4.0.0
dev: false
- /glur/1.1.2:
- resolution: {integrity: sha1-8g6jbbEDv8KSNDkh8fkeg8NGdok=}
- dev: false
-
/got/9.6.0:
resolution: {integrity: sha512-R7eWptXuGYxwijs0eV+v3o6+XH1IqVK8dJOEecQfTmkncw9AV4dcw/Dhxi8MdlqPthxxpZyizMzyg8RTmEsG+Q==}
engines: {node: '>=8.6'}
dependencies:
'@sindresorhus/is': 0.14.0
'@szmarczak/http-timer': 1.1.2
+ '@types/keyv': 3.1.4
+ '@types/responselike': 1.0.0
cacheable-request: 6.1.0
decompress-response: 3.3.0
duplexer3: 0.1.4
@@ -5508,7 +6984,6 @@ packages:
/graceful-fs/4.2.9:
resolution: {integrity: sha512-NtNxqUcXgpW2iMrfqSfR73Glt39K+BLwWsPs94yR63v45T0Wbej7eRmL5cWfwEgqXnmjQp3zaJTshdRW/qC2ZQ==}
- dev: false
/graphlib/2.1.8:
resolution: {integrity: sha512-jcLLfkpoVGmH7/InMC/1hIvOPSUh38oJtGhvrOFGzioE1DZ+0YW16RgmOJhHiuWTvGiJQ9Z1Ik43JvkRPRvE+A==}
@@ -5537,13 +7012,6 @@ packages:
resolution: {integrity: sha512-9Qn4yBxelxoh2Ow62nP+Ka/kMnOXRi8BXnRaUwezLNhqelnN49xKz4F/dPP8OYLxLxq6JDtZb2i9XznUQbNPTg==}
dev: false
- /has-ansi/2.0.0:
- resolution: {integrity: sha1-NPUEnOHs3ysGSa8+8k5F7TVBbZE=}
- engines: {node: '>=0.10.0'}
- dependencies:
- ansi-regex: 2.1.1
- dev: false
-
/has-bigints/1.0.1:
resolution: {integrity: sha512-LSBS2LjbNBTf6287JEbEzvJgftkF5qFkmCo9hDRpAzKhUOlJ+hx8dd4USs00SgsUNwc4617J9ki5YtEClM2ffA==}
dev: false
@@ -5556,7 +7024,6 @@ packages:
/has-flag/4.0.0:
resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==}
engines: {node: '>=8'}
- dev: false
/has-symbols/1.0.2:
resolution: {integrity: sha512-chXa79rL/UC2KlX17jo3vRGz0azaWEx5tGqZg5pO3NUyEJVB17dMruQlzCCOfUvElghKcm5194+BCRvi2Rv/Gw==}
@@ -5594,16 +7061,6 @@ packages:
web-namespaces: 1.1.4
dev: false
- /hast-util-from-parse5/5.0.3:
- resolution: {integrity: sha512-gOc8UB99F6eWVWFtM9jUikjN7QkWxB3nY0df5Z0Zq1/Nkwl5V4hAAsl0tmwlgWl/1shlTF8DnNYLO8X6wRV9pA==}
- dependencies:
- ccount: 1.1.0
- hastscript: 5.1.2
- property-information: 5.6.0
- web-namespaces: 1.1.4
- xtend: 4.0.2
- dev: false
-
/hast-util-from-parse5/6.0.1:
resolution: {integrity: sha512-jeJUWiN5pSxW12Rh01smtVkZgZr33wBokLzKLwinYOUfSzm1Nl/c3GUGebDyOKjdsRgMvoVbV0VpAcpjF4NrJA==}
dependencies:
@@ -5656,15 +7113,6 @@ packages:
unist-util-find-after: 3.0.0
dev: false
- /hastscript/5.1.2:
- resolution: {integrity: sha512-WlztFuK+Lrvi3EggsqOkQ52rKbxkXL3RwB6t5lwoa8QLMemoWfBuL43eDrwOamJyR7uKQKdmKYaBH1NZBiIRrQ==}
- dependencies:
- comma-separated-tokens: 1.0.8
- hast-util-parse-selector: 2.2.5
- property-information: 5.6.0
- space-separated-tokens: 1.1.5
- dev: false
-
/hastscript/6.0.0:
resolution: {integrity: sha512-nDM6bvd7lIqDUiYEiu5Sl/+6ReP0BMk/2f4U/Rooccxkj0P5nm+acM5PrGJ/t5I8qPGiqZSE6hVAwZEdZIvP4w==}
dependencies:
@@ -5683,7 +7131,7 @@ packages:
/history/4.10.1:
resolution: {integrity: sha512-36nwAD620w12kuzPAsyINPWJqlNbij+hpK1k9XRloDtym8mxzGYl2c17LnV6IAGB2Dmg4tEa7G7DlawS0+qjew==}
dependencies:
- '@babel/runtime': 7.17.2
+ '@babel/runtime': 7.19.0
loose-envify: 1.4.0
resolve-pathname: 3.0.0
tiny-invariant: 1.2.0
@@ -5698,7 +7146,7 @@ packages:
dev: false
/hpack.js/2.1.6:
- resolution: {integrity: sha1-h3dMCUnlE/QuhFdbPEVoH63ioLI=}
+ resolution: {integrity: sha512-zJxVehUdMGIKsRaNt7apO2Gqp0BdqW5yaiGHXXmbpvxgBYVZnAql+BJb4RO5ad2MgpbZKn5G6nMnegrH1FcNYQ==}
dependencies:
inherits: 2.0.4
obuf: 1.1.2
@@ -5716,7 +7164,7 @@ packages:
hasBin: true
dependencies:
camel-case: 4.1.2
- clean-css: 5.2.4
+ clean-css: 5.3.1
commander: 8.3.0
he: 1.2.0
param-case: 3.0.4
@@ -5724,8 +7172,8 @@ packages:
terser: 5.11.0
dev: false
- /html-tags/3.1.0:
- resolution: {integrity: sha512-1qYz89hW3lFDEazhjW0yVAV87lw8lVkrJocr72XmBkMKsoSVJCQx3W8BXsC7hO2qAt8BoVjYjtAcZ9perqGnNg==}
+ /html-tags/3.2.0:
+ resolution: {integrity: sha512-vy7ClnArOZwCnqZgvv+ddgHgJiAFXe3Ge9ML5/mBctVJoUoYPCdxVucOywjDARn6CVoh3dRSFdPHy2sX80L0Wg==}
engines: {node: '>=8'}
dev: false
@@ -5733,7 +7181,7 @@ packages:
resolution: {integrity: sha512-uE/TxKuyNIcx44cIWnjr/rfIATDH7ZaOMmstu0CwhFG1Dunhlp4OC6/NMbhiwoq5BpW0ubi303qnEk/PZj614w==}
dev: false
- /html-webpack-plugin/5.5.0_webpack@5.69.1:
+ /html-webpack-plugin/5.5.0_webpack@5.74.0:
resolution: {integrity: sha512-sy88PC2cRTVxvETRgUHFrL4No3UxvcH8G1NepGhqaTT+GXN2kTamqasot0inS5hXeg1cMbFDt27zzo9p35lZVw==}
engines: {node: '>=10.13.0'}
peerDependencies:
@@ -5744,39 +7192,37 @@ packages:
lodash: 4.17.21
pretty-error: 4.0.0
tapable: 2.2.1
- webpack: 5.69.1
- dev: false
-
- /htmlparser2/3.10.1:
- resolution: {integrity: sha512-IgieNijUMbkDovyoKObU1DUhm1iwNYE/fuifEoEHfd1oZKZDaONBSkal7Y01shxsM49R4XaMdGez3WnF9UfiCQ==}
- dependencies:
- domelementtype: 1.3.1
- domhandler: 2.4.2
- domutils: 1.7.0
- entities: 1.1.2
- inherits: 2.0.4
- readable-stream: 3.6.0
+ webpack: 5.74.0
dev: false
/htmlparser2/6.1.0:
resolution: {integrity: sha512-gyyPk6rgonLFEDGoeRgQNaEUvdJ4ktTmmUh/h2t7s+M8oPpIPxgNACWa+6ESR57kXstwqPiCut0V8NRpcwgU7A==}
dependencies:
- domelementtype: 2.2.0
+ domelementtype: 2.3.0
domhandler: 4.3.0
domutils: 2.8.0
entities: 2.2.0
dev: false
+ /htmlparser2/8.0.1:
+ resolution: {integrity: sha512-4lVbmc1diZC7GUJQtRQ5yBAeUCL1exyMwmForWkRLnwyzWBFxN633SALPMGYaWZvKe9j1pRZJpauvmxENSp/EA==}
+ dependencies:
+ domelementtype: 2.3.0
+ domhandler: 5.0.3
+ domutils: 3.0.1
+ entities: 4.4.0
+ dev: false
+
/http-cache-semantics/4.1.0:
resolution: {integrity: sha512-carPklcUh7ROWRK7Cv27RPtdhYhUsela/ue5/jKzjegVvXDqM2ILE9Q2BGn9JZJh1g87cp56su/FgQSzcWS8cQ==}
dev: false
/http-deceiver/1.2.7:
- resolution: {integrity: sha1-+nFolEq5pRnTN8sL7HKE3D5yPYc=}
+ resolution: {integrity: sha512-LmpOGxTfbpgtGVxJrj5k7asXHCgNZp5nLfp+hWc8QQRqtb7fUy6kRY3BO1h9ddF6yIPYUARgxGOwB42DnxIaNw==}
dev: false
/http-errors/1.6.3:
- resolution: {integrity: sha1-i1VoC7S+KDoLW/TqLjhYC+HZMg0=}
+ resolution: {integrity: sha512-lks+lVC8dgGyh97jxvxeYTWQFvh4uw4yC12gVl63Cg30sjPX4wuGcdkICVXDAESr6OJGjqGA8Iz5mkeN6zlD7A==}
engines: {node: '>= 0.6'}
dependencies:
depd: 1.1.2
@@ -5814,7 +7260,7 @@ packages:
http-proxy: 1.18.1
is-glob: 4.0.3
is-plain-obj: 3.0.0
- micromatch: 4.0.4
+ micromatch: 4.0.5
transitivePeerDependencies:
- debug
dev: false
@@ -5855,13 +7301,13 @@ packages:
safer-buffer: 2.1.2
dev: false
- /icss-utils/5.1.0_postcss@8.4.7:
+ /icss-utils/5.1.0_postcss@8.4.16:
resolution: {integrity: sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==}
engines: {node: ^10 || ^12 || >= 14}
peerDependencies:
postcss: ^8.1.0
dependencies:
- postcss: 8.4.7
+ postcss: 8.4.16
dev: false
/ignore/5.2.0:
@@ -5889,12 +7335,12 @@ packages:
dev: false
/import-lazy/2.1.0:
- resolution: {integrity: sha1-BWmOPUXIjo1+nZLLBYTnfwlvPkM=}
+ resolution: {integrity: sha512-m7ZEHgtw69qOGw+jwxXkHlrlIPdTGkyh66zXZ1ajZbxkDBNjSY/LGbmjc7h0s2ELsUDTAhFr55TrPSSqJGPG0A==}
engines: {node: '>=4'}
dev: false
/imurmurhash/0.1.4:
- resolution: {integrity: sha1-khi5srkoojixPcT7a21XbyMUU+o=}
+ resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==}
engines: {node: '>=0.8.19'}
dev: false
@@ -5903,20 +7349,20 @@ packages:
engines: {node: '>=8'}
dev: false
- /infima/0.2.0-alpha.37:
- resolution: {integrity: sha512-4GX7Baw+/lwS4PPW/UJNY89tWSvYG1DL6baKVdpK6mC593iRgMssxNtORMTFArLPJ/A/lzsGhRmx+z6MaMxj0Q==}
+ /infima/0.2.0-alpha.42:
+ resolution: {integrity: sha512-ift8OXNbQQwtbIt6z16KnSWP7uJ/SysSMFI4F87MNRTicypfl4Pv3E2OGVv6N3nSZFJvA8imYulCBS64iyHYww==}
engines: {node: '>=12'}
dev: false
/inflight/1.0.6:
- resolution: {integrity: sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=}
+ resolution: {integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==}
dependencies:
once: 1.4.0
wrappy: 1.0.2
dev: false
/inherits/2.0.3:
- resolution: {integrity: sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=}
+ resolution: {integrity: sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw==}
dev: false
/inherits/2.0.4:
@@ -5959,11 +7405,6 @@ packages:
resolution: {integrity: sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==}
dependencies:
loose-envify: 1.4.0
- dev: false
-
- /ip/1.1.5:
- resolution: {integrity: sha1-vd7XARQpCCjAoDnnLvJfWq7ENUo=}
- dev: false
/ipaddr.js/1.9.1:
resolution: {integrity: sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==}
@@ -5986,14 +7427,6 @@ packages:
is-decimal: 1.0.4
dev: false
- /is-arguments/1.1.1:
- resolution: {integrity: sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==}
- engines: {node: '>= 0.4'}
- dependencies:
- call-bind: 1.0.2
- has-tostringtag: 1.0.0
- dev: false
-
/is-arrayish/0.2.1:
resolution: {integrity: sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0=}
dev: false
@@ -6060,7 +7493,7 @@ packages:
dev: false
/is-extendable/0.1.1:
- resolution: {integrity: sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=}
+ resolution: {integrity: sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==}
engines: {node: '>=0.10.0'}
dev: false
@@ -6113,7 +7546,7 @@ packages:
engines: {node: '>=0.12.0'}
/is-obj/1.0.1:
- resolution: {integrity: sha1-PkcprB9f3gJc19g6iW2rn09n2w8=}
+ resolution: {integrity: sha512-l4RyHgRqGN4Y3+9JHVrNqO+tN0rV5My76uW5/nuO4K1b6vw5G8d/cmFjP9tRfEsdhZNt0IFdZuK/c2Vr4Nb+Qg==}
engines: {node: '>=0.10.0'}
dev: false
@@ -6147,7 +7580,6 @@ packages:
engines: {node: '>=0.10.0'}
dependencies:
isobject: 3.0.1
- dev: false
/is-regex/1.1.4:
resolution: {integrity: sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==}
@@ -6158,7 +7590,7 @@ packages:
dev: false
/is-regexp/1.0.0:
- resolution: {integrity: sha1-/S2INUXEa6xaYz57mgnof6LLUGk=}
+ resolution: {integrity: sha512-7zjFAPO4/gwyQAAgRRmqeEeyIICSdmCqa3tsVHMdBzaXXRiqopZL4Cyghg/XulGWrtABTpbnYYzzIRffLkP4oA==}
engines: {node: '>=0.10.0'}
dev: false
@@ -6171,11 +7603,6 @@ packages:
resolution: {integrity: sha512-IU0NmyknYZN0rChcKhRO1X8LYz5Isj/Fsqh8NJOSf+N/hCOTwy29F32Ik7a+QszE63IdvmwdTPDd6cZ5pg4cwA==}
dev: false
- /is-stream/1.1.0:
- resolution: {integrity: sha1-EtSj3U5o4Lec6428hBc66A2RykQ=}
- engines: {node: '>=0.10.0'}
- dev: false
-
/is-stream/2.0.1:
resolution: {integrity: sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==}
engines: {node: '>=8'}
@@ -6196,7 +7623,7 @@ packages:
dev: false
/is-typedarray/1.0.0:
- resolution: {integrity: sha1-5HnICFjfDBsR3dppQPlgEfzaSpo=}
+ resolution: {integrity: sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA==}
dev: false
/is-weakref/1.0.2:
@@ -6225,46 +7652,20 @@ packages:
dev: false
/isarray/0.0.1:
- resolution: {integrity: sha1-ihis/Kmo9Bd+Cav8YDiTmwXR7t8=}
+ resolution: {integrity: sha512-D2S+3GLxWH+uhrNEcoh/fnmYeP8E8/zHl644d/jdA0g2uyXvy3sb0qxotE+ne0LtccHknQzWwZEzhak7oJ0COQ==}
dev: false
/isarray/1.0.0:
- resolution: {integrity: sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=}
+ resolution: {integrity: sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==}
dev: false
/isexe/2.0.0:
- resolution: {integrity: sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=}
+ resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==}
dev: false
/isobject/3.0.1:
- resolution: {integrity: sha1-TkMekrEalzFjaqH5yNHMvP2reN8=}
+ resolution: {integrity: sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==}
engines: {node: '>=0.10.0'}
- dev: false
-
- /iterm2-version/4.2.0:
- resolution: {integrity: sha512-IoiNVk4SMPu6uTcK+1nA5QaHNok2BMDLjSl5UomrOixe5g4GkylhPwuiGdw00ysSCrXAKNMfFTu+u/Lk5f6OLQ==}
- engines: {node: '>=8'}
- dependencies:
- app-path: 3.3.0
- plist: 3.0.5
- dev: false
-
- /jest-image-snapshot/4.2.0:
- resolution: {integrity: sha512-6aAqv2wtfOgxiJeBayBCqHo1zX+A12SUNNzo7rIxiXh6W6xYVu8QyHWkada8HeRi+QUTHddp0O0Xa6kmQr+xbQ==}
- engines: {node: '>= 10.14.2'}
- peerDependencies:
- jest: '>=20 <=26'
- dependencies:
- chalk: 1.1.3
- get-stdin: 5.0.1
- glur: 1.1.2
- lodash: 4.17.21
- mkdirp: 0.5.5
- pixelmatch: 5.2.1
- pngjs: 3.4.0
- rimraf: 2.7.1
- ssim.js: 3.5.0
- dev: false
/jest-worker/27.5.1:
resolution: {integrity: sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==}
@@ -6273,7 +7674,6 @@ packages:
'@types/node': 17.0.21
merge-stream: 2.0.0
supports-color: 8.1.1
- dev: false
/joi/17.6.0:
resolution: {integrity: sha512-OX5dG6DTbcr/kbMFj0KGYxuew69HPcAE3K/sZpEV2nP6e/j/C0HV+HNiBPCASxdx5T7DMoa0s8UeHWMnb6n2zw==}
@@ -6283,11 +7683,9 @@ packages:
'@sideway/address': 4.1.3
'@sideway/formula': 3.0.0
'@sideway/pinpoint': 2.0.0
- dev: false
/js-tokens/4.0.0:
resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==}
- dev: false
/js-yaml/3.14.1:
resolution: {integrity: sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==}
@@ -6316,32 +7714,19 @@ packages:
dev: false
/json-buffer/3.0.0:
- resolution: {integrity: sha1-Wx85evx11ne96Lz8Dkfh+aPZqJg=}
- dev: false
-
- /json-parse-better-errors/1.0.2:
- resolution: {integrity: sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==}
+ resolution: {integrity: sha512-CuUqjv0FUZIdXkHPI8MezCnFCdaTAacej1TZYulLoAg1h/PhwkdXFN4V/gzY4g+fMBCOV2xF+rp7t2XD2ns/NQ==}
dev: false
/json-parse-even-better-errors/2.3.1:
resolution: {integrity: sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==}
- dev: false
/json-schema-traverse/0.4.1:
resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==}
- dev: false
/json-schema-traverse/1.0.0:
resolution: {integrity: sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==}
dev: false
- /json5/1.0.1:
- resolution: {integrity: sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==}
- hasBin: true
- dependencies:
- minimist: 1.2.5
- dev: false
-
/json5/2.2.0:
resolution: {integrity: sha512-f+8cldu7X/y7RAJurMEJmdoKXGB/X550w2Nr3tTbezL6RwEE/iMcm+tZnXeoZtKuOq6ft8+CqzEkrIgx1fPoQA==}
engines: {node: '>=6'}
@@ -6350,10 +7735,10 @@ packages:
minimist: 1.2.5
dev: false
- /jsonfile/4.0.0:
- resolution: {integrity: sha1-h3Gq4HmbZAdrdmQPygWPnBDjPss=}
- optionalDependencies:
- graceful-fs: 4.2.9
+ /json5/2.2.1:
+ resolution: {integrity: sha512-1hqLFMSrGHRHxav9q9gNjJ5EXznIxGVO09xQRrwplcS8qs28pZ8s8hupZAmqDwZUmVZ2Qb2jnyPOWcDH8m8dlA==}
+ engines: {node: '>=6'}
+ hasBin: true
dev: false
/jsonfile/6.1.0:
@@ -6377,14 +7762,13 @@ packages:
json-buffer: 3.0.0
dev: false
- /khroma/1.4.1:
- resolution: {integrity: sha512-+GmxKvmiRuCcUYDgR7g5Ngo0JEDeOsGdNONdU2zsiBQaK4z19Y2NvXqfEDE0ZiIrg45GTZyAnPLVsLZZACYm3Q==}
+ /khroma/2.0.0:
+ resolution: {integrity: sha512-2J8rDNlQWbtiNYThZRvmMv5yt44ZakX+Tz5ZIp/mN1pt4snn+m030Va5Z4v8xA0cQFDXBwO/8i42xL4QPsVk3g==}
dev: false
/kind-of/6.0.3:
resolution: {integrity: sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==}
engines: {node: '>=0.10.0'}
- dev: false
/kleur/3.0.3:
resolution: {integrity: sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==}
@@ -6425,17 +7809,7 @@ packages:
/loader-runner/4.2.0:
resolution: {integrity: sha512-92+huvxMvYlMzMt0iIOukcwYBFpkYJdpl2xsZ7LrlayO7E8SOv+JJUEK17B/dJIHAOLMfh2dZZ/Y18WgmGtYNw==}
- engines: {node: '>=6.11.5'}
- dev: false
-
- /loader-utils/1.4.0:
- resolution: {integrity: sha512-qH0WSMBtn/oHuwjy/NucEgbx5dbxxnxup9s4PVXJUDHZBQY+s0NWA9rJf53RBnQZxfch7euUui7hpoAPvALZdA==}
- engines: {node: '>=4.0.0'}
- dependencies:
- big.js: 5.2.2
- emojis-list: 3.0.0
- json5: 1.0.1
- dev: false
+ engines: {node: '>=6.11.5'}
/loader-utils/2.0.2:
resolution: {integrity: sha512-TM57VeHptv569d/GKh6TAYdzKblwDNiumOdkFnejjD0XwTH87K90w3O7AiJRqdQoXygvi1VQTJTLGhJl7WqA7A==}
@@ -6473,72 +7847,24 @@ packages:
p-locate: 5.0.0
dev: false
- /lodash.assignin/4.2.0:
- resolution: {integrity: sha1-uo31+4QesKPoBEIysOJjqNxqKKI=}
- dev: false
-
- /lodash.bind/4.2.1:
- resolution: {integrity: sha1-euMBfpOWIqwxt9fX3LGzTbFpDTU=}
- dev: false
-
/lodash.curry/4.1.1:
- resolution: {integrity: sha1-JI42By7ekGUB11lmIAqG2riyMXA=}
+ resolution: {integrity: sha512-/u14pXGviLaweY5JI0IUzgzF2J6Ne8INyzAZjImcryjgkZ+ebruBxy2/JaOOkTqScddcYtakjhSaeemV8lR0tA==}
dev: false
/lodash.debounce/4.0.8:
resolution: {integrity: sha1-gteb/zCmfEAF/9XiUVMArZyk168=}
dev: false
- /lodash.defaults/4.2.0:
- resolution: {integrity: sha1-0JF4cW/+pN3p5ft7N/bwgCJ0WAw=}
- dev: false
-
- /lodash.filter/4.6.0:
- resolution: {integrity: sha1-ZosdSYFgOuHMWm+nYBQ+SAtMSs4=}
- dev: false
-
- /lodash.flatten/4.4.0:
- resolution: {integrity: sha1-8xwiIlqWMtK7+OSt2+8kCqdlph8=}
- dev: false
-
/lodash.flow/3.5.0:
- resolution: {integrity: sha1-h79AKSuM+D5OjOGjrkIJ4gBxZ1o=}
- dev: false
-
- /lodash.foreach/4.5.0:
- resolution: {integrity: sha1-Gmo16s5AEoDH8G3d7DUWWrJ+PlM=}
- dev: false
-
- /lodash.map/4.6.0:
- resolution: {integrity: sha1-dx7Hg540c9nEzeKLGTlMNWL09tM=}
+ resolution: {integrity: sha512-ff3BX/tSioo+XojX4MOsOMhJw0nZoUEF011LX8g8d3gvjVbxd89cCio4BCXronjxcTUIJUoqKEUA+n4CqvvRPw==}
dev: false
/lodash.memoize/4.1.2:
- resolution: {integrity: sha1-vMbEmkKihA7Zl/Mj6tpezRguC/4=}
- dev: false
-
- /lodash.merge/4.6.2:
- resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==}
- dev: false
-
- /lodash.pick/4.4.0:
- resolution: {integrity: sha1-UvBWEP/53tQiYRRB7R/BI6AwAbM=}
- dev: false
-
- /lodash.reduce/4.6.0:
- resolution: {integrity: sha1-8atrg5KZrUj3hKu/R2WW8DuRTTs=}
- dev: false
-
- /lodash.reject/4.6.0:
- resolution: {integrity: sha1-gNZJLcFHCGS79YNTO2UfQqn1JBU=}
- dev: false
-
- /lodash.some/4.6.0:
- resolution: {integrity: sha1-G7nzFO9ri63tE7VJFpsqlF62jk0=}
+ resolution: {integrity: sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag==}
dev: false
/lodash.uniq/4.5.0:
- resolution: {integrity: sha1-0CJTc662Uq3BvILklFM5qEJ1R3M=}
+ resolution: {integrity: sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ==}
dev: false
/lodash/4.17.21:
@@ -6550,12 +7876,11 @@ packages:
hasBin: true
dependencies:
js-tokens: 4.0.0
- dev: false
/lower-case/2.0.2:
resolution: {integrity: sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==}
dependencies:
- tslib: 2.3.1
+ tslib: 2.4.0
dev: false
/lowercase-keys/1.0.1:
@@ -6670,19 +7995,19 @@ packages:
/mdurl/1.0.1:
resolution: {integrity: sha1-/oWy7HWlkDfyrf7BAP1sYBdhFS4=}
- /mdx-mermaid/1.2.2_mermaid@9.0.0+react@17.0.2:
- resolution: {integrity: sha512-izl9Vaus0fJHJb6IGgcGZ79LpfFACfn28ExPXKL815RTMT9bgDRIAubufZUCgoCAAv/2S1VTxJLWTwbck4TpLA==}
+ /mdx-mermaid/1.3.2_mermaid@9.1.7+react@17.0.2:
+ resolution: {integrity: sha512-8kw0tg3isKKBFzFwoe2DhIaEgKYtVeJXQtxZCCrdTPO0CTpXHnTHT0atDqsp7YkXi5iUCp/zAZPZu1cmr68T3w==}
peerDependencies:
- mermaid: '>= 8.11.0 < 8.12.0'
- react: ^16.8.4 || ^17.0.0
+ mermaid: '>=8.11.0'
+ react: ^16.8.4 || ^17.0.0 || ^18.0.0
unist-util-visit: ^2.0.0
dependencies:
- mermaid: 9.0.0
+ mermaid: 9.1.7
react: 17.0.2
dev: false
/media-typer/0.3.0:
- resolution: {integrity: sha1-hxDXrwqmJvj/+hzgAWhUUmMlV0g=}
+ resolution: {integrity: sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==}
engines: {node: '>= 0.6'}
dev: false
@@ -6694,37 +8019,32 @@ packages:
dev: false
/merge-descriptors/1.0.1:
- resolution: {integrity: sha1-sAqqVW3YtEVoFQ7J0blT8/kMu2E=}
+ resolution: {integrity: sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w==}
dev: false
/merge-stream/2.0.0:
resolution: {integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==}
- dev: false
/merge2/1.4.1:
resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==}
engines: {node: '>= 8'}
- /mermaid/9.0.0:
- resolution: {integrity: sha512-HN0gHZ1+2RnyCR/7pS3ceRMGlt/2PpWAM5dUAzTEQ4nmMOM2Ix7XodcPkQbA7BradLQ5LwFhlH5jcMu1LARl1Q==}
+ /mermaid/9.1.7:
+ resolution: {integrity: sha512-MRVHXy5FLjnUQUG7YS3UN9jEN6FXCJbFCXVGJQjVIbiR6Vhw0j/6pLIjqsiah9xoHmQU6DEaKOvB3S1g/1nBPA==}
dependencies:
'@braintree/sanitize-url': 6.0.0
- cypress-image-snapshot: 4.0.1
d3: 7.4.4
dagre: 0.8.5
dagre-d3: 0.6.4
- dompurify: 2.3.6
+ dompurify: 2.4.0
graphlib: 2.1.8
- khroma: 1.4.1
+ khroma: 2.0.0
moment-mini: 2.24.0
stylis: 4.1.0
- transitivePeerDependencies:
- - cypress
- - jest
dev: false
/methods/1.1.2:
- resolution: {integrity: sha1-VSmk1nZUE07cxSZmVoNbD4Ua/O4=}
+ resolution: {integrity: sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==}
engines: {node: '>= 0.6'}
dev: false
@@ -6735,6 +8055,14 @@ packages:
braces: 3.0.2
picomatch: 2.3.1
+ /micromatch/4.0.5:
+ resolution: {integrity: sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==}
+ engines: {node: '>=8.6'}
+ dependencies:
+ braces: 3.0.2
+ picomatch: 2.3.1
+ dev: false
+
/mime-db/1.33.0:
resolution: {integrity: sha512-BHJ/EKruNIqJf/QahvxwQZXKygOQ256myeN/Ew+THcAa5q+PjyTTMMeNQC4DZw5AwfvelsUrA6B67NKMqXDbzQ==}
engines: {node: '>= 0.6'}
@@ -6743,7 +8071,6 @@ packages:
/mime-db/1.51.0:
resolution: {integrity: sha512-5y8A56jg7XVQx2mbv1lu49NR4dokRnhZYTtL+KGfaa27uq4pSTXkwQkFJl4pkRMyNFz/EtYDSkiiEHx3F7UN6g==}
engines: {node: '>= 0.6'}
- dev: false
/mime-db/1.52.0:
resolution: {integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==}
@@ -6762,7 +8089,6 @@ packages:
engines: {node: '>= 0.6'}
dependencies:
mime-db: 1.51.0
- dev: false
/mime/1.6.0:
resolution: {integrity: sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==}
@@ -6780,26 +8106,26 @@ packages:
engines: {node: '>=4'}
dev: false
- /mini-create-react-context/0.4.1_prop-types@15.8.1+react@17.0.2:
+ /mini-create-react-context/0.4.1_at7mkepldmzoo6silmqc5bca74:
resolution: {integrity: sha512-YWCYEmd5CQeHGSAKrYvXgmzzkrvssZcuuQDDeqkT+PziKGMgE+0MCCtcKbROzocGBG1meBLl2FotlRwf4gAzbQ==}
peerDependencies:
prop-types: ^15.0.0
react: ^0.14.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
dependencies:
- '@babel/runtime': 7.17.2
+ '@babel/runtime': 7.19.0
prop-types: 15.8.1
react: 17.0.2
tiny-warning: 1.0.3
dev: false
- /mini-css-extract-plugin/2.5.3_webpack@5.69.1:
- resolution: {integrity: sha512-YseMB8cs8U/KCaAGQoqYmfUuhhGW0a9p9XvWXrxVOkE3/IiISTLw4ALNt7JR5B2eYauFM+PQGSbXMDmVbR7Tfw==}
+ /mini-css-extract-plugin/2.6.1_webpack@5.74.0:
+ resolution: {integrity: sha512-wd+SD57/K6DiV7jIR34P+s3uckTRuQvx0tKPcvjFlrEylk6P4mQ2KSWk1hblj1Kxaqok7LogKOieygXqBczNlg==}
engines: {node: '>= 12.13.0'}
peerDependencies:
webpack: ^5.0.0
dependencies:
schema-utils: 4.0.0
- webpack: 5.69.1
+ webpack: 5.74.0
dev: false
/minimalistic-assert/1.0.1:
@@ -6839,7 +8165,7 @@ packages:
dev: false
/ms/2.0.0:
- resolution: {integrity: sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=}
+ resolution: {integrity: sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==}
dev: false
/ms/2.1.2:
@@ -6850,20 +8176,16 @@ packages:
resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==}
dev: false
- /multicast-dns-service-types/1.1.0:
- resolution: {integrity: sha1-iZ8R2WhuXgXLkbNdXw5jt3PPyQE=}
- dev: false
-
- /multicast-dns/6.2.3:
- resolution: {integrity: sha512-ji6J5enbMyGRHIAkAOu3WdV8nggqviKCEKtXcOqfphZZtQrmHKycfynJ2V7eVPUA4NhJ6V7Wf4TmGbTwKE9B6g==}
+ /multicast-dns/7.2.5:
+ resolution: {integrity: sha512-2eznPJP8z2BFLX50tf0LuODrpINqP1RVIm/CObbTcBRITQgmC/TjcREF1NeTBzIcR5XO/ukWo+YHOjBbFwIupg==}
hasBin: true
dependencies:
- dns-packet: 1.3.4
+ dns-packet: 5.4.0
thunky: 1.1.0
dev: false
- /nanoid/3.3.1:
- resolution: {integrity: sha512-n6Vs/3KGyxPQd6uO0eH4Bv0ojGSUvuLlIHtC3Y0kEO23YRge8H9x1GCzLn28YX0H66pMkxuaeESFq4tKISKwdw==}
+ /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
@@ -6875,17 +8197,12 @@ packages:
/neo-async/2.6.2:
resolution: {integrity: sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==}
- dev: false
-
- /nice-try/1.0.5:
- resolution: {integrity: sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==}
- dev: false
/no-case/3.0.4:
resolution: {integrity: sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==}
dependencies:
lower-case: 2.0.2
- tslib: 2.3.1
+ tslib: 2.4.0
dev: false
/node-emoji/1.11.0:
@@ -6915,13 +8232,16 @@ packages:
resolution: {integrity: sha512-XxYDdcQ6eKqp/YjI+tb2C5WM2LgjnZrfYg4vgQt49EK268b6gYCHsBLrK2qvJo4FmCtqmKezb0WZFK4fkrZNsg==}
dev: false
+ /node-releases/2.0.6:
+ resolution: {integrity: sha512-PiVXnNuFm5+iYkLBNeq5211hvO38y63T0i2KKh2KnUs3RpzJ+JtODFjkD8yjLwnDkTYF1eKXheUwdssR+NRZdg==}
+
/normalize-path/3.0.0:
resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==}
engines: {node: '>=0.10.0'}
dev: false
/normalize-range/0.1.2:
- resolution: {integrity: sha1-LRDAa9/TEuqXd2laTShDlFa3WUI=}
+ resolution: {integrity: sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==}
engines: {node: '>=0.10.0'}
dev: false
@@ -6935,13 +8255,6 @@ packages:
engines: {node: '>=10'}
dev: false
- /npm-run-path/2.0.2:
- resolution: {integrity: sha1-NakjLfo11wZ7TLLd8jV7GHFTbF8=}
- engines: {node: '>=4'}
- dependencies:
- path-key: 2.0.1
- dev: false
-
/npm-run-path/4.0.1:
resolution: {integrity: sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==}
engines: {node: '>=8'}
@@ -6950,7 +8263,7 @@ packages:
dev: false
/nprogress/0.2.0:
- resolution: {integrity: sha1-y480xTIT2JVyP8urkH6UIq28r7E=}
+ resolution: {integrity: sha512-I19aIingLgR1fmhftnbWWO3dXc0hSxqHQHQb3H8m+K3TnEn/iSeTZZOyvKXWqQESMwuUVnatlCnZdLBZZt2VSA==}
dev: false
/nth-check/1.0.2:
@@ -6968,20 +8281,11 @@ packages:
/object-assign/4.1.1:
resolution: {integrity: sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=}
engines: {node: '>=0.10.0'}
- dev: false
/object-inspect/1.12.0:
resolution: {integrity: sha512-Ho2z80bVIvJloH+YzRmpZVQe87+qASmBUKZDWgx9cu+KDrX2ZDH/3tMy+gXbZETVGs2M8YdxObOh7XAtim9Y0g==}
dev: false
- /object-is/1.1.5:
- resolution: {integrity: sha512-3cyDsyHgtmi7I7DfSSI2LDp6SK2lwvtbg0p0R1e0RvTqF5ceGx+K2dfSjm1bKDMVCFEDAQvy+o8c6a7VujOddw==}
- engines: {node: '>= 0.4'}
- dependencies:
- call-bind: 1.0.2
- define-properties: 1.1.3
- dev: false
-
/object-keys/1.1.1:
resolution: {integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==}
engines: {node: '>= 0.4'}
@@ -7020,7 +8324,7 @@ packages:
dev: false
/on-finished/2.3.0:
- resolution: {integrity: sha1-IPEzZIGwg811M3mSoWlxqi2QaUc=}
+ resolution: {integrity: sha512-ikqdkGAAyf/X/gPhXGvfgAytDZtDbr+bkNUJ0N9h5MI/dmdgCs3l6hoHrcUv41sRKew3jIwrp4qQDXiK99Utww==}
engines: {node: '>= 0.8'}
dependencies:
ee-first: 1.1.1
@@ -7032,7 +8336,7 @@ packages:
dev: false
/once/1.4.0:
- resolution: {integrity: sha1-WDsap3WWHUsROsF9nFC6753Xa9E=}
+ resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==}
dependencies:
wrappy: 1.0.2
dev: false
@@ -7063,11 +8367,6 @@ packages:
engines: {node: '>=6'}
dev: false
- /p-finally/1.0.0:
- resolution: {integrity: sha1-P7z7FbiZpEEjs0ttzBi3JDNqLK4=}
- engines: {node: '>=4'}
- dev: false
-
/p-limit/2.3.0:
resolution: {integrity: sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==}
engines: {node: '>=6'}
@@ -7137,7 +8436,7 @@ packages:
resolution: {integrity: sha512-RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A==}
dependencies:
dot-case: 3.0.4
- tslib: 2.3.1
+ tslib: 2.4.0
dev: false
/parent-module/1.0.1:
@@ -7172,20 +8471,23 @@ packages:
resolution: {integrity: sha512-twN+njEipszzlMJd4ONUYgSfZPDxgHhT9Ahed5uTigpQn90FggW4SA/AIPq/6a149fTbE9qBEcSwE3FAEp6wQQ==}
dev: false
- /parse5-htmlparser2-tree-adapter/6.0.1:
- resolution: {integrity: sha512-qPuWvbLgvDGilKc5BoicRovlT4MtYT6JfJyBOMDsKoiT+GiuP5qyrPCnR9HcPECIJJmZh5jRndyNThnhhb/vlA==}
+ /parse5-htmlparser2-tree-adapter/7.0.0:
+ resolution: {integrity: sha512-B77tOZrqqfUfnVcOrUvfdLbz4pu4RopLD/4vmu3HUPswwTA8OH0EMW9BlWR2B0RCoiZRAHEUu7IxeP1Pd1UU+g==}
dependencies:
- parse5: 6.0.1
- dev: false
-
- /parse5/5.1.1:
- resolution: {integrity: sha512-ugq4DFI0Ptb+WWjAdOK16+u/nHfiIrcE+sh8kZMaM0WllQKLI9rOUq6c2b7cwPkXdzfQESqvoqK6ug7U/Yyzug==}
+ domhandler: 5.0.3
+ parse5: 7.1.1
dev: false
/parse5/6.0.1:
resolution: {integrity: sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==}
dev: false
+ /parse5/7.1.1:
+ resolution: {integrity: sha512-kwpuwzB+px5WUg9pyK0IcK/shltJN5/OVhQagxhCQNtT9Y9QRZqNY2e1cmbu/paRh5LMnz/oVTVLBpjFmMZhSg==}
+ dependencies:
+ entities: 4.4.0
+ dev: false
+
/parseurl/1.3.3:
resolution: {integrity: sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==}
engines: {node: '>= 0.8'}
@@ -7195,11 +8497,11 @@ packages:
resolution: {integrity: sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g==}
dependencies:
no-case: 3.0.4
- tslib: 2.3.1
+ tslib: 2.4.0
dev: false
/path-exists/3.0.0:
- resolution: {integrity: sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=}
+ resolution: {integrity: sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==}
engines: {node: '>=4'}
dev: false
@@ -7209,17 +8511,12 @@ packages:
dev: false
/path-is-absolute/1.0.1:
- resolution: {integrity: sha1-F0uSaHNVNP+8es5r9TpanhtcX18=}
+ resolution: {integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==}
engines: {node: '>=0.10.0'}
dev: false
/path-is-inside/1.0.2:
- resolution: {integrity: sha1-NlQX3t5EQw0cEa9hAn+s8HS9/FM=}
- dev: false
-
- /path-key/2.0.1:
- resolution: {integrity: sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A=}
- engines: {node: '>=4'}
+ resolution: {integrity: sha512-DUWJr3+ULp4zXmol/SZkFf3JGsS9/SIv+Y3Rt93/UjPpDpklB5f1er4O3POIbUuUJ3FXgqte2Q7SrU6zAqwk8w==}
dev: false
/path-key/3.1.1:
@@ -7232,7 +8529,7 @@ packages:
dev: false
/path-to-regexp/0.1.7:
- resolution: {integrity: sha1-32BBeABfUi8V60SQ5yR6G/qmf4w=}
+ resolution: {integrity: sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ==}
dev: false
/path-to-regexp/1.8.0:
@@ -7251,26 +8548,11 @@ packages:
/picocolors/1.0.0:
resolution: {integrity: sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==}
- dev: false
/picomatch/2.3.1:
resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==}
engines: {node: '>=8.6'}
- /pixelmatch/5.2.1:
- resolution: {integrity: sha512-WjcAdYSnKrrdDdqTcVEY7aB7UhhwjYQKYhHiBXdJef0MOaQeYpUdQ+iVyBLa5YBKS8MPVPPMX7rpOByISLpeEQ==}
- hasBin: true
- dependencies:
- pngjs: 4.0.1
- dev: false
-
- /pkg-dir/3.0.0:
- resolution: {integrity: sha512-/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw==}
- engines: {node: '>=6'}
- dependencies:
- find-up: 3.0.0
- dev: false
-
/pkg-dir/4.2.0:
resolution: {integrity: sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==}
engines: {node: '>=8'}
@@ -7285,376 +8567,350 @@ packages:
find-up: 3.0.0
dev: false
- /plist/3.0.5:
- resolution: {integrity: sha512-83vX4eYdQp3vP9SxuYgEM/G/pJQqLUz/V/xzPrzruLs7fz7jxGQ1msZ/mg1nwZxUSuOp4sb+/bEIbRrbzZRxDA==}
- engines: {node: '>=6'}
- dependencies:
- base64-js: 1.5.1
- xmlbuilder: 9.0.7
- dev: false
-
- /pngjs/3.4.0:
- resolution: {integrity: sha512-NCrCHhWmnQklfH4MtJMRjZ2a8c80qXeMlQMv2uVp9ISJMTt562SbGd6n2oq0PaPgKm7Z6pL9E2UlLIhC+SHL3w==}
- engines: {node: '>=4.0.0'}
- dev: false
-
- /pngjs/4.0.1:
- resolution: {integrity: sha512-rf5+2/ioHeQxR6IxuYNYGFytUyG3lma/WW1nsmjeHlWwtb2aByla6dkVc8pmJ9nplzkTA0q2xx7mMWrOTqT4Gg==}
- engines: {node: '>=8.0.0'}
- dev: false
-
- /portfinder/1.0.28:
- resolution: {integrity: sha512-Se+2isanIcEqf2XMHjyUKskczxbPH7dQnlMjXX6+dybayyHvAf/TCgyMRlzf/B6QDhAEFOGes0pzRo3by4AbMA==}
- engines: {node: '>= 0.12.0'}
- dependencies:
- async: 2.6.3
- debug: 3.2.7
- mkdirp: 0.5.5
- dev: false
-
- /postcss-calc/8.2.4_postcss@8.4.7:
+ /postcss-calc/8.2.4_postcss@8.4.16:
resolution: {integrity: sha512-SmWMSJmB8MRnnULldx0lQIyhSNvuDl9HfrZkaqqE/WHAhToYsAvDq+yAsA/kIyINDszOp3Rh0GFoNuH5Ypsm3Q==}
peerDependencies:
postcss: ^8.2.2
dependencies:
- postcss: 8.4.7
+ postcss: 8.4.16
postcss-selector-parser: 6.0.9
postcss-value-parser: 4.2.0
dev: false
- /postcss-colormin/5.2.5_postcss@8.4.7:
- resolution: {integrity: sha512-+X30aDaGYq81mFqwyPpnYInsZQnNpdxMX0ajlY7AExCexEFkPVV+KrO7kXwayqEWL2xwEbNQ4nUO0ZsRWGnevg==}
+ /postcss-colormin/5.3.0_postcss@8.4.16:
+ resolution: {integrity: sha512-WdDO4gOFG2Z8n4P8TWBpshnL3JpmNmJwdnfP2gbk2qBA8PWwOYcmjmI/t3CmMeL72a7Hkd+x/Mg9O2/0rD54Pg==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- browserslist: 4.19.3
+ browserslist: 4.21.4
caniuse-api: 3.0.0
colord: 2.9.2
- postcss: 8.4.7
+ postcss: 8.4.16
postcss-value-parser: 4.2.0
dev: false
- /postcss-convert-values/5.0.4_postcss@8.4.7:
- resolution: {integrity: sha512-bugzSAyjIexdObovsPZu/sBCTHccImJxLyFgeV0MmNBm/Lw5h5XnjfML6gzEmJ3A6nyfCW7hb1JXzcsA4Zfbdw==}
+ /postcss-convert-values/5.1.2_postcss@8.4.16:
+ resolution: {integrity: sha512-c6Hzc4GAv95B7suy4udszX9Zy4ETyMCgFPUDtWjdFTKH1SE9eFY/jEpHSwTH1QPuwxHpWslhckUQWbNRM4ho5g==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- postcss: 8.4.7
+ browserslist: 4.21.4
+ postcss: 8.4.16
postcss-value-parser: 4.2.0
dev: false
- /postcss-discard-comments/5.0.3_postcss@8.4.7:
- resolution: {integrity: sha512-6W5BemziRoqIdAKT+1QjM4bNcJAQ7z7zk073730NHg4cUXh3/rQHHj7pmYxUB9aGhuRhBiUf0pXvIHkRwhQP0Q==}
+ /postcss-discard-comments/5.1.2_postcss@8.4.16:
+ resolution: {integrity: sha512-+L8208OVbHVF2UQf1iDmRcbdjJkuBF6IS29yBDSiWUIzpYaAhtNl6JYnYm12FnkeCwQqF5LeklOu6rAqgfBZqQ==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- postcss: 8.4.7
+ postcss: 8.4.16
dev: false
- /postcss-discard-duplicates/5.0.3_postcss@8.4.7:
- resolution: {integrity: sha512-vPtm1Mf+kp7iAENTG7jI1MN1lk+fBqL5y+qxyi4v3H+lzsXEdfS3dwUZD45KVhgzDEgduur8ycB4hMegyMTeRw==}
+ /postcss-discard-duplicates/5.1.0_postcss@8.4.16:
+ resolution: {integrity: sha512-zmX3IoSI2aoenxHV6C7plngHWWhUOV3sP1T8y2ifzxzbtnuhk1EdPwm0S1bIUNaJ2eNbWeGLEwzw8huPD67aQw==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- postcss: 8.4.7
+ postcss: 8.4.16
dev: false
- /postcss-discard-empty/5.0.3_postcss@8.4.7:
- resolution: {integrity: sha512-xGJugpaXKakwKI7sSdZjUuN4V3zSzb2Y0LOlmTajFbNinEjTfVs9PFW2lmKBaC/E64WwYppfqLD03P8l9BuueA==}
+ /postcss-discard-empty/5.1.1_postcss@8.4.16:
+ resolution: {integrity: sha512-zPz4WljiSuLWsI0ir4Mcnr4qQQ5e1Ukc3i7UfE2XcrwKK2LIPIqE5jxMRxO6GbI3cv//ztXDsXwEWT3BHOGh3A==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- postcss: 8.4.7
+ postcss: 8.4.16
dev: false
- /postcss-discard-overridden/5.0.4_postcss@8.4.7:
- resolution: {integrity: sha512-3j9QH0Qh1KkdxwiZOW82cId7zdwXVQv/gRXYDnwx5pBtR1sTkU4cXRK9lp5dSdiM0r0OICO/L8J6sV1/7m0kHg==}
+ /postcss-discard-overridden/5.1.0_postcss@8.4.16:
+ resolution: {integrity: sha512-21nOL7RqWR1kasIVdKs8HNqQJhFxLsyRfAnUDm4Fe4t4mCWL9OJiHvlHPjcd8zc5Myu89b/7wZDnOSjFgeWRtw==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- postcss: 8.4.7
+ postcss: 8.4.16
dev: false
- /postcss-discard-unused/5.0.3_postcss@8.4.7:
- resolution: {integrity: sha512-WO6FJxL5fGnuE77ZbTcZ/nRZJ4+TOqNaqLBLWgkR4e+WdmHn77OHPyQmsRv7eOB2rLKL6tsq2bs1GwoKXD/++Q==}
+ /postcss-discard-unused/5.1.0_postcss@8.4.16:
+ resolution: {integrity: sha512-KwLWymI9hbwXmJa0dkrzpRbSJEh0vVUd7r8t0yOGPcfKzyJJxFM8kLyC5Ev9avji6nY95pOp1W6HqIrfT+0VGw==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- postcss: 8.4.7
+ postcss: 8.4.16
postcss-selector-parser: 6.0.9
dev: false
- /postcss-loader/6.2.1_postcss@8.4.7+webpack@5.69.1:
- resolution: {integrity: sha512-WbbYpmAaKcux/P66bZ40bpWsBucjx/TTgVVzRZ9yUO8yQfVBlameJ0ZGVaPfH64hNSBh63a+ICP5nqOpBA0w+Q==}
- engines: {node: '>= 12.13.0'}
+ /postcss-loader/7.0.1_qjv4cptcpse3y5hrjkrbb7drda:
+ resolution: {integrity: sha512-VRviFEyYlLjctSM93gAZtcJJ/iSkPZ79zWbN/1fSH+NisBByEiVLqpdVDrPLVSi8DX0oJo12kL/GppTBdKVXiQ==}
+ engines: {node: '>= 14.15.0'}
peerDependencies:
postcss: ^7.0.0 || ^8.0.1
webpack: ^5.0.0
dependencies:
cosmiconfig: 7.0.1
klona: 2.0.5
- postcss: 8.4.7
- semver: 7.3.5
- webpack: 5.69.1
+ postcss: 8.4.16
+ semver: 7.3.7
+ webpack: 5.74.0
dev: false
- /postcss-merge-idents/5.0.3_postcss@8.4.7:
- resolution: {integrity: sha512-Z4LCzh2WzMn69KaS2FaJcrIeDQ170V13QHq+0hnBEFKJJkD+y5qndZ/bl3AhpddrSrXWIVR+xAwjmHQIJI2Eog==}
+ /postcss-merge-idents/5.1.1_postcss@8.4.16:
+ resolution: {integrity: sha512-pCijL1TREiCoog5nQp7wUe+TUonA2tC2sQ54UGeMmryK3UFGIYKqDyjnqd6RcuI4znFn9hWSLNN8xKE/vWcUQw==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- cssnano-utils: 3.0.2_postcss@8.4.7
- postcss: 8.4.7
+ cssnano-utils: 3.1.0_postcss@8.4.16
+ postcss: 8.4.16
postcss-value-parser: 4.2.0
dev: false
- /postcss-merge-longhand/5.0.6_postcss@8.4.7:
- resolution: {integrity: sha512-rkmoPwQO6ymJSmWsX6l2hHeEBQa7C4kJb9jyi5fZB1sE8nSCv7sqchoYPixRwX/yvLoZP2y6FA5kcjiByeJqDg==}
+ /postcss-merge-longhand/5.1.6_postcss@8.4.16:
+ resolution: {integrity: sha512-6C/UGF/3T5OE2CEbOuX7iNO63dnvqhGZeUnKkDeifebY0XqkkvrctYSZurpNE902LDf2yKwwPFgotnfSoPhQiw==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- postcss: 8.4.7
+ postcss: 8.4.16
postcss-value-parser: 4.2.0
- stylehacks: 5.0.3_postcss@8.4.7
+ stylehacks: 5.1.0_postcss@8.4.16
dev: false
- /postcss-merge-rules/5.0.6_postcss@8.4.7:
- resolution: {integrity: sha512-nzJWJ9yXWp8AOEpn/HFAW72WKVGD2bsLiAmgw4hDchSij27bt6TF+sIK0cJUBAYT3SGcjtGGsOR89bwkkMuMgQ==}
+ /postcss-merge-rules/5.1.2_postcss@8.4.16:
+ resolution: {integrity: sha512-zKMUlnw+zYCWoPN6yhPjtcEdlJaMUZ0WyVcxTAmw3lkkN/NDMRkOkiuctQEoWAOvH7twaxUUdvBWl0d4+hifRQ==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- browserslist: 4.19.3
+ browserslist: 4.21.4
caniuse-api: 3.0.0
- cssnano-utils: 3.0.2_postcss@8.4.7
- postcss: 8.4.7
+ cssnano-utils: 3.1.0_postcss@8.4.16
+ postcss: 8.4.16
postcss-selector-parser: 6.0.9
dev: false
- /postcss-minify-font-values/5.0.4_postcss@8.4.7:
- resolution: {integrity: sha512-RN6q3tyuEesvyCYYFCRGJ41J1XFvgV+dvYGHr0CeHv8F00yILlN8Slf4t8XW4IghlfZYCeyRrANO6HpJ948ieA==}
+ /postcss-minify-font-values/5.1.0_postcss@8.4.16:
+ resolution: {integrity: sha512-el3mYTgx13ZAPPirSVsHqFzl+BBBDrXvbySvPGFnQcTI4iNslrPaFq4muTkLZmKlGk4gyFAYUBMH30+HurREyA==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- postcss: 8.4.7
+ postcss: 8.4.16
postcss-value-parser: 4.2.0
dev: false
- /postcss-minify-gradients/5.0.6_postcss@8.4.7:
- resolution: {integrity: sha512-E/dT6oVxB9nLGUTiY/rG5dX9taugv9cbLNTFad3dKxOO+BQg25Q/xo2z2ddG+ZB1CbkZYaVwx5blY8VC7R/43A==}
+ /postcss-minify-gradients/5.1.1_postcss@8.4.16:
+ resolution: {integrity: sha512-VGvXMTpCEo4qHTNSa9A0a3D+dxGFZCYwR6Jokk+/3oB6flu2/PnPXAh2x7x52EkY5xlIHLm+Le8tJxe/7TNhzw==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
colord: 2.9.2
- cssnano-utils: 3.0.2_postcss@8.4.7
- postcss: 8.4.7
+ cssnano-utils: 3.1.0_postcss@8.4.16
+ postcss: 8.4.16
postcss-value-parser: 4.2.0
dev: false
- /postcss-minify-params/5.0.5_postcss@8.4.7:
- resolution: {integrity: sha512-YBNuq3Rz5LfLFNHb9wrvm6t859b8qIqfXsWeK7wROm3jSKNpO1Y5e8cOyBv6Acji15TgSrAwb3JkVNCqNyLvBg==}
+ /postcss-minify-params/5.1.3_postcss@8.4.16:
+ resolution: {integrity: sha512-bkzpWcjykkqIujNL+EVEPOlLYi/eZ050oImVtHU7b4lFS82jPnsCb44gvC6pxaNt38Els3jWYDHTjHKf0koTgg==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- browserslist: 4.19.3
- cssnano-utils: 3.0.2_postcss@8.4.7
- postcss: 8.4.7
+ browserslist: 4.21.4
+ cssnano-utils: 3.1.0_postcss@8.4.16
+ postcss: 8.4.16
postcss-value-parser: 4.2.0
dev: false
- /postcss-minify-selectors/5.1.3_postcss@8.4.7:
- resolution: {integrity: sha512-9RJfTiQEKA/kZhMaEXND893nBqmYQ8qYa/G+uPdVnXF6D/FzpfI6kwBtWEcHx5FqDbA79O9n6fQJfrIj6M8jvQ==}
+ /postcss-minify-selectors/5.2.1_postcss@8.4.16:
+ resolution: {integrity: sha512-nPJu7OjZJTsVUmPdm2TcaiohIwxP+v8ha9NehQ2ye9szv4orirRU3SDdtUmKH+10nzn0bAyOXZ0UEr7OpvLehg==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- postcss: 8.4.7
+ postcss: 8.4.16
postcss-selector-parser: 6.0.9
dev: false
- /postcss-modules-extract-imports/3.0.0_postcss@8.4.7:
+ /postcss-modules-extract-imports/3.0.0_postcss@8.4.16:
resolution: {integrity: sha512-bdHleFnP3kZ4NYDhuGlVK+CMrQ/pqUm8bx/oGL93K6gVwiclvX5x0n76fYMKuIGKzlABOy13zsvqjb0f92TEXw==}
engines: {node: ^10 || ^12 || >= 14}
peerDependencies:
postcss: ^8.1.0
dependencies:
- postcss: 8.4.7
+ postcss: 8.4.16
dev: false
- /postcss-modules-local-by-default/4.0.0_postcss@8.4.7:
+ /postcss-modules-local-by-default/4.0.0_postcss@8.4.16:
resolution: {integrity: sha512-sT7ihtmGSF9yhm6ggikHdV0hlziDTX7oFoXtuVWeDd3hHObNkcHRo9V3yg7vCAY7cONyxJC/XXCmmiHHcvX7bQ==}
engines: {node: ^10 || ^12 || >= 14}
peerDependencies:
postcss: ^8.1.0
dependencies:
- icss-utils: 5.1.0_postcss@8.4.7
- postcss: 8.4.7
+ icss-utils: 5.1.0_postcss@8.4.16
+ postcss: 8.4.16
postcss-selector-parser: 6.0.9
postcss-value-parser: 4.2.0
dev: false
- /postcss-modules-scope/3.0.0_postcss@8.4.7:
+ /postcss-modules-scope/3.0.0_postcss@8.4.16:
resolution: {integrity: sha512-hncihwFA2yPath8oZ15PZqvWGkWf+XUfQgUGamS4LqoP1anQLOsOJw0vr7J7IwLpoY9fatA2qiGUGmuZL0Iqlg==}
engines: {node: ^10 || ^12 || >= 14}
peerDependencies:
postcss: ^8.1.0
dependencies:
- postcss: 8.4.7
+ postcss: 8.4.16
postcss-selector-parser: 6.0.9
dev: false
- /postcss-modules-values/4.0.0_postcss@8.4.7:
+ /postcss-modules-values/4.0.0_postcss@8.4.16:
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.7
- postcss: 8.4.7
+ icss-utils: 5.1.0_postcss@8.4.16
+ postcss: 8.4.16
dev: false
- /postcss-normalize-charset/5.0.3_postcss@8.4.7:
- resolution: {integrity: sha512-iKEplDBco9EfH7sx4ut7R2r/dwTnUqyfACf62Unc9UiyFuI7uUqZZtY+u+qp7g8Qszl/U28HIfcsI3pEABWFfA==}
+ /postcss-normalize-charset/5.1.0_postcss@8.4.16:
+ resolution: {integrity: sha512-mSgUJ+pd/ldRGVx26p2wz9dNZ7ji6Pn8VWBajMXFf8jk7vUoSrZ2lt/wZR7DtlZYKesmZI680qjr2CeFF2fbUg==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- postcss: 8.4.7
+ postcss: 8.4.16
dev: false
- /postcss-normalize-display-values/5.0.3_postcss@8.4.7:
- resolution: {integrity: sha512-FIV5FY/qs4Ja32jiDb5mVj5iWBlS3N8tFcw2yg98+8MkRgyhtnBgSC0lxU+16AMHbjX5fbSJgw5AXLMolonuRQ==}
+ /postcss-normalize-display-values/5.1.0_postcss@8.4.16:
+ resolution: {integrity: sha512-WP4KIM4o2dazQXWmFaqMmcvsKmhdINFblgSeRgn8BJ6vxaMyaJkwAzpPpuvSIoG/rmX3M+IrRZEz2H0glrQNEA==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- postcss: 8.4.7
+ postcss: 8.4.16
postcss-value-parser: 4.2.0
dev: false
- /postcss-normalize-positions/5.0.4_postcss@8.4.7:
- resolution: {integrity: sha512-qynirjBX0Lc73ROomZE3lzzmXXTu48/QiEzKgMeqh28+MfuHLsuqC9po4kj84igZqqFGovz8F8hf44hA3dPYmQ==}
+ /postcss-normalize-positions/5.1.1_postcss@8.4.16:
+ resolution: {integrity: sha512-6UpCb0G4eofTCQLFVuI3EVNZzBNPiIKcA1AKVka+31fTVySphr3VUgAIULBhxZkKgwLImhzMR2Bw1ORK+37INg==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- postcss: 8.4.7
+ postcss: 8.4.16
postcss-value-parser: 4.2.0
dev: false
- /postcss-normalize-repeat-style/5.0.4_postcss@8.4.7:
- resolution: {integrity: sha512-Innt+wctD7YpfeDR7r5Ik6krdyppyAg2HBRpX88fo5AYzC1Ut/l3xaxACG0KsbX49cO2n5EB13clPwuYVt8cMA==}
+ /postcss-normalize-repeat-style/5.1.1_postcss@8.4.16:
+ resolution: {integrity: sha512-mFpLspGWkQtBcWIRFLmewo8aC3ImN2i/J3v8YCFUwDnPu3Xz4rLohDO26lGjwNsQxB3YF0KKRwspGzE2JEuS0g==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- postcss: 8.4.7
+ postcss: 8.4.16
postcss-value-parser: 4.2.0
dev: false
- /postcss-normalize-string/5.0.4_postcss@8.4.7:
- resolution: {integrity: sha512-Dfk42l0+A1CDnVpgE606ENvdmksttLynEqTQf5FL3XGQOyqxjbo25+pglCUvziicTxjtI2NLUR6KkxyUWEVubQ==}
+ /postcss-normalize-string/5.1.0_postcss@8.4.16:
+ resolution: {integrity: sha512-oYiIJOf4T9T1N4i+abeIc7Vgm/xPCGih4bZz5Nm0/ARVJ7K6xrDlLwvwqOydvyL3RHNf8qZk6vo3aatiw/go3w==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- postcss: 8.4.7
+ postcss: 8.4.16
postcss-value-parser: 4.2.0
dev: false
- /postcss-normalize-timing-functions/5.0.3_postcss@8.4.7:
- resolution: {integrity: sha512-QRfjvFh11moN4PYnJ7hia4uJXeFotyK3t2jjg8lM9mswleGsNw2Lm3I5wO+l4k1FzK96EFwEVn8X8Ojrp2gP4g==}
+ /postcss-normalize-timing-functions/5.1.0_postcss@8.4.16:
+ resolution: {integrity: sha512-DOEkzJ4SAXv5xkHl0Wa9cZLF3WCBhF3o1SKVxKQAa+0pYKlueTpCgvkFAHfk+Y64ezX9+nITGrDZeVGgITJXjg==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- postcss: 8.4.7
+ postcss: 8.4.16
postcss-value-parser: 4.2.0
dev: false
- /postcss-normalize-unicode/5.0.4_postcss@8.4.7:
- resolution: {integrity: sha512-W79Regn+a+eXTzB+oV/8XJ33s3pDyFTND2yDuUCo0Xa3QSy1HtNIfRVPXNubHxjhlqmMFADr3FSCHT84ITW3ig==}
+ /postcss-normalize-unicode/5.1.0_postcss@8.4.16:
+ resolution: {integrity: sha512-J6M3MizAAZ2dOdSjy2caayJLQT8E8K9XjLce8AUQMwOrCvjCHv24aLC/Lps1R1ylOfol5VIDMaM/Lo9NGlk1SQ==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- browserslist: 4.19.3
- postcss: 8.4.7
+ browserslist: 4.21.4
+ postcss: 8.4.16
postcss-value-parser: 4.2.0
dev: false
- /postcss-normalize-url/5.0.5_postcss@8.4.7:
- resolution: {integrity: sha512-Ws3tX+PcekYlXh+ycAt0wyzqGthkvVtZ9SZLutMVvHARxcpu4o7vvXcNoiNKyjKuWecnjS6HDI3fjBuDr5MQxQ==}
+ /postcss-normalize-url/5.1.0_postcss@8.4.16:
+ resolution: {integrity: sha512-5upGeDO+PVthOxSmds43ZeMeZfKH+/DKgGRD7TElkkyS46JXAUhMzIKiCa7BabPeIy3AQcTkXwVVN7DbqsiCew==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
normalize-url: 6.1.0
- postcss: 8.4.7
+ postcss: 8.4.16
postcss-value-parser: 4.2.0
dev: false
- /postcss-normalize-whitespace/5.0.4_postcss@8.4.7:
- resolution: {integrity: sha512-wsnuHolYZjMwWZJoTC9jeI2AcjA67v4UuidDrPN9RnX8KIZfE+r2Nd6XZRwHVwUiHmRvKQtxiqo64K+h8/imaw==}
+ /postcss-normalize-whitespace/5.1.1_postcss@8.4.16:
+ resolution: {integrity: sha512-83ZJ4t3NUDETIHTa3uEg6asWjSBYL5EdkVB0sDncx9ERzOKBVJIUeDO9RyA9Zwtig8El1d79HBp0JEi8wvGQnA==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- postcss: 8.4.7
+ postcss: 8.4.16
postcss-value-parser: 4.2.0
dev: false
- /postcss-ordered-values/5.0.5_postcss@8.4.7:
- resolution: {integrity: sha512-mfY7lXpq+8bDEHfP+muqibDPhZ5eP9zgBEF9XRvoQgXcQe2Db3G1wcvjbnfjXG6wYsl+0UIjikqq4ym1V2jGMQ==}
+ /postcss-ordered-values/5.1.3_postcss@8.4.16:
+ resolution: {integrity: sha512-9UO79VUhPwEkzbb3RNpqqghc6lcYej1aveQteWY+4POIwlqkYE21HKWaLDF6lWNuqCobEAyTovVhtI32Rbv2RQ==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- cssnano-utils: 3.0.2_postcss@8.4.7
- postcss: 8.4.7
+ cssnano-utils: 3.1.0_postcss@8.4.16
+ postcss: 8.4.16
postcss-value-parser: 4.2.0
dev: false
- /postcss-reduce-idents/5.0.3_postcss@8.4.7:
- resolution: {integrity: sha512-9bj9/Xhwiti0Z35kkguJX4G6yUYVw8S1kRLU4jFSCTEuHu4yJggf4rNUoVnT45lm/vU97Wd593CxspMDbHxy4w==}
+ /postcss-reduce-idents/5.2.0_postcss@8.4.16:
+ resolution: {integrity: sha512-BTrLjICoSB6gxbc58D5mdBK8OhXRDqud/zodYfdSi52qvDHdMwk+9kB9xsM8yJThH/sZU5A6QVSmMmaN001gIg==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- postcss: 8.4.7
+ postcss: 8.4.16
postcss-value-parser: 4.2.0
dev: false
- /postcss-reduce-initial/5.0.3_postcss@8.4.7:
- resolution: {integrity: sha512-c88TkSnQ/Dnwgb4OZbKPOBbCaauwEjbECP5uAuFPOzQ+XdjNjRH7SG0dteXrpp1LlIFEKK76iUGgmw2V0xeieA==}
+ /postcss-reduce-initial/5.1.0_postcss@8.4.16:
+ resolution: {integrity: sha512-5OgTUviz0aeH6MtBjHfbr57tml13PuedK/Ecg8szzd4XRMbYxH4572JFG067z+FqBIf6Zp/d+0581glkvvWMFw==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- browserslist: 4.19.3
+ browserslist: 4.21.4
caniuse-api: 3.0.0
- postcss: 8.4.7
+ postcss: 8.4.16
dev: false
- /postcss-reduce-transforms/5.0.4_postcss@8.4.7:
- resolution: {integrity: sha512-VIJB9SFSaL8B/B7AXb7KHL6/GNNbbCHslgdzS9UDfBZYIA2nx8NLY7iD/BXFSO/1sRUILzBTfHCoW5inP37C5g==}
+ /postcss-reduce-transforms/5.1.0_postcss@8.4.16:
+ resolution: {integrity: sha512-2fbdbmgir5AvpW9RLtdONx1QoYG2/EtqpNQbFASDlixBbAYuTcJ0dECwlqNqH7VbaUnEnh8SrxOe2sRIn24XyQ==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- postcss: 8.4.7
+ postcss: 8.4.16
postcss-value-parser: 4.2.0
dev: false
@@ -7666,34 +8922,34 @@ packages:
util-deprecate: 1.0.2
dev: false
- /postcss-sort-media-queries/4.2.1_postcss@8.4.7:
+ /postcss-sort-media-queries/4.2.1_postcss@8.4.16:
resolution: {integrity: sha512-9VYekQalFZ3sdgcTjXMa0dDjsfBVHXlraYJEMiOJ/2iMmI2JGCMavP16z3kWOaRu8NSaJCTgVpB/IVpH5yT9YQ==}
engines: {node: '>=10.0.0'}
peerDependencies:
postcss: ^8.4.4
dependencies:
- postcss: 8.4.7
+ postcss: 8.4.16
sort-css-media-queries: 2.0.4
dev: false
- /postcss-svgo/5.0.4_postcss@8.4.7:
- resolution: {integrity: sha512-yDKHvULbnZtIrRqhZoA+rxreWpee28JSRH/gy9727u0UCgtpv1M/9WEWY3xySlFa0zQJcqf6oCBJPR5NwkmYpg==}
+ /postcss-svgo/5.1.0_postcss@8.4.16:
+ resolution: {integrity: sha512-D75KsH1zm5ZrHyxPakAxJWtkyXew5qwS70v56exwvw542d9CRtTo78K0WeFxZB4G7JXKKMbEZtZayTGdIky/eA==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- postcss: 8.4.7
+ postcss: 8.4.16
postcss-value-parser: 4.2.0
svgo: 2.8.0
dev: false
- /postcss-unique-selectors/5.0.4_postcss@8.4.7:
- resolution: {integrity: sha512-5ampwoSDJCxDPoANBIlMgoBcYUHnhaiuLYJR5pj1DLnYQvMRVyFuTA5C3Bvt+aHtiqWpJkD/lXT50Vo1D0ZsAQ==}
+ /postcss-unique-selectors/5.1.1_postcss@8.4.16:
+ resolution: {integrity: sha512-5JiODlELrz8L2HwxfPnhOWZYWDxVHWL83ufOv84NrcgipI7TaeRsatAhK4Tr2/ZiYldpK/wBvw5BD3qfaK96GA==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- postcss: 8.4.7
+ postcss: 8.4.16
postcss-selector-parser: 6.0.9
dev: false
@@ -7701,26 +8957,26 @@ packages:
resolution: {integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==}
dev: false
- /postcss-zindex/5.0.2_postcss@8.4.7:
- resolution: {integrity: sha512-KPQFjQu73H35HLHmE8Wv31ygfQoucxD52oRm4FPFv1emYhFMzUQdF8adaXCevFLIHPRp2rRYfbaDiEqZ4YjVtw==}
+ /postcss-zindex/5.1.0_postcss@8.4.16:
+ resolution: {integrity: sha512-fgFMf0OtVSBR1va1JNHYgMxYk73yhn/qb4uQDq1DLGYolz8gHCyr/sesEuGUaYs58E3ZJRcpoGuPVoB7Meiq9A==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- postcss: 8.4.7
+ postcss: 8.4.16
dev: false
- /postcss/8.4.7:
- resolution: {integrity: sha512-L9Ye3r6hkkCeOETQX6iOaWZgjp3LL6Lpqm6EtgbKrgqGGteRMNb9vzBfRL96YOSu8o7x3MfIH9Mo5cPJFGrW6A==}
+ /postcss/8.4.16:
+ resolution: {integrity: sha512-ipHE1XBvKzm5xI7hiHCZJCSugxvsdq2mPnsq5+UF+VHCjiBvtDrlxJfMBToWaP9D5XlgNmcFGqoHmUn0EYEaRQ==}
engines: {node: ^10 || ^12 || >=14}
dependencies:
- nanoid: 3.3.1
+ nanoid: 3.3.4
picocolors: 1.0.0
source-map-js: 1.0.2
dev: false
/prepend-http/2.0.0:
- resolution: {integrity: sha1-6SQ0v6XqjBn0HN/UAddBo8gZ2Jc=}
+ resolution: {integrity: sha512-ravE6m9Atw9Z/jjttRUZ+clIXogdghyZAuWJ3qEzjT+jI/dL1ifAqhZeC5VHzQp1MSt1+jxKkFNemj/iO7tVUA==}
engines: {node: '>=4'}
dev: false
@@ -7736,16 +8992,16 @@ packages:
engines: {node: '>=4'}
dev: false
- /prism-react-renderer/1.3.1_react@17.0.2:
- resolution: {integrity: sha512-xUeDMEz074d0zc5y6rxiMp/dlC7C+5IDDlaEUlcBOFE2wddz7hz5PNupb087mPwTt7T9BrFmewObfCBuf/LKwQ==}
+ /prism-react-renderer/1.3.5_react@17.0.2:
+ resolution: {integrity: sha512-IJ+MSwBWKG+SM3b2SUfdrhC+gu01QkV2KmRQgREThBfSQRoufqRfxfHUxpG1WcaFjP+kojcFyO9Qqtpgt3qLCg==}
peerDependencies:
react: '>=0.14.9'
dependencies:
react: 17.0.2
dev: false
- /prismjs/1.27.0:
- resolution: {integrity: sha512-t13BGPUlFDR7wRB5kQDG4jjl7XeuH6jbJGt11JHPL96qwsEHNX2+68tFXqc1/k+/jALsbSWJKUOT/hcYAZ5LkA==}
+ /prismjs/1.29.0:
+ resolution: {integrity: sha512-Kx/1w86q/epKcmte75LNrEoT+lX8pBpavuAbvJWRXar7Hz8jrtF+e3vY751p0R8H9HdArwaCTNDDzHg/ScJK1Q==}
engines: {node: '>=6'}
dev: false
@@ -7773,7 +9029,6 @@ packages:
loose-envify: 1.4.0
object-assign: 4.1.1
react-is: 16.13.1
- dev: false
/property-information/5.6.0:
resolution: {integrity: sha512-YUHSPk+A30YPv+0Qf8i9Mbfe/C0hdPXk1s1jPVToV8pk8BQtpw10ct89Eo7OWkutrwqvT0eicAxlOg3dOAu8JA==}
@@ -7796,18 +9051,13 @@ packages:
once: 1.4.0
dev: false
- /punycode/1.3.2:
- resolution: {integrity: sha1-llOgNvt8HuQjQvIyXM7v6jkmxI0=}
- dev: false
-
/punycode/1.4.1:
- resolution: {integrity: sha1-wNWmOycYgArY4esPpSachN1BhF4=}
+ resolution: {integrity: sha512-jmYNElW7yvO7TV33CjSmvSiE2yco3bV2czu/OzDKdMNVZQWfxCblURLhf+47syQRBntjfLdd/H0egrzIG+oaFQ==}
dev: false
/punycode/2.1.1:
resolution: {integrity: sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==}
engines: {node: '>=6'}
- dev: false
/pupa/2.1.1:
resolution: {integrity: sha512-l1jNAspIBSFqbT+y+5FosojNpVpF94nlI+wDUpqP9enwOTfHx9f0gh5nB96vl+6yTpsJsypeNrwfzPrKuHB41A==}
@@ -7817,7 +9067,7 @@ packages:
dev: false
/pure-color/1.3.0:
- resolution: {integrity: sha1-H+Bk+wrIUfDeYTIKi/eWg2Qi8z4=}
+ resolution: {integrity: sha512-QFADYnsVoBMw1srW7OVKEYjG+MbIa49s54w1MA1EDY6r2r/sTcKKYqRX1f4GYvnXP7eN/Pe9HFcX+hwzmrXRHA==}
dev: false
/q/1.5.1:
@@ -7830,18 +9080,6 @@ packages:
engines: {node: '>=0.6'}
dev: false
- /querystring/0.2.0:
- resolution: {integrity: sha1-sgmEkgO7Jd+CDadW50cAWHhSFiA=}
- engines: {node: '>=0.4.x'}
- deprecated: The querystring API is considered Legacy. new code should use the URLSearchParams API instead.
- dev: false
-
- /querystring/0.2.1:
- resolution: {integrity: sha512-wkvS7mL/JMugcup3/rMitHmd9ecIGd2lhFhK9N3UUQ450h66d1r3Y9nvXzQAW1Lq+wyx61k/1pfKS5KuKiyEbg==}
- engines: {node: '>=0.4.x'}
- deprecated: The querystring API is considered Legacy. new code should use the URLSearchParams API instead.
- dev: false
-
/queue-microtask/1.2.3:
resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==}
@@ -7855,10 +9093,9 @@ packages:
resolution: {integrity: sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==}
dependencies:
safe-buffer: 5.2.1
- dev: false
/range-parser/1.2.0:
- resolution: {integrity: sha1-9JvmtIeJTdxA3MlKMi9hEJLgDV4=}
+ resolution: {integrity: sha512-kA5WQoNVo4t9lNx2kQNFCxKeBl5IbbSNBl1M/tLkw9WCn+hxNBAW5Qh8gdhs63CJnhjJ2zQWFoqPJP2sK1AV5A==}
engines: {node: '>= 0.6'}
dev: false
@@ -7888,7 +9125,7 @@ packages:
dev: false
/react-base16-styling/0.6.0:
- resolution: {integrity: sha1-7yFW1mz0E5aVyKFniGy2nqZgeSw=}
+ resolution: {integrity: sha512-yvh/7CArceR/jNATXOKDlvTnPKPmGZz7zsenQ3jUwLzHkNUR0CvY3yGYJbWJ/nnxsL8Sgmt5cO3/SILVuPO6TQ==}
dependencies:
base16: 1.0.0
lodash.curry: 4.1.1
@@ -7896,20 +9133,26 @@ packages:
pure-color: 1.3.0
dev: false
- /react-dev-utils/12.0.0_webpack@5.69.1:
- resolution: {integrity: sha512-xBQkitdxozPxt1YZ9O1097EJiVpwHr9FoAuEVURCKV0Av8NBERovJauzP7bo1ThvuhZ4shsQ1AJiu4vQpoT1AQ==}
+ /react-dev-utils/12.0.1_webpack@5.74.0:
+ resolution: {integrity: sha512-84Ivxmr17KjUupyqzFode6xKhjwuEJDROWKJy/BthkL7Wn6NJ8h4WE6k/exAv6ImS+0oZLRRW5j/aINMHyeGeQ==}
engines: {node: '>=14'}
+ peerDependencies:
+ typescript: '>=2.7'
+ webpack: '>=4'
+ peerDependenciesMeta:
+ typescript:
+ optional: true
dependencies:
- '@babel/code-frame': 7.16.7
+ '@babel/code-frame': 7.18.6
address: 1.1.2
- browserslist: 4.19.3
+ browserslist: 4.21.4
chalk: 4.1.2
cross-spawn: 7.0.3
detect-port-alt: 1.1.6
escape-string-regexp: 4.0.0
filesize: 8.0.7
find-up: 5.0.0
- fork-ts-checker-webpack-plugin: 6.5.0_webpack@5.69.1
+ fork-ts-checker-webpack-plugin: 6.5.0_webpack@5.74.0
global-modules: 2.0.0
globby: 11.1.0
gzip-size: 6.0.0
@@ -7919,16 +9162,16 @@ packages:
open: 8.4.0
pkg-up: 3.1.0
prompts: 2.4.2
- react-error-overlay: 6.0.10
+ react-error-overlay: 6.0.11
recursive-readdir: 2.2.2
shell-quote: 1.7.3
strip-ansi: 6.0.1
text-table: 0.2.0
+ webpack: 5.74.0
transitivePeerDependencies:
- eslint
- - typescript
+ - supports-color
- vue-template-compiler
- - webpack
dev: false
/react-dom/17.0.2_react@17.0.2:
@@ -7940,36 +9183,32 @@ packages:
object-assign: 4.1.1
react: 17.0.2
scheduler: 0.20.2
- dev: false
- /react-error-overlay/6.0.10:
- resolution: {integrity: sha512-mKR90fX7Pm5seCOfz8q9F+66VCc1PGsWSBxKbITjfKVQHMNF2zudxHnMdJiB1fRCb+XsbQV9sO9DCkgsMQgBIA==}
+ /react-error-overlay/6.0.11:
+ resolution: {integrity: sha512-/6UZ2qgEyH2aqzYZgQPxEnz33NJ2gNsnHA2o5+o4wW9bLM/JYQitNP9xPhsXwC08hMMovfGe/8retsdDsczPRg==}
dev: false
/react-fast-compare/3.2.0:
resolution: {integrity: sha512-rtGImPZ0YyLrscKI9xTpV8psd6I8VAtjKCzQDlzyDvqJA8XOW78TXYQwNRNd8g8JZnDu8q9Fu/1v4HPAVwVdHA==}
- dev: false
- /react-helmet-async/1.2.3_react-dom@17.0.2+react@17.0.2:
- resolution: {integrity: sha512-mCk2silF53Tq/YaYdkl2sB+/tDoPnaxN7dFS/6ZLJb/rhUY2EWGI5Xj2b4jHppScMqY45MbgPSwTxDchKpZ5Kw==}
+ /react-helmet-async/1.3.0_sfoxds7t5ydpegc3knd667wn6m:
+ resolution: {integrity: sha512-9jZ57/dAn9t3q6hneQS0wukqC2ENOBgMNVEhb/ZG9ZSxUetzVIw4iAmEU38IaVg3QGYauQPhSeUTuIUtFglWpg==}
peerDependencies:
- react: ^16.6.0 || ^17.0.0
- react-dom: ^16.6.0 || ^17.0.0
+ react: ^16.6.0 || ^17.0.0 || ^18.0.0
+ react-dom: ^16.6.0 || ^17.0.0 || ^18.0.0
dependencies:
- '@babel/runtime': 7.17.2
+ '@babel/runtime': 7.19.0
invariant: 2.2.4
prop-types: 15.8.1
react: 17.0.2
react-dom: 17.0.2_react@17.0.2
react-fast-compare: 3.2.0
shallowequal: 1.1.0
- dev: false
/react-is/16.13.1:
resolution: {integrity: sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==}
- dev: false
- /react-json-view/1.21.3_react-dom@17.0.2+react@17.0.2:
+ /react-json-view/1.21.3_sfoxds7t5ydpegc3knd667wn6m:
resolution: {integrity: sha512-13p8IREj9/x/Ye4WI/JpjhoIwuzEgUAtgJZNBJckfzJt1qyh24BdTm6UQNGnyTq9dapQdrqvquZTo3dz1X6Cjw==}
peerDependencies:
react: ^17.0.0 || ^16.3.0 || ^15.5.4
@@ -7990,54 +9229,54 @@ packages:
resolution: {integrity: sha512-fBASbA6LnOU9dOU2eW7aQ8xmYBSXUIWr+UmF9b1efZBazGNO+rcXT/icdKnYm2pTwcRylVUYwW7H1PHfLekVzA==}
dev: false
- /react-loadable-ssr-addon-v5-slorber/1.0.1_420fbef245c20ae321de3407a55f25ff:
+ /react-loadable-ssr-addon-v5-slorber/1.0.1_jyzm4i6gssn5i7hvhuq33bg7ba:
resolution: {integrity: sha512-lq3Lyw1lGku8zUEJPDxsNm1AfYHBrO9Y1+olAYwpUJ2IGFBskM0DMKok97A6LWUpHm+o7IvQBOWu9MLenp9Z+A==}
engines: {node: '>=10.13.0'}
peerDependencies:
react-loadable: '*'
webpack: '>=4.41.1 || 5.x'
dependencies:
- '@babel/runtime': 7.17.2
+ '@babel/runtime': 7.19.0
react-loadable: /@docusaurus/react-loadable/5.5.2_react@17.0.2
- webpack: 5.69.1
+ webpack: 5.74.0
dev: false
- /react-router-config/5.1.1_react-router@5.2.1+react@17.0.2:
+ /react-router-config/5.1.1_oyuskl3t7voyrff2xstzuy4hqu:
resolution: {integrity: sha512-DuanZjaD8mQp1ppHjgnnUnyOlqYXZVjnov/JzFhjLEwd3Z4dYjMSnqrEzzGThH47vpCOqPPwJM2FtthLeJ8Pbg==}
peerDependencies:
react: '>=15'
react-router: '>=5'
dependencies:
- '@babel/runtime': 7.17.2
+ '@babel/runtime': 7.19.0
react: 17.0.2
- react-router: 5.2.1_react@17.0.2
+ react-router: 5.3.3_react@17.0.2
dev: false
- /react-router-dom/5.3.0_react@17.0.2:
- resolution: {integrity: sha512-ObVBLjUZsphUUMVycibxgMdh5jJ1e3o+KpAZBVeHcNQZ4W+uUGGWsokurzlF4YOldQYRQL4y6yFRWM4m3svmuQ==}
+ /react-router-dom/5.3.3_react@17.0.2:
+ resolution: {integrity: sha512-Ov0tGPMBgqmbu5CDmN++tv2HQ9HlWDuWIIqn4b88gjlAN5IHI+4ZUZRcpz9Hl0azFIwihbLDYw1OiHGRo7ZIng==}
peerDependencies:
react: '>=15'
dependencies:
- '@babel/runtime': 7.17.2
+ '@babel/runtime': 7.19.0
history: 4.10.1
loose-envify: 1.4.0
prop-types: 15.8.1
react: 17.0.2
- react-router: 5.2.1_react@17.0.2
+ react-router: 5.3.3_react@17.0.2
tiny-invariant: 1.2.0
tiny-warning: 1.0.3
dev: false
- /react-router/5.2.1_react@17.0.2:
- resolution: {integrity: sha512-lIboRiOtDLFdg1VTemMwud9vRVuOCZmUIT/7lUoZiSpPODiiH1UQlfXy+vPLC/7IWdFYnhRwAyNqA/+I7wnvKQ==}
+ /react-router/5.3.3_react@17.0.2:
+ resolution: {integrity: sha512-mzQGUvS3bM84TnbtMYR8ZjKnuPJ71IjSzR+DE6UkUqvN4czWIqEs17yLL8xkAycv4ev0AiN+IGrWu88vJs/p2w==}
peerDependencies:
react: '>=15'
dependencies:
- '@babel/runtime': 7.17.2
+ '@babel/runtime': 7.19.0
history: 4.10.1
hoist-non-react-statics: 3.3.2
loose-envify: 1.4.0
- mini-create-react-context: 0.4.1_prop-types@15.8.1+react@17.0.2
+ mini-create-react-context: 0.4.1_at7mkepldmzoo6silmqc5bca74
path-to-regexp: 1.8.0
prop-types: 15.8.1
react: 17.0.2
@@ -8066,7 +9305,6 @@ packages:
dependencies:
loose-envify: 1.4.0
object-assign: 4.1.1
- dev: false
/readable-stream/2.3.7:
resolution: {integrity: sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==}
@@ -8101,7 +9339,7 @@ packages:
dev: false
/rechoir/0.6.2:
- resolution: {integrity: sha1-hSBLVNuoLVdC4oyWdW70OvUOM4Q=}
+ resolution: {integrity: sha512-HFM8rkZ+i3zrV+4LQjwQ0W+ez98pApMGM3HUrN04j3CqzPOzl9nmP15Y8YXNm8QHGv/eacOVEjqhmWpkRV0NAw==}
engines: {node: '>= 0.10'}
dependencies:
resolve: 1.22.0
@@ -8121,13 +9359,19 @@ packages:
regenerate: 1.4.2
dev: false
+ /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:
resolution: {integrity: sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==}
dev: false
/regenerator-runtime/0.13.9:
resolution: {integrity: sha512-p3VT+cOEgxFsRRA9X4lkI1E+k2/CtnKtU4gcxyaCUreilL/vqI6CdZ3wxVUx3UOUg+gnUOQQcRI7BmSI656MYA==}
- dev: false
/regenerator-transform/0.14.5:
resolution: {integrity: sha512-eOf6vka5IO151Jfsw2NO9WpGX58W6wWmefK3I1zEGr0lOD0u8rwPaNqQL1aRxUaxLeKO3ArNh3VYg1KbaD+FFw==}
@@ -8135,12 +9379,10 @@ packages:
'@babel/runtime': 7.17.2
dev: false
- /regexp.prototype.flags/1.4.1:
- resolution: {integrity: sha512-pMR7hBVUUGI7PMA37m2ofIdQCsomVnas+Jn5UPGAHQ+/LlwKm/aTLJHdasmHRzlfeZwHiAOaRSo2rbBDm3nNUQ==}
- engines: {node: '>= 0.4'}
+ /regenerator-transform/0.15.0:
+ resolution: {integrity: sha512-LsrGtPmbYg19bcPHwdtmXwbW+TqNvtY4riE3P83foeHRroMbH6/2ddFBfab3t7kbzc7v7p4wbkIecHImqt0QNg==}
dependencies:
- call-bind: 1.0.2
- define-properties: 1.1.3
+ '@babel/runtime': 7.19.0
dev: false
/regexpu-core/5.0.1:
@@ -8155,6 +9397,18 @@ packages:
unicode-match-property-value-ecmascript: 2.0.0
dev: false
+ /regexpu-core/5.2.1:
+ resolution: {integrity: sha512-HrnlNtpvqP1Xkb28tMhBUO2EbyUHdQlsnlAhzWcwHy8WJR53UWr7/MAvqrsQKMbV4qdpv03oTMG8iIhfsPFktQ==}
+ engines: {node: '>=4'}
+ dependencies:
+ regenerate: 1.4.2
+ regenerate-unicode-properties: 10.1.0
+ regjsgen: 0.7.1
+ regjsparser: 0.9.1
+ unicode-match-property-ecmascript: 2.0.0
+ unicode-match-property-value-ecmascript: 2.0.0
+ dev: false
+
/registry-auth-token/4.2.1:
resolution: {integrity: sha512-6gkSb4U6aWJB4SF2ZvLb76yCBjcvufXBqvvEx1HbmKPkutswjW1xNVRY0+daljIYRbogN7O0etYSlbiaEQyMyw==}
engines: {node: '>=6.0.0'}
@@ -8173,6 +9427,10 @@ packages:
resolution: {integrity: sha512-ozE883Uigtqj3bx7OhL1KNbCzGyW2NQZPl6Hs09WTvCuZD5sTI4JY58bkbQWa/Y9hxIsvJ3M8Nbf7j54IqeZbA==}
dev: false
+ /regjsgen/0.7.1:
+ resolution: {integrity: sha512-RAt+8H2ZEzHeYWxZ3H2z6tF18zyyOnlcdaafLrm21Bguj7uZy6ULibiAFdXEtKQY4Sy7wDTwDiOazasMLc4KPA==}
+ dev: false
+
/regjsparser/0.8.4:
resolution: {integrity: sha512-J3LABycON/VNEu3abOviqGHuB/LOtOQj8SKmfP9anY5GfAVw/SPjwzSjxGjbZXIxbGfqTHtJw58C2Li/WkStmA==}
hasBin: true
@@ -8180,6 +9438,13 @@ packages:
jsesc: 0.5.0
dev: false
+ /regjsparser/0.9.1:
+ resolution: {integrity: sha512-dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ==}
+ hasBin: true
+ dependencies:
+ jsesc: 0.5.0
+ dev: false
+
/rehype-katex/5.0.0:
resolution: {integrity: sha512-ksSuEKCql/IiIadOHiKRMjypva9BLhuwQNascMqaoGLDVd0k2NlE2wMvgZ3rpItzRKCd6vs8s7MFbb8pcR0AEg==}
dependencies:
@@ -8191,14 +9456,6 @@ packages:
unist-util-visit: 2.0.3
dev: false
- /rehype-parse/6.0.2:
- resolution: {integrity: sha512-0S3CpvpTAgGmnz8kiCyFLGuW5yA4OQhyNTm/nwPopZ7+PI11WnGl1TTWTGv/2hPEe/g2jRLlhVVSsoDH8waRug==}
- dependencies:
- hast-util-from-parse5: 5.0.3
- parse5: 5.1.1
- xtend: 4.0.2
- dev: false
-
/rehype-parse/7.0.1:
resolution: {integrity: sha512-fOiR9a9xH+Le19i4fGzIEowAbwG7idy2Jzs4mOrFWBSJ0sNUgy0ev871dwWnbOo371SjgjG4pwzrbgSVrKxecw==}
dependencies:
@@ -8207,18 +9464,10 @@ packages:
dev: false
/relateurl/0.2.7:
- resolution: {integrity: sha1-VNvzd+UUQKypCkzSdGANP/LYiKk=}
+ resolution: {integrity: sha512-G08Dxvm4iDN3MLM0EsP62EDV9IuhXPR6blNz6Utcp7zyV3tr4HVNINt6MpaRWbxoOHT3Q7YN2P+jaHX8vUbgog==}
engines: {node: '>= 0.10'}
dev: false
- /remark-admonitions/1.2.1:
- resolution: {integrity: sha512-Ji6p68VDvD+H1oS95Fdx9Ar5WA2wcDA4kwrrhVU7fGctC6+d3uiMICu7w7/2Xld+lnU7/gi+432+rRbup5S8ow==}
- dependencies:
- rehype-parse: 6.0.2
- unified: 8.4.2
- unist-util-visit: 2.0.3
- dev: false
-
/remark-emoji/2.2.0:
resolution: {integrity: sha512-P3cj9s5ggsUvWw5fS2uzCHJMGuXYRb0NnZqYlNecewXt8QBU9n5vW3DUUKOhepS8F9CwdMx9B8a3i7pqFWAI5w==}
dependencies:
@@ -8298,11 +9547,11 @@ packages:
dev: false
/require-like/0.1.2:
- resolution: {integrity: sha1-rW8wwTvs15cBDEaK+ndcDAprR/o=}
+ resolution: {integrity: sha512-oyrU88skkMtDdauHDuKVrgR+zuItqr6/c//FXzvmxRGMexSDc6hNvJInGW3LL46n+8b50RykrvwSUIIQH2LQ5A==}
dev: false
/requires-port/1.0.0:
- resolution: {integrity: sha1-kl0mAdOaxIXgkc8NpcbmlNw9yv8=}
+ resolution: {integrity: sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==}
dev: false
/resolve-from/4.0.0:
@@ -8324,7 +9573,7 @@ packages:
dev: false
/responselike/1.0.2:
- resolution: {integrity: sha1-kYcg7ztjHFZCvgaPFa3lpG9Loec=}
+ resolution: {integrity: sha512-/Fpe5guzJk1gPqdJLJR5u7eG/gNY4nImjbRDaVWVMRhne55TCmj2i9Q+54PBRfatRC8v/rIiv9BN0pMd9OV5EQ==}
dependencies:
lowercase-keys: 1.0.1
dev: false
@@ -8338,13 +9587,6 @@ packages:
resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==}
engines: {iojs: '>=1.0.0', node: '>=0.10.0'}
- /rimraf/2.7.1:
- resolution: {integrity: sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==}
- hasBin: true
- dependencies:
- glob: 7.2.0
- dev: false
-
/rimraf/3.0.2:
resolution: {integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==}
hasBin: true
@@ -8366,7 +9608,7 @@ packages:
dependencies:
find-up: 5.0.0
picocolors: 1.0.0
- postcss: 8.4.7
+ postcss: 8.4.16
strip-json-comments: 3.1.1
dev: false
@@ -8376,13 +9618,13 @@ packages:
queue-microtask: 1.2.3
/rw/1.3.3:
- resolution: {integrity: sha1-P4Yt+pGrdmsUiF700BEkv9oHT7Q=}
+ resolution: {integrity: sha512-PdhdWy89SiZogBLaw42zdeqtRJ//zFd2PgQavcICDUgJT5oW10QCRKbJ6bg4r0/UY2M6BWd5tkxuGFRvCkgfHQ==}
dev: false
/rxjs/7.5.4:
resolution: {integrity: sha512-h5M3Hk78r6wAheJF0a5YahB1yRQKCsZ4MsGdZ5O9ETbVtjPcScGfrMmoOq7EBsCRzd4BDkvDJ7ogP8Sz5tTFiQ==}
dependencies:
- tslib: 2.3.1
+ tslib: 2.4.0
dev: false
/safe-buffer/5.1.2:
@@ -8391,7 +9633,6 @@ packages:
/safe-buffer/5.2.1:
resolution: {integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==}
- dev: false
/safer-buffer/2.1.2:
resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==}
@@ -8406,7 +9647,6 @@ packages:
dependencies:
loose-envify: 1.4.0
object-assign: 4.1.1
- dev: false
/schema-utils/2.7.0:
resolution: {integrity: sha512-0ilKFI6QQF5nxDZLFn2dMjvc4hjg/Wkg7rHd3jK6/A4a1Hl9VFdQWvgB1UMGoU94pad1P/8N7fMcEnLnSiju8A==}
@@ -8433,7 +9673,6 @@ packages:
'@types/json-schema': 7.0.9
ajv: 6.12.6
ajv-keywords: 3.5.2_ajv@6.12.6
- dev: false
/schema-utils/4.0.0:
resolution: {integrity: sha512-1edyXKgh6XnJsJSQ8mKWXnN/BVaIbFMLpouRUrXgVq7WYne5kw3MW7UPhO44uRXQSIpTSXoJbmrR2X0w9kUTyg==}
@@ -8454,11 +9693,11 @@ packages:
dev: false
/select-hose/2.0.0:
- resolution: {integrity: sha1-Yl2GWPhlr0Psliv8N2o3NZpJlMo=}
+ resolution: {integrity: sha512-mEugaLK+YfkijB4fx0e6kImuJdCIt2LxCRcbEYPqRGCs4F2ogyfZU5IAZRdjCP8JPq2AtdNoC/Dux63d9Kiryg==}
dev: false
- /selfsigned/2.0.0:
- resolution: {integrity: sha512-cUdFiCbKoa1mZ6osuJs2uDHrs0k0oprsKveFiiaBKCNq3SYyb5gs2HxhQyDNLCmL51ZZThqi4YNDpCK6GOP1iQ==}
+ /selfsigned/2.1.1:
+ resolution: {integrity: sha512-GSL3aowiF7wa/WtSFwnUrludWFoNhftq8bUkH9pkzjpN2XSPOAYEgg6e0sS9s0rZwgJzJiQRPU18A6clnoW5wQ==}
engines: {node: '>=10'}
dependencies:
node-forge: 1.2.1
@@ -8486,8 +9725,8 @@ packages:
hasBin: true
dev: false
- /semver/7.3.5:
- resolution: {integrity: sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ==}
+ /semver/7.3.7:
+ resolution: {integrity: sha512-QlYTucUYOews+WeEujDoEGziz4K6c47V/Bd+LjSSYcA94p+DmINdf7ncaUinThfvZyu13lN9OY1XDxt8C0Tw0g==}
engines: {node: '>=10'}
hasBin: true
dependencies:
@@ -8511,13 +9750,14 @@ packages:
on-finished: 2.3.0
range-parser: 1.2.1
statuses: 1.5.0
+ transitivePeerDependencies:
+ - supports-color
dev: false
/serialize-javascript/6.0.0:
resolution: {integrity: sha512-Qr3TosvguFt8ePWqsvRfrKyQXIiW+nGbYpy8XK24NQHE83caxWt+mIymTT19DGFbNWNLfEwsrkSmN64lVWB9ag==}
dependencies:
randombytes: 2.1.0
- dev: false
/serve-handler/6.1.3:
resolution: {integrity: sha512-FosMqFBNrLyeiIDvP1zgO6YoTzFYHxLDEIavhlmQ+knB2Z7l1t+kGLHkZIDN7UVWqQAmKI3D20A6F6jo3nDd4w==}
@@ -8533,7 +9773,7 @@ packages:
dev: false
/serve-index/1.9.1:
- resolution: {integrity: sha1-03aNabHn2C5c4FD/9bRTvqEqkjk=}
+ resolution: {integrity: sha512-pXHfKNP4qujrtteMrSBb0rc8HJ9Ms/GrXwcUtUtD5s4ewDJI8bT3Cz2zTVRMKtri49pLx2e0Ya8ziP5Ya2pZZw==}
engines: {node: '>= 0.8.0'}
dependencies:
accepts: 1.3.8
@@ -8543,6 +9783,8 @@ packages:
http-errors: 1.6.3
mime-types: 2.1.34
parseurl: 1.3.3
+ transitivePeerDependencies:
+ - supports-color
dev: false
/serve-static/1.14.2:
@@ -8553,10 +9795,12 @@ packages:
escape-html: 1.0.3
parseurl: 1.3.3
send: 0.17.2
+ transitivePeerDependencies:
+ - supports-color
dev: false
/setimmediate/1.0.5:
- resolution: {integrity: sha1-KQy7Iy4waULX1+qbg3Mqt4VvgoU=}
+ resolution: {integrity: sha512-MATJdZp8sLqDl/68LfQmbP8zKPLQNV6BIZoIgrscFDQ+RsvK/BxeDQOgyxKKoh0y/8h3BqVFnCqQ/gd+reiIXA==}
dev: false
/setprototypeof/1.1.0:
@@ -8572,18 +9816,9 @@ packages:
engines: {node: '>=8'}
dependencies:
kind-of: 6.0.3
- dev: false
/shallowequal/1.1.0:
resolution: {integrity: sha512-y0m1JoUZSlPAjXVtPPW70aZWfIL/dSP7AFkRnniLCrK/8MDKog3TySTBmckD+RObVxH0v4Tox67+F14PdED2oQ==}
- dev: false
-
- /shebang-command/1.2.0:
- resolution: {integrity: sha1-RKrGW2lbAzmJaMOfNj/uXer98eo=}
- engines: {node: '>=0.10.0'}
- dependencies:
- shebang-regex: 1.0.0
- dev: false
/shebang-command/2.0.0:
resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==}
@@ -8592,11 +9827,6 @@ packages:
shebang-regex: 3.0.0
dev: false
- /shebang-regex/1.0.0:
- resolution: {integrity: sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM=}
- engines: {node: '>=0.10.0'}
- dev: false
-
/shebang-regex/3.0.0:
resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==}
engines: {node: '>=8'}
@@ -8674,10 +9904,6 @@ packages:
engines: {node: '>= 6.3.0'}
dev: false
- /source-list-map/2.0.1:
- resolution: {integrity: sha512-qnQ7gVMxGNxsiL4lEuJwe/To8UnK7fAnmbGEEH8RpLouuKbeEm0lhbQVFIrNSuB+G7tVrAlVsZgETT5nljf+Iw==}
- dev: false
-
/source-map-js/1.0.2:
resolution: {integrity: sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==}
engines: {node: '>=0.10.0'}
@@ -8688,7 +9914,6 @@ packages:
dependencies:
buffer-from: 1.1.2
source-map: 0.6.1
- dev: false
/source-map/0.5.7:
resolution: {integrity: sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=}
@@ -8698,7 +9923,6 @@ packages:
/source-map/0.6.1:
resolution: {integrity: sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==}
engines: {node: '>=0.10.0'}
- dev: false
/source-map/0.7.3:
resolution: {integrity: sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ==}
@@ -8739,10 +9963,6 @@ packages:
resolution: {integrity: sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=}
dev: false
- /ssim.js/3.5.0:
- resolution: {integrity: sha512-Aj6Jl2z6oDmgYFFbQqK7fght19bXdOxY7Tj03nF+03M9gCBAjeIiO8/PlEGMfKDwYpw4q6iBqVq2YuREorGg/g==}
- dev: false
-
/stable/0.1.8:
resolution: {integrity: sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w==}
dev: false
@@ -8752,7 +9972,7 @@ packages:
dev: false
/statuses/1.5.0:
- resolution: {integrity: sha1-Fhx9rBd2Wf2YEfQ3cfqZOBR4Yow=}
+ resolution: {integrity: sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA==}
engines: {node: '>= 0.6'}
dev: false
@@ -8813,13 +10033,6 @@ packages:
is-regexp: 1.0.0
dev: false
- /strip-ansi/3.0.1:
- resolution: {integrity: sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=}
- engines: {node: '>=0.10.0'}
- dependencies:
- ansi-regex: 2.1.1
- dev: false
-
/strip-ansi/6.0.1:
resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==}
engines: {node: '>=8'}
@@ -8835,12 +10048,7 @@ packages:
dev: false
/strip-bom-string/1.0.0:
- resolution: {integrity: sha1-5SEekiQ2n7uB1jOi8ABE3IztrZI=}
- engines: {node: '>=0.10.0'}
- dev: false
-
- /strip-eof/1.0.0:
- resolution: {integrity: sha1-u0P/VZim6wXYm1n80SnJgzE2Br8=}
+ resolution: {integrity: sha512-uCC2VHvQRYu+lMh4My/sFNmF2klFymLX1wHJeXnbEJERpV/ZsVuonzerjfrGpIGF7LBVa1O7i9kjiWvJiFck8g==}
engines: {node: '>=0.10.0'}
dev: false
@@ -8850,7 +10058,7 @@ packages:
dev: false
/strip-json-comments/2.0.1:
- resolution: {integrity: sha1-PFMZQukIwml8DsNEhYwobHygpgo=}
+ resolution: {integrity: sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ==}
engines: {node: '>=0.10.0'}
dev: false
@@ -8870,14 +10078,14 @@ packages:
inline-style-parser: 0.1.1
dev: false
- /stylehacks/5.0.3_postcss@8.4.7:
- resolution: {integrity: sha512-ENcUdpf4yO0E1rubu8rkxI+JGQk4CgjchynZ4bDBJDfqdy+uhTRSWb8/F3Jtu+Bw5MW45Po3/aQGeIyyxgQtxg==}
+ /stylehacks/5.1.0_postcss@8.4.16:
+ resolution: {integrity: sha512-SzLmvHQTrIWfSgljkQCw2++C9+Ne91d/6Sp92I8c5uHTcy/PgeHamwITIbBW9wnFTY/3ZfSXR9HIL6Ikqmcu6Q==}
engines: {node: ^10 || ^12 || >=14.0}
peerDependencies:
postcss: ^8.2.15
dependencies:
- browserslist: 4.19.3
- postcss: 8.4.7
+ browserslist: 4.21.4
+ postcss: 8.4.16
postcss-selector-parser: 6.0.9
dev: false
@@ -8885,11 +10093,6 @@ packages:
resolution: {integrity: sha512-SrSDzNasOCBTo7C2N9geFwydg/2bmdkWXd4gJirtq82m5JBYtR2+Ialck8czmfBLIdPxCOotlgJESPa8C1RqvA==}
dev: false
- /supports-color/2.0.0:
- resolution: {integrity: sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=}
- engines: {node: '>=0.8.0'}
- dev: false
-
/supports-color/5.5.0:
resolution: {integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==}
engines: {node: '>=4'}
@@ -8909,7 +10112,6 @@ packages:
engines: {node: '>=10'}
dependencies:
has-flag: 4.0.0
- dev: false
/supports-preserve-symlinks-flag/1.0.0:
resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==}
@@ -8963,18 +10165,9 @@ packages:
/tapable/2.2.1:
resolution: {integrity: sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==}
engines: {node: '>=6'}
- dev: false
-
- /term-img/4.1.0:
- resolution: {integrity: sha512-DFpBhaF5j+2f7kheKFc1ajsAUUDGOaNPpKPtiIMxlbfud6mvfFZuWGnTRpaujUa5J7yl6cIw/h6nyr4mSsENPg==}
- engines: {node: '>=8'}
- dependencies:
- ansi-escapes: 4.3.2
- iterm2-version: 4.2.0
- dev: false
- /terser-webpack-plugin/5.3.1_webpack@5.69.1:
- resolution: {integrity: sha512-GvlZdT6wPQKbDNW/GDQzZFg/j4vKU96yl2q6mcUkzKOgW4gwf1Z8cZToUCrz31XHlPWH8MVb1r2tFtdDtTGJ7g==}
+ /terser-webpack-plugin/5.3.6_webpack@5.74.0:
+ resolution: {integrity: sha512-kfLFk+PoLUQIbLmB1+PZDMRSZS99Mp+/MHqDNmMA6tOItzRt+Npe3E+fsMs5mfcM0wCtrrdU387UnV+vnSffXQ==}
engines: {node: '>= 10.13.0'}
peerDependencies:
'@swc/core': '*'
@@ -8989,37 +10182,42 @@ packages:
uglify-js:
optional: true
dependencies:
+ '@jridgewell/trace-mapping': 0.3.15
jest-worker: 27.5.1
schema-utils: 3.1.1
serialize-javascript: 6.0.0
- source-map: 0.6.1
- terser: 5.11.0
- webpack: 5.69.1
- dev: false
+ terser: 5.15.0
+ webpack: 5.74.0
/terser/5.11.0:
resolution: {integrity: sha512-uCA9DLanzzWSsN1UirKwylhhRz3aKPInlfmpGfw8VN6jHsAtu8HJtIpeeHHK23rxnE/cDc+yvmq5wqkIC6Kn0A==}
engines: {node: '>=10'}
hasBin: true
dependencies:
- acorn: 8.7.0
+ acorn: 8.8.0
commander: 2.20.3
source-map: 0.7.3
source-map-support: 0.5.21
dev: false
+ /terser/5.15.0:
+ resolution: {integrity: sha512-L1BJiXVmheAQQy+as0oF3Pwtlo4s3Wi1X2zNZ2NxOB4wx9bdS9Vk67XQENLFdLYGCK/Z2di53mTj/hBafR+dTA==}
+ engines: {node: '>=10'}
+ hasBin: true
+ dependencies:
+ '@jridgewell/source-map': 0.3.2
+ acorn: 8.8.0
+ commander: 2.20.3
+ source-map-support: 0.5.21
+
/text-table/0.2.0:
- resolution: {integrity: sha1-f17oI66AUgfACvLfSoTsP8+lcLQ=}
+ resolution: {integrity: sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==}
dev: false
/thunky/1.1.0:
resolution: {integrity: sha512-eHY7nBftgThBqOyHGVN+l8gF0BucP09fMo0oO/Lb0w1OF80dJv+lDVpXG60WMQvkcxAkNybKsrEIE3ZtKGmPrA==}
dev: false
- /timsort/0.3.0:
- resolution: {integrity: sha1-QFQRqOfmM5/mTbmiNN4R3DHgK9Q=}
- dev: false
-
/tiny-invariant/1.2.0:
resolution: {integrity: sha512-1Uhn/aqw5C6RI4KejVeTg6mIS7IqxnLJ8Mv2tV5rTc0qWobay7pDUz6Wi392Cnc8ak1H0F2cjoRzb2/AW4+Fvg==}
dev: false
@@ -9055,7 +10253,7 @@ packages:
dev: false
/tr46/0.0.3:
- resolution: {integrity: sha1-gYT9NH2snNwYWZLzpmIuFLnZq2o=}
+ resolution: {integrity: sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==}
dev: false
/trim-trailing-lines/1.1.4:
@@ -9063,15 +10261,15 @@ packages:
dev: false
/trim/0.0.1:
- resolution: {integrity: sha1-WFhUf2spB1fulczMZm+1AITEYN0=}
+ resolution: {integrity: sha512-YzQV+TZg4AxpKxaTHK3c3D+kRDCGVEE7LemdlQZoQXn0iennk10RsIoY6ikzAqJTc9Xjl9C1/waHom/J86ziAQ==}
dev: false
/trough/1.0.5:
resolution: {integrity: sha512-rvuRbTarPXmMb79SmzEp8aqXNKcK+y0XaB298IXueQ8I2PsrATcPBCSPyK/dDNa2iWOhKlfNnOjdAOTBU/nkFA==}
dev: false
- /tslib/2.3.1:
- resolution: {integrity: sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw==}
+ /tslib/2.4.0:
+ resolution: {integrity: sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==}
dev: false
/type-fest/0.20.2:
@@ -9079,11 +10277,6 @@ packages:
engines: {node: '>=10'}
dev: false
- /type-fest/0.21.3:
- resolution: {integrity: sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==}
- engines: {node: '>=10'}
- dev: false
-
/type-fest/2.12.0:
resolution: {integrity: sha512-Qe5GRT+n/4GoqCNGGVp5Snapg1Omq3V7irBJB3EaKsp7HWDo5Gv2d/67gfNyV+d5EXD+x/RF5l1h4yJ7qNkcGA==}
engines: {node: '>=12.20'}
@@ -9150,19 +10343,22 @@ packages:
engines: {node: '>=4'}
dev: false
- /unified/8.4.2:
- resolution: {integrity: sha512-JCrmN13jI4+h9UAyKEoGcDZV+i1E7BLFuG7OsaDvTXI5P0qhHX+vZO/kOhz9jn8HGENDKbwSeB0nVOg4gVStGA==}
+ /unified/9.2.0:
+ resolution: {integrity: sha512-vx2Z0vY+a3YoTj8+pttM3tiJHCwY5UFbYdiWrwBEbHmK8pvsPj2rtAX2BFfgXen8T39CJWblWRDT4L5WGXtDdg==}
dependencies:
+ '@types/unist': 2.0.6
bail: 1.0.5
extend: 3.0.2
+ is-buffer: 2.0.5
is-plain-obj: 2.1.0
trough: 1.0.5
vfile: 4.2.1
dev: false
- /unified/9.2.0:
- resolution: {integrity: sha512-vx2Z0vY+a3YoTj8+pttM3tiJHCwY5UFbYdiWrwBEbHmK8pvsPj2rtAX2BFfgXen8T39CJWblWRDT4L5WGXtDdg==}
+ /unified/9.2.2:
+ resolution: {integrity: sha512-Sg7j110mtefBD+qunSLO1lqOEKdrwBFBrR6Qd8f4uwkhWNlbkaqwHse6e7QvD3AP/MNoJdEDLaf8OxYyoWgorQ==}
dependencies:
+ '@types/unist': 2.0.6
bail: 1.0.5
extend: 3.0.2
is-buffer: 2.0.5
@@ -9233,18 +10429,13 @@ packages:
unist-util-visit-parents: 3.1.1
dev: false
- /universalify/0.1.2:
- resolution: {integrity: sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==}
- engines: {node: '>= 4.0.0'}
- dev: false
-
/universalify/2.0.0:
resolution: {integrity: sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==}
engines: {node: '>= 10.0.0'}
dev: false
/unpipe/1.0.0:
- resolution: {integrity: sha1-sr9O6FFKrmFltIF4KdIbLvSZBOw=}
+ resolution: {integrity: sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==}
engines: {node: '>= 0.8'}
dev: false
@@ -9252,6 +10443,16 @@ packages:
resolution: {integrity: sha1-j97XMk7G6IoP+LkF58CYzcCG1UQ=}
dev: false
+ /update-browserslist-db/1.0.9_browserslist@4.21.4:
+ resolution: {integrity: sha512-/xsqn21EGVdXI3EXSum1Yckj3ZVZugqyOZQ/CxYPBD/R+ko9NSUScf8tFF4dOKY+2pvSSJA/S+5B8s4Zr4kyvg==}
+ hasBin: true
+ peerDependencies:
+ browserslist: '>= 4.21.0'
+ dependencies:
+ browserslist: 4.21.4
+ escalade: 3.1.1
+ picocolors: 1.0.0
+
/update-notifier/5.1.0:
resolution: {integrity: sha512-ItnICHbeMh9GqUy31hFPrD1kcuZ3rpxDZbf4KUDavXwS0bW5m7SLbDQpGX3UYr072cbrF5hFUs3r5tUsPwjfHw==}
engines: {node: '>=10'}
@@ -9267,7 +10468,7 @@ packages:
is-yarn-global: 0.3.0
latest-version: 5.1.0
pupa: 2.1.1
- semver: 7.3.5
+ semver: 7.3.7
semver-diff: 3.1.1
xdg-basedir: 4.0.0
dev: false
@@ -9276,7 +10477,6 @@ packages:
resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==}
dependencies:
punycode: 2.1.1
- dev: false
/url-loader/4.1.1_file-loader@6.2.0:
resolution: {integrity: sha512-3BTV812+AVHHOJQO8O5MkWgZ5aosP7GnROJwvzLS9hWDj00lZ6Z0wNak423Lp9PBZN05N+Jk/N5Si8jRAlGyWA==}
@@ -9294,7 +10494,7 @@ packages:
schema-utils: 3.1.1
dev: false
- /url-loader/4.1.1_file-loader@6.2.0+webpack@5.69.1:
+ /url-loader/4.1.1_u4acmn7fe6yqgbrqzialkgh5lu:
resolution: {integrity: sha512-3BTV812+AVHHOJQO8O5MkWgZ5aosP7GnROJwvzLS9hWDj00lZ6Z0wNak423Lp9PBZN05N+Jk/N5Si8jRAlGyWA==}
engines: {node: '>= 10.13.0'}
peerDependencies:
@@ -9304,27 +10504,20 @@ packages:
file-loader:
optional: true
dependencies:
- file-loader: 6.2.0_webpack@5.69.1
+ file-loader: 6.2.0_webpack@5.74.0
loader-utils: 2.0.2
mime-types: 2.1.34
schema-utils: 3.1.1
- webpack: 5.69.1
+ webpack: 5.74.0
dev: false
/url-parse-lax/3.0.0:
- resolution: {integrity: sha1-FrXK/Afb42dsGxmZF3gj1lA6yww=}
+ resolution: {integrity: sha512-NjFKA0DidqPa5ciFcSrXnAltTtzz84ogy+NebPvfEgAck0+TNg4UJ4IN+fB7zRZfbgUf0syOo9MDxFkDSMuFaQ==}
engines: {node: '>=4'}
dependencies:
prepend-http: 2.0.0
dev: false
- /url/0.11.0:
- resolution: {integrity: sha1-ODjpfPxgUh63PFJajlW/3Z4uKPE=}
- dependencies:
- punycode: 1.3.2
- querystring: 0.2.0
- dev: false
-
/use-composed-ref/1.2.1_react@17.0.2:
resolution: {integrity: sha512-6+X1FLlIcjvFMAeAD/hcxDT8tmyrWnbSPMU0EnxQuDLIxokuFzWliXBiYZuGIx+mrAMLBw0WFfCkaPw8ebzAhw==}
peerDependencies:
@@ -9359,7 +10552,7 @@ packages:
dev: false
/util-deprecate/1.0.2:
- resolution: {integrity: sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=}
+ resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==}
dev: false
/util.promisify/1.0.1:
@@ -9372,16 +10565,15 @@ packages:
dev: false
/utila/0.4.0:
- resolution: {integrity: sha1-ihagXURWV6Oupe7MWxKk+lN5dyw=}
+ resolution: {integrity: sha512-Z0DbgELS9/L/75wZbro8xAnT50pBVFQZ+hUEueGDU5FN51YSCYM+jdxsfCiHjwNP/4LCDD0i/graKpeBnOXKRA==}
dev: false
/utility-types/3.10.0:
resolution: {integrity: sha512-O11mqxmi7wMKCo6HKFt5AhO4BwY3VV68YU07tgxfz8zJTIxr4BpsezN49Ffwy9j3ZpwwJp4fkRwjRzq3uWE6Rg==}
engines: {node: '>= 4'}
- dev: false
/utils-merge/1.0.1:
- resolution: {integrity: sha1-n5VxD1CiZ5R7LMwSR0HBAoQn5xM=}
+ resolution: {integrity: sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==}
engines: {node: '>= 0.4.0'}
dev: false
@@ -9395,7 +10587,7 @@ packages:
dev: false
/vary/1.1.2:
- resolution: {integrity: sha1-IpnwLG3tMNSllhsLn3RSShj2NPw=}
+ resolution: {integrity: sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==}
engines: {node: '>= 0.8'}
dev: false
@@ -9433,13 +10625,12 @@ packages:
- debug
dev: false
- /watchpack/2.3.1:
- resolution: {integrity: sha512-x0t0JuydIo8qCNctdDrn1OzH/qDzk2+rdCOC3YzumZ42fiMqmQ7T3xQurykYMhYfHaPHTp4ZxAx2NfUo1K6QaA==}
+ /watchpack/2.4.0:
+ resolution: {integrity: sha512-Lcvm7MGST/4fup+ifyKi2hjyIAwcdI4HRgtvTpIUxBRhB+RFtUh8XtDOxUfctVCnhVi+QQj49i91OyvzkJl6cg==}
engines: {node: '>=10.13.0'}
dependencies:
glob-to-regexp: 0.4.1
graceful-fs: 4.2.9
- dev: false
/wbuf/1.7.3:
resolution: {integrity: sha512-O84QOnr0icsbFGLS0O3bI5FswxzRr8/gHwWkDlQFskhSPryQXvrTMxjxGP4+iWYoauLoBvfDpkrOauZ+0iZpDA==}
@@ -9452,7 +10643,7 @@ packages:
dev: false
/webidl-conversions/3.0.1:
- resolution: {integrity: sha1-JFNCdeKnvGvnvIZhHMFq4KVlSHE=}
+ resolution: {integrity: sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==}
dev: false
/webpack-bundle-analyzer/4.5.0:
@@ -9474,7 +10665,7 @@ packages:
- utf-8-validate
dev: false
- /webpack-dev-middleware/5.3.1_webpack@5.69.1:
+ /webpack-dev-middleware/5.3.1_webpack@5.74.0:
resolution: {integrity: sha512-81EujCKkyles2wphtdrnPg/QqegC/AtqNH//mQkBYSMqwFVCQrxM6ktB2O/SPlZy7LqeEfTbV3cZARGQz6umhg==}
engines: {node: '>= 12.13.0'}
peerDependencies:
@@ -9485,11 +10676,11 @@ packages:
mime-types: 2.1.34
range-parser: 1.2.1
schema-utils: 4.0.0
- webpack: 5.69.1
+ webpack: 5.74.0
dev: false
- /webpack-dev-server/4.7.4_webpack@5.69.1:
- resolution: {integrity: sha512-nfdsb02Zi2qzkNmgtZjkrMOcXnYZ6FLKcQwpxT7MvmHKc+oTtDsBju8j+NMyAygZ9GW1jMEUpy3itHtqgEhe1A==}
+ /webpack-dev-server/4.11.1_webpack@5.74.0:
+ resolution: {integrity: sha512-lILVz9tAUy1zGFwieuaQtYiadImb5M3d+H+L1zDYalYoDl0cksAB1UNyuE5MMWJrG6zR1tXkCP2fitl7yoUJiw==}
engines: {node: '>= 12.13.0'}
hasBin: true
peerDependencies:
@@ -9503,16 +10694,16 @@ packages:
'@types/connect-history-api-fallback': 1.3.5
'@types/express': 4.17.13
'@types/serve-index': 1.9.1
+ '@types/serve-static': 1.13.10
'@types/sockjs': 0.3.33
'@types/ws': 8.5.1
ansi-html-community: 0.0.8
- bonjour: 3.5.0
+ bonjour-service: 1.0.14
chokidar: 3.5.3
colorette: 2.0.16
compression: 1.7.4
- connect-history-api-fallback: 1.6.0
+ connect-history-api-fallback: 2.0.0
default-gateway: 6.0.3
- del: 6.0.0
express: 4.17.3
graceful-fs: 4.2.9
html-entities: 2.3.2
@@ -9520,15 +10711,14 @@ packages:
ipaddr.js: 2.0.1
open: 8.4.0
p-retry: 4.6.1
- portfinder: 1.0.28
+ rimraf: 3.0.2
schema-utils: 4.0.0
- selfsigned: 2.0.0
+ selfsigned: 2.1.1
serve-index: 1.9.1
sockjs: 0.3.24
spdy: 4.0.2
- strip-ansi: 7.0.1
- webpack: 5.69.1
- webpack-dev-middleware: 5.3.1_webpack@5.69.1
+ webpack: 5.74.0
+ webpack-dev-middleware: 5.3.1_webpack@5.74.0
ws: 8.5.0
transitivePeerDependencies:
- bufferutil
@@ -9543,22 +10733,13 @@ packages:
dependencies:
clone-deep: 4.0.1
wildcard: 2.0.0
- dev: false
-
- /webpack-sources/1.4.3:
- resolution: {integrity: sha512-lgTS3Xhv1lCOKo7SA5TjKXMjpSM4sBjNV5+q2bqesbSPs5FjGmU6jjtBSkX9b4qW87vDIsCIlUPOEhbZrMdjeQ==}
- dependencies:
- source-list-map: 2.0.1
- source-map: 0.6.1
- dev: false
/webpack-sources/3.2.3:
resolution: {integrity: sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==}
engines: {node: '>=10.13.0'}
- dev: false
- /webpack/5.69.1:
- resolution: {integrity: sha512-+VyvOSJXZMT2V5vLzOnDuMz5GxEqLk7hKWQ56YxPW/PQRUuKimPqmEIJOx8jHYeyo65pKbapbW464mvsKbaj4A==}
+ /webpack/5.74.0:
+ resolution: {integrity: sha512-A2InDwnhhGN4LYctJj6M1JEaGL7Luj6LOmyBHjcI8529cm5p6VXiTIW2sn6ffvEAKmveLzvu4jrihwXtPojlAA==}
engines: {node: '>=10.13.0'}
hasBin: true
peerDependencies:
@@ -9572,32 +10753,31 @@ packages:
'@webassemblyjs/ast': 1.11.1
'@webassemblyjs/wasm-edit': 1.11.1
'@webassemblyjs/wasm-parser': 1.11.1
- acorn: 8.7.0
- acorn-import-assertions: 1.8.0_acorn@8.7.0
- browserslist: 4.19.3
+ acorn: 8.8.0
+ acorn-import-assertions: 1.8.0_acorn@8.8.0
+ browserslist: 4.21.4
chrome-trace-event: 1.0.3
- enhanced-resolve: 5.9.1
+ enhanced-resolve: 5.10.0
es-module-lexer: 0.9.3
eslint-scope: 5.1.1
events: 3.3.0
glob-to-regexp: 0.4.1
graceful-fs: 4.2.9
- json-parse-better-errors: 1.0.2
+ json-parse-even-better-errors: 2.3.1
loader-runner: 4.2.0
mime-types: 2.1.34
neo-async: 2.6.2
schema-utils: 3.1.1
tapable: 2.2.1
- terser-webpack-plugin: 5.3.1_webpack@5.69.1
- watchpack: 2.3.1
+ terser-webpack-plugin: 5.3.6_webpack@5.74.0
+ watchpack: 2.4.0
webpack-sources: 3.2.3
transitivePeerDependencies:
- '@swc/core'
- esbuild
- uglify-js
- dev: false
- /webpackbar/5.0.2_webpack@5.69.1:
+ /webpackbar/5.0.2_webpack@5.74.0:
resolution: {integrity: sha512-BmFJo7veBDgQzfWXl/wwYXr/VFus0614qZ8i9znqcl9fnEdiVkdbi0TedLQ6xAK92HZHDJ0QmyQ0fmuZPAgCYQ==}
engines: {node: '>=12'}
peerDependencies:
@@ -9607,7 +10787,7 @@ packages:
consola: 2.15.3
pretty-time: 1.1.0
std-env: 3.0.1
- webpack: 5.69.1
+ webpack: 5.74.0
dev: false
/websocket-driver/0.7.4:
@@ -9625,7 +10805,7 @@ packages:
dev: false
/whatwg-url/5.0.0:
- resolution: {integrity: sha1-lmRU6HZUYuN2RNNib2dCzotwll0=}
+ resolution: {integrity: sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==}
dependencies:
tr46: 0.0.3
webidl-conversions: 3.0.1
@@ -9672,7 +10852,6 @@ packages:
/wildcard/2.0.0:
resolution: {integrity: sha512-JcKqAHLPxcdb9KM49dufGXn2x3ssnfjbcaQdLlfZsL9rH9wgDQjUtDxbo8NE0F6SFvydeu1VhZe7hZuHsB2/pw==}
- dev: false
/wrap-ansi/7.0.0:
resolution: {integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==}
@@ -9693,7 +10872,7 @@ packages:
dev: false
/wrappy/1.0.2:
- resolution: {integrity: sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=}
+ resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==}
dev: false
/write-file-atomic/3.0.3:
@@ -9743,11 +10922,6 @@ packages:
sax: 1.2.4
dev: false
- /xmlbuilder/9.0.7:
- resolution: {integrity: sha1-Ey7mPS7FVlxVfiD0wi35rKaGsQ0=}
- engines: {node: '>=4.0'}
- dev: false
-
/xtend/4.0.2:
resolution: {integrity: sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==}
engines: {node: '>=0.4'}
diff --git a/sidebars.js b/sidebars.js
index 064359e..f601766 100644
--- a/sidebars.js
+++ b/sidebars.js
@@ -9,6 +9,7 @@
Create as many sidebars as you want.
*/
+ /** @type {import('@docusaurus/plugin-content-docs').SidebarsConfig} */
module.exports = {
// By default, Docusaurus generates a sidebar from the docs folder structure
// tutorialSidebar: [{type: 'autogenerated', dirName: '.'}],