├── pages
├── api
│ ├── hello.js
│ └── email-registration.js
├── _app.js
├── events
│ ├── index.js
│ └── [cat]
│ │ ├── [id].js
│ │ └── index.js
├── index.js
└── about-us.js
├── .eslintrc.json
├── public
├── favicon.ico
├── images
│ └── logo_black.png
└── vercel.svg
├── src
└── components
│ ├── footer
│ └── footer.jsx
│ ├── layout
│ └── main-layout.jsx
│ ├── events
│ ├── events-page.jsx
│ ├── catEvent.jsx
│ └── single-event.jsx
│ ├── home
│ └── home-page.jsx
│ └── header
│ └── header.jsx
├── .vscode
└── settings.json
├── next.config.js
├── package.json
├── styles
├── globals.css
└── general.sass
├── .gitignore
├── README.md
├── data
└── data.json
└── yarn.lock
/pages/api/hello.js:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/.eslintrc.json:
--------------------------------------------------------------------------------
1 | {
2 | "extends": "next/core-web-vitals"
3 | }
4 |
--------------------------------------------------------------------------------
/public/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timeToCode-ali/nextjs-tutorial/HEAD/public/favicon.ico
--------------------------------------------------------------------------------
/public/images/logo_black.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/timeToCode-ali/nextjs-tutorial/HEAD/public/images/logo_black.png
--------------------------------------------------------------------------------
/src/components/footer/footer.jsx:
--------------------------------------------------------------------------------
1 | export const Footer = () => {
2 | return (
3 |
6 | );
7 | };
8 |
--------------------------------------------------------------------------------
/.vscode/settings.json:
--------------------------------------------------------------------------------
1 | {
2 | "git.ignoreLimitWarning": true,
3 | "editor.wordWrap": "bounded",
4 | "editor.fontSize": 14,
5 | "prettier.proseWrap": "always",
6 | "html.format.wrapLineLength": 60
7 | }
--------------------------------------------------------------------------------
/next.config.js:
--------------------------------------------------------------------------------
1 | /** @type {import('next').NextConfig} */
2 | const nextConfig = {
3 | reactStrictMode: true,
4 | swcMinify: true,
5 | images: {
6 | domains: ['images.unsplash.com', 'wembleypark.com'],
7 | },
8 | };
9 |
10 | module.exports = nextConfig;
11 |
--------------------------------------------------------------------------------
/pages/_app.js:
--------------------------------------------------------------------------------
1 | import MainLayout from '../src/components/layout/main-layout';
2 | import '../styles/globals.css';
3 | import '../styles/general.sass';
4 |
5 | function MyApp({ Component, pageProps }) {
6 | return (
7 | <>
8 |
9 |
10 |
11 | >
12 | );
13 | }
14 |
15 | export default MyApp;
16 |
--------------------------------------------------------------------------------
/src/components/layout/main-layout.jsx:
--------------------------------------------------------------------------------
1 | import React from 'react';
2 | import { Footer } from '../footer/footer';
3 | import { Header } from '../header/header';
4 |
5 | const MainLayout = ({ children }) => {
6 | return (
7 | <>
8 |
9 | {children}
10 |
11 | >
12 | );
13 | };
14 |
15 | export default MainLayout;
16 |
--------------------------------------------------------------------------------
/pages/events/index.js:
--------------------------------------------------------------------------------
1 | import AllEvents from '../../src/components/events/events-page';
2 |
3 | const EventsPage = ({ data }) => {
4 | return ;
5 | };
6 |
7 | export default EventsPage;
8 |
9 | export async function getStaticProps() {
10 | const { events_categories } = await import('/data/data.json');
11 | return {
12 | props: {
13 | data: events_categories,
14 | },
15 | };
16 | }
17 |
--------------------------------------------------------------------------------
/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "events_app",
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 | "next": "12.3.1",
13 | "react": "18.2.0",
14 | "react-dom": "18.2.0"
15 | },
16 | "devDependencies": {
17 | "eslint": "8.26.0",
18 | "eslint-config-next": "12.3.1",
19 | "sass": "^1.55.0"
20 | }
21 | }
22 |
--------------------------------------------------------------------------------
/styles/globals.css:
--------------------------------------------------------------------------------
1 | html,
2 | body {
3 | padding: 0;
4 | margin: 0;
5 | font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen,
6 | Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
7 | }
8 |
9 | a {
10 | color: inherit;
11 | text-decoration: none;
12 | }
13 |
14 | * {
15 | box-sizing: border-box;
16 | }
17 |
18 |
19 |
20 | @media (prefers-color-scheme: dark) {
21 | html {
22 | color-scheme: dark;
23 | }
24 | body {
25 | color: white;
26 | background: black;
27 | }
28 | }
29 |
--------------------------------------------------------------------------------
/.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-env.d.ts
37 |
--------------------------------------------------------------------------------
/src/components/events/events-page.jsx:
--------------------------------------------------------------------------------
1 | import React from 'react';
2 | import Image from 'next/image';
3 | import Link from 'next/link';
4 |
5 | const AllEvents = ({ data }) => {
6 | return (
7 |
16 | );
17 | };
18 |
19 | export default AllEvents;
20 |
--------------------------------------------------------------------------------
/pages/index.js:
--------------------------------------------------------------------------------
1 | import Head from 'next/head';
2 | import { HomePage } from '../src/components/home/home-page';
3 |
4 | export default function Home({ data }) {
5 | return (
6 |
7 |
8 |
Events app
9 |
10 |
11 |
12 |
13 |
14 |
15 | );
16 | }
17 |
18 | export async function getServerSideProps() {
19 | const { events_categories } = await import('/data/data.json');
20 | return {
21 | props: {
22 | data: events_categories,
23 | },
24 | };
25 | }
26 |
--------------------------------------------------------------------------------
/src/components/home/home-page.jsx:
--------------------------------------------------------------------------------
1 | import Link from 'next/link';
2 | import Image from 'next/image';
3 |
4 | export const HomePage = ({ data }) => (
5 |
20 | );
21 |
--------------------------------------------------------------------------------
/pages/events/[cat]/[id].js:
--------------------------------------------------------------------------------
1 | import SingleEvent from '../../../src/components/events/single-event';
2 |
3 | const EventPage = ({ data }) => ;
4 |
5 | export default EventPage;
6 |
7 | export async function getStaticPaths() {
8 | const data = await import('/data/data.json');
9 | const allEvents = data.allEvents;
10 |
11 | const allPaths = allEvents.map((path) => {
12 | return {
13 | params: {
14 | cat: path.city,
15 | id: path.id,
16 | },
17 | };
18 | });
19 |
20 | return {
21 | paths: allPaths,
22 | fallback: false,
23 | };
24 | }
25 |
26 | export async function getStaticProps(context) {
27 | console.log(context);
28 | const id = context.params.id;
29 | const { allEvents } = await import('/data/data.json');
30 | const eventData = allEvents.find((ev) => id === ev.id);
31 |
32 | return {
33 | props: { data: eventData },
34 | };
35 | }
36 |
--------------------------------------------------------------------------------
/pages/events/[cat]/index.js:
--------------------------------------------------------------------------------
1 | import CatEvent from '../../../src/components/events/catEvent';
2 |
3 | const EventsCatPage = ({ data, pageName }) => ;
4 |
5 | export default EventsCatPage;
6 |
7 | export async function getStaticPaths() {
8 | const { events_categories } = await import('/data/data.json');
9 | const allPaths = events_categories.map((ev) => {
10 | return {
11 | params: {
12 | cat: ev.id.toString(),
13 | },
14 | };
15 | });
16 | console.log(allPaths);
17 | return {
18 | paths: allPaths,
19 | fallback: false,
20 | };
21 | }
22 |
23 | export async function getStaticProps(context) {
24 | console.log(context);
25 | const id = context?.params.cat;
26 | const { allEvents } = await import('/data/data.json');
27 |
28 | const data = allEvents.filter((ev) => ev.city === id);
29 |
30 | return { props: { data, pageName: id } };
31 | }
32 |
--------------------------------------------------------------------------------
/src/components/header/header.jsx:
--------------------------------------------------------------------------------
1 | import Link from 'next/link';
2 | import Image from 'next/image';
3 |
4 | export const Header = () => {
5 | return (
6 |
33 | );
34 | };
35 |
--------------------------------------------------------------------------------
/public/vercel.svg:
--------------------------------------------------------------------------------
1 |
3 |
4 |
--------------------------------------------------------------------------------
/pages/api/email-registration.js:
--------------------------------------------------------------------------------
1 | import path from 'path';
2 | import fs from 'fs';
3 |
4 | function buildPath() {
5 | return path.join(process.cwd(), 'data', 'data.json');
6 | }
7 |
8 | function extractData(filePath) {
9 | const jsonData = fs.readFileSync(filePath);
10 | const data = JSON.parse(jsonData);
11 | return data;
12 | }
13 |
14 | export default function handler(req, res) {
15 | const { method } = req;
16 |
17 | const filePath = buildPath();
18 | const { events_categories, allEvents } = extractData(filePath);
19 |
20 | if (!allEvents) {
21 | return res.status(404).json({
22 | status: 404,
23 | message: 'Events data not found',
24 | });
25 | }
26 |
27 | if (method === 'POST') {
28 | const { email, eventId } = req.body;
29 |
30 | if (!email | !email.includes('@')) {
31 | res.status(422).json({ message: 'Invalid email address' });
32 | }
33 |
34 | const newAllEvents = allEvents.map((ev) => {
35 | if (ev.id === eventId) {
36 | if (ev.emails_registered.includes(email)) {
37 | res.status(409).json({ message: 'This email has already been registered' });
38 | return ev;
39 | }
40 | return {
41 | ...ev,
42 | emails_registered: [...ev.emails_registered, email],
43 | };
44 | }
45 | return ev;
46 | });
47 |
48 | fs.writeFileSync(filePath, JSON.stringify({ events_categories, allEvents: newAllEvents }));
49 |
50 | res.status(201).json({
51 | message: `You have been registered successfully with the email: ${email} for the event: ${eventId}`,
52 | });
53 | }
54 | }
55 |
--------------------------------------------------------------------------------
/src/components/events/catEvent.jsx:
--------------------------------------------------------------------------------
1 | import React from 'react';
2 | import Image from 'next/image';
3 | import Link from 'next/link';
4 |
5 | const CatEvent = ({ data, pageName }) => {
6 | return (
7 |
8 |
Events in {pageName}
9 |
10 |
21 |
22 | );
23 | };
24 |
25 | export default CatEvent;
26 |
27 | /* CODE EXPLANATION:
28 | This component CatEvent is a stateless component that takes two props: data and pageName. It is responsible for
29 | rendering a list of events and displaying information about the events in a card format.
30 |
31 | The component displays a title using an h1 element with text 'Events in' and pageName passed as a prop.
32 | The component maps over the data prop and for each event, it creates a link component that takes the user to
33 | a page that shows more details about the event. The link component has an a element with class name card which is
34 | styled to look like a card. Inside the a element, there is an Image component from the next/image library, which displays
35 | an image of the event with the specified width, height, and alt text. The component also displays the title and description
36 | of the event in h2 and p elements, respectively.
37 |
38 |
39 | */
40 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | This is a [Next.js](https://nextjs.org/) project bootstrapped with [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packages/create-next-app).
2 |
3 | ## Getting Started
4 |
5 | First, run the development server:
6 |
7 | ```bash
8 | npm run dev
9 | # or
10 | yarn dev
11 | ```
12 |
13 | Open [http://localhost:3000](http://localhost:3000) with your browser to see the result.
14 |
15 | You can start editing the page by modifying `pages/index.js`. The page auto-updates as you edit the file.
16 |
17 | [API routes](https://nextjs.org/docs/api-routes/introduction) can be accessed on [http://localhost:3000/api/hello](http://localhost:3000/api/hello). This endpoint can be edited in `pages/api/hello.js`.
18 |
19 | The `pages/api` directory is mapped to `/api/*`. Files in this directory are treated as [API routes](https://nextjs.org/docs/api-routes/introduction) instead of React pages.
20 |
21 | ## Learn More
22 |
23 | To learn more about Next.js, take a look at the following resources:
24 |
25 | - [Next.js Documentation](https://nextjs.org/docs) - learn about Next.js features and API.
26 | - [Learn Next.js](https://nextjs.org/learn) - an interactive Next.js tutorial.
27 |
28 | You can check out [the Next.js GitHub repository](https://github.com/vercel/next.js/) - your feedback and contributions are welcome!
29 |
30 | ## Deploy on Vercel
31 |
32 | The easiest way to deploy your Next.js app is to use the [Vercel Platform](https://vercel.com/new?utm_medium=default-template&filter=next.js&utm_source=create-next-app&utm_campaign=create-next-app-readme) from the creators of Next.js.
33 |
34 | Check out our [Next.js deployment documentation](https://nextjs.org/docs/deployment) for more details.
35 |
--------------------------------------------------------------------------------
/src/components/events/single-event.jsx:
--------------------------------------------------------------------------------
1 | import Image from 'next/image';
2 | import { useRouter } from 'next/router';
3 | import React, { useRef, useState } from 'react';
4 |
5 | const SingleEvent = ({ data }) => {
6 | const inputEmail = useRef();
7 | const router = useRouter();
8 | const [message, setMessage] = useState('');
9 |
10 | const onSubmit = async (e) => {
11 | e.preventDefault();
12 | const emailValue = inputEmail.current.value;
13 | const eventId = router?.query.id;
14 |
15 | const validRegex = /^[a-zA-Z0-9.!#$%&'*+/=?^_`{|}~-]+@[a-zA-Z0-9-]+(?:\.[a-zA-Z0-9-]+)*$/;
16 |
17 | if (!emailValue.match(validRegex)) {
18 | setMessage('Please introduce a correct email address');
19 | }
20 |
21 | try {
22 | const response = await fetch('/api/email-registration', {
23 | method: 'POST',
24 | headers: {
25 | 'Content-Type': 'application/json',
26 | },
27 | body: JSON.stringify({ email: emailValue, eventId }),
28 | });
29 |
30 | if (!response.ok) throw new Error(`Error: ${response.status}`);
31 | const data = await response.json();
32 | setMessage(data.message);
33 | inputEmail.current.value = '';
34 | } catch (e) {
35 | console.log('ERROR', e);
36 | }
37 | };
38 |
39 | return (
40 |
41 |
{data.title}
42 |
43 |
{data.description}
44 |
54 |
{message}
55 |
56 | );
57 | };
58 |
59 | export default SingleEvent;
60 |
--------------------------------------------------------------------------------
/pages/about-us.js:
--------------------------------------------------------------------------------
1 | const AboutUsPage = () => {
2 | return (
3 |
4 |
About us Page
5 |
6 | Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut
7 | labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco
8 | laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in
9 | voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat
10 | cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
11 |
12 |
Dlor in reprehenderit
13 |
14 | Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut
15 | labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco
16 | laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in
17 | voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat
18 | cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
19 |
20 |
21 |
22 | Dlor in reprehenderit
23 |
24 | Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor
25 | incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud
26 | exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure
27 | dolor in reprehenderit in
28 |
29 |
30 |
31 | Sed do eiusmod tempor
32 |
33 | Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor
34 | incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud
35 | exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure
36 | dolor in reprehenderit in
37 |
38 |
39 |
40 |
41 | );
42 | };
43 |
44 | export default AboutUsPage;
45 |
--------------------------------------------------------------------------------
/styles/general.sass:
--------------------------------------------------------------------------------
1 | ul
2 | list-style: none
3 |
4 | header
5 | height: 300px
6 | background: linear-gradient(305deg, #dbfff3, transparent)
7 | padding: 15px 30px
8 |
9 | >div
10 | width: 100%
11 | max-width: 1250px
12 | margin: auto
13 | display: flex
14 | flex-direction: column
15 | justify-content: space-between
16 | .title
17 | width: 50%
18 | font-size: 40px
19 | text-transform: uppercase
20 | .topNav
21 | display: flex
22 | justify-content: space-between
23 | align-content: center
24 | ul
25 | display: flex
26 | text-decoration: none
27 | list-style: none
28 | gap: 15px
29 | li
30 | font-weight: 600
31 | font-size: 16px
32 |
33 | footer
34 | background-color: #333
35 | color: #fff
36 | padding: 10px
37 | text-align: center
38 |
39 | main
40 | width: 100%
41 | max-width: 1250px
42 | margin: auto
43 | padding: 80px 30px
44 | min-height: 550px
45 |
46 | .home_body
47 | display: flex
48 | flex-direction: column
49 | gap: 50px
50 | .image
51 | width: 40%
52 | .card
53 | display: flex
54 | flex-direction: row
55 | gap: 30px
56 | justify-content: center
57 | align-content: center
58 | align-items: center
59 | &:nth-child(even)
60 | direction: rtl
61 | .content
62 | width: 50%
63 |
64 | .about_us_list
65 | display: flex
66 | flex-direction: column
67 |
68 | .events_page
69 | display: flex
70 | flex-direction: row
71 | gap: 20px
72 | .card
73 | position: relative
74 | h2
75 | position: absolute
76 | width: 100%
77 | top: 50%
78 | text-align: center
79 | font-size: 38px
80 | color: white
81 | text-transform: uppercase
82 | text-shadow: 1px 1px 20px black
83 |
84 | .cat_events
85 | width: 100%
86 | .content
87 | display: flex
88 | flex-direction: row
89 | flex-wrap: wrap
90 | gap: 30px
91 | width: 100%
92 | justify-content: flex-start
93 | .card
94 | display: flex
95 | flex-direction: column
96 | width: 30%
97 |
98 | .event_single_page
99 | .email_registration
100 | margin-top: 25px
101 | label
102 | display: flex
103 | margin-bottom: 15px
104 | font-size: 18px
105 | font-weight: 800
106 | text-transform: uppercase
107 | margin-top: 25px
108 | input
109 | height: 40px
110 | min-width: 350px
111 | box-shadow: none
112 | border-radius: 5px
113 | border: 1px solid #ccc
114 | font-size: 16px
115 | button
116 | border-radius: 5px
117 | height: 40px
118 | min-width: 150px
119 | border: 1px solid #5f5a5a
120 | font-size: 16px
121 | text-transform: uppercase
122 | margin-left: 10px
123 | font-weight: 600
124 | background: #dcfff3
125 | cursor: pointer
126 | &:hover
127 | color: #dcfff3
128 | background: #333
129 |
--------------------------------------------------------------------------------
/data/data.json:
--------------------------------------------------------------------------------
1 | {"events_categories":[{"id":"london","title":"Events in London","description":"Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem","image":"https://images.unsplash.com/photo-1533929736458-ca588d08c8be?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1170&q=80"},{"id":"san-francisco","title":"Events in San Francisco","description":"corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate.","image":"https://images.unsplash.com/photo-1506146332389-18140dc7b2fb?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=764&q=80"},{"id":"barcelona","title":"Events in Barcelona","description":"Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscisfa.","image":"https://images.unsplash.com/photo-1579282240050-352db0a14c21?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=652&q=80"}],"allEvents":[{"id":"london-comic-con-winter","title":"London Comic Con Winter","city":"London","description":"Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscisfa.","image":"https://images.unsplash.com/photo-1608889476561-6242cfdbf622?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=880&q=80","emails_registered":[]},{"id":"hyde-park-winter-wonderland","title":"Hyde Park Winter Wonderland","city":"London","description":"Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscisfa.","image":"https://hydeparkwinterwonderland.com/static/252d7fe6693a6a8b1887bd2049204103/039f7/2021-503x503-3.webp","emails_registered":[]},{"id":"new-years-eve-in-london-2023","title":"New Years Eve in London 2023 ","city":"London","description":"Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscisfa.","image":"https://images.unsplash.com/photo-1521478413868-1bbd982fa4a5?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1170&q=80","emails_registered":[]},{"id":"'edtech-world-summit-2022","title":"EdTech World Summit 2022","city":"london","description":"Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscisfa.","image":"https://images.unsplash.com/photo-1540575467063-178a50c2df87?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1170&q=80","emails_registered":["alicia@gmail.com","monica@gmail.com"]},{"id":"sigala-at-electric-brixton","title":"Sigala at Electric Brixton","city":"london","description":"Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscisfa.","image":"https://images.unsplash.com/photo-1478147427282-58a87a120781?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1170&q=80","emails_registered":["monica@gmail.com"]},{"id":"kiss-haunted-house-party-2022","title":"KISS Haunted House Party 2022","city":"london","description":"Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscisfa.","image":"https://wembleypark.com/media/images/KISS-HHP-42-1440x810-Logos-Date-de.2e16d0ba.fill-496x279.jpg","emails_registered":[]},{"id":"sf-blockchain-week","title":"SF Blockchain Week","city":"san-francisco","description":"Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscisfa.","image":"https://images.unsplash.com/photo-1516245834210-c4c142787335?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1169&q=80","emails_registered":["","","","laura@gmail.com","laura@gmail.com","laura@gmail.com"]},{"id":"innovation-summit-san-francisco","title":"Innovation Summit San Francisco","city":"san-francisco","description":"Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscisfa.","image":"https://images.unsplash.com/photo-1521464302861-ce943915d1c3?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1171&q=80","emails_registered":[]},{"id":"fan-expo-san-francisco","title":"FAN EXPO San Francisco","city":"san-francisco","description":"Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscisfa.","image":"https://images.unsplash.com/photo-1608889825103-eb5ed706fc64?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=880&q=80","emails_registered":[]},{"id":"san-francisco-opera---san-francisco-tickets","title":"San Francisco Opera - San Francisco Tickets","city":"san-francisco","description":"Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscisfa.","image":"https://images.unsplash.com/photo-1580809361436-42a7ec204889?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1074&q=80","emails_registered":[]},{"id":"concert-christian-löffler-+-detect-ensemble","title":"Concert Christian Löffler + Detect Ensemble","city":"barcelona","description":"Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscisfa.","image":"https://images.unsplash.com/photo-1478147427282-58a87a120781?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1170&q=80","emails_registered":["alicia@gmail.com","monica@gmail.com"]},{"id":"the-halloween-house-party","title":"The Halloween House Party","city":"barcelona","description":"Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscisfa.","image":"https://images.unsplash.com/photo-1587407627257-27b7127c868c?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=687&q=80","emails_registered":["alicia@gmail.com","monica@gmail.com","david@yahoo.com","claire@ss.com"]},{"id":"international-conference-on-industrial-design","title":"International Conference on Industrial Design","city":"barcelona","description":"Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscisfa.","image":"https://images.unsplash.com/photo-1475721027785-f74eccf877e2?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1170&q=80","emails_registered":["alicia@gmail.com","monica@gmail.com"]},{"id":"world-congress-2022---barcelona","title":"World Congress 2022 - Barcelona","city":"barcelona","description":"Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscisfa.","image":"https://images.unsplash.com/photo-1540575467063-178a50c2df87?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1170&q=80","emails_registered":["alicia@gmail.com","monica@gmail.com"]},{"id":"riskminds-international","title":"RiskMinds International","city":"barcelona","description":"Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscisfa.","image":"https://images.unsplash.com/photo-1591115765373-5207764f72e7?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1170&q=80","emails_registered":["alicia@gmail.com","monica@gmail.com"]}]}
--------------------------------------------------------------------------------
/yarn.lock:
--------------------------------------------------------------------------------
1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
2 | # yarn lockfile v1
3 |
4 |
5 | "@babel/runtime-corejs3@^7.10.2":
6 | "integrity" "sha512-oWNn1ZlGde7b4i/3tnixpH9qI0bOAACiUs+KEES4UUCnsPjVWFlWdLV/iwJuPC2qp3EowbAqsm+0XqNwnwYhxA=="
7 | "resolved" "https://registry.npmjs.org/@babel/runtime-corejs3/-/runtime-corejs3-7.19.6.tgz"
8 | "version" "7.19.6"
9 | dependencies:
10 | "core-js-pure" "^3.25.1"
11 | "regenerator-runtime" "^0.13.4"
12 |
13 | "@babel/runtime@^7.10.2", "@babel/runtime@^7.18.9":
14 | "integrity" "sha512-EXpLCrk55f+cYqmHsSR+yD/0gAIMxxA9QK9lnQWzhMCvt+YmoBN7Zx94s++Kv0+unHk39vxNO8t+CMA2WSS3wA=="
15 | "resolved" "https://registry.npmjs.org/@babel/runtime/-/runtime-7.19.4.tgz"
16 | "version" "7.19.4"
17 | dependencies:
18 | "regenerator-runtime" "^0.13.4"
19 |
20 | "@eslint/eslintrc@^1.3.3":
21 | "integrity" "sha512-uj3pT6Mg+3t39fvLrj8iuCIJ38zKO9FpGtJ4BBJebJhEwjoT+KLVNCcHT5QC9NGRIEi7fZ0ZR8YRb884auB4Lg=="
22 | "resolved" "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-1.3.3.tgz"
23 | "version" "1.3.3"
24 | dependencies:
25 | "ajv" "^6.12.4"
26 | "debug" "^4.3.2"
27 | "espree" "^9.4.0"
28 | "globals" "^13.15.0"
29 | "ignore" "^5.2.0"
30 | "import-fresh" "^3.2.1"
31 | "js-yaml" "^4.1.0"
32 | "minimatch" "^3.1.2"
33 | "strip-json-comments" "^3.1.1"
34 |
35 | "@humanwhocodes/config-array@^0.11.6":
36 | "integrity" "sha512-jJr+hPTJYKyDILJfhNSHsjiwXYf26Flsz8DvNndOsHs5pwSnpGUEy8yzF0JYhCEvTDdV2vuOK5tt8BVhwO5/hg=="
37 | "resolved" "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.6.tgz"
38 | "version" "0.11.6"
39 | dependencies:
40 | "@humanwhocodes/object-schema" "^1.2.1"
41 | "debug" "^4.1.1"
42 | "minimatch" "^3.0.4"
43 |
44 | "@humanwhocodes/module-importer@^1.0.1":
45 | "integrity" "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA=="
46 | "resolved" "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz"
47 | "version" "1.0.1"
48 |
49 | "@humanwhocodes/object-schema@^1.2.1":
50 | "integrity" "sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA=="
51 | "resolved" "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz"
52 | "version" "1.2.1"
53 |
54 | "@next/env@12.3.1":
55 | "integrity" "sha512-9P9THmRFVKGKt9DYqeC2aKIxm8rlvkK38V1P1sRE7qyoPBIs8l9oo79QoSdPtOWfzkbDAVUqvbQGgTMsb8BtJg=="
56 | "resolved" "https://registry.npmjs.org/@next/env/-/env-12.3.1.tgz"
57 | "version" "12.3.1"
58 |
59 | "@next/eslint-plugin-next@12.3.1":
60 | "integrity" "sha512-sw+lTf6r6P0j+g/n9y4qdWWI2syPqZx+uc0+B/fRENqfR3KpSid6MIKqc9gNwGhJASazEQ5b3w8h4cAET213jw=="
61 | "resolved" "https://registry.npmjs.org/@next/eslint-plugin-next/-/eslint-plugin-next-12.3.1.tgz"
62 | "version" "12.3.1"
63 | dependencies:
64 | "glob" "7.1.7"
65 |
66 | "@next/swc-darwin-x64@12.3.1":
67 | "integrity" "sha512-9S6EVueCVCyGf2vuiLiGEHZCJcPAxglyckTZcEwLdJwozLqN0gtS0Eq0bQlGS3dH49Py/rQYpZ3KVWZ9BUf/WA=="
68 | "resolved" "https://registry.npmjs.org/@next/swc-darwin-x64/-/swc-darwin-x64-12.3.1.tgz"
69 | "version" "12.3.1"
70 |
71 | "@nodelib/fs.scandir@2.1.5":
72 | "integrity" "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g=="
73 | "resolved" "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz"
74 | "version" "2.1.5"
75 | dependencies:
76 | "@nodelib/fs.stat" "2.0.5"
77 | "run-parallel" "^1.1.9"
78 |
79 | "@nodelib/fs.stat@^2.0.2", "@nodelib/fs.stat@2.0.5":
80 | "integrity" "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A=="
81 | "resolved" "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz"
82 | "version" "2.0.5"
83 |
84 | "@nodelib/fs.walk@^1.2.3", "@nodelib/fs.walk@^1.2.8":
85 | "integrity" "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg=="
86 | "resolved" "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz"
87 | "version" "1.2.8"
88 | dependencies:
89 | "@nodelib/fs.scandir" "2.1.5"
90 | "fastq" "^1.6.0"
91 |
92 | "@rushstack/eslint-patch@^1.1.3":
93 | "integrity" "sha512-sXo/qW2/pAcmT43VoRKOJbDOfV3cYpq3szSVfIThQXNt+E4DfKj361vaAt3c88U5tPUxzEswam7GW48PJqtKAg=="
94 | "resolved" "https://registry.npmjs.org/@rushstack/eslint-patch/-/eslint-patch-1.2.0.tgz"
95 | "version" "1.2.0"
96 |
97 | "@swc/helpers@0.4.11":
98 | "integrity" "sha512-rEUrBSGIoSFuYxwBYtlUFMlE2CwGhmW+w9355/5oduSw8e5h2+Tj4UrAGNNgP9915++wj5vkQo0UuOBqOAq4nw=="
99 | "resolved" "https://registry.npmjs.org/@swc/helpers/-/helpers-0.4.11.tgz"
100 | "version" "0.4.11"
101 | dependencies:
102 | "tslib" "^2.4.0"
103 |
104 | "@types/json5@^0.0.29":
105 | "integrity" "sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ=="
106 | "resolved" "https://registry.npmjs.org/@types/json5/-/json5-0.0.29.tgz"
107 | "version" "0.0.29"
108 |
109 | "@typescript-eslint/parser@^5.21.0":
110 | "integrity" "sha512-IK6x55va5w4YvXd4b3VrXQPldV9vQTxi5ov+g4pMANsXPTXOcfjx08CRR1Dfrcc51syPtXHF5bgLlMHYFrvQtg=="
111 | "resolved" "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.40.1.tgz"
112 | "version" "5.40.1"
113 | dependencies:
114 | "@typescript-eslint/scope-manager" "5.40.1"
115 | "@typescript-eslint/types" "5.40.1"
116 | "@typescript-eslint/typescript-estree" "5.40.1"
117 | "debug" "^4.3.4"
118 |
119 | "@typescript-eslint/scope-manager@5.40.1":
120 | "integrity" "sha512-jkn4xsJiUQucI16OLCXrLRXDZ3afKhOIqXs4R3O+M00hdQLKR58WuyXPZZjhKLFCEP2g+TXdBRtLQ33UfAdRUg=="
121 | "resolved" "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.40.1.tgz"
122 | "version" "5.40.1"
123 | dependencies:
124 | "@typescript-eslint/types" "5.40.1"
125 | "@typescript-eslint/visitor-keys" "5.40.1"
126 |
127 | "@typescript-eslint/types@5.40.1":
128 | "integrity" "sha512-Icg9kiuVJSwdzSQvtdGspOlWNjVDnF3qVIKXdJ103o36yRprdl3Ge5cABQx+csx960nuMF21v8qvO31v9t3OHw=="
129 | "resolved" "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.40.1.tgz"
130 | "version" "5.40.1"
131 |
132 | "@typescript-eslint/typescript-estree@5.40.1":
133 | "integrity" "sha512-5QTP/nW5+60jBcEPfXy/EZL01qrl9GZtbgDZtDPlfW5zj/zjNrdI2B5zMUHmOsfvOr2cWqwVdWjobCiHcedmQA=="
134 | "resolved" "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.40.1.tgz"
135 | "version" "5.40.1"
136 | dependencies:
137 | "@typescript-eslint/types" "5.40.1"
138 | "@typescript-eslint/visitor-keys" "5.40.1"
139 | "debug" "^4.3.4"
140 | "globby" "^11.1.0"
141 | "is-glob" "^4.0.3"
142 | "semver" "^7.3.7"
143 | "tsutils" "^3.21.0"
144 |
145 | "@typescript-eslint/visitor-keys@5.40.1":
146 | "integrity" "sha512-A2DGmeZ+FMja0geX5rww+DpvILpwo1OsiQs0M+joPWJYsiEFBLsH0y1oFymPNul6Z5okSmHpP4ivkc2N0Cgfkw=="
147 | "resolved" "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.40.1.tgz"
148 | "version" "5.40.1"
149 | dependencies:
150 | "@typescript-eslint/types" "5.40.1"
151 | "eslint-visitor-keys" "^3.3.0"
152 |
153 | "acorn-jsx@^5.3.2":
154 | "integrity" "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ=="
155 | "resolved" "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz"
156 | "version" "5.3.2"
157 |
158 | "acorn@^6.0.0 || ^7.0.0 || ^8.0.0", "acorn@^8.8.0":
159 | "integrity" "sha512-QOxyigPVrpZ2GXT+PFyZTl6TtOFc5egxHIP9IlQ+RbupQuX4RkT/Bee4/kQuC02Xkzg84JcT7oLYtDIQxp+v7w=="
160 | "resolved" "https://registry.npmjs.org/acorn/-/acorn-8.8.0.tgz"
161 | "version" "8.8.0"
162 |
163 | "ajv@^6.10.0", "ajv@^6.12.4":
164 | "integrity" "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g=="
165 | "resolved" "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz"
166 | "version" "6.12.6"
167 | dependencies:
168 | "fast-deep-equal" "^3.1.1"
169 | "fast-json-stable-stringify" "^2.0.0"
170 | "json-schema-traverse" "^0.4.1"
171 | "uri-js" "^4.2.2"
172 |
173 | "ansi-regex@^5.0.1":
174 | "integrity" "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ=="
175 | "resolved" "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz"
176 | "version" "5.0.1"
177 |
178 | "ansi-styles@^4.1.0":
179 | "integrity" "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg=="
180 | "resolved" "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz"
181 | "version" "4.3.0"
182 | dependencies:
183 | "color-convert" "^2.0.1"
184 |
185 | "anymatch@~3.1.2":
186 | "integrity" "sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg=="
187 | "resolved" "https://registry.npmjs.org/anymatch/-/anymatch-3.1.2.tgz"
188 | "version" "3.1.2"
189 | dependencies:
190 | "normalize-path" "^3.0.0"
191 | "picomatch" "^2.0.4"
192 |
193 | "argparse@^2.0.1":
194 | "integrity" "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q=="
195 | "resolved" "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz"
196 | "version" "2.0.1"
197 |
198 | "aria-query@^4.2.2":
199 | "integrity" "sha512-o/HelwhuKpTj/frsOsbNLNgnNGVIFsVP/SW2BSF14gVl7kAfMOJ6/8wUAUvG1R1NHKrfG+2sHZTu0yauT1qBrA=="
200 | "resolved" "https://registry.npmjs.org/aria-query/-/aria-query-4.2.2.tgz"
201 | "version" "4.2.2"
202 | dependencies:
203 | "@babel/runtime" "^7.10.2"
204 | "@babel/runtime-corejs3" "^7.10.2"
205 |
206 | "array-includes@^3.1.4", "array-includes@^3.1.5":
207 | "integrity" "sha512-iSDYZMMyTPkiFasVqfuAQnWAYcvO/SeBSCGKePoEthjp4LEMTe4uLc7b025o4jAZpHhihh8xPo99TNWUWWkGDQ=="
208 | "resolved" "https://registry.npmjs.org/array-includes/-/array-includes-3.1.5.tgz"
209 | "version" "3.1.5"
210 | dependencies:
211 | "call-bind" "^1.0.2"
212 | "define-properties" "^1.1.4"
213 | "es-abstract" "^1.19.5"
214 | "get-intrinsic" "^1.1.1"
215 | "is-string" "^1.0.7"
216 |
217 | "array-union@^2.1.0":
218 | "integrity" "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw=="
219 | "resolved" "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz"
220 | "version" "2.1.0"
221 |
222 | "array.prototype.flat@^1.2.5":
223 | "integrity" "sha512-12IUEkHsAhA4DY5s0FPgNXIdc8VRSqD9Zp78a5au9abH/SOBrsp082JOWFNTjkMozh8mqcdiKuaLGhPeYztxSw=="
224 | "resolved" "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.3.0.tgz"
225 | "version" "1.3.0"
226 | dependencies:
227 | "call-bind" "^1.0.2"
228 | "define-properties" "^1.1.3"
229 | "es-abstract" "^1.19.2"
230 | "es-shim-unscopables" "^1.0.0"
231 |
232 | "array.prototype.flatmap@^1.3.0":
233 | "integrity" "sha512-PZC9/8TKAIxcWKdyeb77EzULHPrIX/tIZebLJUQOMR1OwYosT8yggdfWScfTBCDj5utONvOuPQQumYsU2ULbkg=="
234 | "resolved" "https://registry.npmjs.org/array.prototype.flatmap/-/array.prototype.flatmap-1.3.0.tgz"
235 | "version" "1.3.0"
236 | dependencies:
237 | "call-bind" "^1.0.2"
238 | "define-properties" "^1.1.3"
239 | "es-abstract" "^1.19.2"
240 | "es-shim-unscopables" "^1.0.0"
241 |
242 | "ast-types-flow@^0.0.7":
243 | "integrity" "sha512-eBvWn1lvIApYMhzQMsu9ciLfkBY499mFZlNqG+/9WR7PVlroQw0vG30cOQQbaKz3sCEc44TAOu2ykzqXSNnwag=="
244 | "resolved" "https://registry.npmjs.org/ast-types-flow/-/ast-types-flow-0.0.7.tgz"
245 | "version" "0.0.7"
246 |
247 | "axe-core@^4.4.3":
248 | "integrity" "sha512-32+ub6kkdhhWick/UjvEwRchgoetXqTK14INLqbGm5U2TzBkBNF3nQtLYm8ovxSkQWArjEQvftCKryjZaATu3w=="
249 | "resolved" "https://registry.npmjs.org/axe-core/-/axe-core-4.4.3.tgz"
250 | "version" "4.4.3"
251 |
252 | "axobject-query@^2.2.0":
253 | "integrity" "sha512-Td525n+iPOOyUQIeBfcASuG6uJsDOITl7Mds5gFyerkWiX7qhUTdYUBlSgNMyVqtSJqwpt1kXGLdUt6SykLMRA=="
254 | "resolved" "https://registry.npmjs.org/axobject-query/-/axobject-query-2.2.0.tgz"
255 | "version" "2.2.0"
256 |
257 | "balanced-match@^1.0.0":
258 | "integrity" "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw=="
259 | "resolved" "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz"
260 | "version" "1.0.2"
261 |
262 | "binary-extensions@^2.0.0":
263 | "integrity" "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA=="
264 | "resolved" "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz"
265 | "version" "2.2.0"
266 |
267 | "brace-expansion@^1.1.7":
268 | "integrity" "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA=="
269 | "resolved" "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz"
270 | "version" "1.1.11"
271 | dependencies:
272 | "balanced-match" "^1.0.0"
273 | "concat-map" "0.0.1"
274 |
275 | "braces@^3.0.2", "braces@~3.0.2":
276 | "integrity" "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A=="
277 | "resolved" "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz"
278 | "version" "3.0.2"
279 | dependencies:
280 | "fill-range" "^7.0.1"
281 |
282 | "call-bind@^1.0.0", "call-bind@^1.0.2":
283 | "integrity" "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA=="
284 | "resolved" "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz"
285 | "version" "1.0.2"
286 | dependencies:
287 | "function-bind" "^1.1.1"
288 | "get-intrinsic" "^1.0.2"
289 |
290 | "callsites@^3.0.0":
291 | "integrity" "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ=="
292 | "resolved" "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz"
293 | "version" "3.1.0"
294 |
295 | "caniuse-lite@^1.0.30001406":
296 | "integrity" "sha512-09iwWGOlifvE1XuHokFMP7eR38a0JnajoyL3/i87c8ZjRWRrdKo1fqjNfugfBD0UDBIOz0U+jtNhJ0EPm1VleQ=="
297 | "resolved" "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001423.tgz"
298 | "version" "1.0.30001423"
299 |
300 | "chalk@^4.0.0":
301 | "integrity" "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA=="
302 | "resolved" "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz"
303 | "version" "4.1.2"
304 | dependencies:
305 | "ansi-styles" "^4.1.0"
306 | "supports-color" "^7.1.0"
307 |
308 | "chokidar@>=3.0.0 <4.0.0":
309 | "integrity" "sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw=="
310 | "resolved" "https://registry.npmjs.org/chokidar/-/chokidar-3.5.3.tgz"
311 | "version" "3.5.3"
312 | dependencies:
313 | "anymatch" "~3.1.2"
314 | "braces" "~3.0.2"
315 | "glob-parent" "~5.1.2"
316 | "is-binary-path" "~2.1.0"
317 | "is-glob" "~4.0.1"
318 | "normalize-path" "~3.0.0"
319 | "readdirp" "~3.6.0"
320 | optionalDependencies:
321 | "fsevents" "~2.3.2"
322 |
323 | "color-convert@^2.0.1":
324 | "integrity" "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ=="
325 | "resolved" "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz"
326 | "version" "2.0.1"
327 | dependencies:
328 | "color-name" "~1.1.4"
329 |
330 | "color-name@~1.1.4":
331 | "integrity" "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA=="
332 | "resolved" "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz"
333 | "version" "1.1.4"
334 |
335 | "concat-map@0.0.1":
336 | "integrity" "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg=="
337 | "resolved" "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz"
338 | "version" "0.0.1"
339 |
340 | "core-js-pure@^3.25.1":
341 | "integrity" "sha512-LiN6fylpVBVwT8twhhluD9TzXmZQQsr2I2eIKtWNbZI1XMfBT7CV18itaN6RA7EtQd/SDdRx/wzvAShX2HvhQA=="
342 | "resolved" "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.26.0.tgz"
343 | "version" "3.26.0"
344 |
345 | "cross-spawn@^7.0.2":
346 | "integrity" "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w=="
347 | "resolved" "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz"
348 | "version" "7.0.3"
349 | dependencies:
350 | "path-key" "^3.1.0"
351 | "shebang-command" "^2.0.0"
352 | "which" "^2.0.1"
353 |
354 | "damerau-levenshtein@^1.0.8":
355 | "integrity" "sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA=="
356 | "resolved" "https://registry.npmjs.org/damerau-levenshtein/-/damerau-levenshtein-1.0.8.tgz"
357 | "version" "1.0.8"
358 |
359 | "debug@^2.6.9":
360 | "integrity" "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA=="
361 | "resolved" "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz"
362 | "version" "2.6.9"
363 | dependencies:
364 | "ms" "2.0.0"
365 |
366 | "debug@^3.2.7":
367 | "integrity" "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ=="
368 | "resolved" "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz"
369 | "version" "3.2.7"
370 | dependencies:
371 | "ms" "^2.1.1"
372 |
373 | "debug@^4.1.1", "debug@^4.3.2", "debug@^4.3.4":
374 | "integrity" "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ=="
375 | "resolved" "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz"
376 | "version" "4.3.4"
377 | dependencies:
378 | "ms" "2.1.2"
379 |
380 | "deep-is@^0.1.3":
381 | "integrity" "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ=="
382 | "resolved" "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz"
383 | "version" "0.1.4"
384 |
385 | "define-properties@^1.1.3", "define-properties@^1.1.4":
386 | "integrity" "sha512-uckOqKcfaVvtBdsVkdPv3XjveQJsNQqmhXgRi8uhvWWuPYZCNlzT8qAyblUgNoXdHdjMTzAqeGjAoli8f+bzPA=="
387 | "resolved" "https://registry.npmjs.org/define-properties/-/define-properties-1.1.4.tgz"
388 | "version" "1.1.4"
389 | dependencies:
390 | "has-property-descriptors" "^1.0.0"
391 | "object-keys" "^1.1.1"
392 |
393 | "dir-glob@^3.0.1":
394 | "integrity" "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA=="
395 | "resolved" "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz"
396 | "version" "3.0.1"
397 | dependencies:
398 | "path-type" "^4.0.0"
399 |
400 | "doctrine@^2.1.0":
401 | "integrity" "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw=="
402 | "resolved" "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz"
403 | "version" "2.1.0"
404 | dependencies:
405 | "esutils" "^2.0.2"
406 |
407 | "doctrine@^3.0.0":
408 | "integrity" "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w=="
409 | "resolved" "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz"
410 | "version" "3.0.0"
411 | dependencies:
412 | "esutils" "^2.0.2"
413 |
414 | "emoji-regex@^9.2.2":
415 | "integrity" "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg=="
416 | "resolved" "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz"
417 | "version" "9.2.2"
418 |
419 | "es-abstract@^1.19.0", "es-abstract@^1.19.1", "es-abstract@^1.19.2", "es-abstract@^1.19.5":
420 | "integrity" "sha512-0UtvRN79eMe2L+UNEF1BwRe364sj/DXhQ/k5FmivgoSdpM90b8Jc0mDzKMGo7QS0BVbOP/bTwBKNnDc9rNzaPA=="
421 | "resolved" "https://registry.npmjs.org/es-abstract/-/es-abstract-1.20.4.tgz"
422 | "version" "1.20.4"
423 | dependencies:
424 | "call-bind" "^1.0.2"
425 | "es-to-primitive" "^1.2.1"
426 | "function-bind" "^1.1.1"
427 | "function.prototype.name" "^1.1.5"
428 | "get-intrinsic" "^1.1.3"
429 | "get-symbol-description" "^1.0.0"
430 | "has" "^1.0.3"
431 | "has-property-descriptors" "^1.0.0"
432 | "has-symbols" "^1.0.3"
433 | "internal-slot" "^1.0.3"
434 | "is-callable" "^1.2.7"
435 | "is-negative-zero" "^2.0.2"
436 | "is-regex" "^1.1.4"
437 | "is-shared-array-buffer" "^1.0.2"
438 | "is-string" "^1.0.7"
439 | "is-weakref" "^1.0.2"
440 | "object-inspect" "^1.12.2"
441 | "object-keys" "^1.1.1"
442 | "object.assign" "^4.1.4"
443 | "regexp.prototype.flags" "^1.4.3"
444 | "safe-regex-test" "^1.0.0"
445 | "string.prototype.trimend" "^1.0.5"
446 | "string.prototype.trimstart" "^1.0.5"
447 | "unbox-primitive" "^1.0.2"
448 |
449 | "es-shim-unscopables@^1.0.0":
450 | "integrity" "sha512-Jm6GPcCdC30eMLbZ2x8z2WuRwAws3zTBBKuusffYVUrNj/GVSUAZ+xKMaUpfNDR5IbyNA5LJbaecoUVbmUcB1w=="
451 | "resolved" "https://registry.npmjs.org/es-shim-unscopables/-/es-shim-unscopables-1.0.0.tgz"
452 | "version" "1.0.0"
453 | dependencies:
454 | "has" "^1.0.3"
455 |
456 | "es-to-primitive@^1.2.1":
457 | "integrity" "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA=="
458 | "resolved" "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz"
459 | "version" "1.2.1"
460 | dependencies:
461 | "is-callable" "^1.1.4"
462 | "is-date-object" "^1.0.1"
463 | "is-symbol" "^1.0.2"
464 |
465 | "escape-string-regexp@^4.0.0":
466 | "integrity" "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA=="
467 | "resolved" "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz"
468 | "version" "4.0.0"
469 |
470 | "eslint-config-next@12.3.1":
471 | "integrity" "sha512-EN/xwKPU6jz1G0Qi6Bd/BqMnHLyRAL0VsaQaWA7F3KkjAgZHi4f1uL1JKGWNxdQpHTW/sdGONBd0bzxUka/DJg=="
472 | "resolved" "https://registry.npmjs.org/eslint-config-next/-/eslint-config-next-12.3.1.tgz"
473 | "version" "12.3.1"
474 | dependencies:
475 | "@next/eslint-plugin-next" "12.3.1"
476 | "@rushstack/eslint-patch" "^1.1.3"
477 | "@typescript-eslint/parser" "^5.21.0"
478 | "eslint-import-resolver-node" "^0.3.6"
479 | "eslint-import-resolver-typescript" "^2.7.1"
480 | "eslint-plugin-import" "^2.26.0"
481 | "eslint-plugin-jsx-a11y" "^6.5.1"
482 | "eslint-plugin-react" "^7.31.7"
483 | "eslint-plugin-react-hooks" "^4.5.0"
484 |
485 | "eslint-import-resolver-node@^0.3.6":
486 | "integrity" "sha512-0En0w03NRVMn9Uiyn8YRPDKvWjxCWkslUEhGNTdGx15RvPJYQ+lbOlqrlNI2vEAs4pDYK4f/HN2TbDmk5TP0iw=="
487 | "resolved" "https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.6.tgz"
488 | "version" "0.3.6"
489 | dependencies:
490 | "debug" "^3.2.7"
491 | "resolve" "^1.20.0"
492 |
493 | "eslint-import-resolver-typescript@^2.7.1":
494 | "integrity" "sha512-00UbgGwV8bSgUv34igBDbTOtKhqoRMy9bFjNehT40bXg6585PNIct8HhXZ0SybqB9rWtXj9crcku8ndDn/gIqQ=="
495 | "resolved" "https://registry.npmjs.org/eslint-import-resolver-typescript/-/eslint-import-resolver-typescript-2.7.1.tgz"
496 | "version" "2.7.1"
497 | dependencies:
498 | "debug" "^4.3.4"
499 | "glob" "^7.2.0"
500 | "is-glob" "^4.0.3"
501 | "resolve" "^1.22.0"
502 | "tsconfig-paths" "^3.14.1"
503 |
504 | "eslint-module-utils@^2.7.3":
505 | "integrity" "sha512-j4GT+rqzCoRKHwURX7pddtIPGySnX9Si/cgMI5ztrcqOPtk5dDEeZ34CQVPphnqkJytlc97Vuk05Um2mJ3gEQA=="
506 | "resolved" "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.7.4.tgz"
507 | "version" "2.7.4"
508 | dependencies:
509 | "debug" "^3.2.7"
510 |
511 | "eslint-plugin-import@*", "eslint-plugin-import@^2.26.0":
512 | "integrity" "sha512-hYfi3FXaM8WPLf4S1cikh/r4IxnO6zrhZbEGz2b660EJRbuxgpDS5gkCuYgGWg2xxh2rBuIr4Pvhve/7c31koA=="
513 | "resolved" "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.26.0.tgz"
514 | "version" "2.26.0"
515 | dependencies:
516 | "array-includes" "^3.1.4"
517 | "array.prototype.flat" "^1.2.5"
518 | "debug" "^2.6.9"
519 | "doctrine" "^2.1.0"
520 | "eslint-import-resolver-node" "^0.3.6"
521 | "eslint-module-utils" "^2.7.3"
522 | "has" "^1.0.3"
523 | "is-core-module" "^2.8.1"
524 | "is-glob" "^4.0.3"
525 | "minimatch" "^3.1.2"
526 | "object.values" "^1.1.5"
527 | "resolve" "^1.22.0"
528 | "tsconfig-paths" "^3.14.1"
529 |
530 | "eslint-plugin-jsx-a11y@^6.5.1":
531 | "integrity" "sha512-sXgFVNHiWffBq23uiS/JaP6eVR622DqwB4yTzKvGZGcPq6/yZ3WmOZfuBks/vHWo9GaFOqC2ZK4i6+C35knx7Q=="
532 | "resolved" "https://registry.npmjs.org/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.6.1.tgz"
533 | "version" "6.6.1"
534 | dependencies:
535 | "@babel/runtime" "^7.18.9"
536 | "aria-query" "^4.2.2"
537 | "array-includes" "^3.1.5"
538 | "ast-types-flow" "^0.0.7"
539 | "axe-core" "^4.4.3"
540 | "axobject-query" "^2.2.0"
541 | "damerau-levenshtein" "^1.0.8"
542 | "emoji-regex" "^9.2.2"
543 | "has" "^1.0.3"
544 | "jsx-ast-utils" "^3.3.2"
545 | "language-tags" "^1.0.5"
546 | "minimatch" "^3.1.2"
547 | "semver" "^6.3.0"
548 |
549 | "eslint-plugin-react-hooks@^4.5.0":
550 | "integrity" "sha512-oFc7Itz9Qxh2x4gNHStv3BqJq54ExXmfC+a1NjAta66IAN87Wu0R/QArgIS9qKzX3dXKPI9H5crl9QchNMY9+g=="
551 | "resolved" "https://registry.npmjs.org/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-4.6.0.tgz"
552 | "version" "4.6.0"
553 |
554 | "eslint-plugin-react@^7.31.7":
555 | "integrity" "sha512-e4N/nc6AAlg4UKW/mXeYWd3R++qUano5/o+t+wnWxIf+bLsOaH3a4q74kX3nDjYym3VBN4HyO9nEn1GcAqgQOA=="
556 | "resolved" "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.31.10.tgz"
557 | "version" "7.31.10"
558 | dependencies:
559 | "array-includes" "^3.1.5"
560 | "array.prototype.flatmap" "^1.3.0"
561 | "doctrine" "^2.1.0"
562 | "estraverse" "^5.3.0"
563 | "jsx-ast-utils" "^2.4.1 || ^3.0.0"
564 | "minimatch" "^3.1.2"
565 | "object.entries" "^1.1.5"
566 | "object.fromentries" "^2.0.5"
567 | "object.hasown" "^1.1.1"
568 | "object.values" "^1.1.5"
569 | "prop-types" "^15.8.1"
570 | "resolve" "^2.0.0-next.3"
571 | "semver" "^6.3.0"
572 | "string.prototype.matchall" "^4.0.7"
573 |
574 | "eslint-scope@^7.1.1":
575 | "integrity" "sha512-QKQM/UXpIiHcLqJ5AOyIW7XZmzjkzQXYE54n1++wb0u9V/abW3l9uQnxX8Z5Xd18xyKIMTUAyQ0k1e8pz6LUrw=="
576 | "resolved" "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.1.1.tgz"
577 | "version" "7.1.1"
578 | dependencies:
579 | "esrecurse" "^4.3.0"
580 | "estraverse" "^5.2.0"
581 |
582 | "eslint-utils@^3.0.0":
583 | "integrity" "sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA=="
584 | "resolved" "https://registry.npmjs.org/eslint-utils/-/eslint-utils-3.0.0.tgz"
585 | "version" "3.0.0"
586 | dependencies:
587 | "eslint-visitor-keys" "^2.0.0"
588 |
589 | "eslint-visitor-keys@^2.0.0":
590 | "integrity" "sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw=="
591 | "resolved" "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz"
592 | "version" "2.1.0"
593 |
594 | "eslint-visitor-keys@^3.3.0":
595 | "integrity" "sha512-mQ+suqKJVyeuwGYHAdjMFqjCyfl8+Ldnxuyp3ldiMBFKkvytrXUZWaiPCEav8qDHKty44bD+qV1IP4T+w+xXRA=="
596 | "resolved" "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.3.0.tgz"
597 | "version" "3.3.0"
598 |
599 | "eslint@*", "eslint@^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8", "eslint@^3 || ^4 || ^5 || ^6 || ^7 || ^8", "eslint@^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0", "eslint@^6.0.0 || ^7.0.0 || ^8.0.0", "eslint@^7.23.0 || ^8.0.0", "eslint@>=5", "eslint@8.26.0":
600 | "integrity" "sha512-kzJkpaw1Bfwheq4VXUezFriD1GxszX6dUekM7Z3aC2o4hju+tsR/XyTC3RcoSD7jmy9VkPU3+N6YjVU2e96Oyg=="
601 | "resolved" "https://registry.npmjs.org/eslint/-/eslint-8.26.0.tgz"
602 | "version" "8.26.0"
603 | dependencies:
604 | "@eslint/eslintrc" "^1.3.3"
605 | "@humanwhocodes/config-array" "^0.11.6"
606 | "@humanwhocodes/module-importer" "^1.0.1"
607 | "@nodelib/fs.walk" "^1.2.8"
608 | "ajv" "^6.10.0"
609 | "chalk" "^4.0.0"
610 | "cross-spawn" "^7.0.2"
611 | "debug" "^4.3.2"
612 | "doctrine" "^3.0.0"
613 | "escape-string-regexp" "^4.0.0"
614 | "eslint-scope" "^7.1.1"
615 | "eslint-utils" "^3.0.0"
616 | "eslint-visitor-keys" "^3.3.0"
617 | "espree" "^9.4.0"
618 | "esquery" "^1.4.0"
619 | "esutils" "^2.0.2"
620 | "fast-deep-equal" "^3.1.3"
621 | "file-entry-cache" "^6.0.1"
622 | "find-up" "^5.0.0"
623 | "glob-parent" "^6.0.2"
624 | "globals" "^13.15.0"
625 | "grapheme-splitter" "^1.0.4"
626 | "ignore" "^5.2.0"
627 | "import-fresh" "^3.0.0"
628 | "imurmurhash" "^0.1.4"
629 | "is-glob" "^4.0.0"
630 | "is-path-inside" "^3.0.3"
631 | "js-sdsl" "^4.1.4"
632 | "js-yaml" "^4.1.0"
633 | "json-stable-stringify-without-jsonify" "^1.0.1"
634 | "levn" "^0.4.1"
635 | "lodash.merge" "^4.6.2"
636 | "minimatch" "^3.1.2"
637 | "natural-compare" "^1.4.0"
638 | "optionator" "^0.9.1"
639 | "regexpp" "^3.2.0"
640 | "strip-ansi" "^6.0.1"
641 | "strip-json-comments" "^3.1.0"
642 | "text-table" "^0.2.0"
643 |
644 | "espree@^9.4.0":
645 | "integrity" "sha512-DQmnRpLj7f6TgN/NYb0MTzJXL+vJF9h3pHy4JhCIs3zwcgez8xmGg3sXHcEO97BrmO2OSvCwMdfdlyl+E9KjOw=="
646 | "resolved" "https://registry.npmjs.org/espree/-/espree-9.4.0.tgz"
647 | "version" "9.4.0"
648 | dependencies:
649 | "acorn" "^8.8.0"
650 | "acorn-jsx" "^5.3.2"
651 | "eslint-visitor-keys" "^3.3.0"
652 |
653 | "esquery@^1.4.0":
654 | "integrity" "sha512-cCDispWt5vHHtwMY2YrAQ4ibFkAL8RbH5YGBnZBc90MolvvfkkQcJro/aZiAQUlQ3qgrYS6D6v8Gc5G5CQsc9w=="
655 | "resolved" "https://registry.npmjs.org/esquery/-/esquery-1.4.0.tgz"
656 | "version" "1.4.0"
657 | dependencies:
658 | "estraverse" "^5.1.0"
659 |
660 | "esrecurse@^4.3.0":
661 | "integrity" "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag=="
662 | "resolved" "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz"
663 | "version" "4.3.0"
664 | dependencies:
665 | "estraverse" "^5.2.0"
666 |
667 | "estraverse@^5.1.0", "estraverse@^5.2.0", "estraverse@^5.3.0":
668 | "integrity" "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA=="
669 | "resolved" "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz"
670 | "version" "5.3.0"
671 |
672 | "esutils@^2.0.2":
673 | "integrity" "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g=="
674 | "resolved" "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz"
675 | "version" "2.0.3"
676 |
677 | "fast-deep-equal@^3.1.1", "fast-deep-equal@^3.1.3":
678 | "integrity" "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q=="
679 | "resolved" "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz"
680 | "version" "3.1.3"
681 |
682 | "fast-glob@^3.2.9":
683 | "integrity" "sha512-DVj4CQIYYow0BlaelwK1pHl5n5cRSJfM60UA0zK891sVInoPri2Ekj7+e1CT3/3qxXenpI+nBBmQAcJPJgaj4w=="
684 | "resolved" "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.12.tgz"
685 | "version" "3.2.12"
686 | dependencies:
687 | "@nodelib/fs.stat" "^2.0.2"
688 | "@nodelib/fs.walk" "^1.2.3"
689 | "glob-parent" "^5.1.2"
690 | "merge2" "^1.3.0"
691 | "micromatch" "^4.0.4"
692 |
693 | "fast-json-stable-stringify@^2.0.0":
694 | "integrity" "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw=="
695 | "resolved" "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz"
696 | "version" "2.1.0"
697 |
698 | "fast-levenshtein@^2.0.6":
699 | "integrity" "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw=="
700 | "resolved" "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz"
701 | "version" "2.0.6"
702 |
703 | "fastq@^1.6.0":
704 | "integrity" "sha512-YpkpUnK8od0o1hmeSc7UUs/eB/vIPWJYjKck2QKIzAf71Vm1AAQ3EbuZB3g2JIy+pg+ERD0vqI79KyZiB2e2Nw=="
705 | "resolved" "https://registry.npmjs.org/fastq/-/fastq-1.13.0.tgz"
706 | "version" "1.13.0"
707 | dependencies:
708 | "reusify" "^1.0.4"
709 |
710 | "file-entry-cache@^6.0.1":
711 | "integrity" "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg=="
712 | "resolved" "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz"
713 | "version" "6.0.1"
714 | dependencies:
715 | "flat-cache" "^3.0.4"
716 |
717 | "fill-range@^7.0.1":
718 | "integrity" "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ=="
719 | "resolved" "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz"
720 | "version" "7.0.1"
721 | dependencies:
722 | "to-regex-range" "^5.0.1"
723 |
724 | "find-up@^5.0.0":
725 | "integrity" "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng=="
726 | "resolved" "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz"
727 | "version" "5.0.0"
728 | dependencies:
729 | "locate-path" "^6.0.0"
730 | "path-exists" "^4.0.0"
731 |
732 | "flat-cache@^3.0.4":
733 | "integrity" "sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg=="
734 | "resolved" "https://registry.npmjs.org/flat-cache/-/flat-cache-3.0.4.tgz"
735 | "version" "3.0.4"
736 | dependencies:
737 | "flatted" "^3.1.0"
738 | "rimraf" "^3.0.2"
739 |
740 | "flatted@^3.1.0":
741 | "integrity" "sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ=="
742 | "resolved" "https://registry.npmjs.org/flatted/-/flatted-3.2.7.tgz"
743 | "version" "3.2.7"
744 |
745 | "fs.realpath@^1.0.0":
746 | "integrity" "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw=="
747 | "resolved" "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz"
748 | "version" "1.0.0"
749 |
750 | "fsevents@~2.3.2":
751 | "integrity" "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA=="
752 | "resolved" "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz"
753 | "version" "2.3.2"
754 |
755 | "function-bind@^1.1.1":
756 | "integrity" "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A=="
757 | "resolved" "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz"
758 | "version" "1.1.1"
759 |
760 | "function.prototype.name@^1.1.5":
761 | "integrity" "sha512-uN7m/BzVKQnCUF/iW8jYea67v++2u7m5UgENbHRtdDVclOUP+FMPlCNdmk0h/ysGyo2tavMJEDqJAkJdRa1vMA=="
762 | "resolved" "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.5.tgz"
763 | "version" "1.1.5"
764 | dependencies:
765 | "call-bind" "^1.0.2"
766 | "define-properties" "^1.1.3"
767 | "es-abstract" "^1.19.0"
768 | "functions-have-names" "^1.2.2"
769 |
770 | "functions-have-names@^1.2.2":
771 | "integrity" "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ=="
772 | "resolved" "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz"
773 | "version" "1.2.3"
774 |
775 | "get-intrinsic@^1.0.2", "get-intrinsic@^1.1.0", "get-intrinsic@^1.1.1", "get-intrinsic@^1.1.3":
776 | "integrity" "sha512-QJVz1Tj7MS099PevUG5jvnt9tSkXN8K14dxQlikJuPt4uD9hHAHjLyLBiLR5zELelBdD9QNRAXZzsJx0WaDL9A=="
777 | "resolved" "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.1.3.tgz"
778 | "version" "1.1.3"
779 | dependencies:
780 | "function-bind" "^1.1.1"
781 | "has" "^1.0.3"
782 | "has-symbols" "^1.0.3"
783 |
784 | "get-symbol-description@^1.0.0":
785 | "integrity" "sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw=="
786 | "resolved" "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.0.0.tgz"
787 | "version" "1.0.0"
788 | dependencies:
789 | "call-bind" "^1.0.2"
790 | "get-intrinsic" "^1.1.1"
791 |
792 | "glob-parent@^5.1.2":
793 | "integrity" "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow=="
794 | "resolved" "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz"
795 | "version" "5.1.2"
796 | dependencies:
797 | "is-glob" "^4.0.1"
798 |
799 | "glob-parent@^6.0.2":
800 | "integrity" "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A=="
801 | "resolved" "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz"
802 | "version" "6.0.2"
803 | dependencies:
804 | "is-glob" "^4.0.3"
805 |
806 | "glob-parent@~5.1.2":
807 | "integrity" "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow=="
808 | "resolved" "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz"
809 | "version" "5.1.2"
810 | dependencies:
811 | "is-glob" "^4.0.1"
812 |
813 | "glob@^7.1.3", "glob@^7.2.0":
814 | "integrity" "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q=="
815 | "resolved" "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz"
816 | "version" "7.2.3"
817 | dependencies:
818 | "fs.realpath" "^1.0.0"
819 | "inflight" "^1.0.4"
820 | "inherits" "2"
821 | "minimatch" "^3.1.1"
822 | "once" "^1.3.0"
823 | "path-is-absolute" "^1.0.0"
824 |
825 | "glob@7.1.7":
826 | "integrity" "sha512-OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ=="
827 | "resolved" "https://registry.npmjs.org/glob/-/glob-7.1.7.tgz"
828 | "version" "7.1.7"
829 | dependencies:
830 | "fs.realpath" "^1.0.0"
831 | "inflight" "^1.0.4"
832 | "inherits" "2"
833 | "minimatch" "^3.0.4"
834 | "once" "^1.3.0"
835 | "path-is-absolute" "^1.0.0"
836 |
837 | "globals@^13.15.0":
838 | "integrity" "sha512-1C+6nQRb1GwGMKm2dH/E7enFAMxGTmGI7/dEdhy/DNelv85w9B72t3uc5frtMNXIbzrarJJ/lTCjcaZwbLJmyw=="
839 | "resolved" "https://registry.npmjs.org/globals/-/globals-13.17.0.tgz"
840 | "version" "13.17.0"
841 | dependencies:
842 | "type-fest" "^0.20.2"
843 |
844 | "globby@^11.1.0":
845 | "integrity" "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g=="
846 | "resolved" "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz"
847 | "version" "11.1.0"
848 | dependencies:
849 | "array-union" "^2.1.0"
850 | "dir-glob" "^3.0.1"
851 | "fast-glob" "^3.2.9"
852 | "ignore" "^5.2.0"
853 | "merge2" "^1.4.1"
854 | "slash" "^3.0.0"
855 |
856 | "grapheme-splitter@^1.0.4":
857 | "integrity" "sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ=="
858 | "resolved" "https://registry.npmjs.org/grapheme-splitter/-/grapheme-splitter-1.0.4.tgz"
859 | "version" "1.0.4"
860 |
861 | "has-bigints@^1.0.1", "has-bigints@^1.0.2":
862 | "integrity" "sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ=="
863 | "resolved" "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.2.tgz"
864 | "version" "1.0.2"
865 |
866 | "has-flag@^4.0.0":
867 | "integrity" "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ=="
868 | "resolved" "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz"
869 | "version" "4.0.0"
870 |
871 | "has-property-descriptors@^1.0.0":
872 | "integrity" "sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ=="
873 | "resolved" "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.0.tgz"
874 | "version" "1.0.0"
875 | dependencies:
876 | "get-intrinsic" "^1.1.1"
877 |
878 | "has-symbols@^1.0.2", "has-symbols@^1.0.3":
879 | "integrity" "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A=="
880 | "resolved" "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz"
881 | "version" "1.0.3"
882 |
883 | "has-tostringtag@^1.0.0":
884 | "integrity" "sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ=="
885 | "resolved" "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.0.tgz"
886 | "version" "1.0.0"
887 | dependencies:
888 | "has-symbols" "^1.0.2"
889 |
890 | "has@^1.0.3":
891 | "integrity" "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw=="
892 | "resolved" "https://registry.npmjs.org/has/-/has-1.0.3.tgz"
893 | "version" "1.0.3"
894 | dependencies:
895 | "function-bind" "^1.1.1"
896 |
897 | "ignore@^5.2.0":
898 | "integrity" "sha512-CmxgYGiEPCLhfLnpPp1MoRmifwEIOgjcHXxOBjv7mY96c+eWScsOP9c112ZyLdWHi0FxHjI+4uVhKYp/gcdRmQ=="
899 | "resolved" "https://registry.npmjs.org/ignore/-/ignore-5.2.0.tgz"
900 | "version" "5.2.0"
901 |
902 | "immutable@^4.0.0":
903 | "integrity" "sha512-oNkuqVTA8jqG1Q6c+UglTOD1xhC1BtjKI7XkCXRkZHrN5m18/XsnUp8Q89GkQO/z+0WjonSvl0FLhDYftp46nQ=="
904 | "resolved" "https://registry.npmjs.org/immutable/-/immutable-4.1.0.tgz"
905 | "version" "4.1.0"
906 |
907 | "import-fresh@^3.0.0", "import-fresh@^3.2.1":
908 | "integrity" "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw=="
909 | "resolved" "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz"
910 | "version" "3.3.0"
911 | dependencies:
912 | "parent-module" "^1.0.0"
913 | "resolve-from" "^4.0.0"
914 |
915 | "imurmurhash@^0.1.4":
916 | "integrity" "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA=="
917 | "resolved" "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz"
918 | "version" "0.1.4"
919 |
920 | "inflight@^1.0.4":
921 | "integrity" "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA=="
922 | "resolved" "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz"
923 | "version" "1.0.6"
924 | dependencies:
925 | "once" "^1.3.0"
926 | "wrappy" "1"
927 |
928 | "inherits@2":
929 | "integrity" "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ=="
930 | "resolved" "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz"
931 | "version" "2.0.4"
932 |
933 | "internal-slot@^1.0.3":
934 | "integrity" "sha512-O0DB1JC/sPyZl7cIo78n5dR7eUSwwpYPiXRhTzNxZVAMUuB8vlnRFyLxdrVToks6XPLVnFfbzaVd5WLjhgg+vA=="
935 | "resolved" "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.3.tgz"
936 | "version" "1.0.3"
937 | dependencies:
938 | "get-intrinsic" "^1.1.0"
939 | "has" "^1.0.3"
940 | "side-channel" "^1.0.4"
941 |
942 | "is-bigint@^1.0.1":
943 | "integrity" "sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg=="
944 | "resolved" "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.4.tgz"
945 | "version" "1.0.4"
946 | dependencies:
947 | "has-bigints" "^1.0.1"
948 |
949 | "is-binary-path@~2.1.0":
950 | "integrity" "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw=="
951 | "resolved" "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz"
952 | "version" "2.1.0"
953 | dependencies:
954 | "binary-extensions" "^2.0.0"
955 |
956 | "is-boolean-object@^1.1.0":
957 | "integrity" "sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA=="
958 | "resolved" "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.2.tgz"
959 | "version" "1.1.2"
960 | dependencies:
961 | "call-bind" "^1.0.2"
962 | "has-tostringtag" "^1.0.0"
963 |
964 | "is-callable@^1.1.4", "is-callable@^1.2.7":
965 | "integrity" "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA=="
966 | "resolved" "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz"
967 | "version" "1.2.7"
968 |
969 | "is-core-module@^2.8.1", "is-core-module@^2.9.0":
970 | "integrity" "sha512-RRjxlvLDkD1YJwDbroBHMb+cukurkDWNyHx7D3oNB5x9rb5ogcksMC5wHCadcXoo67gVr/+3GFySh3134zi6rw=="
971 | "resolved" "https://registry.npmjs.org/is-core-module/-/is-core-module-2.11.0.tgz"
972 | "version" "2.11.0"
973 | dependencies:
974 | "has" "^1.0.3"
975 |
976 | "is-date-object@^1.0.1":
977 | "integrity" "sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ=="
978 | "resolved" "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz"
979 | "version" "1.0.5"
980 | dependencies:
981 | "has-tostringtag" "^1.0.0"
982 |
983 | "is-extglob@^2.1.1":
984 | "integrity" "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ=="
985 | "resolved" "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz"
986 | "version" "2.1.1"
987 |
988 | "is-glob@^4.0.0", "is-glob@^4.0.1", "is-glob@^4.0.3", "is-glob@~4.0.1":
989 | "integrity" "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg=="
990 | "resolved" "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz"
991 | "version" "4.0.3"
992 | dependencies:
993 | "is-extglob" "^2.1.1"
994 |
995 | "is-negative-zero@^2.0.2":
996 | "integrity" "sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA=="
997 | "resolved" "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.2.tgz"
998 | "version" "2.0.2"
999 |
1000 | "is-number-object@^1.0.4":
1001 | "integrity" "sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ=="
1002 | "resolved" "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.7.tgz"
1003 | "version" "1.0.7"
1004 | dependencies:
1005 | "has-tostringtag" "^1.0.0"
1006 |
1007 | "is-number@^7.0.0":
1008 | "integrity" "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng=="
1009 | "resolved" "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz"
1010 | "version" "7.0.0"
1011 |
1012 | "is-path-inside@^3.0.3":
1013 | "integrity" "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ=="
1014 | "resolved" "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz"
1015 | "version" "3.0.3"
1016 |
1017 | "is-regex@^1.1.4":
1018 | "integrity" "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg=="
1019 | "resolved" "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz"
1020 | "version" "1.1.4"
1021 | dependencies:
1022 | "call-bind" "^1.0.2"
1023 | "has-tostringtag" "^1.0.0"
1024 |
1025 | "is-shared-array-buffer@^1.0.2":
1026 | "integrity" "sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA=="
1027 | "resolved" "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.2.tgz"
1028 | "version" "1.0.2"
1029 | dependencies:
1030 | "call-bind" "^1.0.2"
1031 |
1032 | "is-string@^1.0.5", "is-string@^1.0.7":
1033 | "integrity" "sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg=="
1034 | "resolved" "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz"
1035 | "version" "1.0.7"
1036 | dependencies:
1037 | "has-tostringtag" "^1.0.0"
1038 |
1039 | "is-symbol@^1.0.2", "is-symbol@^1.0.3":
1040 | "integrity" "sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg=="
1041 | "resolved" "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.4.tgz"
1042 | "version" "1.0.4"
1043 | dependencies:
1044 | "has-symbols" "^1.0.2"
1045 |
1046 | "is-weakref@^1.0.2":
1047 | "integrity" "sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ=="
1048 | "resolved" "https://registry.npmjs.org/is-weakref/-/is-weakref-1.0.2.tgz"
1049 | "version" "1.0.2"
1050 | dependencies:
1051 | "call-bind" "^1.0.2"
1052 |
1053 | "isexe@^2.0.0":
1054 | "integrity" "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw=="
1055 | "resolved" "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz"
1056 | "version" "2.0.0"
1057 |
1058 | "js-sdsl@^4.1.4":
1059 | "integrity" "sha512-08bOAKweV2NUC1wqTtf3qZlnpOX/R2DU9ikpjOHs0H+ibQv3zpncVQg6um4uYtRtrwIX8M4Nh3ytK4HGlYAq7Q=="
1060 | "resolved" "https://registry.npmjs.org/js-sdsl/-/js-sdsl-4.1.5.tgz"
1061 | "version" "4.1.5"
1062 |
1063 | "js-tokens@^3.0.0 || ^4.0.0":
1064 | "integrity" "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ=="
1065 | "resolved" "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz"
1066 | "version" "4.0.0"
1067 |
1068 | "js-yaml@^4.1.0":
1069 | "integrity" "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA=="
1070 | "resolved" "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz"
1071 | "version" "4.1.0"
1072 | dependencies:
1073 | "argparse" "^2.0.1"
1074 |
1075 | "json-schema-traverse@^0.4.1":
1076 | "integrity" "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg=="
1077 | "resolved" "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz"
1078 | "version" "0.4.1"
1079 |
1080 | "json-stable-stringify-without-jsonify@^1.0.1":
1081 | "integrity" "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw=="
1082 | "resolved" "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz"
1083 | "version" "1.0.1"
1084 |
1085 | "json5@^1.0.1":
1086 | "integrity" "sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow=="
1087 | "resolved" "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz"
1088 | "version" "1.0.1"
1089 | dependencies:
1090 | "minimist" "^1.2.0"
1091 |
1092 | "jsx-ast-utils@^2.4.1 || ^3.0.0", "jsx-ast-utils@^3.3.2":
1093 | "integrity" "sha512-fYQHZTZ8jSfmWZ0iyzfwiU4WDX4HpHbMCZ3gPlWYiCl3BoeOTsqKBqnTVfH2rYT7eP5c3sVbeSPHnnJOaTrWiw=="
1094 | "resolved" "https://registry.npmjs.org/jsx-ast-utils/-/jsx-ast-utils-3.3.3.tgz"
1095 | "version" "3.3.3"
1096 | dependencies:
1097 | "array-includes" "^3.1.5"
1098 | "object.assign" "^4.1.3"
1099 |
1100 | "language-subtag-registry@~0.3.2":
1101 | "integrity" "sha512-tN0MCzyWnoz/4nHS6uxdlFWoUZT7ABptwKPQ52Ea7URk6vll88bWBVhodtnlfEuCcKWNGoc+uGbw1cwa9IKh/w=="
1102 | "resolved" "https://registry.npmjs.org/language-subtag-registry/-/language-subtag-registry-0.3.22.tgz"
1103 | "version" "0.3.22"
1104 |
1105 | "language-tags@^1.0.5":
1106 | "integrity" "sha512-qJhlO9cGXi6hBGKoxEG/sKZDAHD5Hnu9Hs4WbOY3pCWXDhw0N8x1NenNzm2EnNLkLkk7J2SdxAkDSbb6ftT+UQ=="
1107 | "resolved" "https://registry.npmjs.org/language-tags/-/language-tags-1.0.5.tgz"
1108 | "version" "1.0.5"
1109 | dependencies:
1110 | "language-subtag-registry" "~0.3.2"
1111 |
1112 | "levn@^0.4.1":
1113 | "integrity" "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ=="
1114 | "resolved" "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz"
1115 | "version" "0.4.1"
1116 | dependencies:
1117 | "prelude-ls" "^1.2.1"
1118 | "type-check" "~0.4.0"
1119 |
1120 | "locate-path@^6.0.0":
1121 | "integrity" "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw=="
1122 | "resolved" "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz"
1123 | "version" "6.0.0"
1124 | dependencies:
1125 | "p-locate" "^5.0.0"
1126 |
1127 | "lodash.merge@^4.6.2":
1128 | "integrity" "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ=="
1129 | "resolved" "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz"
1130 | "version" "4.6.2"
1131 |
1132 | "loose-envify@^1.1.0", "loose-envify@^1.4.0":
1133 | "integrity" "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q=="
1134 | "resolved" "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz"
1135 | "version" "1.4.0"
1136 | dependencies:
1137 | "js-tokens" "^3.0.0 || ^4.0.0"
1138 |
1139 | "lru-cache@^6.0.0":
1140 | "integrity" "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA=="
1141 | "resolved" "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz"
1142 | "version" "6.0.0"
1143 | dependencies:
1144 | "yallist" "^4.0.0"
1145 |
1146 | "merge2@^1.3.0", "merge2@^1.4.1":
1147 | "integrity" "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg=="
1148 | "resolved" "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz"
1149 | "version" "1.4.1"
1150 |
1151 | "micromatch@^4.0.4":
1152 | "integrity" "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA=="
1153 | "resolved" "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz"
1154 | "version" "4.0.5"
1155 | dependencies:
1156 | "braces" "^3.0.2"
1157 | "picomatch" "^2.3.1"
1158 |
1159 | "minimatch@^3.0.4", "minimatch@^3.1.1", "minimatch@^3.1.2":
1160 | "integrity" "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw=="
1161 | "resolved" "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz"
1162 | "version" "3.1.2"
1163 | dependencies:
1164 | "brace-expansion" "^1.1.7"
1165 |
1166 | "minimist@^1.2.0", "minimist@^1.2.6":
1167 | "integrity" "sha512-bzfL1YUZsP41gmu/qjrEk0Q6i2ix/cVeAhbCbqH9u3zYutS1cLg00qhrD0M2MVdCcx4Sc0UpP2eBWo9rotpq6g=="
1168 | "resolved" "https://registry.npmjs.org/minimist/-/minimist-1.2.7.tgz"
1169 | "version" "1.2.7"
1170 |
1171 | "ms@^2.1.1":
1172 | "integrity" "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA=="
1173 | "resolved" "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz"
1174 | "version" "2.1.3"
1175 |
1176 | "ms@2.0.0":
1177 | "integrity" "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A=="
1178 | "resolved" "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz"
1179 | "version" "2.0.0"
1180 |
1181 | "ms@2.1.2":
1182 | "integrity" "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w=="
1183 | "resolved" "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz"
1184 | "version" "2.1.2"
1185 |
1186 | "nanoid@^3.3.4":
1187 | "integrity" "sha512-MqBkQh/OHTS2egovRtLk45wEyNXwF+cokD+1YPf9u5VfJiRdAiRwB2froX5Co9Rh20xs4siNPm8naNotSD6RBw=="
1188 | "resolved" "https://registry.npmjs.org/nanoid/-/nanoid-3.3.4.tgz"
1189 | "version" "3.3.4"
1190 |
1191 | "natural-compare@^1.4.0":
1192 | "integrity" "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw=="
1193 | "resolved" "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz"
1194 | "version" "1.4.0"
1195 |
1196 | "next@12.3.1":
1197 | "integrity" "sha512-l7bvmSeIwX5lp07WtIiP9u2ytZMv7jIeB8iacR28PuUEFG5j0HGAPnMqyG5kbZNBG2H7tRsrQ4HCjuMOPnANZw=="
1198 | "resolved" "https://registry.npmjs.org/next/-/next-12.3.1.tgz"
1199 | "version" "12.3.1"
1200 | dependencies:
1201 | "@next/env" "12.3.1"
1202 | "@swc/helpers" "0.4.11"
1203 | "caniuse-lite" "^1.0.30001406"
1204 | "postcss" "8.4.14"
1205 | "styled-jsx" "5.0.7"
1206 | "use-sync-external-store" "1.2.0"
1207 | optionalDependencies:
1208 | "@next/swc-android-arm-eabi" "12.3.1"
1209 | "@next/swc-android-arm64" "12.3.1"
1210 | "@next/swc-darwin-arm64" "12.3.1"
1211 | "@next/swc-darwin-x64" "12.3.1"
1212 | "@next/swc-freebsd-x64" "12.3.1"
1213 | "@next/swc-linux-arm-gnueabihf" "12.3.1"
1214 | "@next/swc-linux-arm64-gnu" "12.3.1"
1215 | "@next/swc-linux-arm64-musl" "12.3.1"
1216 | "@next/swc-linux-x64-gnu" "12.3.1"
1217 | "@next/swc-linux-x64-musl" "12.3.1"
1218 | "@next/swc-win32-arm64-msvc" "12.3.1"
1219 | "@next/swc-win32-ia32-msvc" "12.3.1"
1220 | "@next/swc-win32-x64-msvc" "12.3.1"
1221 |
1222 | "normalize-path@^3.0.0", "normalize-path@~3.0.0":
1223 | "integrity" "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA=="
1224 | "resolved" "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz"
1225 | "version" "3.0.0"
1226 |
1227 | "object-assign@^4.1.1":
1228 | "integrity" "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg=="
1229 | "resolved" "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz"
1230 | "version" "4.1.1"
1231 |
1232 | "object-inspect@^1.12.2", "object-inspect@^1.9.0":
1233 | "integrity" "sha512-z+cPxW0QGUp0mcqcsgQyLVRDoXFQbXOwBaqyF7VIgI4TWNQsDHrBpUQslRmIfAoYWdYzs6UlKJtB2XJpTaNSpQ=="
1234 | "resolved" "https://registry.npmjs.org/object-inspect/-/object-inspect-1.12.2.tgz"
1235 | "version" "1.12.2"
1236 |
1237 | "object-keys@^1.1.1":
1238 | "integrity" "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA=="
1239 | "resolved" "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz"
1240 | "version" "1.1.1"
1241 |
1242 | "object.assign@^4.1.3", "object.assign@^4.1.4":
1243 | "integrity" "sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ=="
1244 | "resolved" "https://registry.npmjs.org/object.assign/-/object.assign-4.1.4.tgz"
1245 | "version" "4.1.4"
1246 | dependencies:
1247 | "call-bind" "^1.0.2"
1248 | "define-properties" "^1.1.4"
1249 | "has-symbols" "^1.0.3"
1250 | "object-keys" "^1.1.1"
1251 |
1252 | "object.entries@^1.1.5":
1253 | "integrity" "sha512-TyxmjUoZggd4OrrU1W66FMDG6CuqJxsFvymeyXI51+vQLN67zYfZseptRge703kKQdo4uccgAKebXFcRCzk4+g=="
1254 | "resolved" "https://registry.npmjs.org/object.entries/-/object.entries-1.1.5.tgz"
1255 | "version" "1.1.5"
1256 | dependencies:
1257 | "call-bind" "^1.0.2"
1258 | "define-properties" "^1.1.3"
1259 | "es-abstract" "^1.19.1"
1260 |
1261 | "object.fromentries@^2.0.5":
1262 | "integrity" "sha512-CAyG5mWQRRiBU57Re4FKoTBjXfDoNwdFVH2Y1tS9PqCsfUTymAohOkEMSG3aRNKmv4lV3O7p1et7c187q6bynw=="
1263 | "resolved" "https://registry.npmjs.org/object.fromentries/-/object.fromentries-2.0.5.tgz"
1264 | "version" "2.0.5"
1265 | dependencies:
1266 | "call-bind" "^1.0.2"
1267 | "define-properties" "^1.1.3"
1268 | "es-abstract" "^1.19.1"
1269 |
1270 | "object.hasown@^1.1.1":
1271 | "integrity" "sha512-LYLe4tivNQzq4JdaWW6WO3HMZZJWzkkH8fnI6EebWl0VZth2wL2Lovm74ep2/gZzlaTdV62JZHEqHQ2yVn8Q/A=="
1272 | "resolved" "https://registry.npmjs.org/object.hasown/-/object.hasown-1.1.1.tgz"
1273 | "version" "1.1.1"
1274 | dependencies:
1275 | "define-properties" "^1.1.4"
1276 | "es-abstract" "^1.19.5"
1277 |
1278 | "object.values@^1.1.5":
1279 | "integrity" "sha512-QUZRW0ilQ3PnPpbNtgdNV1PDbEqLIiSFB3l+EnGtBQ/8SUTLj1PZwtQHABZtLgwpJZTSZhuGLOGk57Drx2IvYg=="
1280 | "resolved" "https://registry.npmjs.org/object.values/-/object.values-1.1.5.tgz"
1281 | "version" "1.1.5"
1282 | dependencies:
1283 | "call-bind" "^1.0.2"
1284 | "define-properties" "^1.1.3"
1285 | "es-abstract" "^1.19.1"
1286 |
1287 | "once@^1.3.0":
1288 | "integrity" "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w=="
1289 | "resolved" "https://registry.npmjs.org/once/-/once-1.4.0.tgz"
1290 | "version" "1.4.0"
1291 | dependencies:
1292 | "wrappy" "1"
1293 |
1294 | "optionator@^0.9.1":
1295 | "integrity" "sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw=="
1296 | "resolved" "https://registry.npmjs.org/optionator/-/optionator-0.9.1.tgz"
1297 | "version" "0.9.1"
1298 | dependencies:
1299 | "deep-is" "^0.1.3"
1300 | "fast-levenshtein" "^2.0.6"
1301 | "levn" "^0.4.1"
1302 | "prelude-ls" "^1.2.1"
1303 | "type-check" "^0.4.0"
1304 | "word-wrap" "^1.2.3"
1305 |
1306 | "p-limit@^3.0.2":
1307 | "integrity" "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ=="
1308 | "resolved" "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz"
1309 | "version" "3.1.0"
1310 | dependencies:
1311 | "yocto-queue" "^0.1.0"
1312 |
1313 | "p-locate@^5.0.0":
1314 | "integrity" "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw=="
1315 | "resolved" "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz"
1316 | "version" "5.0.0"
1317 | dependencies:
1318 | "p-limit" "^3.0.2"
1319 |
1320 | "parent-module@^1.0.0":
1321 | "integrity" "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g=="
1322 | "resolved" "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz"
1323 | "version" "1.0.1"
1324 | dependencies:
1325 | "callsites" "^3.0.0"
1326 |
1327 | "path-exists@^4.0.0":
1328 | "integrity" "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w=="
1329 | "resolved" "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz"
1330 | "version" "4.0.0"
1331 |
1332 | "path-is-absolute@^1.0.0":
1333 | "integrity" "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg=="
1334 | "resolved" "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz"
1335 | "version" "1.0.1"
1336 |
1337 | "path-key@^3.1.0":
1338 | "integrity" "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q=="
1339 | "resolved" "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz"
1340 | "version" "3.1.1"
1341 |
1342 | "path-parse@^1.0.7":
1343 | "integrity" "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw=="
1344 | "resolved" "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz"
1345 | "version" "1.0.7"
1346 |
1347 | "path-type@^4.0.0":
1348 | "integrity" "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw=="
1349 | "resolved" "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz"
1350 | "version" "4.0.0"
1351 |
1352 | "picocolors@^1.0.0":
1353 | "integrity" "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ=="
1354 | "resolved" "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz"
1355 | "version" "1.0.0"
1356 |
1357 | "picomatch@^2.0.4", "picomatch@^2.2.1", "picomatch@^2.3.1":
1358 | "integrity" "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA=="
1359 | "resolved" "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz"
1360 | "version" "2.3.1"
1361 |
1362 | "postcss@8.4.14":
1363 | "integrity" "sha512-E398TUmfAYFPBSdzgeieK2Y1+1cpdxJx8yXbK/m57nRhKSmk1GB2tO4lbLBtlkfPQTDKfe4Xqv1ASWPpayPEig=="
1364 | "resolved" "https://registry.npmjs.org/postcss/-/postcss-8.4.14.tgz"
1365 | "version" "8.4.14"
1366 | dependencies:
1367 | "nanoid" "^3.3.4"
1368 | "picocolors" "^1.0.0"
1369 | "source-map-js" "^1.0.2"
1370 |
1371 | "prelude-ls@^1.2.1":
1372 | "integrity" "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g=="
1373 | "resolved" "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz"
1374 | "version" "1.2.1"
1375 |
1376 | "prop-types@^15.8.1":
1377 | "integrity" "sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg=="
1378 | "resolved" "https://registry.npmjs.org/prop-types/-/prop-types-15.8.1.tgz"
1379 | "version" "15.8.1"
1380 | dependencies:
1381 | "loose-envify" "^1.4.0"
1382 | "object-assign" "^4.1.1"
1383 | "react-is" "^16.13.1"
1384 |
1385 | "punycode@^2.1.0":
1386 | "integrity" "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A=="
1387 | "resolved" "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz"
1388 | "version" "2.1.1"
1389 |
1390 | "queue-microtask@^1.2.2":
1391 | "integrity" "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A=="
1392 | "resolved" "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz"
1393 | "version" "1.2.3"
1394 |
1395 | "react-dom@^17.0.2 || ^18.0.0-0", "react-dom@18.2.0":
1396 | "integrity" "sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g=="
1397 | "resolved" "https://registry.npmjs.org/react-dom/-/react-dom-18.2.0.tgz"
1398 | "version" "18.2.0"
1399 | dependencies:
1400 | "loose-envify" "^1.1.0"
1401 | "scheduler" "^0.23.0"
1402 |
1403 | "react-is@^16.13.1":
1404 | "integrity" "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ=="
1405 | "resolved" "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz"
1406 | "version" "16.13.1"
1407 |
1408 | "react@^16.8.0 || ^17.0.0 || ^18.0.0", "react@^17.0.2 || ^18.0.0-0", "react@^18.2.0", "react@>= 16.8.0 || 17.x.x || ^18.0.0-0", "react@18.2.0":
1409 | "integrity" "sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ=="
1410 | "resolved" "https://registry.npmjs.org/react/-/react-18.2.0.tgz"
1411 | "version" "18.2.0"
1412 | dependencies:
1413 | "loose-envify" "^1.1.0"
1414 |
1415 | "readdirp@~3.6.0":
1416 | "integrity" "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA=="
1417 | "resolved" "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz"
1418 | "version" "3.6.0"
1419 | dependencies:
1420 | "picomatch" "^2.2.1"
1421 |
1422 | "regenerator-runtime@^0.13.4":
1423 | "integrity" "sha512-KepLsg4dU12hryUO7bp/axHAKvwGOCV0sGloQtpagJ12ai+ojVDqkeGSiRX1zlq+kjIMZ1t7gpze+26QqtdGqw=="
1424 | "resolved" "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.10.tgz"
1425 | "version" "0.13.10"
1426 |
1427 | "regexp.prototype.flags@^1.4.1", "regexp.prototype.flags@^1.4.3":
1428 | "integrity" "sha512-fjggEOO3slI6Wvgjwflkc4NFRCTZAu5CnNfBd5qOMYhWdn67nJBBu34/TkD++eeFmd8C9r9jfXJ27+nSiRkSUA=="
1429 | "resolved" "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.4.3.tgz"
1430 | "version" "1.4.3"
1431 | dependencies:
1432 | "call-bind" "^1.0.2"
1433 | "define-properties" "^1.1.3"
1434 | "functions-have-names" "^1.2.2"
1435 |
1436 | "regexpp@^3.2.0":
1437 | "integrity" "sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg=="
1438 | "resolved" "https://registry.npmjs.org/regexpp/-/regexpp-3.2.0.tgz"
1439 | "version" "3.2.0"
1440 |
1441 | "resolve-from@^4.0.0":
1442 | "integrity" "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g=="
1443 | "resolved" "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz"
1444 | "version" "4.0.0"
1445 |
1446 | "resolve@^1.20.0", "resolve@^1.22.0":
1447 | "integrity" "sha512-nBpuuYuY5jFsli/JIs1oldw6fOQCBioohqWZg/2hiaOybXOft4lonv85uDOKXdf8rhyK159cxU5cDcK/NKk8zw=="
1448 | "resolved" "https://registry.npmjs.org/resolve/-/resolve-1.22.1.tgz"
1449 | "version" "1.22.1"
1450 | dependencies:
1451 | "is-core-module" "^2.9.0"
1452 | "path-parse" "^1.0.7"
1453 | "supports-preserve-symlinks-flag" "^1.0.0"
1454 |
1455 | "resolve@^2.0.0-next.3":
1456 | "integrity" "sha512-iMDbmAWtfU+MHpxt/I5iWI7cY6YVEZUQ3MBgPQ++XD1PELuJHIl82xBmObyP2KyQmkNB2dsqF7seoQQiAn5yDQ=="
1457 | "resolved" "https://registry.npmjs.org/resolve/-/resolve-2.0.0-next.4.tgz"
1458 | "version" "2.0.0-next.4"
1459 | dependencies:
1460 | "is-core-module" "^2.9.0"
1461 | "path-parse" "^1.0.7"
1462 | "supports-preserve-symlinks-flag" "^1.0.0"
1463 |
1464 | "reusify@^1.0.4":
1465 | "integrity" "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw=="
1466 | "resolved" "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz"
1467 | "version" "1.0.4"
1468 |
1469 | "rimraf@^3.0.2":
1470 | "integrity" "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA=="
1471 | "resolved" "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz"
1472 | "version" "3.0.2"
1473 | dependencies:
1474 | "glob" "^7.1.3"
1475 |
1476 | "run-parallel@^1.1.9":
1477 | "integrity" "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA=="
1478 | "resolved" "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz"
1479 | "version" "1.2.0"
1480 | dependencies:
1481 | "queue-microtask" "^1.2.2"
1482 |
1483 | "safe-regex-test@^1.0.0":
1484 | "integrity" "sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA=="
1485 | "resolved" "https://registry.npmjs.org/safe-regex-test/-/safe-regex-test-1.0.0.tgz"
1486 | "version" "1.0.0"
1487 | dependencies:
1488 | "call-bind" "^1.0.2"
1489 | "get-intrinsic" "^1.1.3"
1490 | "is-regex" "^1.1.4"
1491 |
1492 | "sass@^1.3.0", "sass@^1.55.0":
1493 | "integrity" "sha512-Pk+PMy7OGLs9WaxZGJMn7S96dvlyVBwwtToX895WmCpAOr5YiJYEUJfiJidMuKb613z2xNWcXCHEuOvjZbqC6A=="
1494 | "resolved" "https://registry.npmjs.org/sass/-/sass-1.55.0.tgz"
1495 | "version" "1.55.0"
1496 | dependencies:
1497 | "chokidar" ">=3.0.0 <4.0.0"
1498 | "immutable" "^4.0.0"
1499 | "source-map-js" ">=0.6.2 <2.0.0"
1500 |
1501 | "scheduler@^0.23.0":
1502 | "integrity" "sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw=="
1503 | "resolved" "https://registry.npmjs.org/scheduler/-/scheduler-0.23.0.tgz"
1504 | "version" "0.23.0"
1505 | dependencies:
1506 | "loose-envify" "^1.1.0"
1507 |
1508 | "semver@^6.3.0":
1509 | "integrity" "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw=="
1510 | "resolved" "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz"
1511 | "version" "6.3.0"
1512 |
1513 | "semver@^7.3.7":
1514 | "integrity" "sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A=="
1515 | "resolved" "https://registry.npmjs.org/semver/-/semver-7.3.8.tgz"
1516 | "version" "7.3.8"
1517 | dependencies:
1518 | "lru-cache" "^6.0.0"
1519 |
1520 | "shebang-command@^2.0.0":
1521 | "integrity" "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA=="
1522 | "resolved" "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz"
1523 | "version" "2.0.0"
1524 | dependencies:
1525 | "shebang-regex" "^3.0.0"
1526 |
1527 | "shebang-regex@^3.0.0":
1528 | "integrity" "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A=="
1529 | "resolved" "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz"
1530 | "version" "3.0.0"
1531 |
1532 | "side-channel@^1.0.4":
1533 | "integrity" "sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw=="
1534 | "resolved" "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz"
1535 | "version" "1.0.4"
1536 | dependencies:
1537 | "call-bind" "^1.0.0"
1538 | "get-intrinsic" "^1.0.2"
1539 | "object-inspect" "^1.9.0"
1540 |
1541 | "slash@^3.0.0":
1542 | "integrity" "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q=="
1543 | "resolved" "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz"
1544 | "version" "3.0.0"
1545 |
1546 | "source-map-js@^1.0.2", "source-map-js@>=0.6.2 <2.0.0":
1547 | "integrity" "sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw=="
1548 | "resolved" "https://registry.npmjs.org/source-map-js/-/source-map-js-1.0.2.tgz"
1549 | "version" "1.0.2"
1550 |
1551 | "string.prototype.matchall@^4.0.7":
1552 | "integrity" "sha512-f48okCX7JiwVi1NXCVWcFnZgADDC/n2vePlQ/KUCNqCikLLilQvwjMO8+BHVKvgzH0JB0J9LEPgxOGT02RoETg=="
1553 | "resolved" "https://registry.npmjs.org/string.prototype.matchall/-/string.prototype.matchall-4.0.7.tgz"
1554 | "version" "4.0.7"
1555 | dependencies:
1556 | "call-bind" "^1.0.2"
1557 | "define-properties" "^1.1.3"
1558 | "es-abstract" "^1.19.1"
1559 | "get-intrinsic" "^1.1.1"
1560 | "has-symbols" "^1.0.3"
1561 | "internal-slot" "^1.0.3"
1562 | "regexp.prototype.flags" "^1.4.1"
1563 | "side-channel" "^1.0.4"
1564 |
1565 | "string.prototype.trimend@^1.0.5":
1566 | "integrity" "sha512-I7RGvmjV4pJ7O3kdf+LXFpVfdNOxtCW/2C8f6jNiW4+PQchwxkCDzlk1/7p+Wl4bqFIZeF47qAHXLuHHWKAxog=="
1567 | "resolved" "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.5.tgz"
1568 | "version" "1.0.5"
1569 | dependencies:
1570 | "call-bind" "^1.0.2"
1571 | "define-properties" "^1.1.4"
1572 | "es-abstract" "^1.19.5"
1573 |
1574 | "string.prototype.trimstart@^1.0.5":
1575 | "integrity" "sha512-THx16TJCGlsN0o6dl2o6ncWUsdgnLRSA23rRE5pyGBw/mLr3Ej/R2LaqCtgP8VNMGZsvMWnf9ooZPyY2bHvUFg=="
1576 | "resolved" "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.5.tgz"
1577 | "version" "1.0.5"
1578 | dependencies:
1579 | "call-bind" "^1.0.2"
1580 | "define-properties" "^1.1.4"
1581 | "es-abstract" "^1.19.5"
1582 |
1583 | "strip-ansi@^6.0.1":
1584 | "integrity" "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A=="
1585 | "resolved" "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz"
1586 | "version" "6.0.1"
1587 | dependencies:
1588 | "ansi-regex" "^5.0.1"
1589 |
1590 | "strip-bom@^3.0.0":
1591 | "integrity" "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA=="
1592 | "resolved" "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz"
1593 | "version" "3.0.0"
1594 |
1595 | "strip-json-comments@^3.1.0", "strip-json-comments@^3.1.1":
1596 | "integrity" "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig=="
1597 | "resolved" "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz"
1598 | "version" "3.1.1"
1599 |
1600 | "styled-jsx@5.0.7":
1601 | "integrity" "sha512-b3sUzamS086YLRuvnaDigdAewz1/EFYlHpYBP5mZovKEdQQOIIYq8lApylub3HHZ6xFjV051kkGU7cudJmrXEA=="
1602 | "resolved" "https://registry.npmjs.org/styled-jsx/-/styled-jsx-5.0.7.tgz"
1603 | "version" "5.0.7"
1604 |
1605 | "supports-color@^7.1.0":
1606 | "integrity" "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw=="
1607 | "resolved" "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz"
1608 | "version" "7.2.0"
1609 | dependencies:
1610 | "has-flag" "^4.0.0"
1611 |
1612 | "supports-preserve-symlinks-flag@^1.0.0":
1613 | "integrity" "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w=="
1614 | "resolved" "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz"
1615 | "version" "1.0.0"
1616 |
1617 | "text-table@^0.2.0":
1618 | "integrity" "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw=="
1619 | "resolved" "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz"
1620 | "version" "0.2.0"
1621 |
1622 | "to-regex-range@^5.0.1":
1623 | "integrity" "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ=="
1624 | "resolved" "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz"
1625 | "version" "5.0.1"
1626 | dependencies:
1627 | "is-number" "^7.0.0"
1628 |
1629 | "tsconfig-paths@^3.14.1":
1630 | "integrity" "sha512-fxDhWnFSLt3VuTwtvJt5fpwxBHg5AdKWMsgcPOOIilyjymcYVZoCQF8fvFRezCNfblEXmi+PcM1eYHeOAgXCOQ=="
1631 | "resolved" "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.14.1.tgz"
1632 | "version" "3.14.1"
1633 | dependencies:
1634 | "@types/json5" "^0.0.29"
1635 | "json5" "^1.0.1"
1636 | "minimist" "^1.2.6"
1637 | "strip-bom" "^3.0.0"
1638 |
1639 | "tslib@^1.8.1":
1640 | "integrity" "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg=="
1641 | "resolved" "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz"
1642 | "version" "1.14.1"
1643 |
1644 | "tslib@^2.4.0":
1645 | "integrity" "sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ=="
1646 | "resolved" "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz"
1647 | "version" "2.4.0"
1648 |
1649 | "tsutils@^3.21.0":
1650 | "integrity" "sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA=="
1651 | "resolved" "https://registry.npmjs.org/tsutils/-/tsutils-3.21.0.tgz"
1652 | "version" "3.21.0"
1653 | dependencies:
1654 | "tslib" "^1.8.1"
1655 |
1656 | "type-check@^0.4.0", "type-check@~0.4.0":
1657 | "integrity" "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew=="
1658 | "resolved" "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz"
1659 | "version" "0.4.0"
1660 | dependencies:
1661 | "prelude-ls" "^1.2.1"
1662 |
1663 | "type-fest@^0.20.2":
1664 | "integrity" "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ=="
1665 | "resolved" "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz"
1666 | "version" "0.20.2"
1667 |
1668 | "typescript@>=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta", "typescript@>=3.3.1":
1669 | "integrity" "sha512-QCh+85mCy+h0IGff8r5XWzOVSbBO+KfeYrMQh7NJ58QujwcE22u+NUSmUxqF+un70P9GXKxa2HCNiTTMJknyjQ=="
1670 | "resolved" "https://registry.npmjs.org/typescript/-/typescript-4.8.4.tgz"
1671 | "version" "4.8.4"
1672 |
1673 | "unbox-primitive@^1.0.2":
1674 | "integrity" "sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw=="
1675 | "resolved" "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.2.tgz"
1676 | "version" "1.0.2"
1677 | dependencies:
1678 | "call-bind" "^1.0.2"
1679 | "has-bigints" "^1.0.2"
1680 | "has-symbols" "^1.0.3"
1681 | "which-boxed-primitive" "^1.0.2"
1682 |
1683 | "uri-js@^4.2.2":
1684 | "integrity" "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg=="
1685 | "resolved" "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz"
1686 | "version" "4.4.1"
1687 | dependencies:
1688 | "punycode" "^2.1.0"
1689 |
1690 | "use-sync-external-store@1.2.0":
1691 | "integrity" "sha512-eEgnFxGQ1Ife9bzYs6VLi8/4X6CObHMw9Qr9tPY43iKwsPw8xE8+EFsf/2cFZ5S3esXgpWgtSCtLNS41F+sKPA=="
1692 | "resolved" "https://registry.npmjs.org/use-sync-external-store/-/use-sync-external-store-1.2.0.tgz"
1693 | "version" "1.2.0"
1694 |
1695 | "which-boxed-primitive@^1.0.2":
1696 | "integrity" "sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg=="
1697 | "resolved" "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz"
1698 | "version" "1.0.2"
1699 | dependencies:
1700 | "is-bigint" "^1.0.1"
1701 | "is-boolean-object" "^1.1.0"
1702 | "is-number-object" "^1.0.4"
1703 | "is-string" "^1.0.5"
1704 | "is-symbol" "^1.0.3"
1705 |
1706 | "which@^2.0.1":
1707 | "integrity" "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA=="
1708 | "resolved" "https://registry.npmjs.org/which/-/which-2.0.2.tgz"
1709 | "version" "2.0.2"
1710 | dependencies:
1711 | "isexe" "^2.0.0"
1712 |
1713 | "word-wrap@^1.2.3":
1714 | "integrity" "sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ=="
1715 | "resolved" "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.3.tgz"
1716 | "version" "1.2.3"
1717 |
1718 | "wrappy@1":
1719 | "integrity" "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ=="
1720 | "resolved" "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz"
1721 | "version" "1.0.2"
1722 |
1723 | "yallist@^4.0.0":
1724 | "integrity" "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A=="
1725 | "resolved" "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz"
1726 | "version" "4.0.0"
1727 |
1728 | "yocto-queue@^0.1.0":
1729 | "integrity" "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q=="
1730 | "resolved" "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz"
1731 | "version" "0.1.0"
1732 |
--------------------------------------------------------------------------------