├── public
├── robots.txt
└── locales
│ ├── zh
│ ├── project.json
│ ├── common.json
│ ├── not_found.json
│ ├── desc.json
│ ├── home.json
│ ├── about.json
│ └── drawer.json
│ └── en
│ ├── project.json
│ ├── common.json
│ ├── not_found.json
│ ├── desc.json
│ ├── home.json
│ ├── about.json
│ └── drawer.json
├── .eslintrc.json
├── .idea
├── .gitignore
├── vcs.xml
├── inspectionProfiles
│ └── Project_Default.xml
├── modules.xml
└── home_page.iml
├── README.md
├── next-i18next.config.js
├── next-env.d.ts
├── styles
└── main.css
├── .gitignore
├── next.config.js
├── tsconfig.json
├── package.json
├── pages
├── _document.tsx
├── 404.tsx
├── _app.tsx
├── about.tsx
├── project.tsx
└── index.tsx
├── components
├── project.tsx
└── github.tsx
├── LICENSE
├── layout
└── homeLayout.tsx
└── yarn.lock
/public/robots.txt:
--------------------------------------------------------------------------------
1 | User-Agent: *
2 | Allow: *
3 |
--------------------------------------------------------------------------------
/public/locales/zh/project.json:
--------------------------------------------------------------------------------
1 | {
2 | "title": "项目"
3 | }
--------------------------------------------------------------------------------
/.eslintrc.json:
--------------------------------------------------------------------------------
1 | {
2 | "extends": "next/core-web-vitals"
3 | }
4 |
--------------------------------------------------------------------------------
/public/locales/en/project.json:
--------------------------------------------------------------------------------
1 | {
2 | "title": "Project"
3 | }
--------------------------------------------------------------------------------
/public/locales/zh/common.json:
--------------------------------------------------------------------------------
1 | {
2 | "request_err": "请求失败"
3 | }
--------------------------------------------------------------------------------
/public/locales/zh/not_found.json:
--------------------------------------------------------------------------------
1 | {
2 | "desc": "404 您访问的页面不存在"
3 | }
--------------------------------------------------------------------------------
/public/locales/en/common.json:
--------------------------------------------------------------------------------
1 | {
2 | "request_err": "request failed"
3 | }
--------------------------------------------------------------------------------
/public/locales/en/not_found.json:
--------------------------------------------------------------------------------
1 | {
2 | "desc": "404 Page Does't Exists"
3 | }
--------------------------------------------------------------------------------
/public/locales/zh/desc.json:
--------------------------------------------------------------------------------
1 | {
2 | "title": "XCSOFT",
3 | "subtitle": "我已很久不再成为我自己"
4 | }
--------------------------------------------------------------------------------
/public/locales/en/desc.json:
--------------------------------------------------------------------------------
1 | {
2 | "title": "XCSOFT",
3 | "subtitle": "Not myself for a while"
4 | }
--------------------------------------------------------------------------------
/.idea/.gitignore:
--------------------------------------------------------------------------------
1 | # 默认忽略的文件
2 | /shelf/
3 | /workspace.xml
4 | # 基于编辑器的 HTTP 客户端请求
5 | /httpRequests/
6 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # home_page_nextjs
2 |
3 | this is the source code of xsot.cn
4 |
5 | # help
6 |
7 | visit it on https://xsot.cn
8 |
--------------------------------------------------------------------------------
/next-i18next.config.js:
--------------------------------------------------------------------------------
1 | module.exports = {
2 | i18n: {
3 | defaultLocale: 'zh',
4 | locales: ['en', 'zh']
5 | },
6 | };
--------------------------------------------------------------------------------
/.idea/vcs.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/public/locales/zh/home.json:
--------------------------------------------------------------------------------
1 | {
2 | "my_proj": "我的项目",
3 | "timeletters": "拾光:给未来写封信",
4 | "urlshorter": "星辰短域:简洁的网址缩短工具",
5 | "xopenid": "OpenID:一个第三方登录平台",
6 | "busuanzi": "不蒜子:简易网站统计"
7 | }
--------------------------------------------------------------------------------
/next-env.d.ts:
--------------------------------------------------------------------------------
1 | ///
2 | ///
3 |
4 | // NOTE: This file should not be edited
5 | // see https://nextjs.org/docs/basic-features/typescript for more information.
6 |
--------------------------------------------------------------------------------
/public/locales/en/home.json:
--------------------------------------------------------------------------------
1 | {
2 | "my_proj": "Projects",
3 | "timeletters": "Timeletters:Write a letter to the future",
4 | "urlshorter": "Urlshorter:Concise url shortening tool",
5 | "xopenid": "XopenID:A third-party login platform",
6 | "busuanzi": "Busuanzi:A simple web analytics"
7 | }
--------------------------------------------------------------------------------
/.idea/inspectionProfiles/Project_Default.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/public/locales/zh/about.json:
--------------------------------------------------------------------------------
1 | {
2 | "title": "关于",
3 | "content": "Hi there, 我是一个来自中国的学生,
有过后端, React, Flutter 跨端软件及 Uni-app 相关开发经验,
平常喜欢听听歌, 拍拍照, 写写BUG,
喜欢折腾, 研究一些莫名其妙的东西.
",
4 | "sponsor": "支持我",
5 | "alipay": "支付宝",
6 | "wechat": "微信支付",
7 | "paypal": "PayPal"
8 | }
--------------------------------------------------------------------------------
/.idea/modules.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/styles/main.css:
--------------------------------------------------------------------------------
1 | body {
2 | background-color: #fafafa;
3 | -moz-user-select: none;
4 | -webkit-user-select: none;
5 | -ms-user-select: none;
6 | user-select: none;
7 | }
8 |
9 | @media (prefers-color-scheme: dark) {
10 | body {
11 | background-color: #303030;
12 | }
13 |
14 | .mainAppBar {
15 | background-color: rgb(65, 65, 65) !important;
16 | }
17 | }
--------------------------------------------------------------------------------
/public/locales/zh/drawer.json:
--------------------------------------------------------------------------------
1 | {
2 | "subtitle_index": "首页",
3 | "subtitle_mysite": "我的网站",
4 | "subtitle_findme": "找到我",
5 | "subtitle_suggest": "推荐链接",
6 | "home": "首页",
7 | "mail": "邮件",
8 | "project": "项目",
9 | "about": "关于",
10 | "timeletters": "拾光",
11 | "openid": "OpenID",
12 | "whois": "Whois",
13 | "gallery": "画廊",
14 | "blog": "星辰日记",
15 | "github": "Github"
16 | }
--------------------------------------------------------------------------------
/public/locales/en/about.json:
--------------------------------------------------------------------------------
1 | {
2 | "title": "About",
3 | "content": "Hi there, I am a student from china,
I have experience in Bakcend developent, React, Flutter cross-end software and Uni-app,
Usually I like to listen to songs, take pictures, write bugs,
I love tossing around and researching something inexplicable.
",
4 | "sponsor": "Sponsor",
5 | "alipay": "Alipay",
6 | "wechat": "Wechat Pay",
7 | "paypal": "PayPal"
8 | }
--------------------------------------------------------------------------------
/public/locales/en/drawer.json:
--------------------------------------------------------------------------------
1 | {
2 | "subtitle_index": "Index",
3 | "subtitle_mysite": "My Sites",
4 | "subtitle_findme": "Find Me",
5 | "subtitle_suggest": "Referral link",
6 | "home": "Home",
7 | "mail": "Mail",
8 | "project": "Project",
9 | "about": "About",
10 | "timeletters": "Timeletters",
11 | "openid": "OpenID",
12 | "whois": "Whois",
13 | "gallery": "Gallery",
14 | "blog": "My Blog",
15 | "github": "Github"
16 | }
--------------------------------------------------------------------------------
/.idea/home_page.iml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | # See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
2 |
3 | # dependencies
4 | /node_modules
5 | /.pnp
6 | .pnp.js
7 |
8 | # testing
9 | /coverage
10 |
11 | # next.js
12 | /.next/
13 | /out/
14 |
15 | # production
16 | /build
17 |
18 | # misc
19 | .DS_Store
20 | *.pem
21 |
22 | # debug
23 | npm-debug.log*
24 | yarn-debug.log*
25 | yarn-error.log*
26 | .pnpm-debug.log*
27 |
28 | # local env files
29 | .env*.local
30 |
31 | # vercel
32 | .vercel
33 |
34 | # typescript
35 | *.tsbuildinfo
36 |
--------------------------------------------------------------------------------
/next.config.js:
--------------------------------------------------------------------------------
1 | /** @type {import('next').NextConfig} */
2 |
3 | const {
4 | i18n
5 | } = require('./next-i18next.config');
6 | const nextConfig = {
7 | reactStrictMode: false,
8 | poweredByHeader: false,
9 | generateEtags: false,
10 | i18n,
11 | webpack5: true,
12 | webpack: (config) => {
13 | config.resolve = {
14 | ...config.resolve,
15 | fallback: {
16 | ...config.resolve.fallback,
17 | fs: false,
18 | },
19 | };
20 | config.module = {
21 | ...config.module,
22 | exprContextCritical: false,
23 | };
24 | return config;
25 | },
26 | };
27 |
28 | module.exports = nextConfig;
--------------------------------------------------------------------------------
/tsconfig.json:
--------------------------------------------------------------------------------
1 | {
2 | "compilerOptions": {
3 | "target": "es5",
4 | "lib": ["dom", "dom.iterable", "esnext"],
5 | "allowJs": true,
6 | "skipLibCheck": true,
7 | "strict": true,
8 | "forceConsistentCasingInFileNames": true,
9 | "noEmit": true,
10 | "esModuleInterop": true,
11 | "module": "esnext",
12 | "moduleResolution": "node",
13 | "resolveJsonModule": true,
14 | "isolatedModules": true,
15 | "jsx": "preserve",
16 | "incremental": true,
17 | "baseUrl": ".",
18 | "paths": {
19 | "@/*": [
20 | "*"
21 | ],
22 | },
23 | },
24 | "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx"],
25 | "exclude": ["node_modules"]
26 | }
--------------------------------------------------------------------------------
/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "home_page",
3 | "version": "0.1.0",
4 | "private": true,
5 | "scripts": {
6 | "dev": "next dev",
7 | "build": "next build",
8 | "start": "next start",
9 | "lint": "next lint"
10 | },
11 | "dependencies": {
12 | "@emotion/react": "^11.9.0",
13 | "@emotion/styled": "^11.8.1",
14 | "@mui/icons-material": "^5.6.1",
15 | "@mui/material": "^5.6.1",
16 | "axios": "^0.26.1",
17 | "next": "12.1.5",
18 | "next-i18next": "^11.0.0",
19 | "qrcode.react": "^3.0.1",
20 | "react": "18.0.0",
21 | "react-dom": "18.0.0"
22 | },
23 | "devDependencies": {
24 | "@types/node": "17.0.23",
25 | "@types/react": "18.0.4",
26 | "@types/react-dom": "18.0.0",
27 | "eslint": "8.13.0",
28 | "eslint-config-next": "12.1.5",
29 | "typescript": "4.6.3"
30 | }
31 | }
32 |
--------------------------------------------------------------------------------
/pages/_document.tsx:
--------------------------------------------------------------------------------
1 | import Document, { Html, Head, Main, NextScript } from "next/document";
2 |
3 | export default class MyDocument extends Document {
4 | render() {
5 | return (
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 | );
20 | }
21 | }
--------------------------------------------------------------------------------
/pages/404.tsx:
--------------------------------------------------------------------------------
1 | import Head from "next/head";
2 | import { useTranslation } from "next-i18next"
3 | import { serverSideTranslations } from 'next-i18next/serverSideTranslations'
4 |
5 | import {
6 | Container,
7 | Typography,
8 | } from '@mui/material';
9 |
10 | const NotFound = () => {
11 | const { t } = useTranslation('desc');
12 |
13 | return <>
14 |
15 | 404 NotFound - {t('title')}
16 |
17 |
18 |
19 |
20 |
21 | {': ('}
22 |
23 |
24 |
25 | {t('desc', { ns: 'not_found' })}
26 |
27 |
28 | >
29 | }
30 |
31 | export const getStaticProps = async ({ locale }: { locale: string }) => ({
32 | props: {
33 | ...(await serverSideTranslations(locale, ['not_found', 'desc'])),
34 | },
35 | });
36 |
37 | export default NotFound;
--------------------------------------------------------------------------------
/components/project.tsx:
--------------------------------------------------------------------------------
1 | import {
2 | Card,
3 | CardActionArea,
4 | Grid,
5 | Typography
6 | } from "@mui/material";
7 | import type { ReactElement } from "react";
8 |
9 | type ProjectProps = {
10 | title: string,
11 | desc: string,
12 | url: string,
13 | icon: ReactElement,
14 | };
15 |
16 | const Proj = (props: ProjectProps): ReactElement => {
17 | return (
18 |
26 | window.open(props.url)}
28 | sx={{
29 | paddingTop: '5px',
30 | paddingBottom: '5px',
31 | paddingLeft: '8px',
32 | paddingRight: '8px',
33 | }}
34 | >
35 |
41 |
49 | {props.icon}
50 |
51 |
58 |
62 |
67 | {props.title}
68 |
69 |
70 |
73 |
78 | {props.desc}
79 |
80 |
81 |
82 |
83 |
84 |
85 | );
86 | }
87 |
88 | export default Proj;
--------------------------------------------------------------------------------
/pages/_app.tsx:
--------------------------------------------------------------------------------
1 | import type { AppProps } from 'next/app'
2 | import type { Theme } from '@mui/material'
3 |
4 | import { useState } from 'react'
5 | import Head from 'next/head'
6 | import { appWithTranslation } from 'next-i18next'
7 | import { useTranslation } from "next-i18next";
8 | import { useRouter } from 'next/router'
9 | import Link from 'next/link'
10 |
11 | import GTranslateIcon from '@mui/icons-material/GTranslate';
12 |
13 | import {
14 | useEffect,
15 | useMemo
16 | } from 'react'
17 |
18 | import {
19 | useMediaQuery,
20 | createTheme,
21 | ThemeProvider,
22 | Fab,
23 | Menu,
24 | MenuItem,
25 | } from '@mui/material'
26 | import "@/styles/main.css"
27 | import Script from 'next/script'
28 | const App = ({ Component, pageProps }: AppProps) => {
29 |
30 | const [t] = useTranslation('desc');
31 | const path = useRouter().pathname;
32 | const [anchorEl, setAnchorEl] = useState(null);
33 | const LangMenuOpen = Boolean(anchorEl);
34 |
35 | // 处理暗黑模式
36 | const prefersDarkMode: boolean = useMediaQuery('(prefers-color-scheme: dark)');
37 |
38 | useEffect(() => {
39 | window.document.body.style.backgroundColor = prefersDarkMode ? '#303030' : '#fafafa';
40 | }, [prefersDarkMode]);
41 |
42 | const theme: Theme = useMemo(
43 | () =>
44 | createTheme({
45 | palette: {
46 | mode: prefersDarkMode ? 'dark' : 'light',
47 | background: {
48 | default: prefersDarkMode ? '#303030' : '#fafafa',
49 | paper: prefersDarkMode ? '#424242' : '#fff',
50 | },
51 | text: {
52 | primary: !prefersDarkMode ? 'rgba(0, 0, 0, 0.7)' : 'rgba(255, 255, 255, 0.85)',
53 | secondary: !prefersDarkMode ? 'rgba(0, 0, 0, 0.55)' : 'rgba(255, 255, 255, 0.7)',
54 | disabled: !prefersDarkMode ? 'rgba(0, 0, 0, 0.38)' : 'rgba(255, 255, 255, 0.5)',
55 | },
56 | },
57 | typography: {
58 | fontFamily: [
59 | 'LXGW WenKai Screen',
60 | '-apple-system',
61 | 'BlinkMacSystemFont',
62 | '"Segoe UI"',
63 | 'Roboto',
64 | '"Helvetica Neue"',
65 | 'Arial',
66 | 'sans-serif',
67 | '"Apple Color Emoji"',
68 | '"Segoe UI Emoji"',
69 | '"Segoe UI Symbol"',
70 | ].join(','),
71 | },
72 | }),
73 | [prefersDarkMode],
74 | );
75 |
76 | return (
77 | <>
78 |
79 | {`${t('title')} - ${t('subtitle')}`}
80 |
81 |
82 |
87 |
88 |
89 |
90 | {/* 切换语言 */}
91 | setAnchorEl(event.currentTarget)}
94 | size="small"
95 | aria-label="change language"
96 | sx={{
97 | position: 'fixed',
98 | bottom: '50px',
99 | right: '50px',
100 | opacity: '0.5',
101 | }}
102 | >
103 |
104 |
105 |
126 | >
127 | )
128 | }
129 |
130 | export default appWithTranslation(App)
131 |
132 |
--------------------------------------------------------------------------------
/pages/about.tsx:
--------------------------------------------------------------------------------
1 | import { useTranslation } from "next-i18next";
2 | import HomeLayout from "@/layout/homeLayout";
3 | import type { NextPage } from "next";
4 | import { serverSideTranslations } from 'next-i18next/serverSideTranslations'
5 |
6 | import {
7 | Grid,
8 | Typography,
9 | Card,
10 | CardMedia,
11 | } from "@mui/material";
12 |
13 | import QRCode from 'qrcode.react';
14 | import { useTheme } from '@mui/material/styles';
15 |
16 | type PayMethod = [string, string][];
17 |
18 | const About: NextPage = () => {
19 |
20 | const [t] = useTranslation('about');
21 | const theme = useTheme();
22 |
23 | const payMethod: PayMethod = [
24 | ['alipay', 'https://qr.alipay.com/fkx15638lyxqs3hlajhdv3c'],
25 | ['wechat', 'wxp://f2f0TRR_wAwKpE4IBz7oCgrQI5992xfIx5slf5dZtNJN7czxV7cQLdCb-9D-x8xWZX0V'],
26 | ['paypal', 'https://paypal.me/xcsoft?country.x=C2%26locale.x=zh_XC'],
27 | ]
28 |
29 | return (
30 | <>
31 |
32 |
37 |
42 |
46 |
51 | {t('title')}
52 |
53 |
54 |
58 |
65 |
66 |
67 |
68 |
75 |
79 |
85 | {t('sponsor')}
86 |
87 |
88 |
95 | {
96 | payMethod.map((item, index) => {
97 | return
105 |
111 |
112 |
118 |
119 |
128 | {t(item[0])}
129 |
130 |
131 |
132 | })
133 | }
134 |
135 |
136 |
137 |
138 | >
139 | )
140 | }
141 |
142 | export const getStaticProps = async ({ locale }: { locale: string }) => ({
143 | props: {
144 | ...(await serverSideTranslations(locale, ['drawer', 'about', 'desc'])),
145 | },
146 | });
147 |
148 | export default About;
--------------------------------------------------------------------------------
/pages/project.tsx:
--------------------------------------------------------------------------------
1 | import { useState, useEffect } from 'react';
2 | import axios from "axios";
3 | import { useTranslation } from "react-i18next";
4 | import { serverSideTranslations } from 'next-i18next/serverSideTranslations'
5 |
6 | import {
7 | Grid,
8 | Typography,
9 | Skeleton,
10 | Snackbar,
11 | Alert,
12 | } from "@mui/material";
13 |
14 | import Github from "@/components/github";
15 | import HomeLayout from '@/layout/homeLayout';
16 | import type { NextPage } from 'next';
17 |
18 | const Project: NextPage = () => {
19 | const [err, setErr] = useState(false);
20 | const [repos, setRepos] = useState<[]>([]);
21 | const [loading, setLoading] = useState(true);
22 | const [t] = useTranslation('project');
23 |
24 | useEffect(() => {
25 | axios.get('https://api.github.com/users/soxft/repos').then(res => {
26 | setRepos(res.data);
27 | }).catch(_ => {
28 | setErr(true);
29 | }).finally(() => {
30 | setLoading(false);
31 | });
32 | }, [])
33 |
34 | return (
35 | <>
36 |
37 | <>
38 |
43 |
51 |
54 |
59 | {t('title')}
60 |
61 |
62 |
70 | {
71 | loading ?
72 | [[], [], [], []].map((item, index) => {
73 | return (
74 |
82 |
87 |
88 | );
89 | })
90 | :
91 | repos.map((repo: any, index: number) => {
92 | if (repo.fork) return null;
93 |
94 | return
102 |
110 |
111 | })
112 | }
113 |
114 |
115 |
116 |
117 | {/* snackbar */}
118 | setErr(false)}
122 | anchorOrigin={{ vertical: 'top', horizontal: 'right' }}
123 | >
124 |
125 | {t('request_err', { 'ns': 'global' })}
126 |
127 |
128 | >
129 |
130 | >
131 | )
132 | }
133 |
134 | export const getStaticProps = async ({ locale }: { locale: string }) => ({
135 | props: {
136 | ...(await serverSideTranslations(locale, ['drawer', 'desc', 'project'])),
137 | },
138 | });
139 |
140 | export default Project;
--------------------------------------------------------------------------------
/components/github.tsx:
--------------------------------------------------------------------------------
1 | import type { ReactElement } from "react";
2 | import {
3 | Card,
4 | CardActionArea,
5 | Grid,
6 | Typography
7 | } from "@mui/material";
8 |
9 | import AccountTreeOutlinedIcon from '@mui/icons-material/AccountTreeOutlined';
10 | import StarOutlinedIcon from '@mui/icons-material/StarOutlined';
11 |
12 | type GithubProps = {
13 | url: string,
14 | desc: ReactElement,
15 | name: string,
16 | star: string,
17 | fork: string,
18 | language: string,
19 | };
20 |
21 | const Github = (props: GithubProps): ReactElement => {
22 | return (
23 |
31 | window.open(props.url)}
33 | sx={{
34 | paddingTop: '10px',
35 | paddingBottom: '8px',
36 | paddingLeft: '8px',
37 | paddingRight: '8px',
38 | }}
39 | >
40 |
46 | {/* name */}
47 |
50 |
55 | {props.name}
56 |
57 |
58 | {/* star / fork */}
59 |
65 |
68 |
72 |
75 |
81 |
82 |
85 |
90 | {props.star} stars
91 |
92 |
93 |
94 |
95 |
98 |
103 | /
104 |
105 |
106 |
109 |
113 |
116 |
122 |
123 |
126 |
131 | {props.fork} forks
132 |
133 |
134 |
135 |
136 |
137 | {/* desc */}
138 |
141 |
146 | {props.desc || 'No description yet'}
147 |
148 |
149 | {/* language */}
150 |
155 |
160 | {props.language}
161 |
162 |
163 |
164 |
165 |
166 | );
167 | }
168 |
169 | export default Github;
--------------------------------------------------------------------------------
/pages/index.tsx:
--------------------------------------------------------------------------------
1 | import HomeLayout from "@/layout/homeLayout";
2 | import type { NextPage } from "next";
3 | import { serverSideTranslations } from 'next-i18next/serverSideTranslations'
4 | import React, { useEffect, useState } from "react";
5 | import { useTranslation } from "next-i18next";
6 | import type { ReactElement } from "react";
7 |
8 | import axios, { AxiosError, AxiosResponse } from "axios";
9 |
10 | import {
11 | Typography,
12 | Grid,
13 | Button,
14 | } from "@mui/material";
15 |
16 | import EmailOutlinedIcon from '@mui/icons-material/EmailOutlined';
17 | import LinkOutlinedIcon from '@mui/icons-material/LinkOutlined';
18 | import FilterDramaOutlinedIcon from '@mui/icons-material/FilterDramaOutlined';
19 | import CableOutlinedIcon from '@mui/icons-material/CableOutlined';
20 |
21 | import Proj from "@/components/project";
22 |
23 | type MyProject = [string, string, ReactElement][];
24 |
25 | const Index: NextPage = () => {
26 |
27 | const [sentense, setSentense] = useState('...'); //一言
28 | const [t] = useTranslation('home');
29 |
30 | const HandleJump = (url: string) => window.open(url);
31 |
32 | useEffect(() => {
33 | axios.get('https://api.xsot.cn/sentence/')
34 | .then((res: AxiosResponse) => setSentense(res['data']['data']['sentence']))
35 | .catch((e: AxiosError) => setSentense(t('request_err', { ns: 'common' })));
36 | // eslint-disable-next-line react-hooks/exhaustive-deps
37 | }, [])
38 |
39 | const my_project: MyProject = [
40 | ['timeletters', 'https://www.timeletters.cn', ],
41 | ['xopenid', 'https://9420.ltd', ],
42 | ['busuanzi', 'https://busuanzi.9420.ltd', ],
43 | ['urlshorter', 'https://github.com/soxft/urlshorter', ],
44 | ]
45 |
46 | return <>
47 |
48 |
58 |
66 |
69 |
74 | XCSOFT
75 |
76 |
80 | {sentense}
81 |
82 |
83 |
90 |
93 |
99 |
100 |
103 |
109 |
110 |
111 |
112 | {/* 我的项目 */}
113 |
121 |
124 |
129 | {t('my_proj')}
130 |
131 |
132 | {/* project list */}
133 |
140 | {
141 | my_project.map((item, index) => {
142 | let content = t(item[0]).split(':');
143 | return (
144 |
151 |
157 |
158 | )
159 | })
160 | }
161 |
162 |
163 |
164 |
165 | >;
166 | }
167 |
168 | export const getStaticProps = async ({ locale }: { locale: string }) => ({
169 | props: {
170 | ...(await serverSideTranslations(locale, ['drawer', 'home', 'desc'])),
171 | },
172 | });
173 |
174 | export default Index;
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
1 | Apache License
2 | Version 2.0, January 2004
3 | http://www.apache.org/licenses/
4 |
5 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
6 |
7 | 1. Definitions.
8 |
9 | "License" shall mean the terms and conditions for use, reproduction,
10 | and distribution as defined by Sections 1 through 9 of this document.
11 |
12 | "Licensor" shall mean the copyright owner or entity authorized by
13 | the copyright owner that is granting the License.
14 |
15 | "Legal Entity" shall mean the union of the acting entity and all
16 | other entities that control, are controlled by, or are under common
17 | control with that entity. For the purposes of this definition,
18 | "control" means (i) the power, direct or indirect, to cause the
19 | direction or management of such entity, whether by contract or
20 | otherwise, or (ii) ownership of fifty percent (50%) or more of the
21 | outstanding shares, or (iii) beneficial ownership of such entity.
22 |
23 | "You" (or "Your") shall mean an individual or Legal Entity
24 | exercising permissions granted by this License.
25 |
26 | "Source" form shall mean the preferred form for making modifications,
27 | including but not limited to software source code, documentation
28 | source, and configuration files.
29 |
30 | "Object" form shall mean any form resulting from mechanical
31 | transformation or translation of a Source form, including but
32 | not limited to compiled object code, generated documentation,
33 | and conversions to other media types.
34 |
35 | "Work" shall mean the work of authorship, whether in Source or
36 | Object form, made available under the License, as indicated by a
37 | copyright notice that is included in or attached to the work
38 | (an example is provided in the Appendix below).
39 |
40 | "Derivative Works" shall mean any work, whether in Source or Object
41 | form, that is based on (or derived from) the Work and for which the
42 | editorial revisions, annotations, elaborations, or other modifications
43 | represent, as a whole, an original work of authorship. For the purposes
44 | of this License, Derivative Works shall not include works that remain
45 | separable from, or merely link (or bind by name) to the interfaces of,
46 | the Work and Derivative Works thereof.
47 |
48 | "Contribution" shall mean any work of authorship, including
49 | the original version of the Work and any modifications or additions
50 | to that Work or Derivative Works thereof, that is intentionally
51 | submitted to Licensor for inclusion in the Work by the copyright owner
52 | or by an individual or Legal Entity authorized to submit on behalf of
53 | the copyright owner. For the purposes of this definition, "submitted"
54 | means any form of electronic, verbal, or written communication sent
55 | to the Licensor or its representatives, including but not limited to
56 | communication on electronic mailing lists, source code control systems,
57 | and issue tracking systems that are managed by, or on behalf of, the
58 | Licensor for the purpose of discussing and improving the Work, but
59 | excluding communication that is conspicuously marked or otherwise
60 | designated in writing by the copyright owner as "Not a Contribution."
61 |
62 | "Contributor" shall mean Licensor and any individual or Legal Entity
63 | on behalf of whom a Contribution has been received by Licensor and
64 | subsequently incorporated within the Work.
65 |
66 | 2. Grant of Copyright License. Subject to the terms and conditions of
67 | this License, each Contributor hereby grants to You a perpetual,
68 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable
69 | copyright license to reproduce, prepare Derivative Works of,
70 | publicly display, publicly perform, sublicense, and distribute the
71 | Work and such Derivative Works in Source or Object form.
72 |
73 | 3. Grant of Patent License. Subject to the terms and conditions of
74 | this License, each Contributor hereby grants to You a perpetual,
75 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable
76 | (except as stated in this section) patent license to make, have made,
77 | use, offer to sell, sell, import, and otherwise transfer the Work,
78 | where such license applies only to those patent claims licensable
79 | by such Contributor that are necessarily infringed by their
80 | Contribution(s) alone or by combination of their Contribution(s)
81 | with the Work to which such Contribution(s) was submitted. If You
82 | institute patent litigation against any entity (including a
83 | cross-claim or counterclaim in a lawsuit) alleging that the Work
84 | or a Contribution incorporated within the Work constitutes direct
85 | or contributory patent infringement, then any patent licenses
86 | granted to You under this License for that Work shall terminate
87 | as of the date such litigation is filed.
88 |
89 | 4. Redistribution. You may reproduce and distribute copies of the
90 | Work or Derivative Works thereof in any medium, with or without
91 | modifications, and in Source or Object form, provided that You
92 | meet the following conditions:
93 |
94 | (a) You must give any other recipients of the Work or
95 | Derivative Works a copy of this License; and
96 |
97 | (b) You must cause any modified files to carry prominent notices
98 | stating that You changed the files; and
99 |
100 | (c) You must retain, in the Source form of any Derivative Works
101 | that You distribute, all copyright, patent, trademark, and
102 | attribution notices from the Source form of the Work,
103 | excluding those notices that do not pertain to any part of
104 | the Derivative Works; and
105 |
106 | (d) If the Work includes a "NOTICE" text file as part of its
107 | distribution, then any Derivative Works that You distribute must
108 | include a readable copy of the attribution notices contained
109 | within such NOTICE file, excluding those notices that do not
110 | pertain to any part of the Derivative Works, in at least one
111 | of the following places: within a NOTICE text file distributed
112 | as part of the Derivative Works; within the Source form or
113 | documentation, if provided along with the Derivative Works; or,
114 | within a display generated by the Derivative Works, if and
115 | wherever such third-party notices normally appear. The contents
116 | of the NOTICE file are for informational purposes only and
117 | do not modify the License. You may add Your own attribution
118 | notices within Derivative Works that You distribute, alongside
119 | or as an addendum to the NOTICE text from the Work, provided
120 | that such additional attribution notices cannot be construed
121 | as modifying the License.
122 |
123 | You may add Your own copyright statement to Your modifications and
124 | may provide additional or different license terms and conditions
125 | for use, reproduction, or distribution of Your modifications, or
126 | for any such Derivative Works as a whole, provided Your use,
127 | reproduction, and distribution of the Work otherwise complies with
128 | the conditions stated in this License.
129 |
130 | 5. Submission of Contributions. Unless You explicitly state otherwise,
131 | any Contribution intentionally submitted for inclusion in the Work
132 | by You to the Licensor shall be under the terms and conditions of
133 | this License, without any additional terms or conditions.
134 | Notwithstanding the above, nothing herein shall supersede or modify
135 | the terms of any separate license agreement you may have executed
136 | with Licensor regarding such Contributions.
137 |
138 | 6. Trademarks. This License does not grant permission to use the trade
139 | names, trademarks, service marks, or product names of the Licensor,
140 | except as required for reasonable and customary use in describing the
141 | origin of the Work and reproducing the content of the NOTICE file.
142 |
143 | 7. Disclaimer of Warranty. Unless required by applicable law or
144 | agreed to in writing, Licensor provides the Work (and each
145 | Contributor provides its Contributions) on an "AS IS" BASIS,
146 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
147 | implied, including, without limitation, any warranties or conditions
148 | of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
149 | PARTICULAR PURPOSE. You are solely responsible for determining the
150 | appropriateness of using or redistributing the Work and assume any
151 | risks associated with Your exercise of permissions under this License.
152 |
153 | 8. Limitation of Liability. In no event and under no legal theory,
154 | whether in tort (including negligence), contract, or otherwise,
155 | unless required by applicable law (such as deliberate and grossly
156 | negligent acts) or agreed to in writing, shall any Contributor be
157 | liable to You for damages, including any direct, indirect, special,
158 | incidental, or consequential damages of any character arising as a
159 | result of this License or out of the use or inability to use the
160 | Work (including but not limited to damages for loss of goodwill,
161 | work stoppage, computer failure or malfunction, or any and all
162 | other commercial damages or losses), even if such Contributor
163 | has been advised of the possibility of such damages.
164 |
165 | 9. Accepting Warranty or Additional Liability. While redistributing
166 | the Work or Derivative Works thereof, You may choose to offer,
167 | and charge a fee for, acceptance of support, warranty, indemnity,
168 | or other liability obligations and/or rights consistent with this
169 | License. However, in accepting such obligations, You may act only
170 | on Your own behalf and on Your sole responsibility, not on behalf
171 | of any other Contributor, and only if You agree to indemnify,
172 | defend, and hold each Contributor harmless for any liability
173 | incurred by, or claims asserted against, such Contributor by reason
174 | of your accepting any such warranty or additional liability.
175 |
176 | END OF TERMS AND CONDITIONS
177 |
178 | © Copyright 2022 xcsoft
179 |
180 | Licensed under the Apache License, Version 2.0 (the "License");
181 | you may not use this file except in compliance with the License.
182 | You may obtain a copy of the License at
183 |
184 | http://www.apache.org/licenses/LICENSE-2.0
185 |
186 | Unless required by applicable law or agreed to in writing, software
187 | distributed under the License is distributed on an "AS IS" BASIS,
188 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
189 | See the License for the specific language governing permissions and
190 | limitations under the License.
191 |
--------------------------------------------------------------------------------
/layout/homeLayout.tsx:
--------------------------------------------------------------------------------
1 | import React, {useState} from "react";
2 | import type {ReactElement} from "react";
3 |
4 | // ICON start
5 | import MenuIcon from '@mui/icons-material/Menu';
6 | import MailIcon from '@mui/icons-material/MailOutline';
7 | import ChevronLeftIcon from '@mui/icons-material/ChevronLeft';
8 | import BookIcon from '@mui/icons-material/BookOutlined';
9 | import GitHubIcon from '@mui/icons-material/GitHub';
10 | import CodeIcon from '@mui/icons-material/Code';
11 | import HomeIcon from '@mui/icons-material/Home';
12 | import ClassOutlinedIcon from '@mui/icons-material/ClassOutlined';
13 | import AccountTreeOutlinedIcon from '@mui/icons-material/AccountTreeOutlined';
14 | import NetworkCheckOutlined from "@mui/icons-material/NetworkCheckOutlined";
15 | import CollectionsIcon from '@mui/icons-material/Collections';
16 | // ICON end
17 |
18 | import {
19 | Typography,
20 | Drawer,
21 | Toolbar,
22 | AppBar,
23 | IconButton,
24 | List,
25 | ListItem,
26 | ListItemIcon,
27 | ListItemText,
28 | Divider,
29 | ListSubheader,
30 | Box,
31 | Avatar,
32 | ListItemAvatar,
33 | Container,
34 | } from "@mui/material";
35 |
36 |
37 | import {useTranslation} from "next-i18next"
38 | import {useRouter} from 'next/router'
39 |
40 | type FindMe = [string, ReactElement, string][];
41 | type MySite = [string, ReactElement, string][];
42 | type Links = [string, ReactElement | string, string][];
43 |
44 | const HomeLayOut = ({children}: { children: ReactElement }) => {
45 | const {t} = useTranslation('drawer');
46 | const [open, setOpen] = useState(false);
47 | const route = useRouter();
48 |
49 | const HandleJump = (url: string) => window.open(url);
50 | const HandleNavigate = (url: string): void => {
51 | setOpen(false);
52 | route.push(url);
53 | }
54 |
55 | const find_me: FindMe = [
56 | ['Github', , 'https://github.com/soxft'],
57 | ['mail', , 'mailto:contact@xcsoft.top'],
58 | ];
59 |
60 | const my_site: MySite = [
61 | ['blog', , 'https://blog.xsot.cn'],
62 | ['timeletters', , 'https://www.timeletters.cn'],
63 | ['gallery', , 'https://gallery.xsot.cn'],
64 | ['openid', , 'https://9420.ltd'],
65 | ['whois', , 'https://whois.cmds.run'],
66 | ];
67 |
68 | const links: Links = [
69 | ['泽', "Z", 'https://blog.stzo.cn'],
70 | ['源源日记', "Y", 'https://blog.bsot.cn'],
71 | ["Evolution Host", "E", "https://evolution-host.com"]
72 | ];
73 |
74 | return <>
75 |
80 |
81 | setOpen(true)}
85 | sx={{
86 | marginRight: '36px',
87 | ...(open && {display: 'none'}),
88 | }}
89 | >
90 |
91 |
92 |
98 | XCSOFT
99 |
100 |
101 |
102 |
103 | {/* 侧边抽屉 */}
104 | setOpen(false)}
111 | >
112 |
121 |
122 | setOpen(false)}
124 | >
125 |
126 |
127 |
128 |
129 | {/* INDEX */}
130 |
137 | {t('subtitle_index')}
138 |
139 | }
140 | >
141 | HandleNavigate('/')}
144 | >
145 |
146 |
147 |
148 |
152 |
153 | HandleNavigate('/project')}
156 | >
157 |
158 |
159 |
160 |
164 |
165 | HandleNavigate('/about')}
168 | >
169 |
170 |
171 |
172 |
176 |
177 |
178 |
179 | {/* 我的网站 */}
180 |
187 | {t('subtitle_mysite')}
188 |
189 | }
190 | >
191 | {
192 | my_site.map((item, index) => {
193 | return (
194 | HandleJump(item[2])}
196 | button
197 | key={index}
198 | >
199 |
200 | {item[1]}
201 |
202 |
206 |
207 | );
208 | })
209 | }
210 |
211 |
212 | {/* 找到我 */}
213 |
220 | {t('subtitle_findme')}
221 |
222 | }
223 | >
224 | {
225 | find_me.map((item, index) => {
226 | return (
227 | HandleJump(item[2])}
229 | button
230 | key={index}
231 | >
232 |
233 | {item[1]}
234 |
235 |
239 |
240 | );
241 | })
242 | }
243 |
244 |
245 | {/* 推荐链接 */}
246 |
253 | {t('subtitle_suggest')}
254 |
255 | }
256 | >
257 | {
258 | links.map((item, index) => {
259 | return (
260 | HandleJump(item[2])}
262 | button
263 | key={index}
264 | >
265 |
266 | {item[1]}
272 |
273 |
277 |
278 | );
279 | })
280 | }
281 |
282 |
283 |
284 |
289 |
299 | {children}
300 |
301 |
302 |
312 |
313 |
322 | 苏ICP备 2022047771号-2
323 |
324 | &
325 |
334 | 苏公网安备 32061202001303号
335 |
336 |
337 | >;
338 | }
339 |
340 | export default HomeLayOut;
--------------------------------------------------------------------------------
/yarn.lock:
--------------------------------------------------------------------------------
1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
2 | # yarn lockfile v1
3 |
4 |
5 | "@babel/code-frame@^7.0.0":
6 | version "7.16.7"
7 | resolved "https://registry.npmmirror.com/@babel/code-frame/-/code-frame-7.16.7.tgz#44416b6bd7624b998f5b1af5d470856c40138789"
8 | integrity sha512-iAXqUn8IIeBTNd72xsFlgaXHkMBMt6y4HJp1tIaK465CWLT/fG1aqB7ykr95gHHmlBdGbFeWWfyB4NJJ0nmeIg==
9 | dependencies:
10 | "@babel/highlight" "^7.16.7"
11 |
12 | "@babel/helper-module-imports@^7.12.13":
13 | version "7.16.7"
14 | resolved "https://registry.npmmirror.com/@babel/helper-module-imports/-/helper-module-imports-7.16.7.tgz#25612a8091a999704461c8a222d0efec5d091437"
15 | integrity sha512-LVtS6TqjJHFc+nYeITRo6VLXve70xmq7wPhWTqDJusJEgGmkAACWwMiTNrvfoQo6hEhFwAIixNkvB0jPXDL8Wg==
16 | dependencies:
17 | "@babel/types" "^7.16.7"
18 |
19 | "@babel/helper-plugin-utils@^7.16.7":
20 | version "7.16.7"
21 | resolved "https://registry.npmmirror.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.16.7.tgz#aa3a8ab4c3cceff8e65eb9e73d87dc4ff320b2f5"
22 | integrity sha512-Qg3Nk7ZxpgMrsox6HreY1ZNKdBq7K72tDSliA6dCl5f007jR4ne8iD5UzuNnCJH2xBf2BEEVGr+/OL6Gdp7RxA==
23 |
24 | "@babel/helper-validator-identifier@^7.16.7":
25 | version "7.16.7"
26 | resolved "https://registry.npmmirror.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.16.7.tgz#e8c602438c4a8195751243da9031d1607d247cad"
27 | integrity sha512-hsEnFemeiW4D08A5gUAZxLBTXpZ39P+a+DGDsHw1yxqyQ/jzFEnxf5uTEGp+3bzAbNOxU1paTgYS4ECU/IgfDw==
28 |
29 | "@babel/highlight@^7.16.7":
30 | version "7.17.9"
31 | resolved "https://registry.npmmirror.com/@babel/highlight/-/highlight-7.17.9.tgz#61b2ee7f32ea0454612def4fccdae0de232b73e3"
32 | integrity sha512-J9PfEKCbFIv2X5bjTMiZu6Vf341N05QIY+d6FvVKynkG1S7G0j3I0QoRtWIrXhZ+/Nlb5Q0MzqL7TokEJ5BNHg==
33 | dependencies:
34 | "@babel/helper-validator-identifier" "^7.16.7"
35 | chalk "^2.0.0"
36 | js-tokens "^4.0.0"
37 |
38 | "@babel/plugin-syntax-jsx@^7.12.13":
39 | version "7.16.7"
40 | resolved "https://registry.npmmirror.com/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.16.7.tgz#50b6571d13f764266a113d77c82b4a6508bbe665"
41 | integrity sha512-Esxmk7YjA8QysKeT3VhTXvF6y77f/a91SIs4pWb4H2eWGQkCKFgQaG6hdoEVZtGsrAcb2K5BW66XsOErD4WU3Q==
42 | dependencies:
43 | "@babel/helper-plugin-utils" "^7.16.7"
44 |
45 | "@babel/runtime-corejs3@^7.10.2":
46 | version "7.17.9"
47 | resolved "https://registry.npmmirror.com/@babel/runtime-corejs3/-/runtime-corejs3-7.17.9.tgz#3d02d0161f0fbf3ada8e88159375af97690f4055"
48 | integrity sha512-WxYHHUWF2uZ7Hp1K+D1xQgbgkGUfA+5UPOegEXGt2Y5SMog/rYCVaifLZDbw8UkNXozEqqrZTy6bglL7xTaCOw==
49 | dependencies:
50 | core-js-pure "^3.20.2"
51 | regenerator-runtime "^0.13.4"
52 |
53 | "@babel/runtime@^7.10.2", "@babel/runtime@^7.13.10", "@babel/runtime@^7.13.17", "@babel/runtime@^7.14.5", "@babel/runtime@^7.16.3", "@babel/runtime@^7.17.2", "@babel/runtime@^7.5.5", "@babel/runtime@^7.7.2", "@babel/runtime@^7.8.7":
54 | version "7.17.9"
55 | resolved "https://registry.npmmirror.com/@babel/runtime/-/runtime-7.17.9.tgz#d19fbf802d01a8cb6cf053a64e472d42c434ba72"
56 | integrity sha512-lSiBBvodq29uShpWGNbgFdKYNiFDo5/HIYsaCEY9ff4sb10x9jizo2+pRrSyF4jKZCXqgzuqBOQKbUm90gQwJg==
57 | dependencies:
58 | regenerator-runtime "^0.13.4"
59 |
60 | "@babel/types@^7.16.7":
61 | version "7.17.0"
62 | resolved "https://registry.npmmirror.com/@babel/types/-/types-7.17.0.tgz#a826e368bccb6b3d84acd76acad5c0d87342390b"
63 | integrity sha512-TmKSNO4D5rzhL5bjWFcVHHLETzfQ/AmbKpKPOSjlP0WoHZ6L911fgoOKY4Alp/emzG4cHJdyN49zpgkbXFEHHw==
64 | dependencies:
65 | "@babel/helper-validator-identifier" "^7.16.7"
66 | to-fast-properties "^2.0.0"
67 |
68 | "@emotion/babel-plugin@^11.7.1":
69 | version "11.9.2"
70 | resolved "https://registry.npmmirror.com/@emotion/babel-plugin/-/babel-plugin-11.9.2.tgz#723b6d394c89fb2ef782229d92ba95a740576e95"
71 | integrity sha512-Pr/7HGH6H6yKgnVFNEj2MVlreu3ADqftqjqwUvDy/OJzKFgxKeTQ+eeUf20FOTuHVkDON2iNa25rAXVYtWJCjw==
72 | dependencies:
73 | "@babel/helper-module-imports" "^7.12.13"
74 | "@babel/plugin-syntax-jsx" "^7.12.13"
75 | "@babel/runtime" "^7.13.10"
76 | "@emotion/hash" "^0.8.0"
77 | "@emotion/memoize" "^0.7.5"
78 | "@emotion/serialize" "^1.0.2"
79 | babel-plugin-macros "^2.6.1"
80 | convert-source-map "^1.5.0"
81 | escape-string-regexp "^4.0.0"
82 | find-root "^1.1.0"
83 | source-map "^0.5.7"
84 | stylis "4.0.13"
85 |
86 | "@emotion/cache@^11.7.1":
87 | version "11.7.1"
88 | resolved "https://registry.npmmirror.com/@emotion/cache/-/cache-11.7.1.tgz#08d080e396a42e0037848214e8aa7bf879065539"
89 | integrity sha512-r65Zy4Iljb8oyjtLeCuBH8Qjiy107dOYC6SJq7g7GV5UCQWMObY4SJDPGFjiiVpPrOJ2hmJOoBiYTC7hwx9E2A==
90 | dependencies:
91 | "@emotion/memoize" "^0.7.4"
92 | "@emotion/sheet" "^1.1.0"
93 | "@emotion/utils" "^1.0.0"
94 | "@emotion/weak-memoize" "^0.2.5"
95 | stylis "4.0.13"
96 |
97 | "@emotion/hash@^0.8.0":
98 | version "0.8.0"
99 | resolved "https://registry.npmmirror.com/@emotion/hash/-/hash-0.8.0.tgz#bbbff68978fefdbe68ccb533bc8cbe1d1afb5413"
100 | integrity sha512-kBJtf7PH6aWwZ6fka3zQ0p6SBYzx4fl1LoZXE2RrnYST9Xljm7WfKJrU4g/Xr3Beg72MLrp1AWNUmuYJTL7Cow==
101 |
102 | "@emotion/is-prop-valid@^1.1.2":
103 | version "1.1.2"
104 | resolved "https://registry.npmmirror.com/@emotion/is-prop-valid/-/is-prop-valid-1.1.2.tgz#34ad6e98e871aa6f7a20469b602911b8b11b3a95"
105 | integrity sha512-3QnhqeL+WW88YjYbQL5gUIkthuMw7a0NGbZ7wfFVk2kg/CK5w8w5FFa0RzWjyY1+sujN0NWbtSHH6OJmWHtJpQ==
106 | dependencies:
107 | "@emotion/memoize" "^0.7.4"
108 |
109 | "@emotion/memoize@^0.7.4", "@emotion/memoize@^0.7.5":
110 | version "0.7.5"
111 | resolved "https://registry.npmmirror.com/@emotion/memoize/-/memoize-0.7.5.tgz#2c40f81449a4e554e9fc6396910ed4843ec2be50"
112 | integrity sha512-igX9a37DR2ZPGYtV6suZ6whr8pTFtyHL3K/oLUotxpSVO2ASaprmAe2Dkq7tBo7CRY7MMDrAa9nuQP9/YG8FxQ==
113 |
114 | "@emotion/react@^11.9.0":
115 | version "11.9.0"
116 | resolved "https://registry.npmmirror.com/@emotion/react/-/react-11.9.0.tgz#b6d42b1db3bd7511e7a7c4151dc8bc82e14593b8"
117 | integrity sha512-lBVSF5d0ceKtfKCDQJveNAtkC7ayxpVlgOohLgXqRwqWr9bOf4TZAFFyIcNngnV6xK6X4x2ZeXq7vliHkoVkxQ==
118 | dependencies:
119 | "@babel/runtime" "^7.13.10"
120 | "@emotion/babel-plugin" "^11.7.1"
121 | "@emotion/cache" "^11.7.1"
122 | "@emotion/serialize" "^1.0.3"
123 | "@emotion/utils" "^1.1.0"
124 | "@emotion/weak-memoize" "^0.2.5"
125 | hoist-non-react-statics "^3.3.1"
126 |
127 | "@emotion/serialize@^1.0.2", "@emotion/serialize@^1.0.3":
128 | version "1.0.3"
129 | resolved "https://registry.npmmirror.com/@emotion/serialize/-/serialize-1.0.3.tgz#99e2060c26c6292469fb30db41f4690e1c8fea63"
130 | integrity sha512-2mSSvgLfyV3q+iVh3YWgNlUc2a9ZlDU7DjuP5MjK3AXRR0dYigCrP99aeFtaB2L/hjfEZdSThn5dsZ0ufqbvsA==
131 | dependencies:
132 | "@emotion/hash" "^0.8.0"
133 | "@emotion/memoize" "^0.7.4"
134 | "@emotion/unitless" "^0.7.5"
135 | "@emotion/utils" "^1.0.0"
136 | csstype "^3.0.2"
137 |
138 | "@emotion/sheet@^1.1.0":
139 | version "1.1.0"
140 | resolved "https://registry.npmmirror.com/@emotion/sheet/-/sheet-1.1.0.tgz#56d99c41f0a1cda2726a05aa6a20afd4c63e58d2"
141 | integrity sha512-u0AX4aSo25sMAygCuQTzS+HsImZFuS8llY8O7b9MDRzbJM0kVJlAz6KNDqcG7pOuQZJmj/8X/rAW+66kMnMW+g==
142 |
143 | "@emotion/styled@^11.8.1":
144 | version "11.8.1"
145 | resolved "https://registry.npmmirror.com/@emotion/styled/-/styled-11.8.1.tgz#856f6f63aceef0eb783985fa2322e2bf66d04e17"
146 | integrity sha512-OghEVAYBZMpEquHZwuelXcRjRJQOVayvbmNR0zr174NHdmMgrNkLC6TljKC5h9lZLkN5WGrdUcrKlOJ4phhoTQ==
147 | dependencies:
148 | "@babel/runtime" "^7.13.10"
149 | "@emotion/babel-plugin" "^11.7.1"
150 | "@emotion/is-prop-valid" "^1.1.2"
151 | "@emotion/serialize" "^1.0.2"
152 | "@emotion/utils" "^1.1.0"
153 |
154 | "@emotion/unitless@^0.7.5":
155 | version "0.7.5"
156 | resolved "https://registry.npmmirror.com/@emotion/unitless/-/unitless-0.7.5.tgz#77211291c1900a700b8a78cfafda3160d76949ed"
157 | integrity sha512-OWORNpfjMsSSUBVrRBVGECkhWcULOAJz9ZW8uK9qgxD+87M7jHRcvh/A96XXNhXTLmKcoYSQtBEX7lHMO7YRwg==
158 |
159 | "@emotion/utils@^1.0.0", "@emotion/utils@^1.1.0":
160 | version "1.1.0"
161 | resolved "https://registry.npmmirror.com/@emotion/utils/-/utils-1.1.0.tgz#86b0b297f3f1a0f2bdb08eeac9a2f49afd40d0cf"
162 | integrity sha512-iRLa/Y4Rs5H/f2nimczYmS5kFJEbpiVvgN3XVfZ022IYhuNA1IRSHEizcof88LtCTXtl9S2Cxt32KgaXEu72JQ==
163 |
164 | "@emotion/weak-memoize@^0.2.5":
165 | version "0.2.5"
166 | resolved "https://registry.npmmirror.com/@emotion/weak-memoize/-/weak-memoize-0.2.5.tgz#8eed982e2ee6f7f4e44c253e12962980791efd46"
167 | integrity sha512-6U71C2Wp7r5XtFtQzYrW5iKFT67OixrSxjI4MptCHzdSVlgabczzqLe0ZSgnub/5Kp4hSbpDB1tMytZY9pwxxA==
168 |
169 | "@eslint/eslintrc@^1.2.1":
170 | version "1.2.1"
171 | resolved "https://registry.npmmirror.com/@eslint/eslintrc/-/eslintrc-1.2.1.tgz#8b5e1c49f4077235516bc9ec7d41378c0f69b8c6"
172 | integrity sha512-bxvbYnBPN1Gibwyp6NrpnFzA3YtRL3BBAyEAFVIpNTm2Rn4Vy87GA5M4aSn3InRrlsbX5N0GW7XIx+U4SAEKdQ==
173 | dependencies:
174 | ajv "^6.12.4"
175 | debug "^4.3.2"
176 | espree "^9.3.1"
177 | globals "^13.9.0"
178 | ignore "^5.2.0"
179 | import-fresh "^3.2.1"
180 | js-yaml "^4.1.0"
181 | minimatch "^3.0.4"
182 | strip-json-comments "^3.1.1"
183 |
184 | "@humanwhocodes/config-array@^0.9.2":
185 | version "0.9.5"
186 | resolved "https://registry.npmmirror.com/@humanwhocodes/config-array/-/config-array-0.9.5.tgz#2cbaf9a89460da24b5ca6531b8bbfc23e1df50c7"
187 | integrity sha512-ObyMyWxZiCu/yTisA7uzx81s40xR2fD5Cg/2Kq7G02ajkNubJf6BopgDTmDyc3U7sXpNKM8cYOw7s7Tyr+DnCw==
188 | dependencies:
189 | "@humanwhocodes/object-schema" "^1.2.1"
190 | debug "^4.1.1"
191 | minimatch "^3.0.4"
192 |
193 | "@humanwhocodes/object-schema@^1.2.1":
194 | version "1.2.1"
195 | resolved "https://registry.npmmirror.com/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz#b520529ec21d8e5945a1851dfd1c32e94e39ff45"
196 | integrity sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==
197 |
198 | "@mui/base@5.0.0-alpha.76":
199 | version "5.0.0-alpha.76"
200 | resolved "https://registry.npmmirror.com/@mui/base/-/base-5.0.0-alpha.76.tgz#683d68eff6d52e19e9962f608a5d3b8b6fb6ef55"
201 | integrity sha512-Pd0l4DvjXiGRyipn/CTDlYB2XrJwhpLktVXvbvcmzL2SMDaNprSarZqBkPHIubkulmRDZEEcnFDrpKgeSJDg4A==
202 | dependencies:
203 | "@babel/runtime" "^7.17.2"
204 | "@emotion/is-prop-valid" "^1.1.2"
205 | "@mui/types" "^7.1.3"
206 | "@mui/utils" "^5.6.1"
207 | "@popperjs/core" "^2.11.5"
208 | clsx "^1.1.1"
209 | prop-types "^15.7.2"
210 | react-is "^17.0.2"
211 |
212 | "@mui/icons-material@^5.6.1":
213 | version "5.6.1"
214 | resolved "https://registry.npmmirror.com/@mui/icons-material/-/icons-material-5.6.1.tgz#421e2b73992349abb07f8f03074d7e56e20bf7ba"
215 | integrity sha512-I1x8u+FRLOmoJpRJASMx9UG+jZrSkNLyRQmBXivQQwXu3m3iasMoaKYhhI0J18t8+FWktbkNTp63oEUHE9Gw0Q==
216 | dependencies:
217 | "@babel/runtime" "^7.17.2"
218 |
219 | "@mui/material@^5.6.1":
220 | version "5.6.1"
221 | resolved "https://registry.npmmirror.com/@mui/material/-/material-5.6.1.tgz#b74cfbe4666586e054a28cf3df448369892085e1"
222 | integrity sha512-xg6pPq+1jxWupwmPpnfmsHNjrsOe2xynUQWrRfcH8WHrrr1sQulq0VF4gORq/l8DD8a/jb4s8SsC20e/e6mHKQ==
223 | dependencies:
224 | "@babel/runtime" "^7.17.2"
225 | "@mui/base" "5.0.0-alpha.76"
226 | "@mui/system" "^5.6.1"
227 | "@mui/types" "^7.1.3"
228 | "@mui/utils" "^5.6.1"
229 | "@types/react-transition-group" "^4.4.4"
230 | clsx "^1.1.1"
231 | csstype "^3.0.11"
232 | hoist-non-react-statics "^3.3.2"
233 | prop-types "^15.7.2"
234 | react-is "^17.0.2"
235 | react-transition-group "^4.4.2"
236 |
237 | "@mui/private-theming@^5.6.1":
238 | version "5.6.1"
239 | resolved "https://registry.npmmirror.com/@mui/private-theming/-/private-theming-5.6.1.tgz#198ccec972375db999c293109b5f26456b9c3a22"
240 | integrity sha512-8lgh+tUt/3ftStfvml3dwAzhW3fe/cUFjLcBViOTnWk7UixWR79me4qehsO4NVj0THpu3d2qclrLzdD8qBAWAQ==
241 | dependencies:
242 | "@babel/runtime" "^7.17.2"
243 | "@mui/utils" "^5.6.1"
244 | prop-types "^15.7.2"
245 |
246 | "@mui/styled-engine@^5.6.1":
247 | version "5.6.1"
248 | resolved "https://registry.npmmirror.com/@mui/styled-engine/-/styled-engine-5.6.1.tgz#e2c859a4dbdd65af89e77703a0725285aef471fd"
249 | integrity sha512-jEhH6TBY8jc9S8yVncXmoTYTbATjEu44RMFXj6sIYfKr5NArVwTwRo3JexLL0t3BOAiYM4xsFLgfKEIvB9SAeQ==
250 | dependencies:
251 | "@babel/runtime" "^7.17.2"
252 | "@emotion/cache" "^11.7.1"
253 | prop-types "^15.7.2"
254 |
255 | "@mui/system@^5.6.1":
256 | version "5.6.1"
257 | resolved "https://registry.npmmirror.com/@mui/system/-/system-5.6.1.tgz#dd47a15b82012f44464a0f25765e3dec6182ba98"
258 | integrity sha512-Y5pDvEOK6VOY+0vgNeyDuEEO5QCinhXbZQDyLOlaGLKuAoRGLXO9pcSsjZoGkewYZitXD44EDfgBQ+BqsAfgUA==
259 | dependencies:
260 | "@babel/runtime" "^7.17.2"
261 | "@mui/private-theming" "^5.6.1"
262 | "@mui/styled-engine" "^5.6.1"
263 | "@mui/types" "^7.1.3"
264 | "@mui/utils" "^5.6.1"
265 | clsx "^1.1.1"
266 | csstype "^3.0.11"
267 | prop-types "^15.7.2"
268 |
269 | "@mui/types@^7.1.3":
270 | version "7.1.3"
271 | resolved "https://registry.npmmirror.com/@mui/types/-/types-7.1.3.tgz#d7636f3046110bcccc63e6acfd100e2ad9ca712a"
272 | integrity sha512-DDF0UhMBo4Uezlk+6QxrlDbchF79XG6Zs0zIewlR4c0Dt6GKVFfUtzPtHCH1tTbcSlq/L2bGEdiaoHBJ9Y1gSA==
273 |
274 | "@mui/utils@^5.6.1":
275 | version "5.6.1"
276 | resolved "https://registry.npmmirror.com/@mui/utils/-/utils-5.6.1.tgz#4ab79a21bd481555d9a588f4b18061b3c28ea5db"
277 | integrity sha512-CPrzrkiBusCZBLWu0Sg5MJvR3fKJyK3gKecLVX012LULyqg2U64Oz04BKhfkbtBrPBbSQxM+DWW9B1c9hmV9nQ==
278 | dependencies:
279 | "@babel/runtime" "^7.17.2"
280 | "@types/prop-types" "^15.7.4"
281 | "@types/react-is" "^16.7.1 || ^17.0.0"
282 | prop-types "^15.7.2"
283 | react-is "^17.0.2"
284 |
285 | "@next/env@12.1.5":
286 | version "12.1.5"
287 | resolved "https://registry.npmmirror.com/@next/env/-/env-12.1.5.tgz#a21ba6708022d630402ca2b340316e69a0296dfc"
288 | integrity sha512-+34yUJslfJi7Lyx6ELuN8nWcOzi27izfYnZIC1Dqv7kmmfiBVxgzR3BXhlvEMTKC2IRJhXVs2FkMY+buQe3k7Q==
289 |
290 | "@next/eslint-plugin-next@12.1.5":
291 | version "12.1.5"
292 | resolved "https://registry.npmmirror.com/@next/eslint-plugin-next/-/eslint-plugin-next-12.1.5.tgz#273885b35e6bbcd40ff1436d2a8d0ec03fb6f6ef"
293 | integrity sha512-Cnb8ERC5bNKBFrnMH6203sp/b0Y78QRx1XsFu+86oBtDBmQmOFoHu7teQjHm69ER73XKK3aGaeoLiXacHoUFsg==
294 | dependencies:
295 | glob "7.1.7"
296 |
297 | "@next/swc-android-arm-eabi@12.1.5":
298 | version "12.1.5"
299 | resolved "https://registry.npmmirror.com/@next/swc-android-arm-eabi/-/swc-android-arm-eabi-12.1.5.tgz#36729ab3dfd7743e82cfe536b43254dcb146620c"
300 | integrity sha512-SKnGTdYcoN04Y2DvE0/Y7/MjkA+ltsmbuH/y/hR7Ob7tsj+8ZdOYuk+YvW1B8dY20nDPHP58XgDTSm2nA8BzzA==
301 |
302 | "@next/swc-android-arm64@12.1.5":
303 | version "12.1.5"
304 | resolved "https://registry.npmmirror.com/@next/swc-android-arm64/-/swc-android-arm64-12.1.5.tgz#52578f552305c92d0b9b81d603c9643fb71e0835"
305 | integrity sha512-YXiqgQ/9Rxg1dXp6brXbeQM1JDx9SwUY/36JiE+36FXqYEmDYbxld9qkX6GEzkc5rbwJ+RCitargnzEtwGW0mw==
306 |
307 | "@next/swc-darwin-arm64@12.1.5":
308 | version "12.1.5"
309 | resolved "https://registry.npmmirror.com/@next/swc-darwin-arm64/-/swc-darwin-arm64-12.1.5.tgz#3d5b53211484c72074f4975ba0ec2b1107db300e"
310 | integrity sha512-y8mhldb/WFZ6lFeowkGfi0cO/lBdiBqDk4T4LZLvCpoQp4Or/NzUN6P5NzBQZ5/b4oUHM/wQICEM+1wKA4qIVw==
311 |
312 | "@next/swc-darwin-x64@12.1.5":
313 | version "12.1.5"
314 | resolved "https://registry.npmmirror.com/@next/swc-darwin-x64/-/swc-darwin-x64-12.1.5.tgz#adcabb732d226453777c0d37d58eaff9328b66fd"
315 | integrity sha512-wqJ3X7WQdTwSGi0kIDEmzw34QHISRIQ5uvC+VXmsIlCPFcMA+zM5723uh8NfuKGquDMiEMS31a83QgkuHMYbwQ==
316 |
317 | "@next/swc-linux-arm-gnueabihf@12.1.5":
318 | version "12.1.5"
319 | resolved "https://registry.npmmirror.com/@next/swc-linux-arm-gnueabihf/-/swc-linux-arm-gnueabihf-12.1.5.tgz#82a7cde67482b756bc65fbebf1dfa8a782074e93"
320 | integrity sha512-WnhdM5duONMvt2CncAl+9pim0wBxDS2lHoo7ub/o/i1bRbs11UTzosKzEXVaTDCUkCX2c32lIDi1WcN2ZPkcdw==
321 |
322 | "@next/swc-linux-arm64-gnu@12.1.5":
323 | version "12.1.5"
324 | resolved "https://registry.npmmirror.com/@next/swc-linux-arm64-gnu/-/swc-linux-arm64-gnu-12.1.5.tgz#f82ca014504950aab751e81f467492e9be0bad5d"
325 | integrity sha512-Jq2H68yQ4bLUhR/XQnbw3LDW0GMQn355qx6rU36BthDLeGue7YV7MqNPa8GKvrpPocEMW77nWx/1yI6w6J07gw==
326 |
327 | "@next/swc-linux-arm64-musl@12.1.5":
328 | version "12.1.5"
329 | resolved "https://registry.npmmirror.com/@next/swc-linux-arm64-musl/-/swc-linux-arm64-musl-12.1.5.tgz#f811ec9f4b12a978426c284c95ab2f515ddf7f9e"
330 | integrity sha512-KgPjwdbhDqXI7ghNN8V/WAiLquc9Ebe8KBrNNEL0NQr+yd9CyKJ6KqjayVkmX+hbHzbyvbui/5wh/p3CZQ9xcQ==
331 |
332 | "@next/swc-linux-x64-gnu@12.1.5":
333 | version "12.1.5"
334 | resolved "https://registry.npmmirror.com/@next/swc-linux-x64-gnu/-/swc-linux-x64-gnu-12.1.5.tgz#d44857257e6d20dc841998951d584ab1f25772c3"
335 | integrity sha512-O2ErUTvCJ6DkNTSr9pbu1n3tcqykqE/ebty1rwClzIYdOgpB3T2MfEPP+K7GhUR87wmN/hlihO9ch7qpVFDGKw==
336 |
337 | "@next/swc-linux-x64-musl@12.1.5":
338 | version "12.1.5"
339 | resolved "https://registry.npmmirror.com/@next/swc-linux-x64-musl/-/swc-linux-x64-musl-12.1.5.tgz#3cc523abadc9a2a6de680593aff06e71cc29ecef"
340 | integrity sha512-1eIlZmlO/VRjxxzUBcVosf54AFU3ltAzHi+BJA+9U/lPxCYIsT+R4uO3QksRzRjKWhVQMRjEnlXyyq5SKJm7BA==
341 |
342 | "@next/swc-win32-arm64-msvc@12.1.5":
343 | version "12.1.5"
344 | resolved "https://registry.npmmirror.com/@next/swc-win32-arm64-msvc/-/swc-win32-arm64-msvc-12.1.5.tgz#c62232d869f1f9b22e8f24e4e7f05307c20f30ca"
345 | integrity sha512-oromsfokbEuVb0CBLLE7R9qX3KGXucZpsojLpzUh1QJjuy1QkrPJncwr8xmWQnwgtQ6ecMWXgXPB+qtvizT9Tw==
346 |
347 | "@next/swc-win32-ia32-msvc@12.1.5":
348 | version "12.1.5"
349 | resolved "https://registry.npmmirror.com/@next/swc-win32-ia32-msvc/-/swc-win32-ia32-msvc-12.1.5.tgz#2bd9b28a9ba730d12a493e7d9d18e150fe89d496"
350 | integrity sha512-a/51L5KzBpeZSW9LbekMo3I3Cwul+V+QKwbEIMA+Qwb2qrlcn1L9h3lt8cHqNTFt2y72ce6aTwDTw1lyi5oIRA==
351 |
352 | "@next/swc-win32-x64-msvc@12.1.5":
353 | version "12.1.5"
354 | resolved "https://registry.npmmirror.com/@next/swc-win32-x64-msvc/-/swc-win32-x64-msvc-12.1.5.tgz#02f377e4d41eaaacf265e34bab9bacd8efc4a351"
355 | integrity sha512-/SoXW1Ntpmpw3AXAzfDRaQidnd8kbZ2oSni8u5z0yw6t4RwJvmdZy1eOaAADRThWKV+2oU90++LSnXJIwBRWYQ==
356 |
357 | "@nodelib/fs.scandir@2.1.5":
358 | version "2.1.5"
359 | resolved "https://registry.npmmirror.com/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz#7619c2eb21b25483f6d167548b4cfd5a7488c3d5"
360 | integrity sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==
361 | dependencies:
362 | "@nodelib/fs.stat" "2.0.5"
363 | run-parallel "^1.1.9"
364 |
365 | "@nodelib/fs.stat@2.0.5", "@nodelib/fs.stat@^2.0.2":
366 | version "2.0.5"
367 | resolved "https://registry.npmmirror.com/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz#5bd262af94e9d25bd1e71b05deed44876a222e8b"
368 | integrity sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==
369 |
370 | "@nodelib/fs.walk@^1.2.3":
371 | version "1.2.8"
372 | resolved "https://registry.npmmirror.com/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz#e95737e8bb6746ddedf69c556953494f196fe69a"
373 | integrity sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==
374 | dependencies:
375 | "@nodelib/fs.scandir" "2.1.5"
376 | fastq "^1.6.0"
377 |
378 | "@popperjs/core@^2.11.5":
379 | version "2.11.5"
380 | resolved "https://registry.npmmirror.com/@popperjs/core/-/core-2.11.5.tgz#db5a11bf66bdab39569719555b0f76e138d7bd64"
381 | integrity sha512-9X2obfABZuDVLCgPK9aX0a/x4jaOEweTTWE2+9sr0Qqqevj2Uv5XorvusThmc9XGYpS9yI+fhh8RTafBtGposw==
382 |
383 | "@rushstack/eslint-patch@1.0.8":
384 | version "1.0.8"
385 | resolved "https://registry.npmmirror.com/@rushstack/eslint-patch/-/eslint-patch-1.0.8.tgz#be3e914e84eacf16dbebd311c0d0b44aa1174c64"
386 | integrity sha512-ZK5v4bJwgXldAUA8r3q9YKfCwOqoHTK/ZqRjSeRXQrBXWouoPnS4MQtgC4AXGiiBuUu5wxrRgTlv0ktmM4P1Aw==
387 |
388 | "@types/hoist-non-react-statics@^3.3.1":
389 | version "3.3.1"
390 | resolved "https://registry.npmmirror.com/@types/hoist-non-react-statics/-/hoist-non-react-statics-3.3.1.tgz#1124aafe5118cb591977aeb1ceaaed1070eb039f"
391 | integrity sha512-iMIqiko6ooLrTh1joXodJK5X9xeEALT1kM5G3ZLhD3hszxBdIEd5C75U834D9mLcINgD4OyZf5uQXjkuYydWvA==
392 | dependencies:
393 | "@types/react" "*"
394 | hoist-non-react-statics "^3.3.0"
395 |
396 | "@types/json5@^0.0.29":
397 | version "0.0.29"
398 | resolved "https://registry.npmmirror.com/@types/json5/-/json5-0.0.29.tgz#ee28707ae94e11d2b827bcbe5270bcea7f3e71ee"
399 | integrity sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==
400 |
401 | "@types/node@17.0.23":
402 | version "17.0.23"
403 | resolved "https://registry.npmmirror.com/@types/node/-/node-17.0.23.tgz#3b41a6e643589ac6442bdbd7a4a3ded62f33f7da"
404 | integrity sha512-UxDxWn7dl97rKVeVS61vErvw086aCYhDLyvRQZ5Rk65rZKepaFdm53GeqXaKBuOhED4e9uWq34IC3TdSdJJ2Gw==
405 |
406 | "@types/parse-json@^4.0.0":
407 | version "4.0.0"
408 | resolved "https://registry.npmmirror.com/@types/parse-json/-/parse-json-4.0.0.tgz#2f8bb441434d163b35fb8ffdccd7138927ffb8c0"
409 | integrity sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA==
410 |
411 | "@types/prop-types@*", "@types/prop-types@^15.7.4":
412 | version "15.7.5"
413 | resolved "https://registry.npmmirror.com/@types/prop-types/-/prop-types-15.7.5.tgz#5f19d2b85a98e9558036f6a3cacc8819420f05cf"
414 | integrity sha512-JCB8C6SnDoQf0cNycqd/35A7MjcnK+ZTqE7judS6o7utxUCg6imJg3QK2qzHKszlTjcj2cn+NwMB2i96ubpj7w==
415 |
416 | "@types/react-dom@18.0.0":
417 | version "18.0.0"
418 | resolved "https://registry.npmmirror.com/@types/react-dom/-/react-dom-18.0.0.tgz#b13f8d098e4b0c45df4f1ed123833143b0c71141"
419 | integrity sha512-49897Y0UiCGmxZqpC8Blrf6meL8QUla6eb+BBhn69dTXlmuOlzkfr7HHY/O8J25e1lTUMs+YYxSlVDAaGHCOLg==
420 | dependencies:
421 | "@types/react" "*"
422 |
423 | "@types/react-is@^16.7.1 || ^17.0.0":
424 | version "17.0.3"
425 | resolved "https://registry.npmmirror.com/@types/react-is/-/react-is-17.0.3.tgz#2d855ba575f2fc8d17ef9861f084acc4b90a137a"
426 | integrity sha512-aBTIWg1emtu95bLTLx0cpkxwGW3ueZv71nE2YFBpL8k/z5czEW8yYpOo8Dp+UUAFAtKwNaOsh/ioSeQnWlZcfw==
427 | dependencies:
428 | "@types/react" "*"
429 |
430 | "@types/react-transition-group@^4.4.4":
431 | version "4.4.4"
432 | resolved "https://registry.npmmirror.com/@types/react-transition-group/-/react-transition-group-4.4.4.tgz#acd4cceaa2be6b757db61ed7b432e103242d163e"
433 | integrity sha512-7gAPz7anVK5xzbeQW9wFBDg7G++aPLAFY0QaSMOou9rJZpbuI58WAuJrgu+qR92l61grlnCUe7AFX8KGahAgug==
434 | dependencies:
435 | "@types/react" "*"
436 |
437 | "@types/react@*", "@types/react@18.0.4":
438 | version "18.0.4"
439 | resolved "https://registry.npmmirror.com/@types/react/-/react-18.0.4.tgz#88e9eddd8788fdf60dcf260b1cff2fb7487e4373"
440 | integrity sha512-Zm4ryWh9xQbMX6ge7Ej/nS6VBoT+9wzvwd/hZ+9EONGjBkejyyvEKndZt/DZHHj1lSU/YeTPyJAn22S3GnYchQ==
441 | dependencies:
442 | "@types/prop-types" "*"
443 | "@types/scheduler" "*"
444 | csstype "^3.0.2"
445 |
446 | "@types/scheduler@*":
447 | version "0.16.2"
448 | resolved "https://registry.npmmirror.com/@types/scheduler/-/scheduler-0.16.2.tgz#1a62f89525723dde24ba1b01b092bf5df8ad4d39"
449 | integrity sha512-hppQEBDmlwhFAXKJX2KnWLYu5yMfi91yazPb2l+lbJiwW+wdo1gNeRA+3RgNSO39WYX2euey41KEwnqesU2Jew==
450 |
451 | "@typescript-eslint/parser@5.10.1":
452 | version "5.10.1"
453 | resolved "https://registry.npmmirror.com/@typescript-eslint/parser/-/parser-5.10.1.tgz#4ce9633cc33fc70bc13786cb793c1a76fe5ad6bd"
454 | integrity sha512-GReo3tjNBwR5RnRO0K2wDIDN31cM3MmDtgyQ85oAxAmC5K3j/g85IjP+cDfcqDsDDBf1HNKQAD0WqOYL8jXqUA==
455 | dependencies:
456 | "@typescript-eslint/scope-manager" "5.10.1"
457 | "@typescript-eslint/types" "5.10.1"
458 | "@typescript-eslint/typescript-estree" "5.10.1"
459 | debug "^4.3.2"
460 |
461 | "@typescript-eslint/scope-manager@5.10.1":
462 | version "5.10.1"
463 | resolved "https://registry.npmmirror.com/@typescript-eslint/scope-manager/-/scope-manager-5.10.1.tgz#f0539c73804d2423506db2475352a4dec36cd809"
464 | integrity sha512-Lyvi559Gvpn94k7+ElXNMEnXu/iundV5uFmCUNnftbFrUbAJ1WBoaGgkbOBm07jVZa682oaBU37ao/NGGX4ZDg==
465 | dependencies:
466 | "@typescript-eslint/types" "5.10.1"
467 | "@typescript-eslint/visitor-keys" "5.10.1"
468 |
469 | "@typescript-eslint/types@5.10.1":
470 | version "5.10.1"
471 | resolved "https://registry.npmmirror.com/@typescript-eslint/types/-/types-5.10.1.tgz#dca9bd4cb8c067fc85304a31f38ec4766ba2d1ea"
472 | integrity sha512-ZvxQ2QMy49bIIBpTqFiOenucqUyjTQ0WNLhBM6X1fh1NNlYAC6Kxsx8bRTY3jdYsYg44a0Z/uEgQkohbR0H87Q==
473 |
474 | "@typescript-eslint/typescript-estree@5.10.1":
475 | version "5.10.1"
476 | resolved "https://registry.npmmirror.com/@typescript-eslint/typescript-estree/-/typescript-estree-5.10.1.tgz#b268e67be0553f8790ba3fe87113282977adda15"
477 | integrity sha512-PwIGnH7jIueXv4opcwEbVGDATjGPO1dx9RkUl5LlHDSe+FXxPwFL5W/qYd5/NHr7f6lo/vvTrAzd0KlQtRusJQ==
478 | dependencies:
479 | "@typescript-eslint/types" "5.10.1"
480 | "@typescript-eslint/visitor-keys" "5.10.1"
481 | debug "^4.3.2"
482 | globby "^11.0.4"
483 | is-glob "^4.0.3"
484 | semver "^7.3.5"
485 | tsutils "^3.21.0"
486 |
487 | "@typescript-eslint/visitor-keys@5.10.1":
488 | version "5.10.1"
489 | resolved "https://registry.npmmirror.com/@typescript-eslint/visitor-keys/-/visitor-keys-5.10.1.tgz#29102de692f59d7d34ecc457ed59ab5fc558010b"
490 | integrity sha512-NjQ0Xinhy9IL979tpoTRuLKxMc0zJC7QVSdeerXs2/QvOy2yRkzX5dRb10X5woNUdJgU8G3nYRDlI33sq1K4YQ==
491 | dependencies:
492 | "@typescript-eslint/types" "5.10.1"
493 | eslint-visitor-keys "^3.0.0"
494 |
495 | acorn-jsx@^5.3.1:
496 | version "5.3.2"
497 | resolved "https://registry.npmmirror.com/acorn-jsx/-/acorn-jsx-5.3.2.tgz#7ed5bb55908b3b2f1bc55c6af1653bada7f07937"
498 | integrity sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==
499 |
500 | acorn@^8.7.0:
501 | version "8.7.0"
502 | resolved "https://registry.npmmirror.com/acorn/-/acorn-8.7.0.tgz#90951fde0f8f09df93549481e5fc141445b791cf"
503 | integrity sha512-V/LGr1APy+PXIwKebEWrkZPwoeoF+w1jiOBUmuxuiUIaOHtob8Qc9BTrYo7VuI5fR8tqsy+buA2WFooR5olqvQ==
504 |
505 | ajv@^6.10.0, ajv@^6.12.4:
506 | version "6.12.6"
507 | resolved "https://registry.npmmirror.com/ajv/-/ajv-6.12.6.tgz#baf5a62e802b07d977034586f8c3baf5adf26df4"
508 | integrity sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==
509 | dependencies:
510 | fast-deep-equal "^3.1.1"
511 | fast-json-stable-stringify "^2.0.0"
512 | json-schema-traverse "^0.4.1"
513 | uri-js "^4.2.2"
514 |
515 | ansi-regex@^5.0.1:
516 | version "5.0.1"
517 | resolved "https://registry.npmmirror.com/ansi-regex/-/ansi-regex-5.0.1.tgz#082cb2c89c9fe8659a311a53bd6a4dc5301db304"
518 | integrity sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==
519 |
520 | ansi-styles@^3.2.1:
521 | version "3.2.1"
522 | resolved "https://registry.npmmirror.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d"
523 | integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==
524 | dependencies:
525 | color-convert "^1.9.0"
526 |
527 | ansi-styles@^4.1.0:
528 | version "4.3.0"
529 | resolved "https://registry.npmmirror.com/ansi-styles/-/ansi-styles-4.3.0.tgz#edd803628ae71c04c85ae7a0906edad34b648937"
530 | integrity sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==
531 | dependencies:
532 | color-convert "^2.0.1"
533 |
534 | argparse@^2.0.1:
535 | version "2.0.1"
536 | resolved "https://registry.npmmirror.com/argparse/-/argparse-2.0.1.tgz#246f50f3ca78a3240f6c997e8a9bd1eac49e4b38"
537 | integrity sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==
538 |
539 | aria-query@^4.2.2:
540 | version "4.2.2"
541 | resolved "https://registry.npmmirror.com/aria-query/-/aria-query-4.2.2.tgz#0d2ca6c9aceb56b8977e9fed6aed7e15bbd2f83b"
542 | integrity sha512-o/HelwhuKpTj/frsOsbNLNgnNGVIFsVP/SW2BSF14gVl7kAfMOJ6/8wUAUvG1R1NHKrfG+2sHZTu0yauT1qBrA==
543 | dependencies:
544 | "@babel/runtime" "^7.10.2"
545 | "@babel/runtime-corejs3" "^7.10.2"
546 |
547 | array-includes@^3.1.4:
548 | version "3.1.4"
549 | resolved "https://registry.npmmirror.com/array-includes/-/array-includes-3.1.4.tgz#f5b493162c760f3539631f005ba2bb46acb45ba9"
550 | integrity sha512-ZTNSQkmWumEbiHO2GF4GmWxYVTiQyJy2XOTa15sdQSrvKn7l+180egQMqlrMOUMCyLMD7pmyQe4mMDUT6Behrw==
551 | dependencies:
552 | call-bind "^1.0.2"
553 | define-properties "^1.1.3"
554 | es-abstract "^1.19.1"
555 | get-intrinsic "^1.1.1"
556 | is-string "^1.0.7"
557 |
558 | array-union@^2.1.0:
559 | version "2.1.0"
560 | resolved "https://registry.npmmirror.com/array-union/-/array-union-2.1.0.tgz#b798420adbeb1de828d84acd8a2e23d3efe85e8d"
561 | integrity sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==
562 |
563 | array.prototype.flat@^1.2.5:
564 | version "1.3.0"
565 | resolved "https://registry.npmmirror.com/array.prototype.flat/-/array.prototype.flat-1.3.0.tgz#0b0c1567bf57b38b56b4c97b8aa72ab45e4adc7b"
566 | integrity sha512-12IUEkHsAhA4DY5s0FPgNXIdc8VRSqD9Zp78a5au9abH/SOBrsp082JOWFNTjkMozh8mqcdiKuaLGhPeYztxSw==
567 | dependencies:
568 | call-bind "^1.0.2"
569 | define-properties "^1.1.3"
570 | es-abstract "^1.19.2"
571 | es-shim-unscopables "^1.0.0"
572 |
573 | array.prototype.flatmap@^1.2.5:
574 | version "1.3.0"
575 | resolved "https://registry.npmmirror.com/array.prototype.flatmap/-/array.prototype.flatmap-1.3.0.tgz#a7e8ed4225f4788a70cd910abcf0791e76a5534f"
576 | integrity sha512-PZC9/8TKAIxcWKdyeb77EzULHPrIX/tIZebLJUQOMR1OwYosT8yggdfWScfTBCDj5utONvOuPQQumYsU2ULbkg==
577 | dependencies:
578 | call-bind "^1.0.2"
579 | define-properties "^1.1.3"
580 | es-abstract "^1.19.2"
581 | es-shim-unscopables "^1.0.0"
582 |
583 | ast-types-flow@^0.0.7:
584 | version "0.0.7"
585 | resolved "https://registry.npmmirror.com/ast-types-flow/-/ast-types-flow-0.0.7.tgz#f70b735c6bca1a5c9c22d982c3e39e7feba3bdad"
586 | integrity sha512-eBvWn1lvIApYMhzQMsu9ciLfkBY499mFZlNqG+/9WR7PVlroQw0vG30cOQQbaKz3sCEc44TAOu2ykzqXSNnwag==
587 |
588 | axe-core@^4.3.5:
589 | version "4.4.1"
590 | resolved "https://registry.npmmirror.com/axe-core/-/axe-core-4.4.1.tgz#7dbdc25989298f9ad006645cd396782443757413"
591 | integrity sha512-gd1kmb21kwNuWr6BQz8fv6GNECPBnUasepcoLbekws23NVBLODdsClRZ+bQ8+9Uomf3Sm3+Vwn0oYG9NvwnJCw==
592 |
593 | axios@^0.26.1:
594 | version "0.26.1"
595 | resolved "https://registry.npmmirror.com/axios/-/axios-0.26.1.tgz#1ede41c51fcf51bbbd6fd43669caaa4f0495aaa9"
596 | integrity sha512-fPwcX4EvnSHuInCMItEhAGnaSEXRBjtzh9fOtsE6E1G6p7vl7edEeZe11QHf18+6+9gR5PbKV/sGKNaD8YaMeA==
597 | dependencies:
598 | follow-redirects "^1.14.8"
599 |
600 | axobject-query@^2.2.0:
601 | version "2.2.0"
602 | resolved "https://registry.npmmirror.com/axobject-query/-/axobject-query-2.2.0.tgz#943d47e10c0b704aa42275e20edf3722648989be"
603 | integrity sha512-Td525n+iPOOyUQIeBfcASuG6uJsDOITl7Mds5gFyerkWiX7qhUTdYUBlSgNMyVqtSJqwpt1kXGLdUt6SykLMRA==
604 |
605 | babel-plugin-macros@^2.6.1:
606 | version "2.8.0"
607 | resolved "https://registry.npmmirror.com/babel-plugin-macros/-/babel-plugin-macros-2.8.0.tgz#0f958a7cc6556b1e65344465d99111a1e5e10138"
608 | integrity sha512-SEP5kJpfGYqYKpBrj5XU3ahw5p5GOHJ0U5ssOSQ/WBVdwkD2Dzlce95exQTs3jOVWPPKLBN2rlEWkCK7dSmLvg==
609 | dependencies:
610 | "@babel/runtime" "^7.7.2"
611 | cosmiconfig "^6.0.0"
612 | resolve "^1.12.0"
613 |
614 | balanced-match@^1.0.0:
615 | version "1.0.2"
616 | resolved "https://registry.npmmirror.com/balanced-match/-/balanced-match-1.0.2.tgz#e83e3a7e3f300b34cb9d87f615fa0cbf357690ee"
617 | integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==
618 |
619 | brace-expansion@^1.1.7:
620 | version "1.1.11"
621 | resolved "https://registry.npmmirror.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd"
622 | integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==
623 | dependencies:
624 | balanced-match "^1.0.0"
625 | concat-map "0.0.1"
626 |
627 | braces@^3.0.2:
628 | version "3.0.2"
629 | resolved "https://registry.npmmirror.com/braces/-/braces-3.0.2.tgz#3454e1a462ee8d599e236df336cd9ea4f8afe107"
630 | integrity sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==
631 | dependencies:
632 | fill-range "^7.0.1"
633 |
634 | call-bind@^1.0.0, call-bind@^1.0.2:
635 | version "1.0.2"
636 | resolved "https://registry.npmmirror.com/call-bind/-/call-bind-1.0.2.tgz#b1d4e89e688119c3c9a903ad30abb2f6a919be3c"
637 | integrity sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==
638 | dependencies:
639 | function-bind "^1.1.1"
640 | get-intrinsic "^1.0.2"
641 |
642 | callsites@^3.0.0:
643 | version "3.1.0"
644 | resolved "https://registry.npmmirror.com/callsites/-/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73"
645 | integrity sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==
646 |
647 | caniuse-lite@^1.0.30001283:
648 | version "1.0.30001684"
649 | resolved "https://registry.npmmirror.com/caniuse-lite/-/caniuse-lite-1.0.30001684.tgz"
650 | integrity sha512-G1LRwLIQjBQoyq0ZJGqGIJUXzJ8irpbjHLpVRXDvBEScFJ9b17sgK6vlx0GAJFE21okD7zXl08rRRUfq6HdoEQ==
651 |
652 | chalk@^2.0.0:
653 | version "2.4.2"
654 | resolved "https://registry.npmmirror.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424"
655 | integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==
656 | dependencies:
657 | ansi-styles "^3.2.1"
658 | escape-string-regexp "^1.0.5"
659 | supports-color "^5.3.0"
660 |
661 | chalk@^4.0.0:
662 | version "4.1.2"
663 | resolved "https://registry.npmmirror.com/chalk/-/chalk-4.1.2.tgz#aac4e2b7734a740867aeb16bf02aad556a1e7a01"
664 | integrity sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==
665 | dependencies:
666 | ansi-styles "^4.1.0"
667 | supports-color "^7.1.0"
668 |
669 | clsx@^1.1.1:
670 | version "1.1.1"
671 | resolved "https://registry.npmmirror.com/clsx/-/clsx-1.1.1.tgz#98b3134f9abbdf23b2663491ace13c5c03a73188"
672 | integrity sha512-6/bPho624p3S2pMyvP5kKBPXnI3ufHLObBFCfgx+LkeR5lg2XYy2hqZqUf45ypD8COn2bhgGJSUE+l5dhNBieA==
673 |
674 | color-convert@^1.9.0:
675 | version "1.9.3"
676 | resolved "https://registry.npmmirror.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8"
677 | integrity sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==
678 | dependencies:
679 | color-name "1.1.3"
680 |
681 | color-convert@^2.0.1:
682 | version "2.0.1"
683 | resolved "https://registry.npmmirror.com/color-convert/-/color-convert-2.0.1.tgz#72d3a68d598c9bdb3af2ad1e84f21d896abd4de3"
684 | integrity sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==
685 | dependencies:
686 | color-name "~1.1.4"
687 |
688 | color-name@1.1.3:
689 | version "1.1.3"
690 | resolved "https://registry.npmmirror.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25"
691 | integrity sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==
692 |
693 | color-name@~1.1.4:
694 | version "1.1.4"
695 | resolved "https://registry.npmmirror.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2"
696 | integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==
697 |
698 | concat-map@0.0.1:
699 | version "0.0.1"
700 | resolved "https://registry.npmmirror.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b"
701 | integrity sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==
702 |
703 | convert-source-map@^1.5.0:
704 | version "1.8.0"
705 | resolved "https://registry.npmmirror.com/convert-source-map/-/convert-source-map-1.8.0.tgz#f3373c32d21b4d780dd8004514684fb791ca4369"
706 | integrity sha512-+OQdjP49zViI/6i7nIJpA8rAl4sV/JdPfU9nZs3VqOwGIgizICvuN2ru6fMd+4llL0tar18UYJXfZ/TWtmhUjA==
707 | dependencies:
708 | safe-buffer "~5.1.1"
709 |
710 | core-js-pure@^3.20.2:
711 | version "3.21.1"
712 | resolved "https://registry.npmmirror.com/core-js-pure/-/core-js-pure-3.21.1.tgz#8c4d1e78839f5f46208de7230cebfb72bc3bdb51"
713 | integrity sha512-12VZfFIu+wyVbBebyHmRTuEE/tZrB4tJToWcwAMcsp3h4+sHR+fMJWbKpYiCRWlhFBq+KNyO8rIV9rTkeVmznQ==
714 |
715 | core-js@^3:
716 | version "3.21.1"
717 | resolved "https://registry.npmmirror.com/core-js/-/core-js-3.21.1.tgz#f2e0ddc1fc43da6f904706e8e955bc19d06a0d94"
718 | integrity sha512-FRq5b/VMrWlrmCzwRrpDYNxyHP9BcAZC+xHJaqTgIE5091ZV1NTmyh0sGOg5XqpnHvR0svdy0sv1gWA1zmhxig==
719 |
720 | cosmiconfig@^6.0.0:
721 | version "6.0.0"
722 | resolved "https://registry.npmmirror.com/cosmiconfig/-/cosmiconfig-6.0.0.tgz#da4fee853c52f6b1e6935f41c1a2fc50bd4a9982"
723 | integrity sha512-xb3ZL6+L8b9JLLCx3ZdoZy4+2ECphCMo2PwqgP1tlfVq6M6YReyzBJtvWWtbDSpNr9hn96pkCiZqUcFEc+54Qg==
724 | dependencies:
725 | "@types/parse-json" "^4.0.0"
726 | import-fresh "^3.1.0"
727 | parse-json "^5.0.0"
728 | path-type "^4.0.0"
729 | yaml "^1.7.2"
730 |
731 | cross-spawn@^7.0.2:
732 | version "7.0.3"
733 | resolved "https://registry.npmmirror.com/cross-spawn/-/cross-spawn-7.0.3.tgz#f73a85b9d5d41d045551c177e2882d4ac85728a6"
734 | integrity sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==
735 | dependencies:
736 | path-key "^3.1.0"
737 | shebang-command "^2.0.0"
738 | which "^2.0.1"
739 |
740 | csstype@^3.0.11, csstype@^3.0.2:
741 | version "3.0.11"
742 | resolved "https://registry.npmmirror.com/csstype/-/csstype-3.0.11.tgz#d66700c5eacfac1940deb4e3ee5642792d85cd33"
743 | integrity sha512-sa6P2wJ+CAbgyy4KFssIb/JNMLxFvKF1pCYCSXS8ZMuqZnMsrxqI2E5sPyoTpxoPU/gVZMzr2zjOfg8GIZOMsw==
744 |
745 | damerau-levenshtein@^1.0.7:
746 | version "1.0.8"
747 | resolved "https://registry.npmmirror.com/damerau-levenshtein/-/damerau-levenshtein-1.0.8.tgz#b43d286ccbd36bc5b2f7ed41caf2d0aba1f8a6e7"
748 | integrity sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==
749 |
750 | debug@^2.6.9:
751 | version "2.6.9"
752 | resolved "https://registry.npmmirror.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f"
753 | integrity sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==
754 | dependencies:
755 | ms "2.0.0"
756 |
757 | debug@^3.2.7:
758 | version "3.2.7"
759 | resolved "https://registry.npmmirror.com/debug/-/debug-3.2.7.tgz#72580b7e9145fb39b6676f9c5e5fb100b934179a"
760 | integrity sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==
761 | dependencies:
762 | ms "^2.1.1"
763 |
764 | debug@^4.1.1, debug@^4.3.2:
765 | version "4.3.4"
766 | resolved "https://registry.npmmirror.com/debug/-/debug-4.3.4.tgz#1319f6579357f2338d3337d2cdd4914bb5dcc865"
767 | integrity sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==
768 | dependencies:
769 | ms "2.1.2"
770 |
771 | deep-is@^0.1.3:
772 | version "0.1.4"
773 | resolved "https://registry.npmmirror.com/deep-is/-/deep-is-0.1.4.tgz#a6f2dce612fadd2ef1f519b73551f17e85199831"
774 | integrity sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==
775 |
776 | define-properties@^1.1.3:
777 | version "1.1.3"
778 | resolved "https://registry.npmmirror.com/define-properties/-/define-properties-1.1.3.tgz#cf88da6cbee26fe6db7094f61d870cbd84cee9f1"
779 | integrity sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ==
780 | dependencies:
781 | object-keys "^1.0.12"
782 |
783 | dir-glob@^3.0.1:
784 | version "3.0.1"
785 | resolved "https://registry.npmmirror.com/dir-glob/-/dir-glob-3.0.1.tgz#56dbf73d992a4a93ba1584f4534063fd2e41717f"
786 | integrity sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==
787 | dependencies:
788 | path-type "^4.0.0"
789 |
790 | doctrine@^2.1.0:
791 | version "2.1.0"
792 | resolved "https://registry.npmmirror.com/doctrine/-/doctrine-2.1.0.tgz#5cd01fc101621b42c4cd7f5d1a66243716d3f39d"
793 | integrity sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==
794 | dependencies:
795 | esutils "^2.0.2"
796 |
797 | doctrine@^3.0.0:
798 | version "3.0.0"
799 | resolved "https://registry.npmmirror.com/doctrine/-/doctrine-3.0.0.tgz#addebead72a6574db783639dc87a121773973961"
800 | integrity sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==
801 | dependencies:
802 | esutils "^2.0.2"
803 |
804 | dom-helpers@^5.0.1:
805 | version "5.2.1"
806 | resolved "https://registry.npmmirror.com/dom-helpers/-/dom-helpers-5.2.1.tgz#d9400536b2bf8225ad98fe052e029451ac40e902"
807 | integrity sha512-nRCa7CK3VTrM2NmGkIy4cbK7IZlgBE/PYMn55rrXefr5xXDP0LdtfPnblFDoVdcAfslJ7or6iqAUnx0CCGIWQA==
808 | dependencies:
809 | "@babel/runtime" "^7.8.7"
810 | csstype "^3.0.2"
811 |
812 | emoji-regex@^9.2.2:
813 | version "9.2.2"
814 | resolved "https://registry.npmmirror.com/emoji-regex/-/emoji-regex-9.2.2.tgz#840c8803b0d8047f4ff0cf963176b32d4ef3ed72"
815 | integrity sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==
816 |
817 | error-ex@^1.3.1:
818 | version "1.3.2"
819 | resolved "https://registry.npmmirror.com/error-ex/-/error-ex-1.3.2.tgz#b4ac40648107fdcdcfae242f428bea8a14d4f1bf"
820 | integrity sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==
821 | dependencies:
822 | is-arrayish "^0.2.1"
823 |
824 | es-abstract@^1.19.1, es-abstract@^1.19.2:
825 | version "1.19.4"
826 | resolved "https://registry.npmmirror.com/es-abstract/-/es-abstract-1.19.4.tgz#79a95527af382eb276075627e53762393ce8b57a"
827 | integrity sha512-flV8e5g9/xulChMG48Fygk1ptpo4lQRJ0eJYtxJFgi7pklLx7EFcOJ34jnvr8pbWlaFN/AT1cZpe0hiFel9Hqg==
828 | dependencies:
829 | call-bind "^1.0.2"
830 | es-to-primitive "^1.2.1"
831 | function-bind "^1.1.1"
832 | get-intrinsic "^1.1.1"
833 | get-symbol-description "^1.0.0"
834 | has "^1.0.3"
835 | has-symbols "^1.0.3"
836 | internal-slot "^1.0.3"
837 | is-callable "^1.2.4"
838 | is-negative-zero "^2.0.2"
839 | is-regex "^1.1.4"
840 | is-shared-array-buffer "^1.0.2"
841 | is-string "^1.0.7"
842 | is-weakref "^1.0.2"
843 | object-inspect "^1.12.0"
844 | object-keys "^1.1.1"
845 | object.assign "^4.1.2"
846 | string.prototype.trimend "^1.0.4"
847 | string.prototype.trimstart "^1.0.4"
848 | unbox-primitive "^1.0.1"
849 |
850 | es-shim-unscopables@^1.0.0:
851 | version "1.0.0"
852 | resolved "https://registry.npmmirror.com/es-shim-unscopables/-/es-shim-unscopables-1.0.0.tgz#702e632193201e3edf8713635d083d378e510241"
853 | integrity sha512-Jm6GPcCdC30eMLbZ2x8z2WuRwAws3zTBBKuusffYVUrNj/GVSUAZ+xKMaUpfNDR5IbyNA5LJbaecoUVbmUcB1w==
854 | dependencies:
855 | has "^1.0.3"
856 |
857 | es-to-primitive@^1.2.1:
858 | version "1.2.1"
859 | resolved "https://registry.npmmirror.com/es-to-primitive/-/es-to-primitive-1.2.1.tgz#e55cd4c9cdc188bcefb03b366c736323fc5c898a"
860 | integrity sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==
861 | dependencies:
862 | is-callable "^1.1.4"
863 | is-date-object "^1.0.1"
864 | is-symbol "^1.0.2"
865 |
866 | escape-string-regexp@^1.0.5:
867 | version "1.0.5"
868 | resolved "https://registry.npmmirror.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4"
869 | integrity sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==
870 |
871 | escape-string-regexp@^4.0.0:
872 | version "4.0.0"
873 | resolved "https://registry.npmmirror.com/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz#14ba83a5d373e3d311e5afca29cf5bfad965bf34"
874 | integrity sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==
875 |
876 | eslint-config-next@12.1.5:
877 | version "12.1.5"
878 | resolved "https://registry.npmmirror.com/eslint-config-next/-/eslint-config-next-12.1.5.tgz#658cc61194a32dfd917a3db199351396ea5db1d1"
879 | integrity sha512-P+DCt5ti63KhC0qNLzrAmPcwRGq8pYqgcf/NNr1E+WjCrMkWdCAXkIANTquo+kcO1adR2k1lTo5GCrNUtKy4hQ==
880 | dependencies:
881 | "@next/eslint-plugin-next" "12.1.5"
882 | "@rushstack/eslint-patch" "1.0.8"
883 | "@typescript-eslint/parser" "5.10.1"
884 | eslint-import-resolver-node "0.3.4"
885 | eslint-import-resolver-typescript "2.4.0"
886 | eslint-plugin-import "2.25.2"
887 | eslint-plugin-jsx-a11y "6.5.1"
888 | eslint-plugin-react "7.29.1"
889 | eslint-plugin-react-hooks "4.3.0"
890 |
891 | eslint-import-resolver-node@0.3.4:
892 | version "0.3.4"
893 | resolved "https://registry.npmmirror.com/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.4.tgz#85ffa81942c25012d8231096ddf679c03042c717"
894 | integrity sha512-ogtf+5AB/O+nM6DIeBUNr2fuT7ot9Qg/1harBfBtaP13ekEWFQEEMP94BCB7zaNW3gyY+8SHYF00rnqYwXKWOA==
895 | dependencies:
896 | debug "^2.6.9"
897 | resolve "^1.13.1"
898 |
899 | eslint-import-resolver-node@^0.3.6:
900 | version "0.3.6"
901 | resolved "https://registry.npmmirror.com/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.6.tgz#4048b958395da89668252001dbd9eca6b83bacbd"
902 | integrity sha512-0En0w03NRVMn9Uiyn8YRPDKvWjxCWkslUEhGNTdGx15RvPJYQ+lbOlqrlNI2vEAs4pDYK4f/HN2TbDmk5TP0iw==
903 | dependencies:
904 | debug "^3.2.7"
905 | resolve "^1.20.0"
906 |
907 | eslint-import-resolver-typescript@2.4.0:
908 | version "2.4.0"
909 | resolved "https://registry.npmmirror.com/eslint-import-resolver-typescript/-/eslint-import-resolver-typescript-2.4.0.tgz#ec1e7063ebe807f0362a7320543aaed6fe1100e1"
910 | integrity sha512-useJKURidCcldRLCNKWemr1fFQL1SzB3G4a0li6lFGvlc5xGe1hY343bvG07cbpCzPuM/lK19FIJB3XGFSkplA==
911 | dependencies:
912 | debug "^4.1.1"
913 | glob "^7.1.6"
914 | is-glob "^4.0.1"
915 | resolve "^1.17.0"
916 | tsconfig-paths "^3.9.0"
917 |
918 | eslint-module-utils@^2.7.0:
919 | version "2.7.3"
920 | resolved "https://registry.npmmirror.com/eslint-module-utils/-/eslint-module-utils-2.7.3.tgz#ad7e3a10552fdd0642e1e55292781bd6e34876ee"
921 | integrity sha512-088JEC7O3lDZM9xGe0RerkOMd0EjFl+Yvd1jPWIkMT5u3H9+HC34mWWPnqPrN13gieT9pBOO+Qt07Nb/6TresQ==
922 | dependencies:
923 | debug "^3.2.7"
924 | find-up "^2.1.0"
925 |
926 | eslint-plugin-import@2.25.2:
927 | version "2.25.2"
928 | resolved "https://registry.npmmirror.com/eslint-plugin-import/-/eslint-plugin-import-2.25.2.tgz#b3b9160efddb702fc1636659e71ba1d10adbe9e9"
929 | integrity sha512-qCwQr9TYfoBHOFcVGKY9C9unq05uOxxdklmBXLVvcwo68y5Hta6/GzCZEMx2zQiu0woKNEER0LE7ZgaOfBU14g==
930 | dependencies:
931 | array-includes "^3.1.4"
932 | array.prototype.flat "^1.2.5"
933 | debug "^2.6.9"
934 | doctrine "^2.1.0"
935 | eslint-import-resolver-node "^0.3.6"
936 | eslint-module-utils "^2.7.0"
937 | has "^1.0.3"
938 | is-core-module "^2.7.0"
939 | is-glob "^4.0.3"
940 | minimatch "^3.0.4"
941 | object.values "^1.1.5"
942 | resolve "^1.20.0"
943 | tsconfig-paths "^3.11.0"
944 |
945 | eslint-plugin-jsx-a11y@6.5.1:
946 | version "6.5.1"
947 | resolved "https://registry.npmmirror.com/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.5.1.tgz#cdbf2df901040ca140b6ec14715c988889c2a6d8"
948 | integrity sha512-sVCFKX9fllURnXT2JwLN5Qgo24Ug5NF6dxhkmxsMEUZhXRcGg+X3e1JbJ84YePQKBl5E0ZjAH5Q4rkdcGY99+g==
949 | dependencies:
950 | "@babel/runtime" "^7.16.3"
951 | aria-query "^4.2.2"
952 | array-includes "^3.1.4"
953 | ast-types-flow "^0.0.7"
954 | axe-core "^4.3.5"
955 | axobject-query "^2.2.0"
956 | damerau-levenshtein "^1.0.7"
957 | emoji-regex "^9.2.2"
958 | has "^1.0.3"
959 | jsx-ast-utils "^3.2.1"
960 | language-tags "^1.0.5"
961 | minimatch "^3.0.4"
962 |
963 | eslint-plugin-react-hooks@4.3.0:
964 | version "4.3.0"
965 | resolved "https://registry.npmmirror.com/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-4.3.0.tgz#318dbf312e06fab1c835a4abef00121751ac1172"
966 | integrity sha512-XslZy0LnMn+84NEG9jSGR6eGqaZB3133L8xewQo3fQagbQuGt7a63gf+P1NGKZavEYEC3UXaWEAA/AqDkuN6xA==
967 |
968 | eslint-plugin-react@7.29.1:
969 | version "7.29.1"
970 | resolved "https://registry.npmmirror.com/eslint-plugin-react/-/eslint-plugin-react-7.29.1.tgz#6c40bc83142bb63d132a1b3565e2ea655411f800"
971 | integrity sha512-WtzRpHMhsOX05ZrkyaaqmLl2uXGqmYooCfBxftJKlkYdsltiufGgfU7uuoHwR2lBam2Kh/EIVID4aU9e3kbCMA==
972 | dependencies:
973 | array-includes "^3.1.4"
974 | array.prototype.flatmap "^1.2.5"
975 | doctrine "^2.1.0"
976 | estraverse "^5.3.0"
977 | jsx-ast-utils "^2.4.1 || ^3.0.0"
978 | minimatch "^3.1.2"
979 | object.entries "^1.1.5"
980 | object.fromentries "^2.0.5"
981 | object.hasown "^1.1.0"
982 | object.values "^1.1.5"
983 | prop-types "^15.8.1"
984 | resolve "^2.0.0-next.3"
985 | semver "^6.3.0"
986 | string.prototype.matchall "^4.0.6"
987 |
988 | eslint-scope@^7.1.1:
989 | version "7.1.1"
990 | resolved "https://registry.npmmirror.com/eslint-scope/-/eslint-scope-7.1.1.tgz#fff34894c2f65e5226d3041ac480b4513a163642"
991 | integrity sha512-QKQM/UXpIiHcLqJ5AOyIW7XZmzjkzQXYE54n1++wb0u9V/abW3l9uQnxX8Z5Xd18xyKIMTUAyQ0k1e8pz6LUrw==
992 | dependencies:
993 | esrecurse "^4.3.0"
994 | estraverse "^5.2.0"
995 |
996 | eslint-utils@^3.0.0:
997 | version "3.0.0"
998 | resolved "https://registry.npmmirror.com/eslint-utils/-/eslint-utils-3.0.0.tgz#8aebaface7345bb33559db0a1f13a1d2d48c3672"
999 | integrity sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==
1000 | dependencies:
1001 | eslint-visitor-keys "^2.0.0"
1002 |
1003 | eslint-visitor-keys@^2.0.0:
1004 | version "2.1.0"
1005 | resolved "https://registry.npmmirror.com/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz#f65328259305927392c938ed44eb0a5c9b2bd303"
1006 | integrity sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==
1007 |
1008 | eslint-visitor-keys@^3.0.0, eslint-visitor-keys@^3.3.0:
1009 | version "3.3.0"
1010 | resolved "https://registry.npmmirror.com/eslint-visitor-keys/-/eslint-visitor-keys-3.3.0.tgz#f6480fa6b1f30efe2d1968aa8ac745b862469826"
1011 | integrity sha512-mQ+suqKJVyeuwGYHAdjMFqjCyfl8+Ldnxuyp3ldiMBFKkvytrXUZWaiPCEav8qDHKty44bD+qV1IP4T+w+xXRA==
1012 |
1013 | eslint@8.13.0:
1014 | version "8.13.0"
1015 | resolved "https://registry.npmmirror.com/eslint/-/eslint-8.13.0.tgz#6fcea43b6811e655410f5626cfcf328016badcd7"
1016 | integrity sha512-D+Xei61eInqauAyTJ6C0q6x9mx7kTUC1KZ0m0LSEexR0V+e94K12LmWX076ZIsldwfQ2RONdaJe0re0TRGQbRQ==
1017 | dependencies:
1018 | "@eslint/eslintrc" "^1.2.1"
1019 | "@humanwhocodes/config-array" "^0.9.2"
1020 | ajv "^6.10.0"
1021 | chalk "^4.0.0"
1022 | cross-spawn "^7.0.2"
1023 | debug "^4.3.2"
1024 | doctrine "^3.0.0"
1025 | escape-string-regexp "^4.0.0"
1026 | eslint-scope "^7.1.1"
1027 | eslint-utils "^3.0.0"
1028 | eslint-visitor-keys "^3.3.0"
1029 | espree "^9.3.1"
1030 | esquery "^1.4.0"
1031 | esutils "^2.0.2"
1032 | fast-deep-equal "^3.1.3"
1033 | file-entry-cache "^6.0.1"
1034 | functional-red-black-tree "^1.0.1"
1035 | glob-parent "^6.0.1"
1036 | globals "^13.6.0"
1037 | ignore "^5.2.0"
1038 | import-fresh "^3.0.0"
1039 | imurmurhash "^0.1.4"
1040 | is-glob "^4.0.0"
1041 | js-yaml "^4.1.0"
1042 | json-stable-stringify-without-jsonify "^1.0.1"
1043 | levn "^0.4.1"
1044 | lodash.merge "^4.6.2"
1045 | minimatch "^3.0.4"
1046 | natural-compare "^1.4.0"
1047 | optionator "^0.9.1"
1048 | regexpp "^3.2.0"
1049 | strip-ansi "^6.0.1"
1050 | strip-json-comments "^3.1.0"
1051 | text-table "^0.2.0"
1052 | v8-compile-cache "^2.0.3"
1053 |
1054 | espree@^9.3.1:
1055 | version "9.3.1"
1056 | resolved "https://registry.npmmirror.com/espree/-/espree-9.3.1.tgz#8793b4bc27ea4c778c19908e0719e7b8f4115bcd"
1057 | integrity sha512-bvdyLmJMfwkV3NCRl5ZhJf22zBFo1y8bYh3VYb+bfzqNB4Je68P2sSuXyuFquzWLebHpNd2/d5uv7yoP9ISnGQ==
1058 | dependencies:
1059 | acorn "^8.7.0"
1060 | acorn-jsx "^5.3.1"
1061 | eslint-visitor-keys "^3.3.0"
1062 |
1063 | esquery@^1.4.0:
1064 | version "1.4.0"
1065 | resolved "https://registry.npmmirror.com/esquery/-/esquery-1.4.0.tgz#2148ffc38b82e8c7057dfed48425b3e61f0f24a5"
1066 | integrity sha512-cCDispWt5vHHtwMY2YrAQ4ibFkAL8RbH5YGBnZBc90MolvvfkkQcJro/aZiAQUlQ3qgrYS6D6v8Gc5G5CQsc9w==
1067 | dependencies:
1068 | estraverse "^5.1.0"
1069 |
1070 | esrecurse@^4.3.0:
1071 | version "4.3.0"
1072 | resolved "https://registry.npmmirror.com/esrecurse/-/esrecurse-4.3.0.tgz#7ad7964d679abb28bee72cec63758b1c5d2c9921"
1073 | integrity sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==
1074 | dependencies:
1075 | estraverse "^5.2.0"
1076 |
1077 | estraverse@^5.1.0, estraverse@^5.2.0, estraverse@^5.3.0:
1078 | version "5.3.0"
1079 | resolved "https://registry.npmmirror.com/estraverse/-/estraverse-5.3.0.tgz#2eea5290702f26ab8fe5370370ff86c965d21123"
1080 | integrity sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==
1081 |
1082 | esutils@^2.0.2:
1083 | version "2.0.3"
1084 | resolved "https://registry.npmmirror.com/esutils/-/esutils-2.0.3.tgz#74d2eb4de0b8da1293711910d50775b9b710ef64"
1085 | integrity sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==
1086 |
1087 | fast-deep-equal@^3.1.1, fast-deep-equal@^3.1.3:
1088 | version "3.1.3"
1089 | resolved "https://registry.npmmirror.com/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz#3a7d56b559d6cbc3eb512325244e619a65c6c525"
1090 | integrity sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==
1091 |
1092 | fast-glob@^3.2.9:
1093 | version "3.2.11"
1094 | resolved "https://registry.npmmirror.com/fast-glob/-/fast-glob-3.2.11.tgz#a1172ad95ceb8a16e20caa5c5e56480e5129c1d9"
1095 | integrity sha512-xrO3+1bxSo3ZVHAnqzyuewYT6aMFHRAd4Kcs92MAonjwQZLsK9d0SF1IyQ3k5PoirxTW0Oe/RqFgMQ6TcNE5Ew==
1096 | dependencies:
1097 | "@nodelib/fs.stat" "^2.0.2"
1098 | "@nodelib/fs.walk" "^1.2.3"
1099 | glob-parent "^5.1.2"
1100 | merge2 "^1.3.0"
1101 | micromatch "^4.0.4"
1102 |
1103 | fast-json-stable-stringify@^2.0.0:
1104 | version "2.1.0"
1105 | resolved "https://registry.npmmirror.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz#874bf69c6f404c2b5d99c481341399fd55892633"
1106 | integrity sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==
1107 |
1108 | fast-levenshtein@^2.0.6:
1109 | version "2.0.6"
1110 | resolved "https://registry.npmmirror.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917"
1111 | integrity sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==
1112 |
1113 | fastq@^1.6.0:
1114 | version "1.13.0"
1115 | resolved "https://registry.npmmirror.com/fastq/-/fastq-1.13.0.tgz#616760f88a7526bdfc596b7cab8c18938c36b98c"
1116 | integrity sha512-YpkpUnK8od0o1hmeSc7UUs/eB/vIPWJYjKck2QKIzAf71Vm1AAQ3EbuZB3g2JIy+pg+ERD0vqI79KyZiB2e2Nw==
1117 | dependencies:
1118 | reusify "^1.0.4"
1119 |
1120 | file-entry-cache@^6.0.1:
1121 | version "6.0.1"
1122 | resolved "https://registry.npmmirror.com/file-entry-cache/-/file-entry-cache-6.0.1.tgz#211b2dd9659cb0394b073e7323ac3c933d522027"
1123 | integrity sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==
1124 | dependencies:
1125 | flat-cache "^3.0.4"
1126 |
1127 | fill-range@^7.0.1:
1128 | version "7.0.1"
1129 | resolved "https://registry.npmmirror.com/fill-range/-/fill-range-7.0.1.tgz#1919a6a7c75fe38b2c7c77e5198535da9acdda40"
1130 | integrity sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==
1131 | dependencies:
1132 | to-regex-range "^5.0.1"
1133 |
1134 | find-root@^1.1.0:
1135 | version "1.1.0"
1136 | resolved "https://registry.npmmirror.com/find-root/-/find-root-1.1.0.tgz#abcfc8ba76f708c42a97b3d685b7e9450bfb9ce4"
1137 | integrity sha512-NKfW6bec6GfKc0SGx1e07QZY9PE99u0Bft/0rzSD5k3sO/vwkVUpDUKVm5Gpp5Ue3YfShPFTX2070tDs5kB9Ng==
1138 |
1139 | find-up@^2.1.0:
1140 | version "2.1.0"
1141 | resolved "https://registry.npmmirror.com/find-up/-/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7"
1142 | integrity sha512-NWzkk0jSJtTt08+FBFMvXoeZnOJD+jTtsRmBYbAIzJdX6l7dLgR7CTubCM5/eDdPUBvLCeVasP1brfVR/9/EZQ==
1143 | dependencies:
1144 | locate-path "^2.0.0"
1145 |
1146 | flat-cache@^3.0.4:
1147 | version "3.0.4"
1148 | resolved "https://registry.npmmirror.com/flat-cache/-/flat-cache-3.0.4.tgz#61b0338302b2fe9f957dcc32fc2a87f1c3048b11"
1149 | integrity sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==
1150 | dependencies:
1151 | flatted "^3.1.0"
1152 | rimraf "^3.0.2"
1153 |
1154 | flatted@^3.1.0:
1155 | version "3.2.5"
1156 | resolved "https://registry.npmmirror.com/flatted/-/flatted-3.2.5.tgz#76c8584f4fc843db64702a6bd04ab7a8bd666da3"
1157 | integrity sha512-WIWGi2L3DyTUvUrwRKgGi9TwxQMUEqPOPQBVi71R96jZXJdFskXEmf54BoZaS1kknGODoIGASGEzBUYdyMCBJg==
1158 |
1159 | follow-redirects@^1.14.8:
1160 | version "1.14.9"
1161 | resolved "https://registry.npmmirror.com/follow-redirects/-/follow-redirects-1.14.9.tgz#dd4ea157de7bfaf9ea9b3fbd85aa16951f78d8d7"
1162 | integrity sha512-MQDfihBQYMcyy5dhRDJUHcw7lb2Pv/TuE6xP1vyraLukNDHKbDxDNaOE3NbCAdKQApno+GPRyo1YAp89yCjK4w==
1163 |
1164 | fs.realpath@^1.0.0:
1165 | version "1.0.0"
1166 | resolved "https://registry.npmmirror.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f"
1167 | integrity sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==
1168 |
1169 | function-bind@^1.1.1:
1170 | version "1.1.1"
1171 | resolved "https://registry.npmmirror.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d"
1172 | integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==
1173 |
1174 | functional-red-black-tree@^1.0.1:
1175 | version "1.0.1"
1176 | resolved "https://registry.npmmirror.com/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz#1b0ab3bd553b2a0d6399d29c0e3ea0b252078327"
1177 | integrity sha512-dsKNQNdj6xA3T+QlADDA7mOSlX0qiMINjn0cgr+eGHGsbSHzTabcIogz2+p/iqP1Xs6EP/sS2SbqH+brGTbq0g==
1178 |
1179 | get-intrinsic@^1.0.2, get-intrinsic@^1.1.0, get-intrinsic@^1.1.1:
1180 | version "1.1.1"
1181 | resolved "https://registry.npmmirror.com/get-intrinsic/-/get-intrinsic-1.1.1.tgz#15f59f376f855c446963948f0d24cd3637b4abc6"
1182 | integrity sha512-kWZrnVM42QCiEA2Ig1bG8zjoIMOgxWwYCEeNdwY6Tv/cOSeGpcoX4pXHfKUxNKVoArnrEr2e9srnAxxGIraS9Q==
1183 | dependencies:
1184 | function-bind "^1.1.1"
1185 | has "^1.0.3"
1186 | has-symbols "^1.0.1"
1187 |
1188 | get-symbol-description@^1.0.0:
1189 | version "1.0.0"
1190 | resolved "https://registry.npmmirror.com/get-symbol-description/-/get-symbol-description-1.0.0.tgz#7fdb81c900101fbd564dd5f1a30af5aadc1e58d6"
1191 | integrity sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==
1192 | dependencies:
1193 | call-bind "^1.0.2"
1194 | get-intrinsic "^1.1.1"
1195 |
1196 | glob-parent@^5.1.2:
1197 | version "5.1.2"
1198 | resolved "https://registry.npmmirror.com/glob-parent/-/glob-parent-5.1.2.tgz#869832c58034fe68a4093c17dc15e8340d8401c4"
1199 | integrity sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==
1200 | dependencies:
1201 | is-glob "^4.0.1"
1202 |
1203 | glob-parent@^6.0.1:
1204 | version "6.0.2"
1205 | resolved "https://registry.npmmirror.com/glob-parent/-/glob-parent-6.0.2.tgz#6d237d99083950c79290f24c7642a3de9a28f9e3"
1206 | integrity sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==
1207 | dependencies:
1208 | is-glob "^4.0.3"
1209 |
1210 | glob@7.1.7:
1211 | version "7.1.7"
1212 | resolved "https://registry.npmmirror.com/glob/-/glob-7.1.7.tgz#3b193e9233f01d42d0b3f78294bbeeb418f94a90"
1213 | integrity sha512-OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ==
1214 | dependencies:
1215 | fs.realpath "^1.0.0"
1216 | inflight "^1.0.4"
1217 | inherits "2"
1218 | minimatch "^3.0.4"
1219 | once "^1.3.0"
1220 | path-is-absolute "^1.0.0"
1221 |
1222 | glob@^7.1.3, glob@^7.1.6:
1223 | version "7.2.0"
1224 | resolved "https://registry.npmmirror.com/glob/-/glob-7.2.0.tgz#d15535af7732e02e948f4c41628bd910293f6023"
1225 | integrity sha512-lmLf6gtyrPq8tTjSmrO94wBeQbFR3HbLHbuyD69wuyQkImp2hWqMGB47OX65FBkPffO641IP9jWa1z4ivqG26Q==
1226 | dependencies:
1227 | fs.realpath "^1.0.0"
1228 | inflight "^1.0.4"
1229 | inherits "2"
1230 | minimatch "^3.0.4"
1231 | once "^1.3.0"
1232 | path-is-absolute "^1.0.0"
1233 |
1234 | globals@^13.6.0, globals@^13.9.0:
1235 | version "13.13.0"
1236 | resolved "https://registry.npmmirror.com/globals/-/globals-13.13.0.tgz#ac32261060d8070e2719dd6998406e27d2b5727b"
1237 | integrity sha512-EQ7Q18AJlPwp3vUDL4mKA0KXrXyNIQyWon6T6XQiBQF0XHvRsiCSrWmmeATpUzdJN2HhWZU6Pdl0a9zdep5p6A==
1238 | dependencies:
1239 | type-fest "^0.20.2"
1240 |
1241 | globby@^11.0.4:
1242 | version "11.1.0"
1243 | resolved "https://registry.npmmirror.com/globby/-/globby-11.1.0.tgz#bd4be98bb042f83d796f7e3811991fbe82a0d34b"
1244 | integrity sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==
1245 | dependencies:
1246 | array-union "^2.1.0"
1247 | dir-glob "^3.0.1"
1248 | fast-glob "^3.2.9"
1249 | ignore "^5.2.0"
1250 | merge2 "^1.4.1"
1251 | slash "^3.0.0"
1252 |
1253 | has-bigints@^1.0.1:
1254 | version "1.0.1"
1255 | resolved "https://registry.npmmirror.com/has-bigints/-/has-bigints-1.0.1.tgz#64fe6acb020673e3b78db035a5af69aa9d07b113"
1256 | integrity sha512-LSBS2LjbNBTf6287JEbEzvJgftkF5qFkmCo9hDRpAzKhUOlJ+hx8dd4USs00SgsUNwc4617J9ki5YtEClM2ffA==
1257 |
1258 | has-flag@^3.0.0:
1259 | version "3.0.0"
1260 | resolved "https://registry.npmmirror.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd"
1261 | integrity sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==
1262 |
1263 | has-flag@^4.0.0:
1264 | version "4.0.0"
1265 | resolved "https://registry.npmmirror.com/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b"
1266 | integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==
1267 |
1268 | has-symbols@^1.0.1, has-symbols@^1.0.2, has-symbols@^1.0.3:
1269 | version "1.0.3"
1270 | resolved "https://registry.npmmirror.com/has-symbols/-/has-symbols-1.0.3.tgz#bb7b2c4349251dce87b125f7bdf874aa7c8b39f8"
1271 | integrity sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==
1272 |
1273 | has-tostringtag@^1.0.0:
1274 | version "1.0.0"
1275 | resolved "https://registry.npmmirror.com/has-tostringtag/-/has-tostringtag-1.0.0.tgz#7e133818a7d394734f941e73c3d3f9291e658b25"
1276 | integrity sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==
1277 | dependencies:
1278 | has-symbols "^1.0.2"
1279 |
1280 | has@^1.0.3:
1281 | version "1.0.3"
1282 | resolved "https://registry.npmmirror.com/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796"
1283 | integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==
1284 | dependencies:
1285 | function-bind "^1.1.1"
1286 |
1287 | hoist-non-react-statics@^3.2.0, hoist-non-react-statics@^3.3.0, hoist-non-react-statics@^3.3.1, hoist-non-react-statics@^3.3.2:
1288 | version "3.3.2"
1289 | resolved "https://registry.npmmirror.com/hoist-non-react-statics/-/hoist-non-react-statics-3.3.2.tgz#ece0acaf71d62c2969c2ec59feff42a4b1a85b45"
1290 | integrity sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==
1291 | dependencies:
1292 | react-is "^16.7.0"
1293 |
1294 | html-escaper@^2.0.2:
1295 | version "2.0.2"
1296 | resolved "https://registry.npmmirror.com/html-escaper/-/html-escaper-2.0.2.tgz#dfd60027da36a36dfcbe236262c00a5822681453"
1297 | integrity sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==
1298 |
1299 | html-parse-stringify@^3.0.1:
1300 | version "3.0.1"
1301 | resolved "https://registry.npmmirror.com/html-parse-stringify/-/html-parse-stringify-3.0.1.tgz#dfc1017347ce9f77c8141a507f233040c59c55d2"
1302 | integrity sha512-KknJ50kTInJ7qIScF3jeaFRpMpE8/lfiTdzf/twXyPBLAGrLRTmkz3AdTnKeh40X8k9L2fdYwEp/42WGXIRGcg==
1303 | dependencies:
1304 | void-elements "3.1.0"
1305 |
1306 | i18next-fs-backend@^1.1.4:
1307 | version "1.1.4"
1308 | resolved "https://registry.npmmirror.com/i18next-fs-backend/-/i18next-fs-backend-1.1.4.tgz#d0e9b9ed2fa7a0f11002d82b9fa69c3c3d6482da"
1309 | integrity sha512-/MfAGMP0jHonV966uFf9PkWWuDjPYLIcsipnSO3NxpNtAgRUKLTwvm85fEmsF6hGeu0zbZiCQ3W74jwO6K9uXA==
1310 |
1311 | i18next@^21.6.14:
1312 | version "21.6.16"
1313 | resolved "https://registry.npmmirror.com/i18next/-/i18next-21.6.16.tgz#8cff8c3ba2ffaf8438a8c83fe284083f15cf3941"
1314 | integrity sha512-xJlzrVxG9CyAGsbMP1aKuiNr1Ed2m36KiTB7hjGMG2Zo4idfw3p9THUEu+GjBwIgEZ7F11ZbCzJcfv4uyfKNuw==
1315 | dependencies:
1316 | "@babel/runtime" "^7.17.2"
1317 |
1318 | ignore@^5.2.0:
1319 | version "5.2.0"
1320 | resolved "https://registry.npmmirror.com/ignore/-/ignore-5.2.0.tgz#6d3bac8fa7fe0d45d9f9be7bac2fc279577e345a"
1321 | integrity sha512-CmxgYGiEPCLhfLnpPp1MoRmifwEIOgjcHXxOBjv7mY96c+eWScsOP9c112ZyLdWHi0FxHjI+4uVhKYp/gcdRmQ==
1322 |
1323 | import-fresh@^3.0.0, import-fresh@^3.1.0, import-fresh@^3.2.1:
1324 | version "3.3.0"
1325 | resolved "https://registry.npmmirror.com/import-fresh/-/import-fresh-3.3.0.tgz#37162c25fcb9ebaa2e6e53d5b4d88ce17d9e0c2b"
1326 | integrity sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==
1327 | dependencies:
1328 | parent-module "^1.0.0"
1329 | resolve-from "^4.0.0"
1330 |
1331 | imurmurhash@^0.1.4:
1332 | version "0.1.4"
1333 | resolved "https://registry.npmmirror.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea"
1334 | integrity sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==
1335 |
1336 | inflight@^1.0.4:
1337 | version "1.0.6"
1338 | resolved "https://registry.npmmirror.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9"
1339 | integrity sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==
1340 | dependencies:
1341 | once "^1.3.0"
1342 | wrappy "1"
1343 |
1344 | inherits@2:
1345 | version "2.0.4"
1346 | resolved "https://registry.npmmirror.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c"
1347 | integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==
1348 |
1349 | internal-slot@^1.0.3:
1350 | version "1.0.3"
1351 | resolved "https://registry.npmmirror.com/internal-slot/-/internal-slot-1.0.3.tgz#7347e307deeea2faac2ac6205d4bc7d34967f59c"
1352 | integrity sha512-O0DB1JC/sPyZl7cIo78n5dR7eUSwwpYPiXRhTzNxZVAMUuB8vlnRFyLxdrVToks6XPLVnFfbzaVd5WLjhgg+vA==
1353 | dependencies:
1354 | get-intrinsic "^1.1.0"
1355 | has "^1.0.3"
1356 | side-channel "^1.0.4"
1357 |
1358 | is-arrayish@^0.2.1:
1359 | version "0.2.1"
1360 | resolved "https://registry.npmmirror.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d"
1361 | integrity sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==
1362 |
1363 | is-bigint@^1.0.1:
1364 | version "1.0.4"
1365 | resolved "https://registry.npmmirror.com/is-bigint/-/is-bigint-1.0.4.tgz#08147a1875bc2b32005d41ccd8291dffc6691df3"
1366 | integrity sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==
1367 | dependencies:
1368 | has-bigints "^1.0.1"
1369 |
1370 | is-boolean-object@^1.1.0:
1371 | version "1.1.2"
1372 | resolved "https://registry.npmmirror.com/is-boolean-object/-/is-boolean-object-1.1.2.tgz#5c6dc200246dd9321ae4b885a114bb1f75f63719"
1373 | integrity sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==
1374 | dependencies:
1375 | call-bind "^1.0.2"
1376 | has-tostringtag "^1.0.0"
1377 |
1378 | is-callable@^1.1.4, is-callable@^1.2.4:
1379 | version "1.2.4"
1380 | resolved "https://registry.npmmirror.com/is-callable/-/is-callable-1.2.4.tgz#47301d58dd0259407865547853df6d61fe471945"
1381 | integrity sha512-nsuwtxZfMX67Oryl9LCQ+upnC0Z0BgpwntpS89m1H/TLF0zNfzfLMV/9Wa/6MZsj0acpEjAO0KF1xT6ZdLl95w==
1382 |
1383 | is-core-module@^2.2.0, is-core-module@^2.7.0, is-core-module@^2.8.1:
1384 | version "2.8.1"
1385 | resolved "https://registry.npmmirror.com/is-core-module/-/is-core-module-2.8.1.tgz#f59fdfca701d5879d0a6b100a40aa1560ce27211"
1386 | integrity sha512-SdNCUs284hr40hFTFP6l0IfZ/RSrMXF3qgoRHd3/79unUTvrFO/JoXwkGm+5J/Oe3E/b5GsnG330uUNgRpu1PA==
1387 | dependencies:
1388 | has "^1.0.3"
1389 |
1390 | is-date-object@^1.0.1:
1391 | version "1.0.5"
1392 | resolved "https://registry.npmmirror.com/is-date-object/-/is-date-object-1.0.5.tgz#0841d5536e724c25597bf6ea62e1bd38298df31f"
1393 | integrity sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==
1394 | dependencies:
1395 | has-tostringtag "^1.0.0"
1396 |
1397 | is-extglob@^2.1.1:
1398 | version "2.1.1"
1399 | resolved "https://registry.npmmirror.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2"
1400 | integrity sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==
1401 |
1402 | is-glob@^4.0.0, is-glob@^4.0.1, is-glob@^4.0.3:
1403 | version "4.0.3"
1404 | resolved "https://registry.npmmirror.com/is-glob/-/is-glob-4.0.3.tgz#64f61e42cbbb2eec2071a9dac0b28ba1e65d5084"
1405 | integrity sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==
1406 | dependencies:
1407 | is-extglob "^2.1.1"
1408 |
1409 | is-negative-zero@^2.0.2:
1410 | version "2.0.2"
1411 | resolved "https://registry.npmmirror.com/is-negative-zero/-/is-negative-zero-2.0.2.tgz#7bf6f03a28003b8b3965de3ac26f664d765f3150"
1412 | integrity sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==
1413 |
1414 | is-number-object@^1.0.4:
1415 | version "1.0.7"
1416 | resolved "https://registry.npmmirror.com/is-number-object/-/is-number-object-1.0.7.tgz#59d50ada4c45251784e9904f5246c742f07a42fc"
1417 | integrity sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==
1418 | dependencies:
1419 | has-tostringtag "^1.0.0"
1420 |
1421 | is-number@^7.0.0:
1422 | version "7.0.0"
1423 | resolved "https://registry.npmmirror.com/is-number/-/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b"
1424 | integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==
1425 |
1426 | is-regex@^1.1.4:
1427 | version "1.1.4"
1428 | resolved "https://registry.npmmirror.com/is-regex/-/is-regex-1.1.4.tgz#eef5663cd59fa4c0ae339505323df6854bb15958"
1429 | integrity sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==
1430 | dependencies:
1431 | call-bind "^1.0.2"
1432 | has-tostringtag "^1.0.0"
1433 |
1434 | is-shared-array-buffer@^1.0.2:
1435 | version "1.0.2"
1436 | resolved "https://registry.npmmirror.com/is-shared-array-buffer/-/is-shared-array-buffer-1.0.2.tgz#8f259c573b60b6a32d4058a1a07430c0a7344c79"
1437 | integrity sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==
1438 | dependencies:
1439 | call-bind "^1.0.2"
1440 |
1441 | is-string@^1.0.5, is-string@^1.0.7:
1442 | version "1.0.7"
1443 | resolved "https://registry.npmmirror.com/is-string/-/is-string-1.0.7.tgz#0dd12bf2006f255bb58f695110eff7491eebc0fd"
1444 | integrity sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==
1445 | dependencies:
1446 | has-tostringtag "^1.0.0"
1447 |
1448 | is-symbol@^1.0.2, is-symbol@^1.0.3:
1449 | version "1.0.4"
1450 | resolved "https://registry.npmmirror.com/is-symbol/-/is-symbol-1.0.4.tgz#a6dac93b635b063ca6872236de88910a57af139c"
1451 | integrity sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==
1452 | dependencies:
1453 | has-symbols "^1.0.2"
1454 |
1455 | is-weakref@^1.0.2:
1456 | version "1.0.2"
1457 | resolved "https://registry.npmmirror.com/is-weakref/-/is-weakref-1.0.2.tgz#9529f383a9338205e89765e0392efc2f100f06f2"
1458 | integrity sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==
1459 | dependencies:
1460 | call-bind "^1.0.2"
1461 |
1462 | isexe@^2.0.0:
1463 | version "2.0.0"
1464 | resolved "https://registry.npmmirror.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10"
1465 | integrity sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==
1466 |
1467 | "js-tokens@^3.0.0 || ^4.0.0", js-tokens@^4.0.0:
1468 | version "4.0.0"
1469 | resolved "https://registry.npmmirror.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499"
1470 | integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==
1471 |
1472 | js-yaml@^4.1.0:
1473 | version "4.1.0"
1474 | resolved "https://registry.npmmirror.com/js-yaml/-/js-yaml-4.1.0.tgz#c1fb65f8f5017901cdd2c951864ba18458a10602"
1475 | integrity sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==
1476 | dependencies:
1477 | argparse "^2.0.1"
1478 |
1479 | json-parse-even-better-errors@^2.3.0:
1480 | version "2.3.1"
1481 | resolved "https://registry.npmmirror.com/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz#7c47805a94319928e05777405dc12e1f7a4ee02d"
1482 | integrity sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==
1483 |
1484 | json-schema-traverse@^0.4.1:
1485 | version "0.4.1"
1486 | resolved "https://registry.npmmirror.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz#69f6a87d9513ab8bb8fe63bdb0979c448e684660"
1487 | integrity sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==
1488 |
1489 | json-stable-stringify-without-jsonify@^1.0.1:
1490 | version "1.0.1"
1491 | resolved "https://registry.npmmirror.com/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz#9db7b59496ad3f3cfef30a75142d2d930ad72651"
1492 | integrity sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==
1493 |
1494 | json5@^1.0.1:
1495 | version "1.0.1"
1496 | resolved "https://registry.npmmirror.com/json5/-/json5-1.0.1.tgz#779fb0018604fa854eacbf6252180d83543e3dbe"
1497 | integrity sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==
1498 | dependencies:
1499 | minimist "^1.2.0"
1500 |
1501 | "jsx-ast-utils@^2.4.1 || ^3.0.0", jsx-ast-utils@^3.2.1:
1502 | version "3.2.2"
1503 | resolved "https://registry.npmmirror.com/jsx-ast-utils/-/jsx-ast-utils-3.2.2.tgz#6ab1e52c71dfc0c0707008a91729a9491fe9f76c"
1504 | integrity sha512-HDAyJ4MNQBboGpUnHAVUNJs6X0lh058s6FuixsFGP7MgJYpD6Vasd6nzSG5iIfXu1zAYlHJ/zsOKNlrenTUBnw==
1505 | dependencies:
1506 | array-includes "^3.1.4"
1507 | object.assign "^4.1.2"
1508 |
1509 | language-subtag-registry@~0.3.2:
1510 | version "0.3.21"
1511 | resolved "https://registry.npmmirror.com/language-subtag-registry/-/language-subtag-registry-0.3.21.tgz#04ac218bea46f04cb039084602c6da9e788dd45a"
1512 | integrity sha512-L0IqwlIXjilBVVYKFT37X9Ih11Um5NEl9cbJIuU/SwP/zEEAbBPOnEeeuxVMf45ydWQRDQN3Nqc96OgbH1K+Pg==
1513 |
1514 | language-tags@^1.0.5:
1515 | version "1.0.5"
1516 | resolved "https://registry.npmmirror.com/language-tags/-/language-tags-1.0.5.tgz#d321dbc4da30ba8bf3024e040fa5c14661f9193a"
1517 | integrity sha512-qJhlO9cGXi6hBGKoxEG/sKZDAHD5Hnu9Hs4WbOY3pCWXDhw0N8x1NenNzm2EnNLkLkk7J2SdxAkDSbb6ftT+UQ==
1518 | dependencies:
1519 | language-subtag-registry "~0.3.2"
1520 |
1521 | levn@^0.4.1:
1522 | version "0.4.1"
1523 | resolved "https://registry.npmmirror.com/levn/-/levn-0.4.1.tgz#ae4562c007473b932a6200d403268dd2fffc6ade"
1524 | integrity sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==
1525 | dependencies:
1526 | prelude-ls "^1.2.1"
1527 | type-check "~0.4.0"
1528 |
1529 | lines-and-columns@^1.1.6:
1530 | version "1.2.4"
1531 | resolved "https://registry.npmmirror.com/lines-and-columns/-/lines-and-columns-1.2.4.tgz#eca284f75d2965079309dc0ad9255abb2ebc1632"
1532 | integrity sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==
1533 |
1534 | locate-path@^2.0.0:
1535 | version "2.0.0"
1536 | resolved "https://registry.npmmirror.com/locate-path/-/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e"
1537 | integrity sha512-NCI2kiDkyR7VeEKm27Kda/iQHyKJe1Bu0FlTbYp3CqJu+9IFe9bLyAjMxf5ZDDbEg+iMPzB5zYyUTSm8wVTKmA==
1538 | dependencies:
1539 | p-locate "^2.0.0"
1540 | path-exists "^3.0.0"
1541 |
1542 | lodash.merge@^4.6.2:
1543 | version "4.6.2"
1544 | resolved "https://registry.npmmirror.com/lodash.merge/-/lodash.merge-4.6.2.tgz#558aa53b43b661e1925a0afdfa36a9a1085fe57a"
1545 | integrity sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==
1546 |
1547 | loose-envify@^1.1.0, loose-envify@^1.4.0:
1548 | version "1.4.0"
1549 | resolved "https://registry.npmmirror.com/loose-envify/-/loose-envify-1.4.0.tgz#71ee51fa7be4caec1a63839f7e682d8132d30caf"
1550 | integrity sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==
1551 | dependencies:
1552 | js-tokens "^3.0.0 || ^4.0.0"
1553 |
1554 | lru-cache@^6.0.0:
1555 | version "6.0.0"
1556 | resolved "https://registry.npmmirror.com/lru-cache/-/lru-cache-6.0.0.tgz#6d6fe6570ebd96aaf90fcad1dafa3b2566db3a94"
1557 | integrity sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==
1558 | dependencies:
1559 | yallist "^4.0.0"
1560 |
1561 | merge2@^1.3.0, merge2@^1.4.1:
1562 | version "1.4.1"
1563 | resolved "https://registry.npmmirror.com/merge2/-/merge2-1.4.1.tgz#4368892f885e907455a6fd7dc55c0c9d404990ae"
1564 | integrity sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==
1565 |
1566 | micromatch@^4.0.4:
1567 | version "4.0.5"
1568 | resolved "https://registry.npmmirror.com/micromatch/-/micromatch-4.0.5.tgz#bc8999a7cbbf77cdc89f132f6e467051b49090c6"
1569 | integrity sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==
1570 | dependencies:
1571 | braces "^3.0.2"
1572 | picomatch "^2.3.1"
1573 |
1574 | minimatch@^3.0.4, minimatch@^3.1.2:
1575 | version "3.1.2"
1576 | resolved "https://registry.npmmirror.com/minimatch/-/minimatch-3.1.2.tgz#19cd194bfd3e428f049a70817c038d89ab4be35b"
1577 | integrity sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==
1578 | dependencies:
1579 | brace-expansion "^1.1.7"
1580 |
1581 | minimist@^1.2.0, minimist@^1.2.6:
1582 | version "1.2.6"
1583 | resolved "https://registry.npmmirror.com/minimist/-/minimist-1.2.6.tgz#8637a5b759ea0d6e98702cfb3a9283323c93af44"
1584 | integrity sha512-Jsjnk4bw3YJqYzbdyBiNsPWHPfO++UGG749Cxs6peCu5Xg4nrena6OVxOYxrQTqww0Jmwt+Ref8rggumkTLz9Q==
1585 |
1586 | ms@2.0.0:
1587 | version "2.0.0"
1588 | resolved "https://registry.npmmirror.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8"
1589 | integrity sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==
1590 |
1591 | ms@2.1.2:
1592 | version "2.1.2"
1593 | resolved "https://registry.npmmirror.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009"
1594 | integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==
1595 |
1596 | ms@^2.1.1:
1597 | version "2.1.3"
1598 | resolved "https://registry.npmmirror.com/ms/-/ms-2.1.3.tgz#574c8138ce1d2b5861f0b44579dbadd60c6615b2"
1599 | integrity sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==
1600 |
1601 | nanoid@^3.1.30:
1602 | version "3.3.2"
1603 | resolved "https://registry.npmmirror.com/nanoid/-/nanoid-3.3.2.tgz#c89622fafb4381cd221421c69ec58547a1eec557"
1604 | integrity sha512-CuHBogktKwpm5g2sRgv83jEy2ijFzBwMoYA60orPDR7ynsLijJDqgsi4RDGj3OJpy3Ieb+LYwiRmIOGyytgITA==
1605 |
1606 | natural-compare@^1.4.0:
1607 | version "1.4.0"
1608 | resolved "https://registry.npmmirror.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7"
1609 | integrity sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==
1610 |
1611 | next-i18next@^11.0.0:
1612 | version "11.0.0"
1613 | resolved "https://registry.npmmirror.com/next-i18next/-/next-i18next-11.0.0.tgz#2857d13c58a5ed976fe57c44286f1520b07f7c96"
1614 | integrity sha512-phxbQiZGSJTTBE2FI4+BnqFZl88AI2V+6MrEQnT9aPFAXq/fATQ/F0pOUM3J7kU4nEeCfn3hjISq+ygGHlEz0g==
1615 | dependencies:
1616 | "@babel/runtime" "^7.13.17"
1617 | "@types/hoist-non-react-statics" "^3.3.1"
1618 | core-js "^3"
1619 | hoist-non-react-statics "^3.2.0"
1620 | i18next "^21.6.14"
1621 | i18next-fs-backend "^1.1.4"
1622 | react-i18next "^11.16.2"
1623 |
1624 | next@12.1.5:
1625 | version "12.1.5"
1626 | resolved "https://registry.npmmirror.com/next/-/next-12.1.5.tgz#7a07687579ddce61ee519493e1c178d83abac063"
1627 | integrity sha512-YGHDpyfgCfnT5GZObsKepmRnne7Kzp7nGrac07dikhutWQug7hHg85/+sPJ4ZW5Q2pDkb+n0FnmLkmd44htIJQ==
1628 | dependencies:
1629 | "@next/env" "12.1.5"
1630 | caniuse-lite "^1.0.30001283"
1631 | postcss "8.4.5"
1632 | styled-jsx "5.0.1"
1633 | optionalDependencies:
1634 | "@next/swc-android-arm-eabi" "12.1.5"
1635 | "@next/swc-android-arm64" "12.1.5"
1636 | "@next/swc-darwin-arm64" "12.1.5"
1637 | "@next/swc-darwin-x64" "12.1.5"
1638 | "@next/swc-linux-arm-gnueabihf" "12.1.5"
1639 | "@next/swc-linux-arm64-gnu" "12.1.5"
1640 | "@next/swc-linux-arm64-musl" "12.1.5"
1641 | "@next/swc-linux-x64-gnu" "12.1.5"
1642 | "@next/swc-linux-x64-musl" "12.1.5"
1643 | "@next/swc-win32-arm64-msvc" "12.1.5"
1644 | "@next/swc-win32-ia32-msvc" "12.1.5"
1645 | "@next/swc-win32-x64-msvc" "12.1.5"
1646 |
1647 | object-assign@^4.1.1:
1648 | version "4.1.1"
1649 | resolved "https://registry.npmmirror.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863"
1650 | integrity sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==
1651 |
1652 | object-inspect@^1.12.0, object-inspect@^1.9.0:
1653 | version "1.12.0"
1654 | resolved "https://registry.npmmirror.com/object-inspect/-/object-inspect-1.12.0.tgz#6e2c120e868fd1fd18cb4f18c31741d0d6e776f0"
1655 | integrity sha512-Ho2z80bVIvJloH+YzRmpZVQe87+qASmBUKZDWgx9cu+KDrX2ZDH/3tMy+gXbZETVGs2M8YdxObOh7XAtim9Y0g==
1656 |
1657 | object-keys@^1.0.12, object-keys@^1.1.1:
1658 | version "1.1.1"
1659 | resolved "https://registry.npmmirror.com/object-keys/-/object-keys-1.1.1.tgz#1c47f272df277f3b1daf061677d9c82e2322c60e"
1660 | integrity sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==
1661 |
1662 | object.assign@^4.1.2:
1663 | version "4.1.2"
1664 | resolved "https://registry.npmmirror.com/object.assign/-/object.assign-4.1.2.tgz#0ed54a342eceb37b38ff76eb831a0e788cb63940"
1665 | integrity sha512-ixT2L5THXsApyiUPYKmW+2EHpXXe5Ii3M+f4e+aJFAHao5amFRW6J0OO6c/LU8Be47utCx2GL89hxGB6XSmKuQ==
1666 | dependencies:
1667 | call-bind "^1.0.0"
1668 | define-properties "^1.1.3"
1669 | has-symbols "^1.0.1"
1670 | object-keys "^1.1.1"
1671 |
1672 | object.entries@^1.1.5:
1673 | version "1.1.5"
1674 | resolved "https://registry.npmmirror.com/object.entries/-/object.entries-1.1.5.tgz#e1acdd17c4de2cd96d5a08487cfb9db84d881861"
1675 | integrity sha512-TyxmjUoZggd4OrrU1W66FMDG6CuqJxsFvymeyXI51+vQLN67zYfZseptRge703kKQdo4uccgAKebXFcRCzk4+g==
1676 | dependencies:
1677 | call-bind "^1.0.2"
1678 | define-properties "^1.1.3"
1679 | es-abstract "^1.19.1"
1680 |
1681 | object.fromentries@^2.0.5:
1682 | version "2.0.5"
1683 | resolved "https://registry.npmmirror.com/object.fromentries/-/object.fromentries-2.0.5.tgz#7b37b205109c21e741e605727fe8b0ad5fa08251"
1684 | integrity sha512-CAyG5mWQRRiBU57Re4FKoTBjXfDoNwdFVH2Y1tS9PqCsfUTymAohOkEMSG3aRNKmv4lV3O7p1et7c187q6bynw==
1685 | dependencies:
1686 | call-bind "^1.0.2"
1687 | define-properties "^1.1.3"
1688 | es-abstract "^1.19.1"
1689 |
1690 | object.hasown@^1.1.0:
1691 | version "1.1.0"
1692 | resolved "https://registry.npmmirror.com/object.hasown/-/object.hasown-1.1.0.tgz#7232ed266f34d197d15cac5880232f7a4790afe5"
1693 | integrity sha512-MhjYRfj3GBlhSkDHo6QmvgjRLXQ2zndabdf3nX0yTyZK9rPfxb6uRpAac8HXNLy1GpqWtZ81Qh4v3uOls2sRAg==
1694 | dependencies:
1695 | define-properties "^1.1.3"
1696 | es-abstract "^1.19.1"
1697 |
1698 | object.values@^1.1.5:
1699 | version "1.1.5"
1700 | resolved "https://registry.npmmirror.com/object.values/-/object.values-1.1.5.tgz#959f63e3ce9ef108720333082131e4a459b716ac"
1701 | integrity sha512-QUZRW0ilQ3PnPpbNtgdNV1PDbEqLIiSFB3l+EnGtBQ/8SUTLj1PZwtQHABZtLgwpJZTSZhuGLOGk57Drx2IvYg==
1702 | dependencies:
1703 | call-bind "^1.0.2"
1704 | define-properties "^1.1.3"
1705 | es-abstract "^1.19.1"
1706 |
1707 | once@^1.3.0:
1708 | version "1.4.0"
1709 | resolved "https://registry.npmmirror.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1"
1710 | integrity sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==
1711 | dependencies:
1712 | wrappy "1"
1713 |
1714 | optionator@^0.9.1:
1715 | version "0.9.1"
1716 | resolved "https://registry.npmmirror.com/optionator/-/optionator-0.9.1.tgz#4f236a6373dae0566a6d43e1326674f50c291499"
1717 | integrity sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw==
1718 | dependencies:
1719 | deep-is "^0.1.3"
1720 | fast-levenshtein "^2.0.6"
1721 | levn "^0.4.1"
1722 | prelude-ls "^1.2.1"
1723 | type-check "^0.4.0"
1724 | word-wrap "^1.2.3"
1725 |
1726 | p-limit@^1.1.0:
1727 | version "1.3.0"
1728 | resolved "https://registry.npmmirror.com/p-limit/-/p-limit-1.3.0.tgz#b86bd5f0c25690911c7590fcbfc2010d54b3ccb8"
1729 | integrity sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==
1730 | dependencies:
1731 | p-try "^1.0.0"
1732 |
1733 | p-locate@^2.0.0:
1734 | version "2.0.0"
1735 | resolved "https://registry.npmmirror.com/p-locate/-/p-locate-2.0.0.tgz#20a0103b222a70c8fd39cc2e580680f3dde5ec43"
1736 | integrity sha512-nQja7m7gSKuewoVRen45CtVfODR3crN3goVQ0DDZ9N3yHxgpkuBhZqsaiotSQRrADUrne346peY7kT3TSACykg==
1737 | dependencies:
1738 | p-limit "^1.1.0"
1739 |
1740 | p-try@^1.0.0:
1741 | version "1.0.0"
1742 | resolved "https://registry.npmmirror.com/p-try/-/p-try-1.0.0.tgz#cbc79cdbaf8fd4228e13f621f2b1a237c1b207b3"
1743 | integrity sha512-U1etNYuMJoIz3ZXSrrySFjsXQTWOx2/jdi86L+2pRvph/qMKL6sbcCYdH23fqsbm8TH2Gn0OybpT4eSFlCVHww==
1744 |
1745 | parent-module@^1.0.0:
1746 | version "1.0.1"
1747 | resolved "https://registry.npmmirror.com/parent-module/-/parent-module-1.0.1.tgz#691d2709e78c79fae3a156622452d00762caaaa2"
1748 | integrity sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==
1749 | dependencies:
1750 | callsites "^3.0.0"
1751 |
1752 | parse-json@^5.0.0:
1753 | version "5.2.0"
1754 | resolved "https://registry.npmmirror.com/parse-json/-/parse-json-5.2.0.tgz#c76fc66dee54231c962b22bcc8a72cf2f99753cd"
1755 | integrity sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==
1756 | dependencies:
1757 | "@babel/code-frame" "^7.0.0"
1758 | error-ex "^1.3.1"
1759 | json-parse-even-better-errors "^2.3.0"
1760 | lines-and-columns "^1.1.6"
1761 |
1762 | path-exists@^3.0.0:
1763 | version "3.0.0"
1764 | resolved "https://registry.npmmirror.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515"
1765 | integrity sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==
1766 |
1767 | path-is-absolute@^1.0.0:
1768 | version "1.0.1"
1769 | resolved "https://registry.npmmirror.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f"
1770 | integrity sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==
1771 |
1772 | path-key@^3.1.0:
1773 | version "3.1.1"
1774 | resolved "https://registry.npmmirror.com/path-key/-/path-key-3.1.1.tgz#581f6ade658cbba65a0d3380de7753295054f375"
1775 | integrity sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==
1776 |
1777 | path-parse@^1.0.6, path-parse@^1.0.7:
1778 | version "1.0.7"
1779 | resolved "https://registry.npmmirror.com/path-parse/-/path-parse-1.0.7.tgz#fbc114b60ca42b30d9daf5858e4bd68bbedb6735"
1780 | integrity sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==
1781 |
1782 | path-type@^4.0.0:
1783 | version "4.0.0"
1784 | resolved "https://registry.npmmirror.com/path-type/-/path-type-4.0.0.tgz#84ed01c0a7ba380afe09d90a8c180dcd9d03043b"
1785 | integrity sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==
1786 |
1787 | picocolors@^1.0.0:
1788 | version "1.0.0"
1789 | resolved "https://registry.npmmirror.com/picocolors/-/picocolors-1.0.0.tgz#cb5bdc74ff3f51892236eaf79d68bc44564ab81c"
1790 | integrity sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==
1791 |
1792 | picomatch@^2.3.1:
1793 | version "2.3.1"
1794 | resolved "https://registry.npmmirror.com/picomatch/-/picomatch-2.3.1.tgz#3ba3833733646d9d3e4995946c1365a67fb07a42"
1795 | integrity sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==
1796 |
1797 | postcss@8.4.5:
1798 | version "8.4.5"
1799 | resolved "https://registry.npmmirror.com/postcss/-/postcss-8.4.5.tgz#bae665764dfd4c6fcc24dc0fdf7e7aa00cc77f95"
1800 | integrity sha512-jBDboWM8qpaqwkMwItqTQTiFikhs/67OYVvblFFTM7MrZjt6yMKd6r2kgXizEbTTljacm4NldIlZnhbjr84QYg==
1801 | dependencies:
1802 | nanoid "^3.1.30"
1803 | picocolors "^1.0.0"
1804 | source-map-js "^1.0.1"
1805 |
1806 | prelude-ls@^1.2.1:
1807 | version "1.2.1"
1808 | resolved "https://registry.npmmirror.com/prelude-ls/-/prelude-ls-1.2.1.tgz#debc6489d7a6e6b0e7611888cec880337d316396"
1809 | integrity sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==
1810 |
1811 | prop-types@^15.6.2, prop-types@^15.7.2, prop-types@^15.8.1:
1812 | version "15.8.1"
1813 | resolved "https://registry.npmmirror.com/prop-types/-/prop-types-15.8.1.tgz#67d87bf1a694f48435cf332c24af10214a3140b5"
1814 | integrity sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==
1815 | dependencies:
1816 | loose-envify "^1.4.0"
1817 | object-assign "^4.1.1"
1818 | react-is "^16.13.1"
1819 |
1820 | punycode@^2.1.0:
1821 | version "2.1.1"
1822 | resolved "https://registry.npmmirror.com/punycode/-/punycode-2.1.1.tgz#b58b010ac40c22c5657616c8d2c2c02c7bf479ec"
1823 | integrity sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==
1824 |
1825 | qrcode.react@^3.0.1:
1826 | version "3.0.1"
1827 | resolved "https://registry.npmmirror.com/qrcode.react/-/qrcode.react-3.0.1.tgz#0cb1d7cfdf3955737fbd3509c193985795ca0612"
1828 | integrity sha512-uCNm16ClMCrdM2R20c/zqmdwHcbMQf3K7ey39EiK/UgEKbqWeM0iH2QxW3iDVFzjQKFzH23ICgOyG4gNsJ0/gw==
1829 |
1830 | queue-microtask@^1.2.2:
1831 | version "1.2.3"
1832 | resolved "https://registry.npmmirror.com/queue-microtask/-/queue-microtask-1.2.3.tgz#4929228bbc724dfac43e0efb058caf7b6cfb6243"
1833 | integrity sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==
1834 |
1835 | react-dom@18.0.0:
1836 | version "18.0.0"
1837 | resolved "https://registry.npmmirror.com/react-dom/-/react-dom-18.0.0.tgz#26b88534f8f1dbb80853e1eabe752f24100d8023"
1838 | integrity sha512-XqX7uzmFo0pUceWFCt7Gff6IyIMzFUn7QMZrbrQfGxtaxXZIcGQzoNpRLE3fQLnS4XzLLPMZX2T9TRcSrasicw==
1839 | dependencies:
1840 | loose-envify "^1.1.0"
1841 | scheduler "^0.21.0"
1842 |
1843 | react-i18next@^11.16.2:
1844 | version "11.16.6"
1845 | resolved "https://registry.npmmirror.com/react-i18next/-/react-i18next-11.16.6.tgz#e8a07802c391a55e1528673201a2727994787641"
1846 | integrity sha512-qa76GnvAPafNSxKNN/XMhdCkVN/9Lm+BpzW5+6FE2ctYUemhbglP7oklGmYiJXlG24p9itqzlJDbCi3SNd3jzA==
1847 | dependencies:
1848 | "@babel/runtime" "^7.14.5"
1849 | html-escaper "^2.0.2"
1850 | html-parse-stringify "^3.0.1"
1851 |
1852 | react-is@^16.13.1, react-is@^16.7.0:
1853 | version "16.13.1"
1854 | resolved "https://registry.npmmirror.com/react-is/-/react-is-16.13.1.tgz#789729a4dc36de2999dc156dd6c1d9c18cea56a4"
1855 | integrity sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==
1856 |
1857 | react-is@^17.0.2:
1858 | version "17.0.2"
1859 | resolved "https://registry.npmmirror.com/react-is/-/react-is-17.0.2.tgz#e691d4a8e9c789365655539ab372762b0efb54f0"
1860 | integrity sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==
1861 |
1862 | react-transition-group@^4.4.2:
1863 | version "4.4.2"
1864 | resolved "https://registry.npmmirror.com/react-transition-group/-/react-transition-group-4.4.2.tgz#8b59a56f09ced7b55cbd53c36768b922890d5470"
1865 | integrity sha512-/RNYfRAMlZwDSr6z4zNKV6xu53/e2BuaBbGhbyYIXTrmgu/bGHzmqOs7mJSJBHy9Ud+ApHx3QjrkKSp1pxvlFg==
1866 | dependencies:
1867 | "@babel/runtime" "^7.5.5"
1868 | dom-helpers "^5.0.1"
1869 | loose-envify "^1.4.0"
1870 | prop-types "^15.6.2"
1871 |
1872 | react@18.0.0:
1873 | version "18.0.0"
1874 | resolved "https://registry.npmmirror.com/react/-/react-18.0.0.tgz#b468736d1f4a5891f38585ba8e8fb29f91c3cb96"
1875 | integrity sha512-x+VL6wbT4JRVPm7EGxXhZ8w8LTROaxPXOqhlGyVSrv0sB1jkyFGgXxJ8LVoPRLvPR6/CIZGFmfzqUa2NYeMr2A==
1876 | dependencies:
1877 | loose-envify "^1.1.0"
1878 |
1879 | regenerator-runtime@^0.13.4:
1880 | version "0.13.9"
1881 | resolved "https://registry.npmmirror.com/regenerator-runtime/-/regenerator-runtime-0.13.9.tgz#8925742a98ffd90814988d7566ad30ca3b263b52"
1882 | integrity sha512-p3VT+cOEgxFsRRA9X4lkI1E+k2/CtnKtU4gcxyaCUreilL/vqI6CdZ3wxVUx3UOUg+gnUOQQcRI7BmSI656MYA==
1883 |
1884 | regexp.prototype.flags@^1.4.1:
1885 | version "1.4.2"
1886 | resolved "https://registry.npmmirror.com/regexp.prototype.flags/-/regexp.prototype.flags-1.4.2.tgz#bf635117a2f4b755595ebb0c0ee2d2a49b2084db"
1887 | integrity sha512-Ynz8fTQW5/1elh+jWU2EDDzeoNbD0OQ0R+D1VJU5ATOkUaro4A9YEkdN2ODQl/8UQFPPpZNw91fOcLFamM7Pww==
1888 | dependencies:
1889 | call-bind "^1.0.2"
1890 | define-properties "^1.1.3"
1891 |
1892 | regexpp@^3.2.0:
1893 | version "3.2.0"
1894 | resolved "https://registry.npmmirror.com/regexpp/-/regexpp-3.2.0.tgz#0425a2768d8f23bad70ca4b90461fa2f1213e1b2"
1895 | integrity sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==
1896 |
1897 | resolve-from@^4.0.0:
1898 | version "4.0.0"
1899 | resolved "https://registry.npmmirror.com/resolve-from/-/resolve-from-4.0.0.tgz#4abcd852ad32dd7baabfe9b40e00a36db5f392e6"
1900 | integrity sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==
1901 |
1902 | resolve@^1.12.0, resolve@^1.13.1, resolve@^1.17.0, resolve@^1.20.0:
1903 | version "1.22.0"
1904 | resolved "https://registry.npmmirror.com/resolve/-/resolve-1.22.0.tgz#5e0b8c67c15df57a89bdbabe603a002f21731198"
1905 | integrity sha512-Hhtrw0nLeSrFQ7phPp4OOcVjLPIeMnRlr5mcnVuMe7M/7eBn98A3hmFRLoFo3DLZkivSYwhRUJTyPyWAk56WLw==
1906 | dependencies:
1907 | is-core-module "^2.8.1"
1908 | path-parse "^1.0.7"
1909 | supports-preserve-symlinks-flag "^1.0.0"
1910 |
1911 | resolve@^2.0.0-next.3:
1912 | version "2.0.0-next.3"
1913 | resolved "https://registry.npmmirror.com/resolve/-/resolve-2.0.0-next.3.tgz#d41016293d4a8586a39ca5d9b5f15cbea1f55e46"
1914 | integrity sha512-W8LucSynKUIDu9ylraa7ueVZ7hc0uAgJBxVsQSKOXOyle8a93qXhcz+XAXZ8bIq2d6i4Ehddn6Evt+0/UwKk6Q==
1915 | dependencies:
1916 | is-core-module "^2.2.0"
1917 | path-parse "^1.0.6"
1918 |
1919 | reusify@^1.0.4:
1920 | version "1.0.4"
1921 | resolved "https://registry.npmmirror.com/reusify/-/reusify-1.0.4.tgz#90da382b1e126efc02146e90845a88db12925d76"
1922 | integrity sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==
1923 |
1924 | rimraf@^3.0.2:
1925 | version "3.0.2"
1926 | resolved "https://registry.npmmirror.com/rimraf/-/rimraf-3.0.2.tgz#f1a5402ba6220ad52cc1282bac1ae3aa49fd061a"
1927 | integrity sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==
1928 | dependencies:
1929 | glob "^7.1.3"
1930 |
1931 | run-parallel@^1.1.9:
1932 | version "1.2.0"
1933 | resolved "https://registry.npmmirror.com/run-parallel/-/run-parallel-1.2.0.tgz#66d1368da7bdf921eb9d95bd1a9229e7f21a43ee"
1934 | integrity sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==
1935 | dependencies:
1936 | queue-microtask "^1.2.2"
1937 |
1938 | safe-buffer@~5.1.1:
1939 | version "5.1.2"
1940 | resolved "https://registry.npmmirror.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d"
1941 | integrity sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==
1942 |
1943 | scheduler@^0.21.0:
1944 | version "0.21.0"
1945 | resolved "https://registry.npmmirror.com/scheduler/-/scheduler-0.21.0.tgz#6fd2532ff5a6d877b6edb12f00d8ab7e8f308820"
1946 | integrity sha512-1r87x5fz9MXqswA2ERLo0EbOAU74DpIUO090gIasYTqlVoJeMcl+Z1Rg7WHz+qtPujhS/hGIt9kxZOYBV3faRQ==
1947 | dependencies:
1948 | loose-envify "^1.1.0"
1949 |
1950 | semver@^6.3.0:
1951 | version "6.3.0"
1952 | resolved "https://registry.npmmirror.com/semver/-/semver-6.3.0.tgz#ee0a64c8af5e8ceea67687b133761e1becbd1d3d"
1953 | integrity sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==
1954 |
1955 | semver@^7.3.5:
1956 | version "7.3.7"
1957 | resolved "https://registry.npmmirror.com/semver/-/semver-7.3.7.tgz#12c5b649afdbf9049707796e22a4028814ce523f"
1958 | integrity sha512-QlYTucUYOews+WeEujDoEGziz4K6c47V/Bd+LjSSYcA94p+DmINdf7ncaUinThfvZyu13lN9OY1XDxt8C0Tw0g==
1959 | dependencies:
1960 | lru-cache "^6.0.0"
1961 |
1962 | shebang-command@^2.0.0:
1963 | version "2.0.0"
1964 | resolved "https://registry.npmmirror.com/shebang-command/-/shebang-command-2.0.0.tgz#ccd0af4f8835fbdc265b82461aaf0c36663f34ea"
1965 | integrity sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==
1966 | dependencies:
1967 | shebang-regex "^3.0.0"
1968 |
1969 | shebang-regex@^3.0.0:
1970 | version "3.0.0"
1971 | resolved "https://registry.npmmirror.com/shebang-regex/-/shebang-regex-3.0.0.tgz#ae16f1644d873ecad843b0307b143362d4c42172"
1972 | integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==
1973 |
1974 | side-channel@^1.0.4:
1975 | version "1.0.4"
1976 | resolved "https://registry.npmmirror.com/side-channel/-/side-channel-1.0.4.tgz#efce5c8fdc104ee751b25c58d4290011fa5ea2cf"
1977 | integrity sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==
1978 | dependencies:
1979 | call-bind "^1.0.0"
1980 | get-intrinsic "^1.0.2"
1981 | object-inspect "^1.9.0"
1982 |
1983 | slash@^3.0.0:
1984 | version "3.0.0"
1985 | resolved "https://registry.npmmirror.com/slash/-/slash-3.0.0.tgz#6539be870c165adbd5240220dbe361f1bc4d4634"
1986 | integrity sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==
1987 |
1988 | source-map-js@^1.0.1:
1989 | version "1.0.2"
1990 | resolved "https://registry.npmmirror.com/source-map-js/-/source-map-js-1.0.2.tgz#adbc361d9c62df380125e7f161f71c826f1e490c"
1991 | integrity sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==
1992 |
1993 | source-map@^0.5.7:
1994 | version "0.5.7"
1995 | resolved "https://registry.npmmirror.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc"
1996 | integrity sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==
1997 |
1998 | string.prototype.matchall@^4.0.6:
1999 | version "4.0.7"
2000 | resolved "https://registry.npmmirror.com/string.prototype.matchall/-/string.prototype.matchall-4.0.7.tgz#8e6ecb0d8a1fb1fda470d81acecb2dba057a481d"
2001 | integrity sha512-f48okCX7JiwVi1NXCVWcFnZgADDC/n2vePlQ/KUCNqCikLLilQvwjMO8+BHVKvgzH0JB0J9LEPgxOGT02RoETg==
2002 | dependencies:
2003 | call-bind "^1.0.2"
2004 | define-properties "^1.1.3"
2005 | es-abstract "^1.19.1"
2006 | get-intrinsic "^1.1.1"
2007 | has-symbols "^1.0.3"
2008 | internal-slot "^1.0.3"
2009 | regexp.prototype.flags "^1.4.1"
2010 | side-channel "^1.0.4"
2011 |
2012 | string.prototype.trimend@^1.0.4:
2013 | version "1.0.4"
2014 | resolved "https://registry.npmmirror.com/string.prototype.trimend/-/string.prototype.trimend-1.0.4.tgz#e75ae90c2942c63504686c18b287b4a0b1a45f80"
2015 | integrity sha512-y9xCjw1P23Awk8EvTpcyL2NIr1j7wJ39f+k6lvRnSMz+mz9CGz9NYPelDk42kOz6+ql8xjfK8oYzy3jAP5QU5A==
2016 | dependencies:
2017 | call-bind "^1.0.2"
2018 | define-properties "^1.1.3"
2019 |
2020 | string.prototype.trimstart@^1.0.4:
2021 | version "1.0.4"
2022 | resolved "https://registry.npmmirror.com/string.prototype.trimstart/-/string.prototype.trimstart-1.0.4.tgz#b36399af4ab2999b4c9c648bd7a3fb2bb26feeed"
2023 | integrity sha512-jh6e984OBfvxS50tdY2nRZnoC5/mLFKOREQfw8t5yytkoUsJRNxvI/E39qu1sD0OtWI3OC0XgKSmcWwziwYuZw==
2024 | dependencies:
2025 | call-bind "^1.0.2"
2026 | define-properties "^1.1.3"
2027 |
2028 | strip-ansi@^6.0.1:
2029 | version "6.0.1"
2030 | resolved "https://registry.npmmirror.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9"
2031 | integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==
2032 | dependencies:
2033 | ansi-regex "^5.0.1"
2034 |
2035 | strip-bom@^3.0.0:
2036 | version "3.0.0"
2037 | resolved "https://registry.npmmirror.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3"
2038 | integrity sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==
2039 |
2040 | strip-json-comments@^3.1.0, strip-json-comments@^3.1.1:
2041 | version "3.1.1"
2042 | resolved "https://registry.npmmirror.com/strip-json-comments/-/strip-json-comments-3.1.1.tgz#31f1281b3832630434831c310c01cccda8cbe006"
2043 | integrity sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==
2044 |
2045 | styled-jsx@5.0.1:
2046 | version "5.0.1"
2047 | resolved "https://registry.npmmirror.com/styled-jsx/-/styled-jsx-5.0.1.tgz#78fecbbad2bf95ce6cd981a08918ce4696f5fc80"
2048 | integrity sha512-+PIZ/6Uk40mphiQJJI1202b+/dYeTVd9ZnMPR80pgiWbjIwvN2zIp4r9et0BgqBuShh48I0gttPlAXA7WVvBxw==
2049 |
2050 | stylis@4.0.13:
2051 | version "4.0.13"
2052 | resolved "https://registry.npmmirror.com/stylis/-/stylis-4.0.13.tgz#f5db332e376d13cc84ecfe5dace9a2a51d954c91"
2053 | integrity sha512-xGPXiFVl4YED9Jh7Euv2V220mriG9u4B2TA6Ybjc1catrstKD2PpIdU3U0RKpkVBC2EhmL/F0sPCr9vrFTNRag==
2054 |
2055 | supports-color@^5.3.0:
2056 | version "5.5.0"
2057 | resolved "https://registry.npmmirror.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f"
2058 | integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==
2059 | dependencies:
2060 | has-flag "^3.0.0"
2061 |
2062 | supports-color@^7.1.0:
2063 | version "7.2.0"
2064 | resolved "https://registry.npmmirror.com/supports-color/-/supports-color-7.2.0.tgz#1b7dcdcb32b8138801b3e478ba6a51caa89648da"
2065 | integrity sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==
2066 | dependencies:
2067 | has-flag "^4.0.0"
2068 |
2069 | supports-preserve-symlinks-flag@^1.0.0:
2070 | version "1.0.0"
2071 | resolved "https://registry.npmmirror.com/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz#6eda4bd344a3c94aea376d4cc31bc77311039e09"
2072 | integrity sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==
2073 |
2074 | text-table@^0.2.0:
2075 | version "0.2.0"
2076 | resolved "https://registry.npmmirror.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4"
2077 | integrity sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==
2078 |
2079 | to-fast-properties@^2.0.0:
2080 | version "2.0.0"
2081 | resolved "https://registry.npmmirror.com/to-fast-properties/-/to-fast-properties-2.0.0.tgz#dc5e698cbd079265bc73e0377681a4e4e83f616e"
2082 | integrity sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==
2083 |
2084 | to-regex-range@^5.0.1:
2085 | version "5.0.1"
2086 | resolved "https://registry.npmmirror.com/to-regex-range/-/to-regex-range-5.0.1.tgz#1648c44aae7c8d988a326018ed72f5b4dd0392e4"
2087 | integrity sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==
2088 | dependencies:
2089 | is-number "^7.0.0"
2090 |
2091 | tsconfig-paths@^3.11.0, tsconfig-paths@^3.9.0:
2092 | version "3.14.1"
2093 | resolved "https://registry.npmmirror.com/tsconfig-paths/-/tsconfig-paths-3.14.1.tgz#ba0734599e8ea36c862798e920bcf163277b137a"
2094 | integrity sha512-fxDhWnFSLt3VuTwtvJt5fpwxBHg5AdKWMsgcPOOIilyjymcYVZoCQF8fvFRezCNfblEXmi+PcM1eYHeOAgXCOQ==
2095 | dependencies:
2096 | "@types/json5" "^0.0.29"
2097 | json5 "^1.0.1"
2098 | minimist "^1.2.6"
2099 | strip-bom "^3.0.0"
2100 |
2101 | tslib@^1.8.1:
2102 | version "1.14.1"
2103 | resolved "https://registry.npmmirror.com/tslib/-/tslib-1.14.1.tgz#cf2d38bdc34a134bcaf1091c41f6619e2f672d00"
2104 | integrity sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==
2105 |
2106 | tsutils@^3.21.0:
2107 | version "3.21.0"
2108 | resolved "https://registry.npmmirror.com/tsutils/-/tsutils-3.21.0.tgz#b48717d394cea6c1e096983eed58e9d61715b623"
2109 | integrity sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==
2110 | dependencies:
2111 | tslib "^1.8.1"
2112 |
2113 | type-check@^0.4.0, type-check@~0.4.0:
2114 | version "0.4.0"
2115 | resolved "https://registry.npmmirror.com/type-check/-/type-check-0.4.0.tgz#07b8203bfa7056c0657050e3ccd2c37730bab8f1"
2116 | integrity sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==
2117 | dependencies:
2118 | prelude-ls "^1.2.1"
2119 |
2120 | type-fest@^0.20.2:
2121 | version "0.20.2"
2122 | resolved "https://registry.npmmirror.com/type-fest/-/type-fest-0.20.2.tgz#1bf207f4b28f91583666cb5fbd327887301cd5f4"
2123 | integrity sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==
2124 |
2125 | typescript@4.6.3:
2126 | version "4.6.3"
2127 | resolved "https://registry.npmmirror.com/typescript/-/typescript-4.6.3.tgz#eefeafa6afdd31d725584c67a0eaba80f6fc6c6c"
2128 | integrity sha512-yNIatDa5iaofVozS/uQJEl3JRWLKKGJKh6Yaiv0GLGSuhpFJe7P3SbHZ8/yjAHRQwKRoA6YZqlfjXWmVzoVSMw==
2129 |
2130 | unbox-primitive@^1.0.1:
2131 | version "1.0.1"
2132 | resolved "https://registry.npmmirror.com/unbox-primitive/-/unbox-primitive-1.0.1.tgz#085e215625ec3162574dc8859abee78a59b14471"
2133 | integrity sha512-tZU/3NqK3dA5gpE1KtyiJUrEB0lxnGkMFHptJ7q6ewdZ8s12QrODwNbhIJStmJkd1QDXa1NRA8aF2A1zk/Ypyw==
2134 | dependencies:
2135 | function-bind "^1.1.1"
2136 | has-bigints "^1.0.1"
2137 | has-symbols "^1.0.2"
2138 | which-boxed-primitive "^1.0.2"
2139 |
2140 | uri-js@^4.2.2:
2141 | version "4.4.1"
2142 | resolved "https://registry.npmmirror.com/uri-js/-/uri-js-4.4.1.tgz#9b1a52595225859e55f669d928f88c6c57f2a77e"
2143 | integrity sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==
2144 | dependencies:
2145 | punycode "^2.1.0"
2146 |
2147 | v8-compile-cache@^2.0.3:
2148 | version "2.3.0"
2149 | resolved "https://registry.npmmirror.com/v8-compile-cache/-/v8-compile-cache-2.3.0.tgz#2de19618c66dc247dcfb6f99338035d8245a2cee"
2150 | integrity sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA==
2151 |
2152 | void-elements@3.1.0:
2153 | version "3.1.0"
2154 | resolved "https://registry.npmmirror.com/void-elements/-/void-elements-3.1.0.tgz#614f7fbf8d801f0bb5f0661f5b2f5785750e4f09"
2155 | integrity sha512-Dhxzh5HZuiHQhbvTW9AMetFfBHDMYpo23Uo9btPXgdYP+3T5S+p+jgNy7spra+veYhBP2dCSgxR/i2Y02h5/6w==
2156 |
2157 | which-boxed-primitive@^1.0.2:
2158 | version "1.0.2"
2159 | resolved "https://registry.npmmirror.com/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz#13757bc89b209b049fe5d86430e21cf40a89a8e6"
2160 | integrity sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==
2161 | dependencies:
2162 | is-bigint "^1.0.1"
2163 | is-boolean-object "^1.1.0"
2164 | is-number-object "^1.0.4"
2165 | is-string "^1.0.5"
2166 | is-symbol "^1.0.3"
2167 |
2168 | which@^2.0.1:
2169 | version "2.0.2"
2170 | resolved "https://registry.npmmirror.com/which/-/which-2.0.2.tgz#7c6a8dd0a636a0327e10b59c9286eee93f3f51b1"
2171 | integrity sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==
2172 | dependencies:
2173 | isexe "^2.0.0"
2174 |
2175 | word-wrap@^1.2.3:
2176 | version "1.2.3"
2177 | resolved "https://registry.npmmirror.com/word-wrap/-/word-wrap-1.2.3.tgz#610636f6b1f703891bd34771ccb17fb93b47079c"
2178 | integrity sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==
2179 |
2180 | wrappy@1:
2181 | version "1.0.2"
2182 | resolved "https://registry.npmmirror.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f"
2183 | integrity sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==
2184 |
2185 | yallist@^4.0.0:
2186 | version "4.0.0"
2187 | resolved "https://registry.npmmirror.com/yallist/-/yallist-4.0.0.tgz#9bb92790d9c0effec63be73519e11a35019a3a72"
2188 | integrity sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==
2189 |
2190 | yaml@^1.7.2:
2191 | version "1.10.2"
2192 | resolved "https://registry.npmmirror.com/yaml/-/yaml-1.10.2.tgz#2301c5ffbf12b467de8da2333a459e29e7920e4b"
2193 | integrity sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==
2194 |
--------------------------------------------------------------------------------