mirror of
https://github.com/KRTirtho/spotube.git
synced 2025-09-12 23:45:18 +00:00
Added maintainer & contributors card in About Page
This commit is contained in:
parent
1772d5751f
commit
92e667d24e
163
website/components/UserDetailedCard.tsx
Normal file
163
website/components/UserDetailedCard.tsx
Normal file
@ -0,0 +1,163 @@
|
|||||||
|
import {
|
||||||
|
Flex,
|
||||||
|
Box,
|
||||||
|
Icon,
|
||||||
|
chakra,
|
||||||
|
Image,
|
||||||
|
HStack,
|
||||||
|
IconButton,
|
||||||
|
Link,
|
||||||
|
CircularProgress,
|
||||||
|
} from "@chakra-ui/react";
|
||||||
|
import { MdEmail, MdLocationOn } from "react-icons/md";
|
||||||
|
import { BsFillBriefcaseFill } from "react-icons/bs";
|
||||||
|
import { FC } from "react";
|
||||||
|
import { FaGithub } from "react-icons/fa";
|
||||||
|
import { FiTwitter } from "react-icons/fi";
|
||||||
|
import { octokit } from "configurations/ocotokit";
|
||||||
|
import useSWR from "swr";
|
||||||
|
|
||||||
|
interface UserDetailedCardProps {
|
||||||
|
username: string;
|
||||||
|
}
|
||||||
|
|
||||||
|
const UserDetailedCard: FC<UserDetailedCardProps> = ({ username }) => {
|
||||||
|
const { data } = useSWR(`user-${username}}`, () =>
|
||||||
|
octokit.users.getByUsername({ username })
|
||||||
|
);
|
||||||
|
|
||||||
|
if (!data) {
|
||||||
|
return <CircularProgress />;
|
||||||
|
}
|
||||||
|
|
||||||
|
return (
|
||||||
|
<Box
|
||||||
|
w="xs"
|
||||||
|
bg="white"
|
||||||
|
_dark={{
|
||||||
|
bg: "gray.800",
|
||||||
|
}}
|
||||||
|
shadow="xl"
|
||||||
|
rounded="lg"
|
||||||
|
overflow="hidden"
|
||||||
|
>
|
||||||
|
<Image
|
||||||
|
w="full"
|
||||||
|
h={56}
|
||||||
|
fit="cover"
|
||||||
|
objectPosition="center"
|
||||||
|
src={data.data.avatar_url}
|
||||||
|
alt="avatar"
|
||||||
|
/>
|
||||||
|
|
||||||
|
<Flex
|
||||||
|
alignItems="center"
|
||||||
|
px={6}
|
||||||
|
py={3}
|
||||||
|
bg="gray.900"
|
||||||
|
_light={{ bg: "gray.50" }}
|
||||||
|
>
|
||||||
|
<span>⚡</span>
|
||||||
|
<chakra.h1 mx={3} fontWeight="bold" fontSize="lg">
|
||||||
|
Swinging
|
||||||
|
</chakra.h1>
|
||||||
|
</Flex>
|
||||||
|
|
||||||
|
<Box py={4} px={6}>
|
||||||
|
<chakra.h1
|
||||||
|
fontSize="xl"
|
||||||
|
fontWeight="bold"
|
||||||
|
color="gray.800"
|
||||||
|
_dark={{
|
||||||
|
color: "white",
|
||||||
|
}}
|
||||||
|
>
|
||||||
|
{data.data.name ?? data.data.login}
|
||||||
|
</chakra.h1>
|
||||||
|
|
||||||
|
<chakra.p
|
||||||
|
py={2}
|
||||||
|
color="gray.700"
|
||||||
|
_dark={{
|
||||||
|
color: "gray.400",
|
||||||
|
}}
|
||||||
|
>
|
||||||
|
{data.data.bio}
|
||||||
|
</chakra.p>
|
||||||
|
|
||||||
|
{data.data.company && (
|
||||||
|
<Flex
|
||||||
|
alignItems="center"
|
||||||
|
mt={4}
|
||||||
|
color="gray.700"
|
||||||
|
_dark={{
|
||||||
|
color: "gray.200",
|
||||||
|
}}
|
||||||
|
>
|
||||||
|
<Icon as={BsFillBriefcaseFill} h={6} w={6} mr={2} />
|
||||||
|
|
||||||
|
<chakra.h1 px={2} fontSize="sm">
|
||||||
|
{data.data.company}
|
||||||
|
</chakra.h1>
|
||||||
|
</Flex>
|
||||||
|
)}
|
||||||
|
|
||||||
|
{data.data.location && (
|
||||||
|
<Flex
|
||||||
|
alignItems="center"
|
||||||
|
mt={4}
|
||||||
|
color="gray.700"
|
||||||
|
_dark={{
|
||||||
|
color: "gray.200",
|
||||||
|
}}
|
||||||
|
>
|
||||||
|
<Icon as={MdLocationOn} h={6} w={6} mr={2} />
|
||||||
|
|
||||||
|
<chakra.h1 px={2} fontSize="sm">
|
||||||
|
{data.data.location}
|
||||||
|
</chakra.h1>
|
||||||
|
</Flex>
|
||||||
|
)}
|
||||||
|
{data.data.email && (
|
||||||
|
<Flex
|
||||||
|
alignItems="center"
|
||||||
|
mt={4}
|
||||||
|
color="gray.700"
|
||||||
|
_dark={{
|
||||||
|
color: "gray.200",
|
||||||
|
}}
|
||||||
|
>
|
||||||
|
<Icon as={MdEmail} h={6} w={6} mr={2} />
|
||||||
|
<chakra.h1 px={2} fontSize="sm">
|
||||||
|
{data.data.email}
|
||||||
|
</chakra.h1>
|
||||||
|
</Flex>
|
||||||
|
)}
|
||||||
|
<HStack justify="center" pt="4">
|
||||||
|
<IconButton
|
||||||
|
colorScheme="gray"
|
||||||
|
as={Link}
|
||||||
|
aria-label="Github Link"
|
||||||
|
href={data.data.html_url}
|
||||||
|
target="_blank"
|
||||||
|
icon={<FaGithub />}
|
||||||
|
variant="link"
|
||||||
|
/>
|
||||||
|
{data.data.twitter_username && (
|
||||||
|
<IconButton
|
||||||
|
colorScheme="gray"
|
||||||
|
as={Link}
|
||||||
|
aria-label="Twitter Link"
|
||||||
|
href={`https://twitter.com/${data.data.twitter_username}`}
|
||||||
|
target="_blank"
|
||||||
|
icon={<FiTwitter />}
|
||||||
|
variant="link"
|
||||||
|
/>
|
||||||
|
)}
|
||||||
|
</HStack>
|
||||||
|
</Box>
|
||||||
|
</Box>
|
||||||
|
);
|
||||||
|
};
|
||||||
|
|
||||||
|
export default UserDetailedCard;
|
3
website/configurations/ocotokit.ts
Normal file
3
website/configurations/ocotokit.ts
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
import { Octokit } from "@octokit/rest";
|
||||||
|
|
||||||
|
export const octokit: Octokit = new Octokit();
|
@ -9,18 +9,23 @@
|
|||||||
"lint": "next lint"
|
"lint": "next lint"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
|
"@babel/core": "^7.18.6",
|
||||||
"@chakra-ui/react": "^2.2.4",
|
"@chakra-ui/react": "^2.2.4",
|
||||||
|
"@chakra-ui/system": "^2.2.2",
|
||||||
"@chakra-ui/theme-tools": "^2.0.5",
|
"@chakra-ui/theme-tools": "^2.0.5",
|
||||||
"@emotion/react": "^11",
|
"@emotion/react": "^11",
|
||||||
"@emotion/styled": "^11",
|
"@emotion/styled": "^11",
|
||||||
"@octokit/rest": "^19.0.3",
|
"@octokit/rest": "^19.0.3",
|
||||||
|
"@types/progress": "^2.0.5",
|
||||||
"framer-motion": "^6",
|
"framer-motion": "^6",
|
||||||
"next": "12.2.2",
|
"next": "12.2.2",
|
||||||
|
"nextjs-progressbar": "^0.0.14",
|
||||||
"react": "18.2.0",
|
"react": "18.2.0",
|
||||||
"react-dom": "18.2.0",
|
"react-dom": "18.2.0",
|
||||||
"react-icons": "^4.4.0",
|
"react-icons": "^4.4.0",
|
||||||
"react-markdown": "^8.0.3",
|
"react-markdown": "^8.0.3",
|
||||||
"remark-gfm": "^3.0.1"
|
"remark-gfm": "^3.0.1",
|
||||||
|
"swr": "^1.3.0"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@types/node": "18.0.5",
|
"@types/node": "18.0.5",
|
||||||
|
@ -14,6 +14,7 @@ import { useRouter } from "next/router";
|
|||||||
import { useEffect } from "react";
|
import { useEffect } from "react";
|
||||||
import AdDetector from "components/AdDetector";
|
import AdDetector from "components/AdDetector";
|
||||||
import Footer from "components/Footer";
|
import Footer from "components/Footer";
|
||||||
|
import NextNProgress from "nextjs-progressbar";
|
||||||
|
|
||||||
const customTheme = extendTheme(
|
const customTheme = extendTheme(
|
||||||
{
|
{
|
||||||
@ -115,6 +116,7 @@ function MyApp({ Component, pageProps }: AppProps) {
|
|||||||
<title>Spotube</title>
|
<title>Spotube</title>
|
||||||
</Head>
|
</Head>
|
||||||
<AdDetector>
|
<AdDetector>
|
||||||
|
<NextNProgress color="#45cd74" />
|
||||||
<Navbar />
|
<Navbar />
|
||||||
<Component {...pageProps} />
|
<Component {...pageProps} />
|
||||||
<Footer />
|
<Footer />
|
||||||
|
66
website/pages/about/index.tsx
Normal file
66
website/pages/about/index.tsx
Normal file
@ -0,0 +1,66 @@
|
|||||||
|
import {
|
||||||
|
Center,
|
||||||
|
CircularProgress,
|
||||||
|
Heading,
|
||||||
|
HStack,
|
||||||
|
VStack,
|
||||||
|
} from "@chakra-ui/react";
|
||||||
|
import UserDetailedCard from "components/UserDetailedCard";
|
||||||
|
import { octokit } from "configurations/ocotokit";
|
||||||
|
import useSwr from "swr";
|
||||||
|
|
||||||
|
const maintainers = ["KRTirtho", "RustyApple"];
|
||||||
|
|
||||||
|
const About = () => {
|
||||||
|
const { data } = useSwr("contributors", () =>
|
||||||
|
octokit.repos.listContributors({
|
||||||
|
owner: "KRTirtho",
|
||||||
|
repo: "spotube",
|
||||||
|
})
|
||||||
|
);
|
||||||
|
|
||||||
|
return (
|
||||||
|
<VStack my="20" mx="10" >
|
||||||
|
<Heading>Maintainers</Heading>
|
||||||
|
|
||||||
|
<HStack pb="20" gap="40px" wrap="wrap" justify="center" align="start">
|
||||||
|
{data ? (
|
||||||
|
data.data.map((contributor) => {
|
||||||
|
if (!maintainers.includes(contributor.login!)) return;
|
||||||
|
return (
|
||||||
|
<UserDetailedCard
|
||||||
|
key={contributor.id}
|
||||||
|
username={contributor.login!}
|
||||||
|
/>
|
||||||
|
);
|
||||||
|
})
|
||||||
|
) : (
|
||||||
|
<Center>
|
||||||
|
<CircularProgress />
|
||||||
|
</Center>
|
||||||
|
)}
|
||||||
|
</HStack>
|
||||||
|
|
||||||
|
<Heading>Valuable Code Contributors💝</Heading>
|
||||||
|
<HStack gap="40px" wrap="wrap" justify="center" align="start">
|
||||||
|
{data ? (
|
||||||
|
data.data.map((contributor) => {
|
||||||
|
if (maintainers.includes(contributor.login!)) return;
|
||||||
|
return (
|
||||||
|
<UserDetailedCard
|
||||||
|
key={contributor.id}
|
||||||
|
username={contributor.login!}
|
||||||
|
/>
|
||||||
|
);
|
||||||
|
})
|
||||||
|
) : (
|
||||||
|
<Center>
|
||||||
|
<CircularProgress />
|
||||||
|
</Center>
|
||||||
|
)}
|
||||||
|
</HStack>
|
||||||
|
</VStack>
|
||||||
|
);
|
||||||
|
};
|
||||||
|
|
||||||
|
export default About;
|
@ -18,6 +18,7 @@ import gfm from "remark-gfm";
|
|||||||
import { DisplayAd, InFeedAd } from "components/special";
|
import { DisplayAd, InFeedAd } from "components/special";
|
||||||
import { GetServerSideProps, NextPage } from "next";
|
import { GetServerSideProps, NextPage } from "next";
|
||||||
import { MarkdownComponentDefs } from "misc/MarkdownComponentDefs";
|
import { MarkdownComponentDefs } from "misc/MarkdownComponentDefs";
|
||||||
|
import { octokit } from "configurations/ocotokit";
|
||||||
|
|
||||||
enum AssetTypes {
|
enum AssetTypes {
|
||||||
sums = "sums",
|
sums = "sums",
|
||||||
@ -27,8 +28,6 @@ enum AssetTypes {
|
|||||||
android = "android",
|
android = "android",
|
||||||
}
|
}
|
||||||
|
|
||||||
export const octokit: Octokit = new Octokit();
|
|
||||||
|
|
||||||
type ReleaseResponse = {
|
type ReleaseResponse = {
|
||||||
id: number;
|
id: number;
|
||||||
body: string | null | undefined;
|
body: string | null | undefined;
|
||||||
|
@ -1,12 +1,15 @@
|
|||||||
lockfileVersion: 5.4
|
lockfileVersion: 5.4
|
||||||
|
|
||||||
specifiers:
|
specifiers:
|
||||||
|
'@babel/core': ^7.18.6
|
||||||
'@chakra-ui/react': ^2.2.4
|
'@chakra-ui/react': ^2.2.4
|
||||||
|
'@chakra-ui/system': ^2.2.2
|
||||||
'@chakra-ui/theme-tools': ^2.0.5
|
'@chakra-ui/theme-tools': ^2.0.5
|
||||||
'@emotion/react': ^11
|
'@emotion/react': ^11
|
||||||
'@emotion/styled': ^11
|
'@emotion/styled': ^11
|
||||||
'@octokit/rest': ^19.0.3
|
'@octokit/rest': ^19.0.3
|
||||||
'@types/node': 18.0.5
|
'@types/node': 18.0.5
|
||||||
|
'@types/progress': ^2.0.5
|
||||||
'@types/react': 18.0.15
|
'@types/react': 18.0.15
|
||||||
'@types/react-dom': 18.0.6
|
'@types/react-dom': 18.0.6
|
||||||
eslint: 8.20.0
|
eslint: 8.20.0
|
||||||
@ -14,26 +17,33 @@ specifiers:
|
|||||||
eslint-config-prettier: ^8.5.0
|
eslint-config-prettier: ^8.5.0
|
||||||
framer-motion: ^6
|
framer-motion: ^6
|
||||||
next: 12.2.2
|
next: 12.2.2
|
||||||
|
nextjs-progressbar: ^0.0.14
|
||||||
react: 18.2.0
|
react: 18.2.0
|
||||||
react-dom: 18.2.0
|
react-dom: 18.2.0
|
||||||
react-icons: ^4.4.0
|
react-icons: ^4.4.0
|
||||||
react-markdown: ^8.0.3
|
react-markdown: ^8.0.3
|
||||||
remark-gfm: ^3.0.1
|
remark-gfm: ^3.0.1
|
||||||
|
swr: ^1.3.0
|
||||||
typescript: 4.7.4
|
typescript: 4.7.4
|
||||||
|
|
||||||
dependencies:
|
dependencies:
|
||||||
|
'@babel/core': 7.18.6
|
||||||
'@chakra-ui/react': 2.2.4_tij2njokttso6734ktuzwjh5a4
|
'@chakra-ui/react': 2.2.4_tij2njokttso6734ktuzwjh5a4
|
||||||
'@chakra-ui/theme-tools': 2.0.5
|
'@chakra-ui/system': 2.2.2_fdnqutfacy7v3gmlcm66flps3q
|
||||||
'@emotion/react': 11.9.3_3hx2ussxxho4jajbwrd6gq34qe
|
'@chakra-ui/theme-tools': 2.0.5_@chakra-ui+system@2.2.2
|
||||||
'@emotion/styled': 11.9.3_t4da3hocwt6ljcf3o6em4qwqzm
|
'@emotion/react': 11.9.3_dlcr7kzjh265l7kenqxjsvuiz4
|
||||||
|
'@emotion/styled': 11.9.3_xorl7rqfpn4gtnla4dfecagcw4
|
||||||
'@octokit/rest': 19.0.3
|
'@octokit/rest': 19.0.3
|
||||||
|
'@types/progress': 2.0.5
|
||||||
framer-motion: 6.5.1_biqbaboplfbrettd7655fr4n2y
|
framer-motion: 6.5.1_biqbaboplfbrettd7655fr4n2y
|
||||||
next: 12.2.2_biqbaboplfbrettd7655fr4n2y
|
next: 12.2.2_beenoklgwfttvph5dgxj7na7aq
|
||||||
|
nextjs-progressbar: 0.0.14_next@12.2.2+react@18.2.0
|
||||||
react: 18.2.0
|
react: 18.2.0
|
||||||
react-dom: 18.2.0_react@18.2.0
|
react-dom: 18.2.0_react@18.2.0
|
||||||
react-icons: 4.4.0_react@18.2.0
|
react-icons: 4.4.0_react@18.2.0
|
||||||
react-markdown: 8.0.3_3hx2ussxxho4jajbwrd6gq34qe
|
react-markdown: 8.0.3_3hx2ussxxho4jajbwrd6gq34qe
|
||||||
remark-gfm: 3.0.1
|
remark-gfm: 3.0.1
|
||||||
|
swr: 1.3.0_react@18.2.0
|
||||||
|
|
||||||
devDependencies:
|
devDependencies:
|
||||||
'@types/node': 18.0.5
|
'@types/node': 18.0.5
|
||||||
@ -46,6 +56,14 @@ devDependencies:
|
|||||||
|
|
||||||
packages:
|
packages:
|
||||||
|
|
||||||
|
/@ampproject/remapping/2.2.0:
|
||||||
|
resolution: {integrity: sha512-qRmjj8nj9qmLTQXXmaR1cck3UXSRMPrbsLJAasZpF+t3riI71BXed5ebIOYwQntykeZuhjsdweEc9BxH5Jc26w==}
|
||||||
|
engines: {node: '>=6.0.0'}
|
||||||
|
dependencies:
|
||||||
|
'@jridgewell/gen-mapping': 0.1.1
|
||||||
|
'@jridgewell/trace-mapping': 0.3.14
|
||||||
|
dev: false
|
||||||
|
|
||||||
/@babel/code-frame/7.18.6:
|
/@babel/code-frame/7.18.6:
|
||||||
resolution: {integrity: sha512-TDCmlK5eOvH+eH7cdAFlNXeVJqWIQ7gW9tY1GJIpUtFb6CmjVyq2VM3u71bOyR8CRihcCgMUYoDNyLXao3+70Q==}
|
resolution: {integrity: sha512-TDCmlK5eOvH+eH7cdAFlNXeVJqWIQ7gW9tY1GJIpUtFb6CmjVyq2VM3u71bOyR8CRihcCgMUYoDNyLXao3+70Q==}
|
||||||
engines: {node: '>=6.9.0'}
|
engines: {node: '>=6.9.0'}
|
||||||
@ -53,6 +71,76 @@ packages:
|
|||||||
'@babel/highlight': 7.18.6
|
'@babel/highlight': 7.18.6
|
||||||
dev: false
|
dev: false
|
||||||
|
|
||||||
|
/@babel/compat-data/7.18.8:
|
||||||
|
resolution: {integrity: sha512-HSmX4WZPPK3FUxYp7g2T6EyO8j96HlZJlxmKPSh6KAcqwyDrfx7hKjXpAW/0FhFfTJsR0Yt4lAjLI2coMptIHQ==}
|
||||||
|
engines: {node: '>=6.9.0'}
|
||||||
|
dev: false
|
||||||
|
|
||||||
|
/@babel/core/7.18.6:
|
||||||
|
resolution: {integrity: sha512-cQbWBpxcbbs/IUredIPkHiAGULLV8iwgNRMFzvbhEXISp4f3rUUXE5+TIw6KwUWUR3DwyI6gmBRnmAtYaWehwQ==}
|
||||||
|
engines: {node: '>=6.9.0'}
|
||||||
|
dependencies:
|
||||||
|
'@ampproject/remapping': 2.2.0
|
||||||
|
'@babel/code-frame': 7.18.6
|
||||||
|
'@babel/generator': 7.18.7
|
||||||
|
'@babel/helper-compilation-targets': 7.18.6_@babel+core@7.18.6
|
||||||
|
'@babel/helper-module-transforms': 7.18.8
|
||||||
|
'@babel/helpers': 7.18.6
|
||||||
|
'@babel/parser': 7.18.8
|
||||||
|
'@babel/template': 7.18.6
|
||||||
|
'@babel/traverse': 7.18.8
|
||||||
|
'@babel/types': 7.18.8
|
||||||
|
convert-source-map: 1.8.0
|
||||||
|
debug: 4.3.4
|
||||||
|
gensync: 1.0.0-beta.2
|
||||||
|
json5: 2.2.1
|
||||||
|
semver: 6.3.0
|
||||||
|
transitivePeerDependencies:
|
||||||
|
- supports-color
|
||||||
|
dev: false
|
||||||
|
|
||||||
|
/@babel/generator/7.18.7:
|
||||||
|
resolution: {integrity: sha512-shck+7VLlY72a2w9c3zYWuE1pwOKEiQHV7GTUbSnhyl5eu3i04t30tBY82ZRWrDfo3gkakCFtevExnxbkf2a3A==}
|
||||||
|
engines: {node: '>=6.9.0'}
|
||||||
|
dependencies:
|
||||||
|
'@babel/types': 7.18.8
|
||||||
|
'@jridgewell/gen-mapping': 0.3.2
|
||||||
|
jsesc: 2.5.2
|
||||||
|
dev: false
|
||||||
|
|
||||||
|
/@babel/helper-compilation-targets/7.18.6_@babel+core@7.18.6:
|
||||||
|
resolution: {integrity: sha512-vFjbfhNCzqdeAtZflUFrG5YIFqGTqsctrtkZ1D/NB0mDW9TwW3GmmUepYY4G9wCET5rY5ugz4OGTcLd614IzQg==}
|
||||||
|
engines: {node: '>=6.9.0'}
|
||||||
|
peerDependencies:
|
||||||
|
'@babel/core': ^7.0.0
|
||||||
|
dependencies:
|
||||||
|
'@babel/compat-data': 7.18.8
|
||||||
|
'@babel/core': 7.18.6
|
||||||
|
'@babel/helper-validator-option': 7.18.6
|
||||||
|
browserslist: 4.21.2
|
||||||
|
semver: 6.3.0
|
||||||
|
dev: false
|
||||||
|
|
||||||
|
/@babel/helper-environment-visitor/7.18.6:
|
||||||
|
resolution: {integrity: sha512-8n6gSfn2baOY+qlp+VSzsosjCVGFqWKmDF0cCWOybh52Dw3SEyoWR1KrhMJASjLwIEkkAufZ0xvr+SxLHSpy2Q==}
|
||||||
|
engines: {node: '>=6.9.0'}
|
||||||
|
dev: false
|
||||||
|
|
||||||
|
/@babel/helper-function-name/7.18.6:
|
||||||
|
resolution: {integrity: sha512-0mWMxV1aC97dhjCah5U5Ua7668r5ZmSC2DLfH2EZnf9c3/dHZKiFa5pRLMH5tjSl471tY6496ZWk/kjNONBxhw==}
|
||||||
|
engines: {node: '>=6.9.0'}
|
||||||
|
dependencies:
|
||||||
|
'@babel/template': 7.18.6
|
||||||
|
'@babel/types': 7.18.8
|
||||||
|
dev: false
|
||||||
|
|
||||||
|
/@babel/helper-hoist-variables/7.18.6:
|
||||||
|
resolution: {integrity: sha512-UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q==}
|
||||||
|
engines: {node: '>=6.9.0'}
|
||||||
|
dependencies:
|
||||||
|
'@babel/types': 7.18.8
|
||||||
|
dev: false
|
||||||
|
|
||||||
/@babel/helper-module-imports/7.18.6:
|
/@babel/helper-module-imports/7.18.6:
|
||||||
resolution: {integrity: sha512-0NFvs3VkuSYbFi1x2Vd6tKrywq+z/cLeYC/RJNFrIX/30Bf5aiGYbtvGXolEktzJH8o5E5KJ3tT+nkxuuZFVlA==}
|
resolution: {integrity: sha512-0NFvs3VkuSYbFi1x2Vd6tKrywq+z/cLeYC/RJNFrIX/30Bf5aiGYbtvGXolEktzJH8o5E5KJ3tT+nkxuuZFVlA==}
|
||||||
engines: {node: '>=6.9.0'}
|
engines: {node: '>=6.9.0'}
|
||||||
@ -60,16 +148,62 @@ packages:
|
|||||||
'@babel/types': 7.18.8
|
'@babel/types': 7.18.8
|
||||||
dev: false
|
dev: false
|
||||||
|
|
||||||
|
/@babel/helper-module-transforms/7.18.8:
|
||||||
|
resolution: {integrity: sha512-che3jvZwIcZxrwh63VfnFTUzcAM9v/lznYkkRxIBGMPt1SudOKHAEec0SIRCfiuIzTcF7VGj/CaTT6gY4eWxvA==}
|
||||||
|
engines: {node: '>=6.9.0'}
|
||||||
|
dependencies:
|
||||||
|
'@babel/helper-environment-visitor': 7.18.6
|
||||||
|
'@babel/helper-module-imports': 7.18.6
|
||||||
|
'@babel/helper-simple-access': 7.18.6
|
||||||
|
'@babel/helper-split-export-declaration': 7.18.6
|
||||||
|
'@babel/helper-validator-identifier': 7.18.6
|
||||||
|
'@babel/template': 7.18.6
|
||||||
|
'@babel/traverse': 7.18.8
|
||||||
|
'@babel/types': 7.18.8
|
||||||
|
transitivePeerDependencies:
|
||||||
|
- supports-color
|
||||||
|
dev: false
|
||||||
|
|
||||||
/@babel/helper-plugin-utils/7.18.6:
|
/@babel/helper-plugin-utils/7.18.6:
|
||||||
resolution: {integrity: sha512-gvZnm1YAAxh13eJdkb9EWHBnF3eAub3XTLCZEehHT2kWxiKVRL64+ae5Y6Ivne0mVHmMYKT+xWgZO+gQhuLUBg==}
|
resolution: {integrity: sha512-gvZnm1YAAxh13eJdkb9EWHBnF3eAub3XTLCZEehHT2kWxiKVRL64+ae5Y6Ivne0mVHmMYKT+xWgZO+gQhuLUBg==}
|
||||||
engines: {node: '>=6.9.0'}
|
engines: {node: '>=6.9.0'}
|
||||||
dev: false
|
dev: false
|
||||||
|
|
||||||
|
/@babel/helper-simple-access/7.18.6:
|
||||||
|
resolution: {integrity: sha512-iNpIgTgyAvDQpDj76POqg+YEt8fPxx3yaNBg3S30dxNKm2SWfYhD0TGrK/Eu9wHpUW63VQU894TsTg+GLbUa1g==}
|
||||||
|
engines: {node: '>=6.9.0'}
|
||||||
|
dependencies:
|
||||||
|
'@babel/types': 7.18.8
|
||||||
|
dev: false
|
||||||
|
|
||||||
|
/@babel/helper-split-export-declaration/7.18.6:
|
||||||
|
resolution: {integrity: sha512-bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA==}
|
||||||
|
engines: {node: '>=6.9.0'}
|
||||||
|
dependencies:
|
||||||
|
'@babel/types': 7.18.8
|
||||||
|
dev: false
|
||||||
|
|
||||||
/@babel/helper-validator-identifier/7.18.6:
|
/@babel/helper-validator-identifier/7.18.6:
|
||||||
resolution: {integrity: sha512-MmetCkz9ej86nJQV+sFCxoGGrUbU3q02kgLciwkrt9QqEB7cP39oKEY0PakknEO0Gu20SskMRi+AYZ3b1TpN9g==}
|
resolution: {integrity: sha512-MmetCkz9ej86nJQV+sFCxoGGrUbU3q02kgLciwkrt9QqEB7cP39oKEY0PakknEO0Gu20SskMRi+AYZ3b1TpN9g==}
|
||||||
engines: {node: '>=6.9.0'}
|
engines: {node: '>=6.9.0'}
|
||||||
dev: false
|
dev: false
|
||||||
|
|
||||||
|
/@babel/helper-validator-option/7.18.6:
|
||||||
|
resolution: {integrity: sha512-XO7gESt5ouv/LRJdrVjkShckw6STTaB7l9BrpBaAHDeF5YZT+01PCwmR0SJHnkW6i8OwW/EVWRShfi4j2x+KQw==}
|
||||||
|
engines: {node: '>=6.9.0'}
|
||||||
|
dev: false
|
||||||
|
|
||||||
|
/@babel/helpers/7.18.6:
|
||||||
|
resolution: {integrity: sha512-vzSiiqbQOghPngUYt/zWGvK3LAsPhz55vc9XNN0xAl2gV4ieShI2OQli5duxWHD+72PZPTKAcfcZDE1Cwc5zsQ==}
|
||||||
|
engines: {node: '>=6.9.0'}
|
||||||
|
dependencies:
|
||||||
|
'@babel/template': 7.18.6
|
||||||
|
'@babel/traverse': 7.18.8
|
||||||
|
'@babel/types': 7.18.8
|
||||||
|
transitivePeerDependencies:
|
||||||
|
- supports-color
|
||||||
|
dev: false
|
||||||
|
|
||||||
/@babel/highlight/7.18.6:
|
/@babel/highlight/7.18.6:
|
||||||
resolution: {integrity: sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g==}
|
resolution: {integrity: sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g==}
|
||||||
engines: {node: '>=6.9.0'}
|
engines: {node: '>=6.9.0'}
|
||||||
@ -79,12 +213,21 @@ packages:
|
|||||||
js-tokens: 4.0.0
|
js-tokens: 4.0.0
|
||||||
dev: false
|
dev: false
|
||||||
|
|
||||||
/@babel/plugin-syntax-jsx/7.18.6:
|
/@babel/parser/7.18.8:
|
||||||
|
resolution: {integrity: sha512-RSKRfYX20dyH+elbJK2uqAkVyucL+xXzhqlMD5/ZXx+dAAwpyB7HsvnHe/ZUGOF+xLr5Wx9/JoXVTj6BQE2/oA==}
|
||||||
|
engines: {node: '>=6.0.0'}
|
||||||
|
hasBin: true
|
||||||
|
dependencies:
|
||||||
|
'@babel/types': 7.18.8
|
||||||
|
dev: false
|
||||||
|
|
||||||
|
/@babel/plugin-syntax-jsx/7.18.6_@babel+core@7.18.6:
|
||||||
resolution: {integrity: sha512-6mmljtAedFGTWu2p/8WIORGwy+61PLgOMPOdazc7YoJ9ZCWUyFy3A6CpPkRKLKD1ToAesxX8KGEViAiLo9N+7Q==}
|
resolution: {integrity: sha512-6mmljtAedFGTWu2p/8WIORGwy+61PLgOMPOdazc7YoJ9ZCWUyFy3A6CpPkRKLKD1ToAesxX8KGEViAiLo9N+7Q==}
|
||||||
engines: {node: '>=6.9.0'}
|
engines: {node: '>=6.9.0'}
|
||||||
peerDependencies:
|
peerDependencies:
|
||||||
'@babel/core': ^7.0.0-0
|
'@babel/core': ^7.0.0-0
|
||||||
dependencies:
|
dependencies:
|
||||||
|
'@babel/core': 7.18.6
|
||||||
'@babel/helper-plugin-utils': 7.18.6
|
'@babel/helper-plugin-utils': 7.18.6
|
||||||
dev: false
|
dev: false
|
||||||
|
|
||||||
@ -102,6 +245,33 @@ packages:
|
|||||||
dependencies:
|
dependencies:
|
||||||
regenerator-runtime: 0.13.9
|
regenerator-runtime: 0.13.9
|
||||||
|
|
||||||
|
/@babel/template/7.18.6:
|
||||||
|
resolution: {integrity: sha512-JoDWzPe+wgBsTTgdnIma3iHNFC7YVJoPssVBDjiHfNlyt4YcunDtcDOUmfVDfCK5MfdsaIoX9PkijPhjH3nYUw==}
|
||||||
|
engines: {node: '>=6.9.0'}
|
||||||
|
dependencies:
|
||||||
|
'@babel/code-frame': 7.18.6
|
||||||
|
'@babel/parser': 7.18.8
|
||||||
|
'@babel/types': 7.18.8
|
||||||
|
dev: false
|
||||||
|
|
||||||
|
/@babel/traverse/7.18.8:
|
||||||
|
resolution: {integrity: sha512-UNg/AcSySJYR/+mIcJQDCv00T+AqRO7j/ZEJLzpaYtgM48rMg5MnkJgyNqkzo88+p4tfRvZJCEiwwfG6h4jkRg==}
|
||||||
|
engines: {node: '>=6.9.0'}
|
||||||
|
dependencies:
|
||||||
|
'@babel/code-frame': 7.18.6
|
||||||
|
'@babel/generator': 7.18.7
|
||||||
|
'@babel/helper-environment-visitor': 7.18.6
|
||||||
|
'@babel/helper-function-name': 7.18.6
|
||||||
|
'@babel/helper-hoist-variables': 7.18.6
|
||||||
|
'@babel/helper-split-export-declaration': 7.18.6
|
||||||
|
'@babel/parser': 7.18.8
|
||||||
|
'@babel/types': 7.18.8
|
||||||
|
debug: 4.3.4
|
||||||
|
globals: 11.12.0
|
||||||
|
transitivePeerDependencies:
|
||||||
|
- supports-color
|
||||||
|
dev: false
|
||||||
|
|
||||||
/@babel/types/7.18.8:
|
/@babel/types/7.18.8:
|
||||||
resolution: {integrity: sha512-qwpdsmraq0aJ3osLJRApsc2ouSJCdnMeZwB0DhbtHAtRpZNZCdlbRnHIgcRKzdE1g0iOGg644fzjOBcdOz9cPw==}
|
resolution: {integrity: sha512-qwpdsmraq0aJ3osLJRApsc2ouSJCdnMeZwB0DhbtHAtRpZNZCdlbRnHIgcRKzdE1g0iOGg644fzjOBcdOz9cPw==}
|
||||||
engines: {node: '>=6.9.0'}
|
engines: {node: '>=6.9.0'}
|
||||||
@ -267,7 +437,7 @@ packages:
|
|||||||
'@emotion/react': '>=10.0.35'
|
'@emotion/react': '>=10.0.35'
|
||||||
react: '>=18'
|
react: '>=18'
|
||||||
dependencies:
|
dependencies:
|
||||||
'@emotion/react': 11.9.3_3hx2ussxxho4jajbwrd6gq34qe
|
'@emotion/react': 11.9.3_dlcr7kzjh265l7kenqxjsvuiz4
|
||||||
react: 18.2.0
|
react: 18.2.0
|
||||||
dev: false
|
dev: false
|
||||||
|
|
||||||
@ -542,8 +712,8 @@ packages:
|
|||||||
'@chakra-ui/react-env': 2.0.4_react@18.2.0
|
'@chakra-ui/react-env': 2.0.4_react@18.2.0
|
||||||
'@chakra-ui/system': 2.2.2_fdnqutfacy7v3gmlcm66flps3q
|
'@chakra-ui/system': 2.2.2_fdnqutfacy7v3gmlcm66flps3q
|
||||||
'@chakra-ui/utils': 2.0.4
|
'@chakra-ui/utils': 2.0.4
|
||||||
'@emotion/react': 11.9.3_3hx2ussxxho4jajbwrd6gq34qe
|
'@emotion/react': 11.9.3_dlcr7kzjh265l7kenqxjsvuiz4
|
||||||
'@emotion/styled': 11.9.3_t4da3hocwt6ljcf3o6em4qwqzm
|
'@emotion/styled': 11.9.3_xorl7rqfpn4gtnla4dfecagcw4
|
||||||
react: 18.2.0
|
react: 18.2.0
|
||||||
react-dom: 18.2.0_react@18.2.0
|
react-dom: 18.2.0_react@18.2.0
|
||||||
dev: false
|
dev: false
|
||||||
@ -638,8 +808,8 @@ packages:
|
|||||||
'@chakra-ui/transition': 2.0.4_s2wzvri4ojre7yvvetwrt2nhzi
|
'@chakra-ui/transition': 2.0.4_s2wzvri4ojre7yvvetwrt2nhzi
|
||||||
'@chakra-ui/utils': 2.0.4
|
'@chakra-ui/utils': 2.0.4
|
||||||
'@chakra-ui/visually-hidden': 2.0.4_yvhl5ql2jypczm6naccxme2hbi
|
'@chakra-ui/visually-hidden': 2.0.4_yvhl5ql2jypczm6naccxme2hbi
|
||||||
'@emotion/react': 11.9.3_3hx2ussxxho4jajbwrd6gq34qe
|
'@emotion/react': 11.9.3_dlcr7kzjh265l7kenqxjsvuiz4
|
||||||
'@emotion/styled': 11.9.3_t4da3hocwt6ljcf3o6em4qwqzm
|
'@emotion/styled': 11.9.3_xorl7rqfpn4gtnla4dfecagcw4
|
||||||
framer-motion: 6.5.1_biqbaboplfbrettd7655fr4n2y
|
framer-motion: 6.5.1_biqbaboplfbrettd7655fr4n2y
|
||||||
react: 18.2.0
|
react: 18.2.0
|
||||||
react-dom: 18.2.0_react@18.2.0
|
react-dom: 18.2.0_react@18.2.0
|
||||||
@ -672,8 +842,8 @@ packages:
|
|||||||
'@chakra-ui/system': 2.2.2_fdnqutfacy7v3gmlcm66flps3q
|
'@chakra-ui/system': 2.2.2_fdnqutfacy7v3gmlcm66flps3q
|
||||||
'@chakra-ui/theme': 2.1.3_@chakra-ui+system@2.2.2
|
'@chakra-ui/theme': 2.1.3_@chakra-ui+system@2.2.2
|
||||||
'@chakra-ui/utils': 2.0.4
|
'@chakra-ui/utils': 2.0.4
|
||||||
'@emotion/react': 11.9.3_3hx2ussxxho4jajbwrd6gq34qe
|
'@emotion/react': 11.9.3_dlcr7kzjh265l7kenqxjsvuiz4
|
||||||
'@emotion/styled': 11.9.3_t4da3hocwt6ljcf3o6em4qwqzm
|
'@emotion/styled': 11.9.3_xorl7rqfpn4gtnla4dfecagcw4
|
||||||
react: 18.2.0
|
react: 18.2.0
|
||||||
dev: false
|
dev: false
|
||||||
|
|
||||||
@ -747,8 +917,8 @@ packages:
|
|||||||
'@chakra-ui/react-utils': 2.0.1_react@18.2.0
|
'@chakra-ui/react-utils': 2.0.1_react@18.2.0
|
||||||
'@chakra-ui/styled-system': 2.2.3
|
'@chakra-ui/styled-system': 2.2.3
|
||||||
'@chakra-ui/utils': 2.0.4
|
'@chakra-ui/utils': 2.0.4
|
||||||
'@emotion/react': 11.9.3_3hx2ussxxho4jajbwrd6gq34qe
|
'@emotion/react': 11.9.3_dlcr7kzjh265l7kenqxjsvuiz4
|
||||||
'@emotion/styled': 11.9.3_t4da3hocwt6ljcf3o6em4qwqzm
|
'@emotion/styled': 11.9.3_xorl7rqfpn4gtnla4dfecagcw4
|
||||||
react: 18.2.0
|
react: 18.2.0
|
||||||
react-fast-compare: 3.2.0
|
react-fast-compare: 3.2.0
|
||||||
dev: false
|
dev: false
|
||||||
@ -803,15 +973,6 @@ packages:
|
|||||||
react: 18.2.0
|
react: 18.2.0
|
||||||
dev: false
|
dev: false
|
||||||
|
|
||||||
/@chakra-ui/theme-tools/2.0.5:
|
|
||||||
resolution: {integrity: sha512-JuFKYWfVnZKnX95sM05a/0NpTzwciPTAZXfAJYwDOiy4EEqXUgEQpkHxOjC929wpzIVb3Q2Wa/HvS1v8C2f+mw==}
|
|
||||||
peerDependencies:
|
|
||||||
'@chakra-ui/system': '>=2.0.0-next.0'
|
|
||||||
dependencies:
|
|
||||||
'@chakra-ui/utils': 2.0.4
|
|
||||||
'@ctrl/tinycolor': 3.4.1
|
|
||||||
dev: false
|
|
||||||
|
|
||||||
/@chakra-ui/theme-tools/2.0.5_@chakra-ui+system@2.2.2:
|
/@chakra-ui/theme-tools/2.0.5_@chakra-ui+system@2.2.2:
|
||||||
resolution: {integrity: sha512-JuFKYWfVnZKnX95sM05a/0NpTzwciPTAZXfAJYwDOiy4EEqXUgEQpkHxOjC929wpzIVb3Q2Wa/HvS1v8C2f+mw==}
|
resolution: {integrity: sha512-JuFKYWfVnZKnX95sM05a/0NpTzwciPTAZXfAJYwDOiy4EEqXUgEQpkHxOjC929wpzIVb3Q2Wa/HvS1v8C2f+mw==}
|
||||||
peerDependencies:
|
peerDependencies:
|
||||||
@ -911,13 +1072,14 @@ packages:
|
|||||||
engines: {node: '>=10'}
|
engines: {node: '>=10'}
|
||||||
dev: false
|
dev: false
|
||||||
|
|
||||||
/@emotion/babel-plugin/11.9.2:
|
/@emotion/babel-plugin/11.9.2_@babel+core@7.18.6:
|
||||||
resolution: {integrity: sha512-Pr/7HGH6H6yKgnVFNEj2MVlreu3ADqftqjqwUvDy/OJzKFgxKeTQ+eeUf20FOTuHVkDON2iNa25rAXVYtWJCjw==}
|
resolution: {integrity: sha512-Pr/7HGH6H6yKgnVFNEj2MVlreu3ADqftqjqwUvDy/OJzKFgxKeTQ+eeUf20FOTuHVkDON2iNa25rAXVYtWJCjw==}
|
||||||
peerDependencies:
|
peerDependencies:
|
||||||
'@babel/core': ^7.0.0
|
'@babel/core': ^7.0.0
|
||||||
dependencies:
|
dependencies:
|
||||||
|
'@babel/core': 7.18.6
|
||||||
'@babel/helper-module-imports': 7.18.6
|
'@babel/helper-module-imports': 7.18.6
|
||||||
'@babel/plugin-syntax-jsx': 7.18.6
|
'@babel/plugin-syntax-jsx': 7.18.6_@babel+core@7.18.6
|
||||||
'@babel/runtime': 7.18.6
|
'@babel/runtime': 7.18.6
|
||||||
'@emotion/hash': 0.8.0
|
'@emotion/hash': 0.8.0
|
||||||
'@emotion/memoize': 0.7.5
|
'@emotion/memoize': 0.7.5
|
||||||
@ -967,7 +1129,7 @@ packages:
|
|||||||
resolution: {integrity: sha512-igX9a37DR2ZPGYtV6suZ6whr8pTFtyHL3K/oLUotxpSVO2ASaprmAe2Dkq7tBo7CRY7MMDrAa9nuQP9/YG8FxQ==}
|
resolution: {integrity: sha512-igX9a37DR2ZPGYtV6suZ6whr8pTFtyHL3K/oLUotxpSVO2ASaprmAe2Dkq7tBo7CRY7MMDrAa9nuQP9/YG8FxQ==}
|
||||||
dev: false
|
dev: false
|
||||||
|
|
||||||
/@emotion/react/11.9.3_3hx2ussxxho4jajbwrd6gq34qe:
|
/@emotion/react/11.9.3_dlcr7kzjh265l7kenqxjsvuiz4:
|
||||||
resolution: {integrity: sha512-g9Q1GcTOlzOEjqwuLF/Zd9LC+4FljjPjDfxSM7KmEakm+hsHXk+bYZ2q+/hTJzr0OUNkujo72pXLQvXj6H+GJQ==}
|
resolution: {integrity: sha512-g9Q1GcTOlzOEjqwuLF/Zd9LC+4FljjPjDfxSM7KmEakm+hsHXk+bYZ2q+/hTJzr0OUNkujo72pXLQvXj6H+GJQ==}
|
||||||
peerDependencies:
|
peerDependencies:
|
||||||
'@babel/core': ^7.0.0
|
'@babel/core': ^7.0.0
|
||||||
@ -979,8 +1141,9 @@ packages:
|
|||||||
'@types/react':
|
'@types/react':
|
||||||
optional: true
|
optional: true
|
||||||
dependencies:
|
dependencies:
|
||||||
|
'@babel/core': 7.18.6
|
||||||
'@babel/runtime': 7.18.6
|
'@babel/runtime': 7.18.6
|
||||||
'@emotion/babel-plugin': 11.9.2
|
'@emotion/babel-plugin': 11.9.2_@babel+core@7.18.6
|
||||||
'@emotion/cache': 11.9.3
|
'@emotion/cache': 11.9.3
|
||||||
'@emotion/serialize': 1.0.4
|
'@emotion/serialize': 1.0.4
|
||||||
'@emotion/utils': 1.1.0
|
'@emotion/utils': 1.1.0
|
||||||
@ -1004,7 +1167,7 @@ packages:
|
|||||||
resolution: {integrity: sha512-J3YPccVRMiTZxYAY0IOq3kd+hUP8idY8Kz6B/Cyo+JuXq52Ek+zbPbSQUrVQp95aJ+lsAW7DPL1P2Z+U1jGkKA==}
|
resolution: {integrity: sha512-J3YPccVRMiTZxYAY0IOq3kd+hUP8idY8Kz6B/Cyo+JuXq52Ek+zbPbSQUrVQp95aJ+lsAW7DPL1P2Z+U1jGkKA==}
|
||||||
dev: false
|
dev: false
|
||||||
|
|
||||||
/@emotion/styled/11.9.3_t4da3hocwt6ljcf3o6em4qwqzm:
|
/@emotion/styled/11.9.3_xorl7rqfpn4gtnla4dfecagcw4:
|
||||||
resolution: {integrity: sha512-o3sBNwbtoVz9v7WB1/Y/AmXl69YHmei2mrVnK7JgyBJ//Rst5yqPZCecEJlMlJrFeWHp+ki/54uN265V2pEcXA==}
|
resolution: {integrity: sha512-o3sBNwbtoVz9v7WB1/Y/AmXl69YHmei2mrVnK7JgyBJ//Rst5yqPZCecEJlMlJrFeWHp+ki/54uN265V2pEcXA==}
|
||||||
peerDependencies:
|
peerDependencies:
|
||||||
'@babel/core': ^7.0.0
|
'@babel/core': ^7.0.0
|
||||||
@ -1017,10 +1180,11 @@ packages:
|
|||||||
'@types/react':
|
'@types/react':
|
||||||
optional: true
|
optional: true
|
||||||
dependencies:
|
dependencies:
|
||||||
|
'@babel/core': 7.18.6
|
||||||
'@babel/runtime': 7.18.6
|
'@babel/runtime': 7.18.6
|
||||||
'@emotion/babel-plugin': 11.9.2
|
'@emotion/babel-plugin': 11.9.2_@babel+core@7.18.6
|
||||||
'@emotion/is-prop-valid': 1.1.3
|
'@emotion/is-prop-valid': 1.1.3
|
||||||
'@emotion/react': 11.9.3_3hx2ussxxho4jajbwrd6gq34qe
|
'@emotion/react': 11.9.3_dlcr7kzjh265l7kenqxjsvuiz4
|
||||||
'@emotion/serialize': 1.0.4
|
'@emotion/serialize': 1.0.4
|
||||||
'@emotion/utils': 1.1.0
|
'@emotion/utils': 1.1.0
|
||||||
'@types/react': 18.0.15
|
'@types/react': 18.0.15
|
||||||
@ -1071,6 +1235,44 @@ packages:
|
|||||||
resolution: {integrity: sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==}
|
resolution: {integrity: sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==}
|
||||||
dev: true
|
dev: true
|
||||||
|
|
||||||
|
/@jridgewell/gen-mapping/0.1.1:
|
||||||
|
resolution: {integrity: sha512-sQXCasFk+U8lWYEe66WxRDOE9PjVz4vSM51fTu3Hw+ClTpUSQb718772vH3pyS5pShp6lvQM7SxgIDXXXmOX7w==}
|
||||||
|
engines: {node: '>=6.0.0'}
|
||||||
|
dependencies:
|
||||||
|
'@jridgewell/set-array': 1.1.2
|
||||||
|
'@jridgewell/sourcemap-codec': 1.4.14
|
||||||
|
dev: false
|
||||||
|
|
||||||
|
/@jridgewell/gen-mapping/0.3.2:
|
||||||
|
resolution: {integrity: sha512-mh65xKQAzI6iBcFzwv28KVWSmCkdRBWoOh+bYQGW3+6OZvbbN3TqMGo5hqYxQniRcH9F2VZIoJCm4pa3BPDK/A==}
|
||||||
|
engines: {node: '>=6.0.0'}
|
||||||
|
dependencies:
|
||||||
|
'@jridgewell/set-array': 1.1.2
|
||||||
|
'@jridgewell/sourcemap-codec': 1.4.14
|
||||||
|
'@jridgewell/trace-mapping': 0.3.14
|
||||||
|
dev: false
|
||||||
|
|
||||||
|
/@jridgewell/resolve-uri/3.1.0:
|
||||||
|
resolution: {integrity: sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==}
|
||||||
|
engines: {node: '>=6.0.0'}
|
||||||
|
dev: false
|
||||||
|
|
||||||
|
/@jridgewell/set-array/1.1.2:
|
||||||
|
resolution: {integrity: sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==}
|
||||||
|
engines: {node: '>=6.0.0'}
|
||||||
|
dev: false
|
||||||
|
|
||||||
|
/@jridgewell/sourcemap-codec/1.4.14:
|
||||||
|
resolution: {integrity: sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==}
|
||||||
|
dev: false
|
||||||
|
|
||||||
|
/@jridgewell/trace-mapping/0.3.14:
|
||||||
|
resolution: {integrity: sha512-bJWEfQ9lPTvm3SneWwRFVLzrh6nhjwqw7TUFFBEMzwvg7t7PCDenf2lDwqo4NQXzdpgBXyFgDWnQA+2vkruksQ==}
|
||||||
|
dependencies:
|
||||||
|
'@jridgewell/resolve-uri': 3.1.0
|
||||||
|
'@jridgewell/sourcemap-codec': 1.4.14
|
||||||
|
dev: false
|
||||||
|
|
||||||
/@motionone/animation/10.12.0:
|
/@motionone/animation/10.12.0:
|
||||||
resolution: {integrity: sha512-SCWkVjMChQwA4Cnt1pdmhCi0OC4cAR+rqsskNEqmbgfG59zmn50TfOP6vgqjkYbaSZXXLeEb03Mez362jIEHRg==}
|
resolution: {integrity: sha512-SCWkVjMChQwA4Cnt1pdmhCi0OC4cAR+rqsskNEqmbgfG59zmn50TfOP6vgqjkYbaSZXXLeEb03Mez362jIEHRg==}
|
||||||
dependencies:
|
dependencies:
|
||||||
@ -1438,12 +1640,17 @@ packages:
|
|||||||
|
|
||||||
/@types/node/18.0.5:
|
/@types/node/18.0.5:
|
||||||
resolution: {integrity: sha512-En7tneq+j0qAiVwysBD79y86MT3ModuoIJbe7JXp+sb5UAjInSShmK3nXXMioBzfF7rXC12hv12d4IyCVwN4dA==}
|
resolution: {integrity: sha512-En7tneq+j0qAiVwysBD79y86MT3ModuoIJbe7JXp+sb5UAjInSShmK3nXXMioBzfF7rXC12hv12d4IyCVwN4dA==}
|
||||||
dev: true
|
|
||||||
|
|
||||||
/@types/parse-json/4.0.0:
|
/@types/parse-json/4.0.0:
|
||||||
resolution: {integrity: sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA==}
|
resolution: {integrity: sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA==}
|
||||||
dev: false
|
dev: false
|
||||||
|
|
||||||
|
/@types/progress/2.0.5:
|
||||||
|
resolution: {integrity: sha512-ZYYVc/kSMkhH9W/4dNK/sLNra3cnkfT2nJyOAIDY+C2u6w72wa0s1aXAezVtbTsnN8HID1uhXCrLwDE2ZXpplg==}
|
||||||
|
dependencies:
|
||||||
|
'@types/node': 18.0.5
|
||||||
|
dev: false
|
||||||
|
|
||||||
/@types/prop-types/15.7.5:
|
/@types/prop-types/15.7.5:
|
||||||
resolution: {integrity: sha512-JCB8C6SnDoQf0cNycqd/35A7MjcnK+ZTqE7judS6o7utxUCg6imJg3QK2qzHKszlTjcj2cn+NwMB2i96ubpj7w==}
|
resolution: {integrity: sha512-JCB8C6SnDoQf0cNycqd/35A7MjcnK+ZTqE7judS6o7utxUCg6imJg3QK2qzHKszlTjcj2cn+NwMB2i96ubpj7w==}
|
||||||
|
|
||||||
@ -1677,6 +1884,17 @@ packages:
|
|||||||
fill-range: 7.0.1
|
fill-range: 7.0.1
|
||||||
dev: true
|
dev: true
|
||||||
|
|
||||||
|
/browserslist/4.21.2:
|
||||||
|
resolution: {integrity: sha512-MonuOgAtUB46uP5CezYbRaYKBNt2LxP0yX+Pmj4LkcDFGkn9Cbpi83d9sCjwQDErXsIJSzY5oKGDbgOlF/LPAA==}
|
||||||
|
engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
|
||||||
|
hasBin: true
|
||||||
|
dependencies:
|
||||||
|
caniuse-lite: 1.0.30001367
|
||||||
|
electron-to-chromium: 1.4.192
|
||||||
|
node-releases: 2.0.6
|
||||||
|
update-browserslist-db: 1.0.4_browserslist@4.21.2
|
||||||
|
dev: false
|
||||||
|
|
||||||
/call-bind/1.0.2:
|
/call-bind/1.0.2:
|
||||||
resolution: {integrity: sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==}
|
resolution: {integrity: sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==}
|
||||||
dependencies:
|
dependencies:
|
||||||
@ -1890,6 +2108,10 @@ packages:
|
|||||||
esutils: 2.0.3
|
esutils: 2.0.3
|
||||||
dev: true
|
dev: true
|
||||||
|
|
||||||
|
/electron-to-chromium/1.4.192:
|
||||||
|
resolution: {integrity: sha512-8nCXyIQY9An88NXAp+PuPy5h3/w5ZY7Iu2lag65Q0XREprcat5F8gKhoHsBUnQcFuCRnmevpR8yEBYRU3d2HDw==}
|
||||||
|
dev: false
|
||||||
|
|
||||||
/emoji-regex/9.2.2:
|
/emoji-regex/9.2.2:
|
||||||
resolution: {integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==}
|
resolution: {integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==}
|
||||||
dev: true
|
dev: true
|
||||||
@ -1944,6 +2166,11 @@ packages:
|
|||||||
is-symbol: 1.0.4
|
is-symbol: 1.0.4
|
||||||
dev: true
|
dev: true
|
||||||
|
|
||||||
|
/escalade/3.1.1:
|
||||||
|
resolution: {integrity: sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==}
|
||||||
|
engines: {node: '>=6'}
|
||||||
|
dev: false
|
||||||
|
|
||||||
/escape-string-regexp/1.0.5:
|
/escape-string-regexp/1.0.5:
|
||||||
resolution: {integrity: sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==}
|
resolution: {integrity: sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==}
|
||||||
engines: {node: '>=0.8.0'}
|
engines: {node: '>=0.8.0'}
|
||||||
@ -2368,6 +2595,11 @@ packages:
|
|||||||
resolution: {integrity: sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==}
|
resolution: {integrity: sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==}
|
||||||
dev: true
|
dev: true
|
||||||
|
|
||||||
|
/gensync/1.0.0-beta.2:
|
||||||
|
resolution: {integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==}
|
||||||
|
engines: {node: '>=6.9.0'}
|
||||||
|
dev: false
|
||||||
|
|
||||||
/get-intrinsic/1.1.2:
|
/get-intrinsic/1.1.2:
|
||||||
resolution: {integrity: sha512-Jfm3OyCxHh9DJyc28qGk+JmfkpO41A4XkneDSujN9MDXrm4oDKdHvndhZ2dN94+ERNfkYJWDclW6k2L/ZGHjXA==}
|
resolution: {integrity: sha512-Jfm3OyCxHh9DJyc28qGk+JmfkpO41A4XkneDSujN9MDXrm4oDKdHvndhZ2dN94+ERNfkYJWDclW6k2L/ZGHjXA==}
|
||||||
dependencies:
|
dependencies:
|
||||||
@ -2425,6 +2657,11 @@ packages:
|
|||||||
path-is-absolute: 1.0.1
|
path-is-absolute: 1.0.1
|
||||||
dev: true
|
dev: true
|
||||||
|
|
||||||
|
/globals/11.12.0:
|
||||||
|
resolution: {integrity: sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==}
|
||||||
|
engines: {node: '>=4'}
|
||||||
|
dev: false
|
||||||
|
|
||||||
/globals/13.16.0:
|
/globals/13.16.0:
|
||||||
resolution: {integrity: sha512-A1lrQfpNF+McdPOnnFqY3kSN0AFTy485bTi1bkLk4mVPODIUEcSfhHgRqA+QdXPksrSTTztYXx37NFV+GpGk3Q==}
|
resolution: {integrity: sha512-A1lrQfpNF+McdPOnnFqY3kSN0AFTy485bTi1bkLk4mVPODIUEcSfhHgRqA+QdXPksrSTTztYXx37NFV+GpGk3Q==}
|
||||||
engines: {node: '>=8'}
|
engines: {node: '>=8'}
|
||||||
@ -2670,6 +2907,12 @@ packages:
|
|||||||
argparse: 2.0.1
|
argparse: 2.0.1
|
||||||
dev: true
|
dev: true
|
||||||
|
|
||||||
|
/jsesc/2.5.2:
|
||||||
|
resolution: {integrity: sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==}
|
||||||
|
engines: {node: '>=4'}
|
||||||
|
hasBin: true
|
||||||
|
dev: false
|
||||||
|
|
||||||
/json-parse-even-better-errors/2.3.1:
|
/json-parse-even-better-errors/2.3.1:
|
||||||
resolution: {integrity: sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==}
|
resolution: {integrity: sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==}
|
||||||
dev: false
|
dev: false
|
||||||
@ -2689,6 +2932,12 @@ packages:
|
|||||||
minimist: 1.2.6
|
minimist: 1.2.6
|
||||||
dev: true
|
dev: true
|
||||||
|
|
||||||
|
/json5/2.2.1:
|
||||||
|
resolution: {integrity: sha512-1hqLFMSrGHRHxav9q9gNjJ5EXznIxGVO09xQRrwplcS8qs28pZ8s8hupZAmqDwZUmVZ2Qb2jnyPOWcDH8m8dlA==}
|
||||||
|
engines: {node: '>=6'}
|
||||||
|
hasBin: true
|
||||||
|
dev: false
|
||||||
|
|
||||||
/jsx-ast-utils/3.3.2:
|
/jsx-ast-utils/3.3.2:
|
||||||
resolution: {integrity: sha512-4ZCADZHRkno244xlNnn4AOG6sRQ7iBZ5BbgZ4vW4y5IZw7cVUD1PPeblm1xx/nfmMxPdt/LHsXZW8z/j58+l9Q==}
|
resolution: {integrity: sha512-4ZCADZHRkno244xlNnn4AOG6sRQ7iBZ5BbgZ4vW4y5IZw7cVUD1PPeblm1xx/nfmMxPdt/LHsXZW8z/j58+l9Q==}
|
||||||
engines: {node: '>=4.0'}
|
engines: {node: '>=4.0'}
|
||||||
@ -3185,7 +3434,7 @@ packages:
|
|||||||
resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==}
|
resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==}
|
||||||
dev: true
|
dev: true
|
||||||
|
|
||||||
/next/12.2.2_biqbaboplfbrettd7655fr4n2y:
|
/next/12.2.2_beenoklgwfttvph5dgxj7na7aq:
|
||||||
resolution: {integrity: sha512-zAYFY45aBry/PlKONqtlloRFqU/We3zWYdn2NoGvDZkoYUYQSJC8WMcalS5C19MxbCZLUVCX7D7a6gTGgl2yLg==}
|
resolution: {integrity: sha512-zAYFY45aBry/PlKONqtlloRFqU/We3zWYdn2NoGvDZkoYUYQSJC8WMcalS5C19MxbCZLUVCX7D7a6gTGgl2yLg==}
|
||||||
engines: {node: '>=12.22.0'}
|
engines: {node: '>=12.22.0'}
|
||||||
hasBin: true
|
hasBin: true
|
||||||
@ -3209,7 +3458,7 @@ packages:
|
|||||||
postcss: 8.4.5
|
postcss: 8.4.5
|
||||||
react: 18.2.0
|
react: 18.2.0
|
||||||
react-dom: 18.2.0_react@18.2.0
|
react-dom: 18.2.0_react@18.2.0
|
||||||
styled-jsx: 5.0.2_react@18.2.0
|
styled-jsx: 5.0.2_2sb3a56iojvze2npkgcccbebf4
|
||||||
use-sync-external-store: 1.1.0_react@18.2.0
|
use-sync-external-store: 1.1.0_react@18.2.0
|
||||||
optionalDependencies:
|
optionalDependencies:
|
||||||
'@next/swc-android-arm-eabi': 12.2.2
|
'@next/swc-android-arm-eabi': 12.2.2
|
||||||
@ -3230,6 +3479,18 @@ packages:
|
|||||||
- babel-plugin-macros
|
- babel-plugin-macros
|
||||||
dev: false
|
dev: false
|
||||||
|
|
||||||
|
/nextjs-progressbar/0.0.14_next@12.2.2+react@18.2.0:
|
||||||
|
resolution: {integrity: sha512-AXYXHDN6M52AwFnGqH/vlwyo0gbC9zM7QS/4ryOTI0RUqfze5FJl8uSrxKJMzK6hGFdDeQXcZoWsLGXeCVtTwg==}
|
||||||
|
peerDependencies:
|
||||||
|
next: '>= 6.0.0'
|
||||||
|
react: '>= 16.0.0'
|
||||||
|
dependencies:
|
||||||
|
next: 12.2.2_beenoklgwfttvph5dgxj7na7aq
|
||||||
|
nprogress: 0.2.0
|
||||||
|
prop-types: 15.8.1
|
||||||
|
react: 18.2.0
|
||||||
|
dev: false
|
||||||
|
|
||||||
/node-fetch/2.6.7:
|
/node-fetch/2.6.7:
|
||||||
resolution: {integrity: sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ==}
|
resolution: {integrity: sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ==}
|
||||||
engines: {node: 4.x || >=6.0.0}
|
engines: {node: 4.x || >=6.0.0}
|
||||||
@ -3242,6 +3503,14 @@ packages:
|
|||||||
whatwg-url: 5.0.0
|
whatwg-url: 5.0.0
|
||||||
dev: false
|
dev: false
|
||||||
|
|
||||||
|
/node-releases/2.0.6:
|
||||||
|
resolution: {integrity: sha512-PiVXnNuFm5+iYkLBNeq5211hvO38y63T0i2KKh2KnUs3RpzJ+JtODFjkD8yjLwnDkTYF1eKXheUwdssR+NRZdg==}
|
||||||
|
dev: false
|
||||||
|
|
||||||
|
/nprogress/0.2.0:
|
||||||
|
resolution: {integrity: sha512-I19aIingLgR1fmhftnbWWO3dXc0hSxqHQHQb3H8m+K3TnEn/iSeTZZOyvKXWqQESMwuUVnatlCnZdLBZZt2VSA==}
|
||||||
|
dev: false
|
||||||
|
|
||||||
/object-assign/4.1.1:
|
/object-assign/4.1.1:
|
||||||
resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==}
|
resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==}
|
||||||
engines: {node: '>=0.10.0'}
|
engines: {node: '>=0.10.0'}
|
||||||
@ -3674,7 +3943,6 @@ packages:
|
|||||||
/semver/6.3.0:
|
/semver/6.3.0:
|
||||||
resolution: {integrity: sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==}
|
resolution: {integrity: sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==}
|
||||||
hasBin: true
|
hasBin: true
|
||||||
dev: true
|
|
||||||
|
|
||||||
/semver/7.3.7:
|
/semver/7.3.7:
|
||||||
resolution: {integrity: sha512-QlYTucUYOews+WeEujDoEGziz4K6c47V/Bd+LjSSYcA94p+DmINdf7ncaUinThfvZyu13lN9OY1XDxt8C0Tw0g==}
|
resolution: {integrity: sha512-QlYTucUYOews+WeEujDoEGziz4K6c47V/Bd+LjSSYcA94p+DmINdf7ncaUinThfvZyu13lN9OY1XDxt8C0Tw0g==}
|
||||||
@ -3782,7 +4050,7 @@ packages:
|
|||||||
tslib: 2.4.0
|
tslib: 2.4.0
|
||||||
dev: false
|
dev: false
|
||||||
|
|
||||||
/styled-jsx/5.0.2_react@18.2.0:
|
/styled-jsx/5.0.2_2sb3a56iojvze2npkgcccbebf4:
|
||||||
resolution: {integrity: sha512-LqPQrbBh3egD57NBcHET4qcgshPks+yblyhPlH2GY8oaDgKs8SK4C3dBh3oSJjgzJ3G5t1SYEZGHkP+QEpX9EQ==}
|
resolution: {integrity: sha512-LqPQrbBh3egD57NBcHET4qcgshPks+yblyhPlH2GY8oaDgKs8SK4C3dBh3oSJjgzJ3G5t1SYEZGHkP+QEpX9EQ==}
|
||||||
engines: {node: '>= 12.0.0'}
|
engines: {node: '>= 12.0.0'}
|
||||||
peerDependencies:
|
peerDependencies:
|
||||||
@ -3795,6 +4063,7 @@ packages:
|
|||||||
babel-plugin-macros:
|
babel-plugin-macros:
|
||||||
optional: true
|
optional: true
|
||||||
dependencies:
|
dependencies:
|
||||||
|
'@babel/core': 7.18.6
|
||||||
react: 18.2.0
|
react: 18.2.0
|
||||||
dev: false
|
dev: false
|
||||||
|
|
||||||
@ -3820,6 +4089,14 @@ packages:
|
|||||||
resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==}
|
resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==}
|
||||||
engines: {node: '>= 0.4'}
|
engines: {node: '>= 0.4'}
|
||||||
|
|
||||||
|
/swr/1.3.0_react@18.2.0:
|
||||||
|
resolution: {integrity: sha512-dkghQrOl2ORX9HYrMDtPa7LTVHJjCTeZoB1dqTbnnEDlSvN8JEKpYIYurDfvbQFUUS8Cg8PceFVZNkW0KNNYPw==}
|
||||||
|
peerDependencies:
|
||||||
|
react: ^16.11.0 || ^17.0.0 || ^18.0.0
|
||||||
|
dependencies:
|
||||||
|
react: 18.2.0
|
||||||
|
dev: false
|
||||||
|
|
||||||
/text-table/0.2.0:
|
/text-table/0.2.0:
|
||||||
resolution: {integrity: sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==}
|
resolution: {integrity: sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==}
|
||||||
dev: true
|
dev: true
|
||||||
@ -3966,6 +4243,17 @@ packages:
|
|||||||
resolution: {integrity: sha512-isyNax3wXoKaulPDZWHQqbmIx1k2tb9fb3GGDBRxCscfYV2Ch7WxPArBsFEG8s/safwXTT7H4QGhaIkTp9447w==}
|
resolution: {integrity: sha512-isyNax3wXoKaulPDZWHQqbmIx1k2tb9fb3GGDBRxCscfYV2Ch7WxPArBsFEG8s/safwXTT7H4QGhaIkTp9447w==}
|
||||||
dev: false
|
dev: false
|
||||||
|
|
||||||
|
/update-browserslist-db/1.0.4_browserslist@4.21.2:
|
||||||
|
resolution: {integrity: sha512-jnmO2BEGUjsMOe/Fg9u0oczOe/ppIDZPebzccl1yDWGLFP16Pa1/RM5wEoKYPG2zstNcDuAStejyxsOuKINdGA==}
|
||||||
|
hasBin: true
|
||||||
|
peerDependencies:
|
||||||
|
browserslist: '>= 4.21.0'
|
||||||
|
dependencies:
|
||||||
|
browserslist: 4.21.2
|
||||||
|
escalade: 3.1.1
|
||||||
|
picocolors: 1.0.0
|
||||||
|
dev: false
|
||||||
|
|
||||||
/uri-js/4.4.1:
|
/uri-js/4.4.1:
|
||||||
resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==}
|
resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==}
|
||||||
dependencies:
|
dependencies:
|
||||||
|
Loading…
Reference in New Issue
Block a user