├── .eslintrc.json ├── .gitignore ├── README.md ├── components ├── buttons │ ├── OutlineButton.tsx │ ├── StandardButton.tsx │ ├── outlinebutton.module.scss │ └── standardbutton.module.scss ├── home │ ├── Home.tsx │ ├── about │ │ ├── About.tsx │ │ ├── Stats.tsx │ │ ├── about.module.scss │ │ └── stats.module.scss │ ├── contact │ │ ├── Contact.tsx │ │ └── contact.module.scss │ ├── experience │ │ ├── Experience.tsx │ │ ├── ExperienceItem.tsx │ │ └── experience.module.scss │ ├── hero │ │ ├── DotGrid.tsx │ │ ├── Hero.tsx │ │ ├── dotgrid.module.scss │ │ └── hero.module.scss │ ├── home.module.scss │ └── projects │ │ ├── Project.tsx │ │ ├── ProjectModal.tsx │ │ ├── Projects.tsx │ │ ├── projectmodal.module.scss │ │ └── projects.module.scss ├── nav │ ├── Heading.tsx │ ├── SideBar.tsx │ ├── components │ │ ├── MyLinks.tsx │ │ └── headinglinks.module.scss │ ├── heading.module.scss │ └── sidebar.module.scss └── utils │ ├── Reveal.tsx │ ├── SectionHeader.tsx │ └── header.module.scss ├── next.config.js ├── package-lock.json ├── package.json ├── pages ├── _app.tsx ├── _document.tsx └── index.tsx ├── public ├── John Carlo P. Devera.pdf ├── favicon.png ├── jc.jpg ├── project-imgs │ ├── agency-iron-crm.png │ ├── agency-listing.png │ ├── elancerz.png │ ├── favicon.png │ ├── portfolio-00.png │ ├── portfolio-01.png │ ├── wh_app.png │ └── worshiphim.png └── screenshot.png ├── styles └── globals.css └── tsconfig.json /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /.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 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # YO! Welcome to the "Steam" developer portfolio template 2 | 3 | Steam is a starter template designed to help you land more interviews. Below we'll walk through exactly how you can customize this template to make it your own. 4 | 5 | Before we go too far, note that I've provided a video walkthrough of the entire project [HERE](https://youtu.be/hu-XLI3bFX8). 6 | 7 | You can also find a live version of this project deployed at [https://steam-portfolio-demo.vercel.app/](https://steam-portfolio-demo.vercel.app/). 8 | 9 | ## Let's get things running 10 | 11 | This template is built on top of [NextJS](https://nextjs.org/), a full stack development framework built on top of React. 12 | 13 | We won't take time here going over exactly how NextJS works on a deep level (to be fair, this project doesn't use Next at a deep level), but if you're interested in learning, their docs are [here](https://nextjs.org/docs/getting-started). 14 | 15 | At the root of your project, you'll see a `package.json` file defining our dependencies. 16 | 17 | Most of this is boilerplate, but I will call out the following three dependencies: 18 | 19 | - `animejs` -> A javascript animation library, used for the grid animation inside of DotGrid.tsx 20 | - `framer-motion` -> A react based animation library, used in a hand full of places (anywhere you see `` style components) 21 | - `sass` -> All styling uses plain CSS and sass modules for this project 22 | 23 | Now that's out of the way, you can get your project running by first installing dependencies. 24 | 25 | From your terminal, run: 26 | 27 | ``` 28 | npm install 29 | # or 30 | yarn install 31 | ``` 32 | 33 | This will take a minute or two, but once that's done, you should be able to run the following command: 34 | 35 | ``` 36 | npm run dev 37 | # or 38 | yarn dev 39 | ``` 40 | 41 | This will start your project on `localhost:3000` 42 | 43 | ## The file structure 44 | 45 | Because this is a NextJS project, we follow the standard NextJS pattern for organizing this project. 46 | 47 | Inside of the `pages/` directly you'll find 3 files: 48 | 49 | - `_app.tsx` -> A file which wraps around every page in our app. Here we import the Poppins font and include it in our page. You can change to use whatever font you'd like here ([docs](https://nextjs.org/docs/basic-features/font-optimization)). 50 | - `_document.tsx` -> Essentially the NextJS version of your base "HTML document". Nothing fancy here. 51 | - `_index.tsx` -> This represents our home route. We include 1 single component here called ``. Click into this component to begin exploring. 52 | 53 | To add MORE routes to your project, see [this doc](https://nextjs.org/docs/basic-features/pages). 54 | 55 | Inside of the `styles/` directly you'll find find a global CSS file. This just includes a basic reset, as well as a couple of classes we use throughout the project. 56 | 57 | Inside of the `components/` directory you'll find all of the good stuff. The `components/home/` directory houses the majority of what you'll like want to edit 58 | 59 | ## Styling 60 | 61 | Global styling (colors mainly) are defined using CSS variables in the `styles/globals.css` file. 62 | 63 | ``` 64 | --background: rgb(17, 17, 17); 65 | --bg-opaque: rgb(17, 17, 17, 0.25); 66 | --background-light: rgb(35, 35, 35); 67 | --background-dark: rgb(8, 8, 8); 68 | 69 | --text: rgb(235, 236, 243); 70 | --brand: rgb(10, 255, 157); 71 | 72 | --text-xs: 1.6rem; 73 | --text-sm: 1.8rem; 74 | --text-md: 2.2rem; 75 | --text-lg: 3.6rem; 76 | --text-xl: 5.6rem; 77 | --text-2xl: 9.6rem; 78 | ``` 79 | 80 | The first six variables are the colors for the app. The last six are font sizes. Play around with these a bit to start making it your own. 81 | 82 | ## More info 83 | 84 | That's the basics! If you're comfortable digging in yourself, then you should be set. 85 | 86 | Want a deeper walkthrough?? 87 | 88 | [WATCH THE TUTORIAL VIDEO](https://youtu.be/hu-XLI3bFX8) 89 | -------------------------------------------------------------------------------- /components/buttons/OutlineButton.tsx: -------------------------------------------------------------------------------- 1 | import { MouseEventHandler } from "react"; 2 | import { AiFillFilePdf } from "react-icons/ai"; 3 | import styles from "./outlinebutton.module.scss"; 4 | 5 | interface Props { 6 | children: string | JSX.Element; 7 | onClick?: MouseEventHandler; 8 | } 9 | 10 | export const OutlineButton = ({ children, onClick }: Props) => { 11 | return ( 12 | 16 | ); 17 | }; 18 | -------------------------------------------------------------------------------- /components/buttons/StandardButton.tsx: -------------------------------------------------------------------------------- 1 | import { MouseEventHandler } from "react"; 2 | import styles from "./standardbutton.module.scss"; 3 | 4 | interface Props { 5 | children: string | JSX.Element; 6 | onClick?: MouseEventHandler; 7 | } 8 | 9 | export const StandardButton = ({ children, onClick }: Props) => { 10 | return ( 11 | 14 | ); 15 | }; 16 | -------------------------------------------------------------------------------- /components/buttons/outlinebutton.module.scss: -------------------------------------------------------------------------------- 1 | .outlineButton { 2 | outline: none; 3 | border: none; 4 | cursor: pointer; 5 | 6 | padding: 1rem 2rem; 7 | 8 | border: 1px solid var(--brand); 9 | background: transparent; 10 | color: var(--brand); 11 | font-size: var(--text-sm); 12 | border-radius: 4px; 13 | 14 | position: relative; 15 | z-index: 20; 16 | 17 | overflow: hidden; 18 | 19 | transition: 0.2s color; 20 | 21 | svg { 22 | display: none; 23 | } 24 | 25 | @media (max-width: 420px) { 26 | font-size: 0; 27 | padding: .5rem .5rem; 28 | svg { 29 | display: block; 30 | } 31 | } 32 | } 33 | 34 | .outlineButton::before { 35 | content: ""; 36 | position: absolute; 37 | z-index: -1; 38 | background: var(--brand); 39 | 40 | height: 100%; 41 | width: 100%; 42 | 43 | left: -100%; 44 | top: -100%; 45 | 46 | transition: 0.2s left, 0.2s top; 47 | } 48 | 49 | .outlineButton:hover { 50 | color: var(--text); 51 | } 52 | 53 | .outlineButton:hover::before { 54 | left: 0; 55 | top: 0; 56 | } 57 | -------------------------------------------------------------------------------- /components/buttons/standardbutton.module.scss: -------------------------------------------------------------------------------- 1 | .standardButton { 2 | outline: none; 3 | border: none; 4 | cursor: pointer; 5 | 6 | padding: 1.2rem 2.4rem; 7 | 8 | background: var(--brand); 9 | color: var(--text); 10 | font-size: var(--text-sm); 11 | border-radius: 4px; 12 | 13 | position: relative; 14 | z-index: 20; 15 | 16 | overflow: hidden; 17 | 18 | transition: 0.2s opacity; 19 | } 20 | 21 | .standardButton:hover { 22 | opacity: 0.9; 23 | } 24 | -------------------------------------------------------------------------------- /components/home/Home.tsx: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import { SideBar } from "../nav/SideBar"; 3 | import { Hero } from "./hero/Hero"; 4 | import styles from "./home.module.scss"; 5 | import { Heading } from "../nav/Heading"; 6 | import { About } from "./about/About"; 7 | import { Projects } from "./projects/Projects"; 8 | import { Experience } from "./experience/Experience"; 9 | import { Contact } from "./contact/Contact"; 10 | 11 | export const Home = () => { 12 | return ( 13 | <> 14 |
15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
30 |
31 |
32 | 33 | ); 34 | }; 35 | -------------------------------------------------------------------------------- /components/home/about/About.tsx: -------------------------------------------------------------------------------- 1 | import { MyLinks } from "@/components/nav/components/MyLinks"; 2 | import { Reveal } from "@/components/utils/Reveal"; 3 | import { SectionHeader } from "@/components/utils/SectionHeader"; 4 | import styles from "./about.module.scss"; 5 | import { Stats } from "./Stats"; 6 | import { AiOutlineArrowRight } from "react-icons/ai"; 7 | 8 | export const About = () => { 9 | return ( 10 |
11 | 12 |
13 |
14 | 15 |

16 | Howdy! I'm John Carlo Devera, and I'm a Bachelor of Science in Information Technology graduate. 17 |

18 | I have experience working in both the mobile and web development worlds, with a focus on frontend development. I'm passionate about creating beautiful, responsive websites that provide a great user experience. 19 |

20 |
21 | 22 |

23 | My skills include HTML, CSS, JavaScript, and various frontend frameworks like React and Vue.js. 24 | I've also worked with backend technologies like Node.js, Firebase, MongoDB and PHP/Laravel , allowing me to build full-stack applications. 25 |

26 |
27 | 28 |

29 | When I'm not coding, I enjoy digital painting. 30 | I believe that maintaining a healthy work-life balance is crucial for staying productive and motivated. 31 |

32 |
33 | 34 |

35 | I'm always looking for new challenges and opportunities to learn and grow as a developer. 36 | If you're interested in working together or have any questions, please don't hesitate to get in touch! 37 | 🔗 38 |

39 |
40 | 41 |
42 |
43 | My links 44 | 45 |
46 | 47 |
48 |
49 |
50 | 51 |
52 |
53 | ); 54 | }; 55 | -------------------------------------------------------------------------------- /components/home/about/Stats.tsx: -------------------------------------------------------------------------------- 1 | import styles from "./stats.module.scss"; 2 | import { AiFillCode, AiFillSmile } from "react-icons/ai"; 3 | import { Reveal } from "@/components/utils/Reveal"; 4 | 5 | export const Stats = () => { 6 | return ( 7 |
8 | 9 |
10 |

11 | 12 | Use at work 13 |

14 |
15 | JavaScript 16 | TypeScript 17 | HTML 18 | CSS 19 | Tailwind 20 | React 21 | Nextjs 22 | Vuejs 23 | Redux 24 | NodeJS 25 | Express 26 | Postgres 27 | MongoDB 28 | Firebase 29 | GitHub 30 |
31 |
32 |
33 | 34 |
35 |

36 | 37 | Use for fun 38 |

39 |
40 | React Native 41 | Gatsby 42 | Chakra Ui 43 | Tailwind 44 | Figma 45 | Planetscale 46 | GraphQL 47 | Firebase 48 | Supabase 49 | Vercel 50 | Laravel 51 |
52 |
53 |
54 |
55 | ); 56 | }; 57 | -------------------------------------------------------------------------------- /components/home/about/about.module.scss: -------------------------------------------------------------------------------- 1 | .about { 2 | display: grid; 3 | grid-template-columns: 1fr 300px; 4 | gap: 2.4rem; 5 | 6 | @media (max-width: 900px) { 7 | grid-template-columns: 1fr; 8 | } 9 | } 10 | 11 | .aboutText { 12 | margin-bottom: 2.4rem; 13 | font-weight: 200; 14 | } 15 | 16 | .links { 17 | display: flex; 18 | align-items: center; 19 | gap: 1.6rem; 20 | } 21 | 22 | .linksText { 23 | display: flex; 24 | align-items: center; 25 | gap: 0.8rem; 26 | 27 | font-size: var(--text-sm); 28 | color: var(--brand); 29 | } 30 | 31 | .highlightFirstLetter:first-letter { 32 | background: var(--background-light); 33 | padding: 1rem; 34 | border-radius: 0.4rem; 35 | 36 | font-size: var(--text-md); 37 | font-weight: bold; 38 | 39 | margin-right: 0.6rem; 40 | 41 | float: left; 42 | } 43 | -------------------------------------------------------------------------------- /components/home/about/stats.module.scss: -------------------------------------------------------------------------------- 1 | .stats { 2 | position: relative; 3 | } 4 | 5 | .statColumn { 6 | h4 { 7 | display: flex; 8 | align-items: center; 9 | 10 | margin-bottom: 2.4rem; 11 | span { 12 | font-size: var(--text-md); 13 | font-weight: bold; 14 | position: relative; 15 | margin-left: 0.8rem; 16 | } 17 | } 18 | } 19 | 20 | .statGrid { 21 | display: flex; 22 | flex-wrap: wrap; 23 | gap: 1.2rem; 24 | 25 | margin-bottom: 4.8rem; 26 | } 27 | -------------------------------------------------------------------------------- /components/home/contact/Contact.tsx: -------------------------------------------------------------------------------- 1 | import { Reveal } from "@/components/utils/Reveal"; 2 | import styles from "./contact.module.scss"; 3 | import { AiFillMail } from "react-icons/ai"; 4 | import Link from "next/link"; 5 | 6 | export const Contact = () => { 7 | return ( 8 |
9 |
10 | 11 |

12 | Contact. 13 |

14 |
15 | 16 |

17 | Have an idea to discuss? Shoot me an email if you want to connect! You can also find me on{" "} 18 | 23 | Linkedin 24 | {" "} 25 | or{" "} 26 | 27 | Skype 28 | {" "} 29 | if that's more your speed. 30 |

31 |
32 | 33 | 34 |
35 | 36 | Send Email 37 |
38 | 39 |
40 |
41 |
42 | ); 43 | }; 44 | -------------------------------------------------------------------------------- /components/home/contact/contact.module.scss: -------------------------------------------------------------------------------- 1 | .contactWrapper { 2 | max-width: 700px; 3 | margin: auto; 4 | 5 | border-radius: 1.2rem; 6 | } 7 | 8 | .contactTitle { 9 | font-size: var(--text-2xl); 10 | text-align: center; 11 | font-weight: 900; 12 | line-height: 1; 13 | 14 | span { 15 | color: var(--brand); 16 | } 17 | 18 | @media (max-width: 768px) { 19 | font-size: var(--text-xl); 20 | } 21 | } 22 | 23 | .contactCopy { 24 | text-align: center; 25 | font-weight: 200; 26 | margin: 2.4rem 0; 27 | 28 | a { 29 | color: var(--brand); 30 | } 31 | 32 | a:hover { 33 | text-decoration: underline; 34 | } 35 | } 36 | 37 | .contactEmail { 38 | display: flex; 39 | align-items: center; 40 | justify-content: center; 41 | gap: 0.8rem; 42 | 43 | width: fit-content; 44 | 45 | font-size: var(--text-md); 46 | 47 | margin: auto; 48 | 49 | transition: 0.5s; 50 | 51 | padding: 12px 32px 12px 32px; 52 | border-radius: 1rem; 53 | background: var(--background-light); 54 | } 55 | 56 | .contactEmail:hover { 57 | color: var(--brand); 58 | } -------------------------------------------------------------------------------- /components/home/experience/Experience.tsx: -------------------------------------------------------------------------------- 1 | import { SectionHeader } from "@/components/utils/SectionHeader"; 2 | import { ExperienceItem } from "./ExperienceItem"; 3 | 4 | export const Experience = () => { 5 | return ( 6 |
7 | 8 | {experience.map((item) => ( 9 | 10 | ))} 11 |
12 | ); 13 | }; 14 | 15 | const experience = [ 16 | { 17 | title: "Rocky Mountain West Insurance LLC.", 18 | position: "React Developer", 19 | time: "Aug 2022 - October 2023", 20 | location: "Grand Junction, CO", 21 | description: 22 | "Create functional, high-level, dynamic and reusable components based on mock-up given using Next JS. Coordinated on team for QA, bug fixes, features and code refactoring.", 23 | tech: [ 24 | "Next JS", 25 | "React", 26 | "MongoDB", 27 | "Postgres", 28 | "Python", 29 | "Git", 30 | "Github", 31 | ], 32 | }, 33 | { 34 | title: "Advance Technologies Integration, LLC.", 35 | position: "Javascript Developer", 36 | time: "May 2023 - August 2023", 37 | location: "Rocklin, California 95765", 38 | description: 39 | "I help build and scale core javascript functions and created test units. Also created reusable components for the front end and Azure API integrations.", 40 | tech: ["JavaScript", "Vuejs", "Azure API", "Git", "GitLab"], 41 | }, 42 | { 43 | title: "Advance Technologies Integration, LLC.", 44 | position: "Javascript Developer", 45 | time: "Apr 2022 - Jun 2022", 46 | location: "Rocklin, California 95765", 47 | description: 48 | "I help build and scale core javascript functions and created test units. Also created reusable components for the front end and Azure API integrations.", 49 | tech: ["JavaScript", "Vuejs", "Azure API", "Git", "GitLab"], 50 | }, 51 | { 52 | title: "Rocky Mountain West Insurance LLC.", 53 | position: "Vuejs Developer", 54 | time: "Aug 2021 - Jan 2022", 55 | location: "Grand Junction, CO", 56 | description: 57 | "Vuejs Developer for Rocky Mountain West Insurance LLC. Created dashboard, reusable components from scratch and integrate api.", 58 | tech: ["Vuejs", "MongoDB", "Postgres", "Python", "Git", "Github"], 59 | }, 60 | { 61 | title: "Simple Cloudology", 62 | position: "React Developer", 63 | time: "Jan 2020 - April 2021", 64 | location: "Sheridan, Wyoming", 65 | description: 66 | "Worked as a developer and created dynamic reusable components, integrate calendly, messaging functionality and project management features.", 67 | tech: [ 68 | "React", 69 | "Nextjs", 70 | "Sytled Components", 71 | "Firebase Auth", 72 | "Websockets", 73 | "Calendly", 74 | "Git", 75 | "Github", 76 | ], 77 | }, 78 | { 79 | title: "IFormat Logic", 80 | position: "Fullstack Developer", 81 | time: "Aug 2020 - Dec 2020", 82 | location: "Palanginan, Zambales", 83 | description: 84 | "Managed and created complex projects from start to finish and also collaborated with other developers. Translated requirements into polished, high-level web application.", 85 | tech: ["Vuejs", "Laravel", "Tailwind", "Git", "Github"], 86 | }, 87 | ]; 88 | -------------------------------------------------------------------------------- /components/home/experience/ExperienceItem.tsx: -------------------------------------------------------------------------------- 1 | import { Reveal } from "@/components/utils/Reveal"; 2 | import styles from "./experience.module.scss"; 3 | 4 | interface Props { 5 | title: string; 6 | position: string; 7 | time: string; 8 | location: string; 9 | description: string; 10 | tech: string[]; 11 | } 12 | 13 | export const ExperienceItem = ({ 14 | title, 15 | position, 16 | time, 17 | location, 18 | description, 19 | tech, 20 | }: Props) => { 21 | return ( 22 |
23 |
24 | 25 | {title} 26 | 27 | 28 | {time} 29 | 30 |
31 | 32 |
33 | 34 | {position} 35 | 36 | 37 | {location} 38 | 39 |
40 | 41 |

{description}

42 |
43 | 44 |
45 | {tech.map((item) => ( 46 | 47 | {item} 48 | 49 | ))} 50 |
51 |
52 |
53 | ); 54 | }; 55 | -------------------------------------------------------------------------------- /components/home/experience/experience.module.scss: -------------------------------------------------------------------------------- 1 | .experience { 2 | margin-bottom: 2.4rem; 3 | padding: 0 1.2rem 2.4rem; 4 | 5 | border-bottom: 1px solid var(--background-light); 6 | } 7 | 8 | .heading { 9 | display: flex; 10 | align-items: center; 11 | justify-content: space-between; 12 | 13 | margin-bottom: 1.2rem; 14 | } 15 | 16 | .title { 17 | font-size: var(--text-md); 18 | font-weight: bold; 19 | } 20 | 21 | .position { 22 | color: var(--brand); 23 | font-weight: bold; 24 | } 25 | 26 | .description { 27 | margin-bottom: 1.8rem; 28 | font-weight: 200; 29 | } 30 | 31 | .tech { 32 | display: flex; 33 | flex-wrap: wrap; 34 | gap: 1.2rem; 35 | } 36 | -------------------------------------------------------------------------------- /components/home/hero/DotGrid.tsx: -------------------------------------------------------------------------------- 1 | import styles from "./dotgrid.module.scss"; 2 | import anime from "animejs"; 3 | 4 | export const DotGrid = () => { 5 | const GRID_WIDTH = 25; 6 | const GRID_HEIGHT = 20; 7 | 8 | const dots = []; 9 | 10 | const handleDotClick = (e: any) => { 11 | anime({ 12 | targets: ".dot-point", 13 | scale: [ 14 | { value: 1.35, easing: "easeOutSine", duration: 250 }, 15 | { value: 1, easing: "easeInOutQuad", duration: 500 }, 16 | ], 17 | translateY: [ 18 | { value: -15, easing: "easeOutSine", duration: 250 }, 19 | { value: 1, easing: "easeInOutQuad", duration: 500 }, 20 | ], 21 | opacity: [ 22 | { value: 0.7, easing: "easeOutSine", duration: 250 }, 23 | { value: 0.35, easing: "easeInOutQuad", duration: 500 }, 24 | ], 25 | delay: anime.stagger(100, { 26 | grid: [GRID_WIDTH, GRID_HEIGHT], 27 | from: e.target.dataset.index, 28 | }), 29 | }); 30 | }; 31 | 32 | let index = 0; 33 | 34 | for (let i = 0; i < GRID_WIDTH; i++) { 35 | for (let j = 0; j < GRID_HEIGHT; j++) { 36 | dots.push( 37 |
43 |
44 |
45 | ); 46 | index++; 47 | } 48 | } 49 | 50 | return ( 51 |
55 | {dots.map((dot) => dot)} 56 |
57 | ); 58 | }; 59 | -------------------------------------------------------------------------------- /components/home/hero/Hero.tsx: -------------------------------------------------------------------------------- 1 | import Image from "next/image"; 2 | import { motion } from "framer-motion"; 3 | import { StandardButton } from "@/components/buttons/StandardButton"; 4 | import { Reveal } from "@/components/utils/Reveal"; 5 | import { DotGrid } from "./DotGrid"; 6 | import styles from "./hero.module.scss"; 7 | import Profile from "@/public/jc.jpg"; 8 | 9 | export const Hero = () => { 10 | return ( 11 |
12 |
13 |
14 | 15 |

16 | Hi, I'm JC. 17 |

18 |
19 | 20 |

21 | I'm a Frontend Developer 22 |

23 |
24 | 25 |

26 | I've spent the last 3 years building and scaling applications for 27 | some pretty cool companies and individuals. I also create interesting self projects on my spare time. 28 | Let's connect! 29 |

30 |
31 | 32 | document.getElementById("contact")?.scrollIntoView()} 34 | > 35 | Contact me 36 | 37 | 38 |
39 | 43 | John Carlo Devera | Frontend Developer 51 | 52 |
53 | 54 |
55 | ); 56 | }; 57 | -------------------------------------------------------------------------------- /components/home/hero/dotgrid.module.scss: -------------------------------------------------------------------------------- 1 | .dotGrid { 2 | position: absolute; 3 | top: 12px; 4 | bottom: 12px; 5 | right: 3.6rem; 6 | max-width: 75%; 7 | display: grid; 8 | z-index: 0; 9 | } 10 | 11 | .dotWrapper { 12 | padding: 0.8rem; 13 | cursor: crosshair; 14 | transition: 0.25s background; 15 | border-radius: 8px; 16 | } 17 | 18 | .dot { 19 | width: 8px; 20 | height: 8px; 21 | border-radius: 50%; 22 | background: linear-gradient(180deg, var(--background), var(--text)); 23 | opacity: 0.35; 24 | } 25 | 26 | .dotWrapper:hover { 27 | background: rgba(255, 255, 255, 0.15); 28 | } 29 | 30 | .dotWrapper:hover > .dot { 31 | background: linear-gradient( 32 | 180deg, 33 | var(--background), 34 | var(--brand) 35 | ) !important; 36 | opacity: 1 !important; 37 | } 38 | -------------------------------------------------------------------------------- /components/home/hero/hero.module.scss: -------------------------------------------------------------------------------- 1 | .hero { 2 | margin-top: 4rem; 3 | margin-bottom: 25rem; 4 | padding: 4rem 2.5rem; 5 | @media (max-width: 980px) { 6 | padding: 0 2rem; 7 | margin-top: 1.5rem; 8 | margin-bottom: 4.8rem; 9 | } 10 | } 11 | 12 | .copyWrapper { 13 | position: relative; 14 | z-index: 10; 15 | 16 | width: fit-content; 17 | margin: 4.8rem 0; 18 | } 19 | 20 | .title { 21 | font-size: var(--text-2xl); 22 | font-weight: 900; 23 | line-height: 1.1; 24 | 25 | span { 26 | color: var(--brand); 27 | } 28 | 29 | @media (max-width: 768px) { 30 | font-size: var(--text-xl); 31 | } 32 | } 33 | 34 | .subTitle { 35 | font-size: var(--text-lg); 36 | line-height: 1.1; 37 | margin-top: 1.6rem; 38 | font-weight: 200; 39 | 40 | span { 41 | font-weight: bold; 42 | color: var(--brand); 43 | } 44 | } 45 | 46 | .aboutCopy { 47 | margin: 2.4rem 0; 48 | max-width: 700px; 49 | font-weight: 200; 50 | } 51 | 52 | .profile { 53 | margin: 2rem; 54 | z-index: 10; 55 | position: relative; 56 | margin-right: 9rem; 57 | border-radius: 50%; 58 | outline: solid; 59 | outline-width: 3px; 60 | outline-color: var(--brand); 61 | outline-offset: 6px; 62 | transition: .4s; 63 | 64 | &:hover { 65 | outline: dotted; 66 | outline-color: var(--brand); 67 | outline-offset: 10px; 68 | transform: scale(105%); 69 | } 70 | } 71 | 72 | .heroGrid { 73 | gap: 1.5rem; 74 | display: flex; 75 | flex-wrap: nowrap; 76 | flex-direction: row; 77 | align-items: center; 78 | justify-content: space-between; 79 | 80 | @media (max-width: 980px) { 81 | flex-direction: column-reverse; 82 | align-items: start; 83 | flex-wrap: wrap; 84 | 85 | .profile { 86 | height: 150px; 87 | width: 150px; 88 | margin-right: 0; 89 | margin-bottom: -30px; 90 | margin-top: 3rem; 91 | margin-left: 1.5rem; 92 | } 93 | } 94 | } -------------------------------------------------------------------------------- /components/home/home.module.scss: -------------------------------------------------------------------------------- 1 | .home { 2 | display: grid; 3 | grid-template-columns: 60px 1fr; 4 | } 5 | -------------------------------------------------------------------------------- /components/home/projects/Project.tsx: -------------------------------------------------------------------------------- 1 | import Image from "next/image"; 2 | import { Reveal } from "@/components/utils/Reveal"; 3 | import { useAnimation, useInView, motion } from "framer-motion"; 4 | import Link from "next/link"; 5 | import { useEffect, useRef, useState } from "react"; 6 | import { AiFillGithub, AiOutlineExport } from "react-icons/ai"; 7 | import { ProjectModal } from "./ProjectModal"; 8 | import styles from "./projects.module.scss"; 9 | interface Props { 10 | modalContent: JSX.Element; 11 | description: string; 12 | projectLink: string; 13 | imgSrc: string; 14 | tech: string[]; 15 | title: string; 16 | code: string; 17 | } 18 | 19 | export const Project = ({ 20 | modalContent, 21 | projectLink, 22 | description, 23 | imgSrc, 24 | title, 25 | code, 26 | tech, 27 | }: Props) => { 28 | const [hovered, setHovered] = useState(false); 29 | 30 | const [isOpen, setIsOpen] = useState(false); 31 | 32 | const controls = useAnimation(); 33 | 34 | const ref = useRef(null); 35 | const isInView = useInView(ref, { once: true }); 36 | 37 | useEffect(() => { 38 | if (isInView) { 39 | controls.start("visible"); 40 | } else { 41 | controls.start("hidden"); 42 | } 43 | }, [isInView, controls]); 44 | 45 | return ( 46 | <> 47 | 57 |
setHovered(true)} 59 | onMouseLeave={() => setHovered(false)} 60 | onClick={() => setIsOpen(true)} 61 | className={styles.projectImage} 62 | > 63 | {`An 74 | {/* {`An */} 82 |
83 |
84 | 85 |
86 |

{title}

87 |
88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 |
97 | 98 | 99 |
{tech.join(" - ")}
100 |
101 | 102 |

103 | {description}
104 | setIsOpen(true)}>Learn more {">"} 105 |

106 |
107 |
108 | 109 | 119 | 120 | ); 121 | }; 122 | -------------------------------------------------------------------------------- /components/home/projects/ProjectModal.tsx: -------------------------------------------------------------------------------- 1 | import styles from "./projectmodal.module.scss"; 2 | import { useEffect } from "react"; 3 | import ReactDOM from "react-dom"; 4 | import { motion } from "framer-motion"; 5 | import Link from "next/link"; 6 | import { AiFillGithub, AiOutlineExport } from "react-icons/ai"; 7 | import { MdClose } from "react-icons/md"; 8 | import Image from "next/image"; 9 | interface Props { 10 | isOpen: boolean; 11 | setIsOpen: Function; 12 | title: string; 13 | imgSrc: string; 14 | code: string; 15 | projectLink: string; 16 | tech: string[]; 17 | modalContent: JSX.Element; 18 | } 19 | 20 | export const ProjectModal = ({ 21 | modalContent, 22 | projectLink, 23 | setIsOpen, 24 | imgSrc, 25 | isOpen, 26 | title, 27 | code, 28 | tech, 29 | }: Props) => { 30 | useEffect(() => { 31 | const body = document.querySelector("body"); 32 | 33 | if (isOpen) { 34 | body!.style.overflowY = "hidden"; 35 | } else { 36 | body!.style.overflowY = "scroll"; 37 | } 38 | }, [isOpen]); 39 | 40 | const content = ( 41 |
setIsOpen(false)}> 42 | 45 | 46 | e.stopPropagation()} 50 | className={styles.modalCard} 51 | > 52 | {`An 60 | {/* {`An */} 65 |
66 |

{title}

67 |
{tech.join(" - ")}
68 | 69 |
{modalContent}
70 | 71 |
72 |

73 | Project Links. 74 |

75 |
76 | 77 | source code 78 | 79 | 80 | live project 81 | 82 |
83 |
84 |
85 |
86 |
87 | ); 88 | 89 | if (!isOpen) return <>; 90 | 91 | // @ts-ignore 92 | return ReactDOM.createPortal(content, document.getElementById("root")); 93 | }; 94 | -------------------------------------------------------------------------------- /components/home/projects/Projects.tsx: -------------------------------------------------------------------------------- 1 | import { SectionHeader } from "@/components/utils/SectionHeader"; 2 | import { Project } from "./Project"; 3 | import styles from "./projects.module.scss"; 4 | 5 | export const Projects = () => { 6 | return ( 7 |
8 | 9 | 10 |
11 | {projects.map((project) => { 12 | return ; 13 | })} 14 |
15 |
16 | ); 17 | }; 18 | 19 | const projects = [ 20 | { 21 | title: "Classified", 22 | imgSrc: "/project-imgs/agency-listing.png", 23 | code: "#", 24 | projectLink: "#", 25 | tech: ["React", "Nextjs", "Tailwind", "Prisma"], 26 | description: "An Insurance Agency Listing Web Application.", 27 | modalContent: ( 28 | <> 29 |

30 | Worked as a front-end developer and created dynamic reusable 31 | components and base layout from a mock-up. 32 |

33 |

34 | The tech stack is based on Nextjs with the custom tailwind components, 35 | connected to a Prisma backend. 36 |

37 | 38 | ), 39 | }, 40 | { 41 | title: "Elancerz", 42 | imgSrc: "/project-imgs/elancerz.png", 43 | code: "https://www.github.com", 44 | projectLink: "https://elancerz.com/", 45 | tech: ["React", "Nextjs", "Sytled Components", "Firebase Auth", "Laravel"], 46 | description: 47 | "A Talent finder app for anything around the world. This is my first time as a React developer job.", 48 | modalContent: ( 49 | <> 50 |

51 | Worked as a front-end developer and created dynamic reusable 52 | components, integrated calendly, messaging and project management 53 | features. 54 |

55 |

56 | The tech stack is based on Nextjs with the custom Styled components, 57 | connected to a Laravel backend, with data stored in Mysql. 58 |

59 | 60 | ), 61 | }, 62 | { 63 | title: "Agency Iron Admin", 64 | imgSrc: "/project-imgs/agency-iron-crm.png", 65 | code: "https://www.github.com", 66 | // projectLink: "https://agency-iron-crm.herokuapp.com/", 67 | projectLink: "#", 68 | tech: ["React", "MUI", "MongoDB", "Postgres", "Python"], 69 | description: 70 | "A Dashboard for clients and admin of Rocky Mountain West Insurance LLC. using Vuejs and re-worked using Reactjs.", 71 | modalContent: ( 72 | <> 73 |

74 | Worked as a front-end developer for this web application. Integrated 75 | api's, Created dynamic and reusable components. 76 |

77 |

78 | I work primarily on the frontend, creating reusable components and 79 | integrating api. 80 |

81 |

82 | The team in total consists of 3 developers. This is a passion project 83 | for all of us. 84 |

85 | 86 | ), 87 | }, 88 | { 89 | title: "WorshipHIM", 90 | imgSrc: "/project-imgs/wh_app.png", 91 | code: "https://www.github.com", 92 | projectLink: 93 | "https://play.google.com/store/apps/details?id=com.ellinx.lightapps.worshiphim&hl=en&gl=US", 94 | tech: ["React", "React Native", "Styled Components", "Android"], 95 | description: 96 | "WorshipHIM is a chord and lyrics app developed to help ease everyone in their worship to God.", 97 | modalContent: ( 98 | <> 99 |

100 | WorshipHIM is a chord and lyrics app developed to help ease everyone 101 | in their worship to God. So that all may know, from the rising of the 102 | sun to its setting, That there is none besides God. He is the Lord and 103 | there's no other! Praise Him, Worship Him! 104 |

105 |

This is a very fun project that i made using React Native.

106 | 107 | ), 108 | }, 109 | { 110 | title: "WorshipHIM Landing Page", 111 | imgSrc: "/project-imgs/worshiphim.png", 112 | code: "https://www.github.com", 113 | projectLink: "https://worshiphim.vercel.app/", 114 | tech: ["React", "Nextjs", "Tailwind", "Google Play Scrapper", "Ko-Fi"], 115 | description: 116 | "Landing Page of WorshipHIM mobile application for showcasing feature rich and tools of the app.", 117 | modalContent: ( 118 | <> 119 |

120 | This is another self project that i made to showcase our mobile app. 121 |

122 |

123 | I integrated ko-fi donation and uses Template for this Nextjs Project. 124 | I also use a plugin for scrapping data from our google play to display 125 | directly on the landing page. 126 |

127 | 128 | ), 129 | }, 130 | { 131 | title: "Portfolio v.2", 132 | imgSrc: "/project-imgs/portfolio-01.png", 133 | code: "https://github.com/jcdevz-dev/portfolio", 134 | projectLink: "#", 135 | tech: ["React", "Styled Components", "Typescript", "Gatsby"], 136 | description: "First Portfolio Made with React JS", 137 | modalContent: ( 138 | <> 139 |

140 | This is my second version of my portfolio that i made to showcase my 141 | projects. 142 |

143 |

Trying out gatsby and creating my second version of portfolio

144 | 145 | ), 146 | }, 147 | { 148 | title: "Portfolio v.1", 149 | imgSrc: "/project-imgs/portfolio-00.png", 150 | code: "https://github.com/jcdevz-dev/jc-portfolio", 151 | projectLink: "https://jc-devera.vercel.app/", 152 | tech: ["React", "Styled Components", "Typescript"], 153 | description: "First Portfolio Made with React JS", 154 | modalContent: ( 155 | <> 156 |

157 | This is my first version of my portfolio that i made to showcase my 158 | projects. 159 |

160 |

First step for learning React JS and creating my portfolio

161 | 162 | ), 163 | }, 164 | ]; 165 | -------------------------------------------------------------------------------- /components/home/projects/projectmodal.module.scss: -------------------------------------------------------------------------------- 1 | .modal { 2 | position: fixed; 3 | top: 0; 4 | left: 0; 5 | right: 0; 6 | z-index: 100000000; 7 | 8 | height: 100vh; 9 | padding: 4.8rem 1.2rem; 10 | background: var(--bg-opaque); 11 | backdrop-filter: blur(12px); 12 | 13 | overflow-y: scroll; 14 | 15 | display: flex; 16 | justify-content: center; 17 | 18 | cursor: pointer; 19 | } 20 | 21 | .modalCard { 22 | width: 100%; 23 | max-width: 700px; 24 | height: fit-content; 25 | 26 | border-radius: 1.2rem; 27 | overflow: hidden; 28 | 29 | background: var(--background-light); 30 | box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1); 31 | 32 | cursor: auto; 33 | } 34 | 35 | .modalImage { 36 | width: 100%; 37 | } 38 | 39 | .modalContent { 40 | padding: 2.4rem; 41 | 42 | h4 { 43 | font-size: var(--text-lg); 44 | } 45 | } 46 | 47 | .modalTech { 48 | display: flex; 49 | flex-wrap: wrap; 50 | gap: 1.2rem; 51 | 52 | font-size: var(--text-xs); 53 | color: var(--brand); 54 | 55 | margin: 0.2rem 0 2.4rem; 56 | } 57 | 58 | .suppliedContent { 59 | display: flex; 60 | flex-direction: column; 61 | gap: 1.2rem; 62 | font-size: var(--text-xs); 63 | } 64 | 65 | .modalFooter { 66 | margin-top: 2.4rem; 67 | } 68 | 69 | .linksText { 70 | font-weight: bold; 71 | font-size: var(--text-md); 72 | margin-bottom: 0.8rem; 73 | 74 | span { 75 | color: var(--brand); 76 | } 77 | } 78 | 79 | .links { 80 | display: flex; 81 | align-items: center; 82 | gap: 1.2rem; 83 | 84 | a { 85 | display: flex; 86 | align-items: center; 87 | gap: 0.4rem; 88 | 89 | font-size: var(--text-xs); 90 | color: var(--brand); 91 | } 92 | 93 | a:hover { 94 | text-decoration: underline; 95 | } 96 | } 97 | 98 | .closeModalBtn { 99 | background: none; 100 | border: none; 101 | 102 | color: var(--text); 103 | 104 | font-size: var(--text-md); 105 | 106 | position: absolute; 107 | top: 1.2rem; 108 | right: 1.2rem; 109 | 110 | cursor: pointer; 111 | } 112 | -------------------------------------------------------------------------------- /components/home/projects/projects.module.scss: -------------------------------------------------------------------------------- 1 | .projects { 2 | display: grid; 3 | grid-template-columns: 1fr 1fr; 4 | gap: 3.2rem; 5 | 6 | @media (max-width: 768px) { 7 | grid-template-columns: 1fr; 8 | } 9 | } 10 | 11 | .projectImage { 12 | width: 100%; 13 | aspect-ratio: 16 / 9; 14 | background: var(--background-light); 15 | cursor: pointer; 16 | position: relative; 17 | border-radius: 0.8rem; 18 | overflow: hidden; 19 | 20 | img { 21 | width: 100%; 22 | height: auto; 23 | position: absolute; 24 | bottom: 30px; 25 | left: 50%; 26 | translate: -50% 20%; 27 | 28 | transition: 0.25s all; 29 | 30 | border-radius: 0.4rem; 31 | } 32 | 33 | @media (max-width: 768px) { 34 | img { 35 | width: 85%; 36 | height: 90%; 37 | } 38 | } 39 | } 40 | 41 | .projectCopy { 42 | margin: 1.6rem 0; 43 | } 44 | 45 | .projectTitle { 46 | display: flex; 47 | align-items: center; 48 | gap: 1.2rem; 49 | 50 | h4 { 51 | font-weight: bold; 52 | font-size: var(--text-md); 53 | flex-shrink: 0; 54 | 55 | max-width: calc(100% - 150px); 56 | } 57 | 58 | a { 59 | opacity: 0.75; 60 | transition: 0.25s opacity; 61 | } 62 | 63 | a:hover { 64 | opacity: 1; 65 | } 66 | } 67 | 68 | .projectTitleLine { 69 | width: 100%; 70 | height: 1px; 71 | background: var(--text); 72 | opacity: 0.3; 73 | } 74 | 75 | .projectDescription { 76 | font-weight: 200; 77 | 78 | span { 79 | display: inline-block; 80 | 81 | font-size: var(--text-xs); 82 | font-weight: 400; 83 | color: var(--brand); 84 | 85 | cursor: pointer; 86 | margin-top: 2.5rem; 87 | } 88 | 89 | span:hover { 90 | text-decoration: underline; 91 | } 92 | } 93 | 94 | .projectTech { 95 | display: flex; 96 | flex-wrap: wrap; 97 | gap: 1.2rem; 98 | 99 | font-size: var(--text-xs); 100 | color: var(--brand); 101 | 102 | margin: 0.8rem 0; 103 | } 104 | -------------------------------------------------------------------------------- /components/nav/Heading.tsx: -------------------------------------------------------------------------------- 1 | import styles from "./heading.module.scss"; 2 | import { MyLinks } from "./components/MyLinks"; 3 | import { OutlineButton } from "../buttons/OutlineButton"; 4 | 5 | export const Heading = () => { 6 | return ( 7 |
8 | 9 | {/*
*/} 10 | 11 | window.open("/John Carlo P. Devera.pdf")}> 12 | My resume 13 | 14 | {/*
*/} 15 |
16 | ); 17 | }; 18 | 19 | { 20 | /* 21 | Buy Me A Coffee 29 | */ 30 | } 31 | -------------------------------------------------------------------------------- /components/nav/SideBar.tsx: -------------------------------------------------------------------------------- 1 | import { useEffect, useState } from "react"; 2 | import styles from "./sidebar.module.scss"; 3 | import { motion } from "framer-motion"; 4 | 5 | export const SideBar = () => { 6 | const [selected, setSelected] = useState(""); 7 | 8 | useEffect(() => { 9 | const sections = document.querySelectorAll(".section-wrapper"); 10 | 11 | const options = { 12 | threshold: 0.3, 13 | }; 14 | 15 | const callback = (entries: any) => { 16 | entries.forEach((entry: any) => { 17 | if (entry.isIntersecting) { 18 | setSelected(entry.target.id); 19 | } 20 | }); 21 | }; 22 | 23 | const observer = new IntersectionObserver(callback, options); 24 | 25 | sections.forEach((section) => observer.observe(section)); 26 | }, []); 27 | 28 | return ( 29 |
30 | 36 | { 37 | document.location.hash === "" ? 38 | document.getElementById("main")?.scrollIntoView() : 39 | document.location.hash = ''; 40 | }}> 41 | JC. 42 | 43 | { 49 | setSelected("about"); 50 | }} 51 | className={selected === "about" ? styles.selected : ""} 52 | > 53 | About 54 | 55 | setSelected("projects")} 61 | className={selected === "projects" ? styles.selected : ""} 62 | > 63 | Projects 64 | 65 | setSelected("experience")} 71 | className={selected === "experience" ? styles.selected : ""} 72 | > 73 | Exp. 74 | 75 | setSelected("contact")} 81 | className={selected === "contact" ? styles.selected : ""} 82 | > 83 | Contact 84 | 85 | 86 |
87 | ); 88 | }; 89 | -------------------------------------------------------------------------------- /components/nav/components/MyLinks.tsx: -------------------------------------------------------------------------------- 1 | import styles from "./headinglinks.module.scss"; 2 | import { 3 | AiFillLinkedin, 4 | AiFillGithub, 5 | AiFillInstagram, 6 | AiFillYoutube, 7 | AiFillSkype 8 | } from "react-icons/ai"; 9 | import Link from "next/link"; 10 | import { motion } from "framer-motion"; 11 | 12 | export const MyLinks = () => { 13 | return ( 14 |
15 | 20 | 21 | 22 | 23 | 24 | 25 | 30 | 31 | 32 | 33 | 34 | 35 | 40 | 41 | 42 | 43 | 44 | 45 | 50 | 51 | 52 | 53 | 54 | 55 | {/* 60 | 61 | 62 | 63 | */} 64 |
65 | ); 66 | }; 67 | -------------------------------------------------------------------------------- /components/nav/components/headinglinks.module.scss: -------------------------------------------------------------------------------- 1 | .links { 2 | display: flex; 3 | gap: 1.6rem; 4 | padding-top: 10px; 5 | 6 | a { 7 | opacity: 0.5; 8 | position: relative; 9 | z-index: 20; 10 | } 11 | 12 | a:hover { 13 | color: var(--brand); 14 | opacity: 1; 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /components/nav/heading.module.scss: -------------------------------------------------------------------------------- 1 | .heading { 2 | height: calc(45px + 3.6rem); 3 | padding: 0 3.6rem; 4 | 5 | display: flex; 6 | align-items: center; 7 | justify-content: space-between; 8 | 9 | position: sticky; 10 | top: 0; 11 | z-index: 20; 12 | background: var(--bg-opaque); 13 | backdrop-filter: blur(12px); 14 | 15 | font-size: var(--text-md); 16 | font-weight: bold; 17 | 18 | @media (max-width: 768px) { 19 | padding: 0 2.4rem; 20 | } 21 | } 22 | 23 | .headingButtons { 24 | display: flex; 25 | align-items: center; 26 | justify-content: space-between; 27 | gap: 1rem; 28 | 29 | > a { 30 | height: 46px; 31 | } 32 | } -------------------------------------------------------------------------------- /components/nav/sidebar.module.scss: -------------------------------------------------------------------------------- 1 | .sideBar { 2 | background: var(--background-dark); 3 | 4 | height: 100vh; 5 | 6 | position: sticky; 7 | top: 0px; 8 | left: 0px; 9 | z-index: 20; 10 | 11 | display: flex; 12 | flex-direction: column; 13 | align-items: center; 14 | overflow-y: scroll; 15 | 16 | -ms-overflow-style: none; /* IE and Edge */ 17 | scrollbar-width: none; /* Firefox */ 18 | 19 | a { 20 | height: 100px; 21 | 22 | flex-shrink: 0; 23 | 24 | writing-mode: vertical-lr; 25 | font-size: var(--text-sm); 26 | font-weight: 200; 27 | display: flex; 28 | align-items: center; 29 | justify-content: center; 30 | opacity: 0.5; 31 | 32 | border-right: 1px solid transparent; 33 | 34 | transition: 0.1s all; 35 | width: 100%; 36 | } 37 | 38 | a:hover { 39 | background: var(--background); 40 | border-right: 1px solid var(--brand); 41 | opacity: 1; 42 | } 43 | 44 | .selected { 45 | background: var(--background); 46 | border-right: 1px solid var(--brand); 47 | opacity: 1; 48 | } 49 | } 50 | 51 | .logo { 52 | cursor: pointer; 53 | flex-shrink: 0; 54 | 55 | font-size: var(--text-md); 56 | font-weight: 900; 57 | line-height: 1; 58 | 59 | width: 45px; 60 | height: 45px; 61 | 62 | display: flex; 63 | align-items: center; 64 | justify-content: center; 65 | 66 | background: var(--background); 67 | border-radius: 4px; 68 | 69 | margin: 1.8rem 0; 70 | 71 | span { 72 | font-size: var(--text-md); 73 | font-weight: 900; 74 | line-height: 1; 75 | color: var(--brand); 76 | } 77 | } 78 | 79 | .sideBar::-webkit-scrollbar { 80 | display: none; 81 | } 82 | -------------------------------------------------------------------------------- /components/utils/Reveal.tsx: -------------------------------------------------------------------------------- 1 | import React, { useEffect, useRef } from "react"; 2 | import { motion, useInView, useAnimation } from "framer-motion"; 3 | 4 | interface Props { 5 | children: JSX.Element; 6 | width?: "fit-content" | "100%"; 7 | } 8 | 9 | export const Reveal = ({ children, width = "fit-content" }: Props) => { 10 | const mainControls = useAnimation(); 11 | const slideControls = useAnimation(); 12 | 13 | const ref = useRef(null); 14 | const isInView = useInView(ref, { once: true }); 15 | 16 | useEffect(() => { 17 | if (isInView) { 18 | slideControls.start("visible"); 19 | mainControls.start("visible"); 20 | } else { 21 | slideControls.start("hidden"); 22 | mainControls.start("hidden"); 23 | } 24 | }, [isInView, mainControls, slideControls]); 25 | 26 | return ( 27 |
28 | 37 | {children} 38 | 39 | 57 |
58 | ); 59 | }; 60 | -------------------------------------------------------------------------------- /components/utils/SectionHeader.tsx: -------------------------------------------------------------------------------- 1 | import styles from "./header.module.scss"; 2 | import { Reveal } from "./Reveal"; 3 | 4 | interface Props { 5 | title: string; 6 | dir?: "l" | "r"; 7 | } 8 | 9 | export const SectionHeader = ({ title, dir = "r" }: Props) => { 10 | return ( 11 |
15 |
16 |

17 | 18 | 19 | {title} 20 | . 21 | 22 | 23 |

24 |
25 | ); 26 | }; 27 | -------------------------------------------------------------------------------- /components/utils/header.module.scss: -------------------------------------------------------------------------------- 1 | .sectionHeader { 2 | display: flex; 3 | align-items: center; 4 | gap: 2.4rem; 5 | margin-bottom: 2.4rem; 6 | } 7 | 8 | .title { 9 | font-size: var(--text-xl); 10 | font-weight: 900; 11 | text-align: end; 12 | 13 | span { 14 | color: var(--brand); 15 | } 16 | 17 | @media (max-width: 768px) { 18 | font-size: var(--text-lg); 19 | } 20 | } 21 | 22 | .line { 23 | width: 100%; 24 | height: 1px; 25 | background: var(--text); 26 | opacity: 0.3; 27 | } 28 | -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- 1 | /** @type {import('next').NextConfig} */ 2 | const nextConfig = { 3 | reactStrictMode: true, 4 | experimental: { 5 | fontLoaders: [ 6 | { loader: "@next/font/google", options: { subsets: ["latin"] } }, 7 | ], 8 | }, 9 | }; 10 | 11 | module.exports = nextConfig; 12 | -------------------------------------------------------------------------------- /package-lock.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "steam", 3 | "version": "0.1.0", 4 | "lockfileVersion": 3, 5 | "requires": true, 6 | "packages": { 7 | "": { 8 | "name": "steam", 9 | "version": "0.1.0", 10 | "dependencies": { 11 | "@types/node": "18.14.2", 12 | "@types/react": "18.0.28", 13 | "@types/react-dom": "18.0.11", 14 | "animejs": "^3.2.1", 15 | "eslint": "8.35.0", 16 | "eslint-config-next": "13.2.1", 17 | "framer-motion": "^10.0.1", 18 | "next": "13.2.1", 19 | "react": "18.2.0", 20 | "react-dom": "18.2.0", 21 | "react-icons": "^4.7.1", 22 | "sass": "^1.58.3", 23 | "typescript": "4.9.5" 24 | }, 25 | "devDependencies": { 26 | "@types/animejs": "^3.1.7" 27 | } 28 | }, 29 | "node_modules/@babel/runtime": { 30 | "version": "7.21.0", 31 | "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.21.0.tgz", 32 | "integrity": "sha512-xwII0//EObnq89Ji5AKYQaRYiW/nZ3llSv29d49IuxPhKbtJoLP+9QUUZ4nVragQVtaVGeZrpB+ZtG/Pdy/POw==", 33 | "dependencies": { 34 | "regenerator-runtime": "^0.13.11" 35 | }, 36 | "engines": { 37 | "node": ">=6.9.0" 38 | } 39 | }, 40 | "node_modules/@emotion/is-prop-valid": { 41 | "version": "0.8.8", 42 | "resolved": "https://registry.npmjs.org/@emotion/is-prop-valid/-/is-prop-valid-0.8.8.tgz", 43 | "integrity": "sha512-u5WtneEAr5IDG2Wv65yhunPSMLIpuKsbuOktRojfrEiEvRyC85LgPMZI63cr7NUqT8ZIGdSVg8ZKGxIug4lXcA==", 44 | "optional": true, 45 | "dependencies": { 46 | "@emotion/memoize": "0.7.4" 47 | } 48 | }, 49 | "node_modules/@emotion/memoize": { 50 | "version": "0.7.4", 51 | "resolved": "https://registry.npmjs.org/@emotion/memoize/-/memoize-0.7.4.tgz", 52 | "integrity": "sha512-Ja/Vfqe3HpuzRsG1oBtWTHk2PGZ7GR+2Vz5iYGelAw8dx32K0y7PjVuxK6z1nMpZOqAFsRUPCkK1YjJ56qJlgw==", 53 | "optional": true 54 | }, 55 | "node_modules/@eslint/eslintrc": { 56 | "version": "2.0.2", 57 | "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-2.0.2.tgz", 58 | "integrity": "sha512-3W4f5tDUra+pA+FzgugqL2pRimUTDJWKr7BINqOpkZrC0uYI0NIc0/JFgBROCU07HR6GieA5m3/rsPIhDmCXTQ==", 59 | "dependencies": { 60 | "ajv": "^6.12.4", 61 | "debug": "^4.3.2", 62 | "espree": "^9.5.1", 63 | "globals": "^13.19.0", 64 | "ignore": "^5.2.0", 65 | "import-fresh": "^3.2.1", 66 | "js-yaml": "^4.1.0", 67 | "minimatch": "^3.1.2", 68 | "strip-json-comments": "^3.1.1" 69 | }, 70 | "engines": { 71 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 72 | }, 73 | "funding": { 74 | "url": "https://opencollective.com/eslint" 75 | } 76 | }, 77 | "node_modules/@eslint/js": { 78 | "version": "8.35.0", 79 | "resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.35.0.tgz", 80 | "integrity": "sha512-JXdzbRiWclLVoD8sNUjR443VVlYqiYmDVT6rGUEIEHU5YJW0gaVZwV2xgM7D4arkvASqD0IlLUVjHiFuxaftRw==", 81 | "engines": { 82 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 83 | } 84 | }, 85 | "node_modules/@humanwhocodes/config-array": { 86 | "version": "0.11.8", 87 | "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.8.tgz", 88 | "integrity": "sha512-UybHIJzJnR5Qc/MsD9Kr+RpO2h+/P1GhOwdiLPXK5TWk5sgTdu88bTD9UP+CKbPPh5Rni1u0GjAdYQLemG8g+g==", 89 | "dependencies": { 90 | "@humanwhocodes/object-schema": "^1.2.1", 91 | "debug": "^4.1.1", 92 | "minimatch": "^3.0.5" 93 | }, 94 | "engines": { 95 | "node": ">=10.10.0" 96 | } 97 | }, 98 | "node_modules/@humanwhocodes/module-importer": { 99 | "version": "1.0.1", 100 | "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz", 101 | "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==", 102 | "engines": { 103 | "node": ">=12.22" 104 | }, 105 | "funding": { 106 | "type": "github", 107 | "url": "https://github.com/sponsors/nzakas" 108 | } 109 | }, 110 | "node_modules/@humanwhocodes/object-schema": { 111 | "version": "1.2.1", 112 | "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz", 113 | "integrity": "sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==" 114 | }, 115 | "node_modules/@next/env": { 116 | "version": "13.2.1", 117 | "resolved": "https://registry.npmjs.org/@next/env/-/env-13.2.1.tgz", 118 | "integrity": "sha512-Hq+6QZ6kgmloCg8Kgrix+4F0HtvLqVK3FZAnlAoS0eonaDemHe1Km4kwjSWRE3JNpJNcKxFHF+jsZrYo0SxWoQ==" 119 | }, 120 | "node_modules/@next/eslint-plugin-next": { 121 | "version": "13.2.1", 122 | "resolved": "https://registry.npmjs.org/@next/eslint-plugin-next/-/eslint-plugin-next-13.2.1.tgz", 123 | "integrity": "sha512-r0i5rcO6SMAZtqiGarUVMr3k256X0R0j6pEkKg4PxqUW+hG0qgMxRVAJsuoRG5OBFkCOlSfWZJ0mP9fQdCcyNg==", 124 | "dependencies": { 125 | "glob": "7.1.7" 126 | } 127 | }, 128 | "node_modules/@next/swc-android-arm-eabi": { 129 | "version": "13.2.1", 130 | "resolved": "https://registry.npmjs.org/@next/swc-android-arm-eabi/-/swc-android-arm-eabi-13.2.1.tgz", 131 | "integrity": "sha512-Yua7mUpEd1wzIT6Jjl3dpRizIfGp9NR4F2xeRuQv+ae+SDI1Em2WyM9m46UL+oeW5GpMiEHoaBagr47RScZFmQ==", 132 | "cpu": [ 133 | "arm" 134 | ], 135 | "optional": true, 136 | "os": [ 137 | "android" 138 | ], 139 | "engines": { 140 | "node": ">= 10" 141 | } 142 | }, 143 | "node_modules/@next/swc-android-arm64": { 144 | "version": "13.2.1", 145 | "resolved": "https://registry.npmjs.org/@next/swc-android-arm64/-/swc-android-arm64-13.2.1.tgz", 146 | "integrity": "sha512-Bifcr2f6VwInOdq1uH/9lp8fH7Nf7XGkIx4XceVd32LPJqG2c6FZU8ZRBvTdhxzXVpt5TPtuXhOP4Ij9UPqsVw==", 147 | "cpu": [ 148 | "arm64" 149 | ], 150 | "optional": true, 151 | "os": [ 152 | "android" 153 | ], 154 | "engines": { 155 | "node": ">= 10" 156 | } 157 | }, 158 | "node_modules/@next/swc-darwin-arm64": { 159 | "version": "13.2.1", 160 | "resolved": "https://registry.npmjs.org/@next/swc-darwin-arm64/-/swc-darwin-arm64-13.2.1.tgz", 161 | "integrity": "sha512-gvqm+fGMYxAkwBapH0Vvng5yrb6HTkIvZfY4oEdwwYrwuLdkjqnJygCMgpNqIFmAHSXgtlWxfYv1VC8sjN81Kw==", 162 | "cpu": [ 163 | "arm64" 164 | ], 165 | "optional": true, 166 | "os": [ 167 | "darwin" 168 | ], 169 | "engines": { 170 | "node": ">= 10" 171 | } 172 | }, 173 | "node_modules/@next/swc-darwin-x64": { 174 | "version": "13.2.1", 175 | "resolved": "https://registry.npmjs.org/@next/swc-darwin-x64/-/swc-darwin-x64-13.2.1.tgz", 176 | "integrity": "sha512-HGqVqmaZWj6zomqOZUVbO5NhlABL0iIaxTmd0O5B0MoMa5zpDGoaHSG+fxgcWMXcGcxmUNchv1NfNOYiTKoHOg==", 177 | "cpu": [ 178 | "x64" 179 | ], 180 | "optional": true, 181 | "os": [ 182 | "darwin" 183 | ], 184 | "engines": { 185 | "node": ">= 10" 186 | } 187 | }, 188 | "node_modules/@next/swc-freebsd-x64": { 189 | "version": "13.2.1", 190 | "resolved": "https://registry.npmjs.org/@next/swc-freebsd-x64/-/swc-freebsd-x64-13.2.1.tgz", 191 | "integrity": "sha512-N/a4JarAq+E+g+9K2ywJUmDIgU2xs2nA+BBldH0oq4zYJMRiUhL0iaN9G4e72VmGOJ61L/3W6VN8RIUOwTLoqQ==", 192 | "cpu": [ 193 | "x64" 194 | ], 195 | "optional": true, 196 | "os": [ 197 | "freebsd" 198 | ], 199 | "engines": { 200 | "node": ">= 10" 201 | } 202 | }, 203 | "node_modules/@next/swc-linux-arm-gnueabihf": { 204 | "version": "13.2.1", 205 | "resolved": "https://registry.npmjs.org/@next/swc-linux-arm-gnueabihf/-/swc-linux-arm-gnueabihf-13.2.1.tgz", 206 | "integrity": "sha512-WaFoerF/eRbhbE57TaIGJXbQAERADZ/RZ45u6qox9beb5xnWsyYgzX+WuN7Tkhyvga0/aMuVYFzS9CEay7D+bw==", 207 | "cpu": [ 208 | "arm" 209 | ], 210 | "optional": true, 211 | "os": [ 212 | "linux" 213 | ], 214 | "engines": { 215 | "node": ">= 10" 216 | } 217 | }, 218 | "node_modules/@next/swc-linux-arm64-gnu": { 219 | "version": "13.2.1", 220 | "resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-gnu/-/swc-linux-arm64-gnu-13.2.1.tgz", 221 | "integrity": "sha512-R+Jhc1/RJTnncE9fkePboHDNOCm1WJ8daanWbjKhfPySMyeniKYRwGn5SLYW3S8YlRS0QVdZaaszDSZWgUcsmA==", 222 | "cpu": [ 223 | "arm64" 224 | ], 225 | "optional": true, 226 | "os": [ 227 | "linux" 228 | ], 229 | "engines": { 230 | "node": ">= 10" 231 | } 232 | }, 233 | "node_modules/@next/swc-linux-arm64-musl": { 234 | "version": "13.2.1", 235 | "resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-musl/-/swc-linux-arm64-musl-13.2.1.tgz", 236 | "integrity": "sha512-oI1UfZPidGAVddlL2eOTmfsuKV9EaT1aktIzVIxIAgxzQSdwsV371gU3G55ggkurzfdlgF3GThFePDWF0d8dmw==", 237 | "cpu": [ 238 | "arm64" 239 | ], 240 | "optional": true, 241 | "os": [ 242 | "linux" 243 | ], 244 | "engines": { 245 | "node": ">= 10" 246 | } 247 | }, 248 | "node_modules/@next/swc-linux-x64-gnu": { 249 | "version": "13.2.1", 250 | "resolved": "https://registry.npmjs.org/@next/swc-linux-x64-gnu/-/swc-linux-x64-gnu-13.2.1.tgz", 251 | "integrity": "sha512-PCygPwrQmS+7WUuAWWioWMZCzZm4PG91lfRxToLDg7yIm/3YfAw5N2EK2TaM9pzlWdvHQAqRMX/oLvv027xUiA==", 252 | "cpu": [ 253 | "x64" 254 | ], 255 | "optional": true, 256 | "os": [ 257 | "linux" 258 | ], 259 | "engines": { 260 | "node": ">= 10" 261 | } 262 | }, 263 | "node_modules/@next/swc-linux-x64-musl": { 264 | "version": "13.2.1", 265 | "resolved": "https://registry.npmjs.org/@next/swc-linux-x64-musl/-/swc-linux-x64-musl-13.2.1.tgz", 266 | "integrity": "sha512-sUAKxo7CFZYGHNxheGh9nIBElLYBM6md/liEGfOTwh/xna4/GTTcmkGWkF7PdnvaYNgcPIQgHIMYiAa6yBKAVw==", 267 | "cpu": [ 268 | "x64" 269 | ], 270 | "optional": true, 271 | "os": [ 272 | "linux" 273 | ], 274 | "engines": { 275 | "node": ">= 10" 276 | } 277 | }, 278 | "node_modules/@next/swc-win32-arm64-msvc": { 279 | "version": "13.2.1", 280 | "resolved": "https://registry.npmjs.org/@next/swc-win32-arm64-msvc/-/swc-win32-arm64-msvc-13.2.1.tgz", 281 | "integrity": "sha512-qDmyEjDBpl/vBXxuOOKKWmPQOcARcZIMach1s7kjzaien0SySut/PHRlj56sosa81Wt4hTGhfhZ1R7g1n7+B8w==", 282 | "cpu": [ 283 | "arm64" 284 | ], 285 | "optional": true, 286 | "os": [ 287 | "win32" 288 | ], 289 | "engines": { 290 | "node": ">= 10" 291 | } 292 | }, 293 | "node_modules/@next/swc-win32-ia32-msvc": { 294 | "version": "13.2.1", 295 | "resolved": "https://registry.npmjs.org/@next/swc-win32-ia32-msvc/-/swc-win32-ia32-msvc-13.2.1.tgz", 296 | "integrity": "sha512-2joqFQ81ZYPg6DcikIzQn3DgjKglNhPAozx6dL5sCNkr1CPMD0YIkJgT3CnYyMHQ04Qi3Npv0XX3MD6LJO8OCA==", 297 | "cpu": [ 298 | "ia32" 299 | ], 300 | "optional": true, 301 | "os": [ 302 | "win32" 303 | ], 304 | "engines": { 305 | "node": ">= 10" 306 | } 307 | }, 308 | "node_modules/@next/swc-win32-x64-msvc": { 309 | "version": "13.2.1", 310 | "resolved": "https://registry.npmjs.org/@next/swc-win32-x64-msvc/-/swc-win32-x64-msvc-13.2.1.tgz", 311 | "integrity": "sha512-r3+0fSaIZT6N237iMzwUhfNwjhAFvXjqB+4iuW+wcpxW+LHm1g/IoxN8eSRcb8jPItC86JxjAxpke0QL97qd6g==", 312 | "cpu": [ 313 | "x64" 314 | ], 315 | "optional": true, 316 | "os": [ 317 | "win32" 318 | ], 319 | "engines": { 320 | "node": ">= 10" 321 | } 322 | }, 323 | "node_modules/@nodelib/fs.scandir": { 324 | "version": "2.1.5", 325 | "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", 326 | "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", 327 | "dependencies": { 328 | "@nodelib/fs.stat": "2.0.5", 329 | "run-parallel": "^1.1.9" 330 | }, 331 | "engines": { 332 | "node": ">= 8" 333 | } 334 | }, 335 | "node_modules/@nodelib/fs.stat": { 336 | "version": "2.0.5", 337 | "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", 338 | "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", 339 | "engines": { 340 | "node": ">= 8" 341 | } 342 | }, 343 | "node_modules/@nodelib/fs.walk": { 344 | "version": "1.2.8", 345 | "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", 346 | "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", 347 | "dependencies": { 348 | "@nodelib/fs.scandir": "2.1.5", 349 | "fastq": "^1.6.0" 350 | }, 351 | "engines": { 352 | "node": ">= 8" 353 | } 354 | }, 355 | "node_modules/@pkgr/utils": { 356 | "version": "2.3.1", 357 | "resolved": "https://registry.npmjs.org/@pkgr/utils/-/utils-2.3.1.tgz", 358 | "integrity": "sha512-wfzX8kc1PMyUILA+1Z/EqoE4UCXGy0iRGMhPwdfae1+f0OXlLqCk+By+aMzgJBzR9AzS4CDizioG6Ss1gvAFJw==", 359 | "dependencies": { 360 | "cross-spawn": "^7.0.3", 361 | "is-glob": "^4.0.3", 362 | "open": "^8.4.0", 363 | "picocolors": "^1.0.0", 364 | "tiny-glob": "^0.2.9", 365 | "tslib": "^2.4.0" 366 | }, 367 | "engines": { 368 | "node": "^12.20.0 || ^14.18.0 || >=16.0.0" 369 | }, 370 | "funding": { 371 | "url": "https://opencollective.com/unts" 372 | } 373 | }, 374 | "node_modules/@rushstack/eslint-patch": { 375 | "version": "1.2.0", 376 | "resolved": "https://registry.npmjs.org/@rushstack/eslint-patch/-/eslint-patch-1.2.0.tgz", 377 | "integrity": "sha512-sXo/qW2/pAcmT43VoRKOJbDOfV3cYpq3szSVfIThQXNt+E4DfKj361vaAt3c88U5tPUxzEswam7GW48PJqtKAg==" 378 | }, 379 | "node_modules/@swc/helpers": { 380 | "version": "0.4.14", 381 | "resolved": "https://registry.npmjs.org/@swc/helpers/-/helpers-0.4.14.tgz", 382 | "integrity": "sha512-4C7nX/dvpzB7za4Ql9K81xK3HPxCpHMgwTZVyf+9JQ6VUbn9jjZVN7/Nkdz/Ugzs2CSjqnL/UPXroiVBVHUWUw==", 383 | "dependencies": { 384 | "tslib": "^2.4.0" 385 | } 386 | }, 387 | "node_modules/@types/animejs": { 388 | "version": "3.1.7", 389 | "resolved": "https://registry.npmjs.org/@types/animejs/-/animejs-3.1.7.tgz", 390 | "integrity": "sha512-kFSyjM+fLo3oE9noWEtUvF82ttN8fTrKohiEMIrSzEzEjnsCmtO0rBCUQBlSPEb2w8vfN+v4/Zo0tK21Bgmq4g==", 391 | "dev": true 392 | }, 393 | "node_modules/@types/json5": { 394 | "version": "0.0.29", 395 | "resolved": "https://registry.npmjs.org/@types/json5/-/json5-0.0.29.tgz", 396 | "integrity": "sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==" 397 | }, 398 | "node_modules/@types/node": { 399 | "version": "18.14.2", 400 | "resolved": "https://registry.npmjs.org/@types/node/-/node-18.14.2.tgz", 401 | "integrity": "sha512-1uEQxww3DaghA0RxqHx0O0ppVlo43pJhepY51OxuQIKHpjbnYLA7vcdwioNPzIqmC2u3I/dmylcqjlh0e7AyUA==" 402 | }, 403 | "node_modules/@types/prop-types": { 404 | "version": "15.7.5", 405 | "resolved": "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.5.tgz", 406 | "integrity": "sha512-JCB8C6SnDoQf0cNycqd/35A7MjcnK+ZTqE7judS6o7utxUCg6imJg3QK2qzHKszlTjcj2cn+NwMB2i96ubpj7w==" 407 | }, 408 | "node_modules/@types/react": { 409 | "version": "18.0.28", 410 | "resolved": "https://registry.npmjs.org/@types/react/-/react-18.0.28.tgz", 411 | "integrity": "sha512-RD0ivG1kEztNBdoAK7lekI9M+azSnitIn85h4iOiaLjaTrMjzslhaqCGaI4IyCJ1RljWiLCEu4jyrLLgqxBTew==", 412 | "dependencies": { 413 | "@types/prop-types": "*", 414 | "@types/scheduler": "*", 415 | "csstype": "^3.0.2" 416 | } 417 | }, 418 | "node_modules/@types/react-dom": { 419 | "version": "18.0.11", 420 | "resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-18.0.11.tgz", 421 | "integrity": "sha512-O38bPbI2CWtgw/OoQoY+BRelw7uysmXbWvw3nLWO21H1HSh+GOlqPuXshJfjmpNlKiiSDG9cc1JZAaMmVdcTlw==", 422 | "dependencies": { 423 | "@types/react": "*" 424 | } 425 | }, 426 | "node_modules/@types/scheduler": { 427 | "version": "0.16.3", 428 | "resolved": "https://registry.npmjs.org/@types/scheduler/-/scheduler-0.16.3.tgz", 429 | "integrity": "sha512-5cJ8CB4yAx7BH1oMvdU0Jh9lrEXyPkar6F9G/ERswkCuvP4KQZfZkSjcMbAICCpQTN4OuZn8tz0HiKv9TGZgrQ==" 430 | }, 431 | "node_modules/@typescript-eslint/parser": { 432 | "version": "5.59.1", 433 | "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.59.1.tgz", 434 | "integrity": "sha512-nzjFAN8WEu6yPRDizIFyzAfgK7nybPodMNFGNH0M9tei2gYnYszRDqVA0xlnRjkl7Hkx2vYrEdb6fP2a21cG1g==", 435 | "dependencies": { 436 | "@typescript-eslint/scope-manager": "5.59.1", 437 | "@typescript-eslint/types": "5.59.1", 438 | "@typescript-eslint/typescript-estree": "5.59.1", 439 | "debug": "^4.3.4" 440 | }, 441 | "engines": { 442 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 443 | }, 444 | "funding": { 445 | "type": "opencollective", 446 | "url": "https://opencollective.com/typescript-eslint" 447 | }, 448 | "peerDependencies": { 449 | "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" 450 | }, 451 | "peerDependenciesMeta": { 452 | "typescript": { 453 | "optional": true 454 | } 455 | } 456 | }, 457 | "node_modules/@typescript-eslint/scope-manager": { 458 | "version": "5.59.1", 459 | "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.59.1.tgz", 460 | "integrity": "sha512-mau0waO5frJctPuAzcxiNWqJR5Z8V0190FTSqRw1Q4Euop6+zTwHAf8YIXNwDOT29tyUDrQ65jSg9aTU/H0omA==", 461 | "dependencies": { 462 | "@typescript-eslint/types": "5.59.1", 463 | "@typescript-eslint/visitor-keys": "5.59.1" 464 | }, 465 | "engines": { 466 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 467 | }, 468 | "funding": { 469 | "type": "opencollective", 470 | "url": "https://opencollective.com/typescript-eslint" 471 | } 472 | }, 473 | "node_modules/@typescript-eslint/types": { 474 | "version": "5.59.1", 475 | "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.59.1.tgz", 476 | "integrity": "sha512-dg0ICB+RZwHlysIy/Dh1SP+gnXNzwd/KS0JprD3Lmgmdq+dJAJnUPe1gNG34p0U19HvRlGX733d/KqscrGC1Pg==", 477 | "engines": { 478 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 479 | }, 480 | "funding": { 481 | "type": "opencollective", 482 | "url": "https://opencollective.com/typescript-eslint" 483 | } 484 | }, 485 | "node_modules/@typescript-eslint/typescript-estree": { 486 | "version": "5.59.1", 487 | "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.59.1.tgz", 488 | "integrity": "sha512-lYLBBOCsFltFy7XVqzX0Ju+Lh3WPIAWxYpmH/Q7ZoqzbscLiCW00LeYCdsUnnfnj29/s1WovXKh2gwCoinHNGA==", 489 | "dependencies": { 490 | "@typescript-eslint/types": "5.59.1", 491 | "@typescript-eslint/visitor-keys": "5.59.1", 492 | "debug": "^4.3.4", 493 | "globby": "^11.1.0", 494 | "is-glob": "^4.0.3", 495 | "semver": "^7.3.7", 496 | "tsutils": "^3.21.0" 497 | }, 498 | "engines": { 499 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 500 | }, 501 | "funding": { 502 | "type": "opencollective", 503 | "url": "https://opencollective.com/typescript-eslint" 504 | }, 505 | "peerDependenciesMeta": { 506 | "typescript": { 507 | "optional": true 508 | } 509 | } 510 | }, 511 | "node_modules/@typescript-eslint/visitor-keys": { 512 | "version": "5.59.1", 513 | "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.59.1.tgz", 514 | "integrity": "sha512-6waEYwBTCWryx0VJmP7JaM4FpipLsFl9CvYf2foAE8Qh/Y0s+bxWysciwOs0LTBED4JCaNxTZ5rGadB14M6dwA==", 515 | "dependencies": { 516 | "@typescript-eslint/types": "5.59.1", 517 | "eslint-visitor-keys": "^3.3.0" 518 | }, 519 | "engines": { 520 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 521 | }, 522 | "funding": { 523 | "type": "opencollective", 524 | "url": "https://opencollective.com/typescript-eslint" 525 | } 526 | }, 527 | "node_modules/acorn": { 528 | "version": "8.8.2", 529 | "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.8.2.tgz", 530 | "integrity": "sha512-xjIYgE8HBrkpd/sJqOGNspf8uHG+NOHGOw6a/Urj8taM2EXfdNAH2oFcPeIFfsv3+kz/mJrS5VuMqbNLjCa2vw==", 531 | "bin": { 532 | "acorn": "bin/acorn" 533 | }, 534 | "engines": { 535 | "node": ">=0.4.0" 536 | } 537 | }, 538 | "node_modules/acorn-jsx": { 539 | "version": "5.3.2", 540 | "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", 541 | "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", 542 | "peerDependencies": { 543 | "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" 544 | } 545 | }, 546 | "node_modules/ajv": { 547 | "version": "6.12.6", 548 | "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", 549 | "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", 550 | "dependencies": { 551 | "fast-deep-equal": "^3.1.1", 552 | "fast-json-stable-stringify": "^2.0.0", 553 | "json-schema-traverse": "^0.4.1", 554 | "uri-js": "^4.2.2" 555 | }, 556 | "funding": { 557 | "type": "github", 558 | "url": "https://github.com/sponsors/epoberezkin" 559 | } 560 | }, 561 | "node_modules/animejs": { 562 | "version": "3.2.1", 563 | "resolved": "https://registry.npmjs.org/animejs/-/animejs-3.2.1.tgz", 564 | "integrity": "sha512-sWno3ugFryK5nhiDm/2BKeFCpZv7vzerWUcUPyAZLDhMek3+S/p418ldZJbJXo5ZUOpfm2kP2XRO4NJcULMy9A==" 565 | }, 566 | "node_modules/ansi-regex": { 567 | "version": "5.0.1", 568 | "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", 569 | "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", 570 | "engines": { 571 | "node": ">=8" 572 | } 573 | }, 574 | "node_modules/ansi-styles": { 575 | "version": "4.3.0", 576 | "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", 577 | "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", 578 | "dependencies": { 579 | "color-convert": "^2.0.1" 580 | }, 581 | "engines": { 582 | "node": ">=8" 583 | }, 584 | "funding": { 585 | "url": "https://github.com/chalk/ansi-styles?sponsor=1" 586 | } 587 | }, 588 | "node_modules/anymatch": { 589 | "version": "3.1.3", 590 | "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", 591 | "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", 592 | "dependencies": { 593 | "normalize-path": "^3.0.0", 594 | "picomatch": "^2.0.4" 595 | }, 596 | "engines": { 597 | "node": ">= 8" 598 | } 599 | }, 600 | "node_modules/argparse": { 601 | "version": "2.0.1", 602 | "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", 603 | "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==" 604 | }, 605 | "node_modules/aria-query": { 606 | "version": "5.1.3", 607 | "resolved": "https://registry.npmjs.org/aria-query/-/aria-query-5.1.3.tgz", 608 | "integrity": "sha512-R5iJ5lkuHybztUfuOAznmboyjWq8O6sqNqtK7CLOqdydi54VNbORp49mb14KbWgG1QD3JFO9hJdZ+y4KutfdOQ==", 609 | "dependencies": { 610 | "deep-equal": "^2.0.5" 611 | } 612 | }, 613 | "node_modules/array-buffer-byte-length": { 614 | "version": "1.0.0", 615 | "resolved": "https://registry.npmjs.org/array-buffer-byte-length/-/array-buffer-byte-length-1.0.0.tgz", 616 | "integrity": "sha512-LPuwb2P+NrQw3XhxGc36+XSvuBPopovXYTR9Ew++Du9Yb/bx5AzBfrIsBoj0EZUifjQU+sHL21sseZ3jerWO/A==", 617 | "dependencies": { 618 | "call-bind": "^1.0.2", 619 | "is-array-buffer": "^3.0.1" 620 | }, 621 | "funding": { 622 | "url": "https://github.com/sponsors/ljharb" 623 | } 624 | }, 625 | "node_modules/array-includes": { 626 | "version": "3.1.6", 627 | "resolved": "https://registry.npmjs.org/array-includes/-/array-includes-3.1.6.tgz", 628 | "integrity": "sha512-sgTbLvL6cNnw24FnbaDyjmvddQ2ML8arZsgaJhoABMoplz/4QRhtrYS+alr1BUM1Bwp6dhx8vVCBSLG+StwOFw==", 629 | "dependencies": { 630 | "call-bind": "^1.0.2", 631 | "define-properties": "^1.1.4", 632 | "es-abstract": "^1.20.4", 633 | "get-intrinsic": "^1.1.3", 634 | "is-string": "^1.0.7" 635 | }, 636 | "engines": { 637 | "node": ">= 0.4" 638 | }, 639 | "funding": { 640 | "url": "https://github.com/sponsors/ljharb" 641 | } 642 | }, 643 | "node_modules/array-union": { 644 | "version": "2.1.0", 645 | "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz", 646 | "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==", 647 | "engines": { 648 | "node": ">=8" 649 | } 650 | }, 651 | "node_modules/array.prototype.flat": { 652 | "version": "1.3.1", 653 | "resolved": "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.3.1.tgz", 654 | "integrity": "sha512-roTU0KWIOmJ4DRLmwKd19Otg0/mT3qPNt0Qb3GWW8iObuZXxrjB/pzn0R3hqpRSWg4HCwqx+0vwOnWnvlOyeIA==", 655 | "dependencies": { 656 | "call-bind": "^1.0.2", 657 | "define-properties": "^1.1.4", 658 | "es-abstract": "^1.20.4", 659 | "es-shim-unscopables": "^1.0.0" 660 | }, 661 | "engines": { 662 | "node": ">= 0.4" 663 | }, 664 | "funding": { 665 | "url": "https://github.com/sponsors/ljharb" 666 | } 667 | }, 668 | "node_modules/array.prototype.flatmap": { 669 | "version": "1.3.1", 670 | "resolved": "https://registry.npmjs.org/array.prototype.flatmap/-/array.prototype.flatmap-1.3.1.tgz", 671 | "integrity": "sha512-8UGn9O1FDVvMNB0UlLv4voxRMze7+FpHyF5mSMRjWHUMlpoDViniy05870VlxhfgTnLbpuwTzvD76MTtWxB/mQ==", 672 | "dependencies": { 673 | "call-bind": "^1.0.2", 674 | "define-properties": "^1.1.4", 675 | "es-abstract": "^1.20.4", 676 | "es-shim-unscopables": "^1.0.0" 677 | }, 678 | "engines": { 679 | "node": ">= 0.4" 680 | }, 681 | "funding": { 682 | "url": "https://github.com/sponsors/ljharb" 683 | } 684 | }, 685 | "node_modules/array.prototype.tosorted": { 686 | "version": "1.1.1", 687 | "resolved": "https://registry.npmjs.org/array.prototype.tosorted/-/array.prototype.tosorted-1.1.1.tgz", 688 | "integrity": "sha512-pZYPXPRl2PqWcsUs6LOMn+1f1532nEoPTYowBtqLwAW+W8vSVhkIGnmOX1t/UQjD6YGI0vcD2B1U7ZFGQH9jnQ==", 689 | "dependencies": { 690 | "call-bind": "^1.0.2", 691 | "define-properties": "^1.1.4", 692 | "es-abstract": "^1.20.4", 693 | "es-shim-unscopables": "^1.0.0", 694 | "get-intrinsic": "^1.1.3" 695 | } 696 | }, 697 | "node_modules/ast-types-flow": { 698 | "version": "0.0.7", 699 | "resolved": "https://registry.npmjs.org/ast-types-flow/-/ast-types-flow-0.0.7.tgz", 700 | "integrity": "sha512-eBvWn1lvIApYMhzQMsu9ciLfkBY499mFZlNqG+/9WR7PVlroQw0vG30cOQQbaKz3sCEc44TAOu2ykzqXSNnwag==" 701 | }, 702 | "node_modules/available-typed-arrays": { 703 | "version": "1.0.5", 704 | "resolved": "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.5.tgz", 705 | "integrity": "sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==", 706 | "engines": { 707 | "node": ">= 0.4" 708 | }, 709 | "funding": { 710 | "url": "https://github.com/sponsors/ljharb" 711 | } 712 | }, 713 | "node_modules/axe-core": { 714 | "version": "4.7.0", 715 | "resolved": "https://registry.npmjs.org/axe-core/-/axe-core-4.7.0.tgz", 716 | "integrity": "sha512-M0JtH+hlOL5pLQwHOLNYZaXuhqmvS8oExsqB1SBYgA4Dk7u/xx+YdGHXaK5pyUfed5mYXdlYiphWq3G8cRi5JQ==", 717 | "engines": { 718 | "node": ">=4" 719 | } 720 | }, 721 | "node_modules/axobject-query": { 722 | "version": "3.1.1", 723 | "resolved": "https://registry.npmjs.org/axobject-query/-/axobject-query-3.1.1.tgz", 724 | "integrity": "sha512-goKlv8DZrK9hUh975fnHzhNIO4jUnFCfv/dszV5VwUGDFjI6vQ2VwoyjYjYNEbBE8AH87TduWP5uyDR1D+Iteg==", 725 | "dependencies": { 726 | "deep-equal": "^2.0.5" 727 | } 728 | }, 729 | "node_modules/balanced-match": { 730 | "version": "1.0.2", 731 | "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", 732 | "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==" 733 | }, 734 | "node_modules/binary-extensions": { 735 | "version": "2.2.0", 736 | "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz", 737 | "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==", 738 | "engines": { 739 | "node": ">=8" 740 | } 741 | }, 742 | "node_modules/brace-expansion": { 743 | "version": "1.1.11", 744 | "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", 745 | "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", 746 | "dependencies": { 747 | "balanced-match": "^1.0.0", 748 | "concat-map": "0.0.1" 749 | } 750 | }, 751 | "node_modules/braces": { 752 | "version": "3.0.2", 753 | "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", 754 | "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", 755 | "dependencies": { 756 | "fill-range": "^7.0.1" 757 | }, 758 | "engines": { 759 | "node": ">=8" 760 | } 761 | }, 762 | "node_modules/call-bind": { 763 | "version": "1.0.2", 764 | "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz", 765 | "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==", 766 | "dependencies": { 767 | "function-bind": "^1.1.1", 768 | "get-intrinsic": "^1.0.2" 769 | }, 770 | "funding": { 771 | "url": "https://github.com/sponsors/ljharb" 772 | } 773 | }, 774 | "node_modules/callsites": { 775 | "version": "3.1.0", 776 | "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", 777 | "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", 778 | "engines": { 779 | "node": ">=6" 780 | } 781 | }, 782 | "node_modules/caniuse-lite": { 783 | "version": "1.0.30001481", 784 | "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001481.tgz", 785 | "integrity": "sha512-KCqHwRnaa1InZBtqXzP98LPg0ajCVujMKjqKDhZEthIpAsJl/YEIa3YvXjGXPVqzZVguccuu7ga9KOE1J9rKPQ==", 786 | "funding": [ 787 | { 788 | "type": "opencollective", 789 | "url": "https://opencollective.com/browserslist" 790 | }, 791 | { 792 | "type": "tidelift", 793 | "url": "https://tidelift.com/funding/github/npm/caniuse-lite" 794 | }, 795 | { 796 | "type": "github", 797 | "url": "https://github.com/sponsors/ai" 798 | } 799 | ] 800 | }, 801 | "node_modules/chalk": { 802 | "version": "4.1.2", 803 | "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", 804 | "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", 805 | "dependencies": { 806 | "ansi-styles": "^4.1.0", 807 | "supports-color": "^7.1.0" 808 | }, 809 | "engines": { 810 | "node": ">=10" 811 | }, 812 | "funding": { 813 | "url": "https://github.com/chalk/chalk?sponsor=1" 814 | } 815 | }, 816 | "node_modules/chokidar": { 817 | "version": "3.5.3", 818 | "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.3.tgz", 819 | "integrity": "sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==", 820 | "funding": [ 821 | { 822 | "type": "individual", 823 | "url": "https://paulmillr.com/funding/" 824 | } 825 | ], 826 | "dependencies": { 827 | "anymatch": "~3.1.2", 828 | "braces": "~3.0.2", 829 | "glob-parent": "~5.1.2", 830 | "is-binary-path": "~2.1.0", 831 | "is-glob": "~4.0.1", 832 | "normalize-path": "~3.0.0", 833 | "readdirp": "~3.6.0" 834 | }, 835 | "engines": { 836 | "node": ">= 8.10.0" 837 | }, 838 | "optionalDependencies": { 839 | "fsevents": "~2.3.2" 840 | } 841 | }, 842 | "node_modules/chokidar/node_modules/glob-parent": { 843 | "version": "5.1.2", 844 | "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", 845 | "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", 846 | "dependencies": { 847 | "is-glob": "^4.0.1" 848 | }, 849 | "engines": { 850 | "node": ">= 6" 851 | } 852 | }, 853 | "node_modules/client-only": { 854 | "version": "0.0.1", 855 | "resolved": "https://registry.npmjs.org/client-only/-/client-only-0.0.1.tgz", 856 | "integrity": "sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA==" 857 | }, 858 | "node_modules/color-convert": { 859 | "version": "2.0.1", 860 | "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", 861 | "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", 862 | "dependencies": { 863 | "color-name": "~1.1.4" 864 | }, 865 | "engines": { 866 | "node": ">=7.0.0" 867 | } 868 | }, 869 | "node_modules/color-name": { 870 | "version": "1.1.4", 871 | "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", 872 | "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" 873 | }, 874 | "node_modules/concat-map": { 875 | "version": "0.0.1", 876 | "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", 877 | "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==" 878 | }, 879 | "node_modules/cross-spawn": { 880 | "version": "7.0.3", 881 | "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", 882 | "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", 883 | "dependencies": { 884 | "path-key": "^3.1.0", 885 | "shebang-command": "^2.0.0", 886 | "which": "^2.0.1" 887 | }, 888 | "engines": { 889 | "node": ">= 8" 890 | } 891 | }, 892 | "node_modules/csstype": { 893 | "version": "3.1.2", 894 | "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.2.tgz", 895 | "integrity": "sha512-I7K1Uu0MBPzaFKg4nI5Q7Vs2t+3gWWW648spaF+Rg7pI9ds18Ugn+lvg4SHczUdKlHI5LWBXyqfS8+DufyBsgQ==" 896 | }, 897 | "node_modules/damerau-levenshtein": { 898 | "version": "1.0.8", 899 | "resolved": "https://registry.npmjs.org/damerau-levenshtein/-/damerau-levenshtein-1.0.8.tgz", 900 | "integrity": "sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==" 901 | }, 902 | "node_modules/debug": { 903 | "version": "4.3.4", 904 | "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", 905 | "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", 906 | "dependencies": { 907 | "ms": "2.1.2" 908 | }, 909 | "engines": { 910 | "node": ">=6.0" 911 | }, 912 | "peerDependenciesMeta": { 913 | "supports-color": { 914 | "optional": true 915 | } 916 | } 917 | }, 918 | "node_modules/deep-equal": { 919 | "version": "2.2.0", 920 | "resolved": "https://registry.npmjs.org/deep-equal/-/deep-equal-2.2.0.tgz", 921 | "integrity": "sha512-RdpzE0Hv4lhowpIUKKMJfeH6C1pXdtT1/it80ubgWqwI3qpuxUBpC1S4hnHg+zjnuOoDkzUtUCEEkG+XG5l3Mw==", 922 | "dependencies": { 923 | "call-bind": "^1.0.2", 924 | "es-get-iterator": "^1.1.2", 925 | "get-intrinsic": "^1.1.3", 926 | "is-arguments": "^1.1.1", 927 | "is-array-buffer": "^3.0.1", 928 | "is-date-object": "^1.0.5", 929 | "is-regex": "^1.1.4", 930 | "is-shared-array-buffer": "^1.0.2", 931 | "isarray": "^2.0.5", 932 | "object-is": "^1.1.5", 933 | "object-keys": "^1.1.1", 934 | "object.assign": "^4.1.4", 935 | "regexp.prototype.flags": "^1.4.3", 936 | "side-channel": "^1.0.4", 937 | "which-boxed-primitive": "^1.0.2", 938 | "which-collection": "^1.0.1", 939 | "which-typed-array": "^1.1.9" 940 | }, 941 | "funding": { 942 | "url": "https://github.com/sponsors/ljharb" 943 | } 944 | }, 945 | "node_modules/deep-is": { 946 | "version": "0.1.4", 947 | "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", 948 | "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==" 949 | }, 950 | "node_modules/define-lazy-prop": { 951 | "version": "2.0.0", 952 | "resolved": "https://registry.npmjs.org/define-lazy-prop/-/define-lazy-prop-2.0.0.tgz", 953 | "integrity": "sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==", 954 | "engines": { 955 | "node": ">=8" 956 | } 957 | }, 958 | "node_modules/define-properties": { 959 | "version": "1.2.0", 960 | "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.2.0.tgz", 961 | "integrity": "sha512-xvqAVKGfT1+UAvPwKTVw/njhdQ8ZhXK4lI0bCIuCMrp2up9nPnaDftrLtmpTazqd1o+UY4zgzU+avtMbDP+ldA==", 962 | "dependencies": { 963 | "has-property-descriptors": "^1.0.0", 964 | "object-keys": "^1.1.1" 965 | }, 966 | "engines": { 967 | "node": ">= 0.4" 968 | }, 969 | "funding": { 970 | "url": "https://github.com/sponsors/ljharb" 971 | } 972 | }, 973 | "node_modules/dir-glob": { 974 | "version": "3.0.1", 975 | "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", 976 | "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==", 977 | "dependencies": { 978 | "path-type": "^4.0.0" 979 | }, 980 | "engines": { 981 | "node": ">=8" 982 | } 983 | }, 984 | "node_modules/doctrine": { 985 | "version": "3.0.0", 986 | "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz", 987 | "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", 988 | "dependencies": { 989 | "esutils": "^2.0.2" 990 | }, 991 | "engines": { 992 | "node": ">=6.0.0" 993 | } 994 | }, 995 | "node_modules/emoji-regex": { 996 | "version": "9.2.2", 997 | "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", 998 | "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==" 999 | }, 1000 | "node_modules/enhanced-resolve": { 1001 | "version": "5.13.0", 1002 | "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.13.0.tgz", 1003 | "integrity": "sha512-eyV8f0y1+bzyfh8xAwW/WTSZpLbjhqc4ne9eGSH4Zo2ejdyiNG9pU6mf9DG8a7+Auk6MFTlNOT4Y2y/9k8GKVg==", 1004 | "dependencies": { 1005 | "graceful-fs": "^4.2.4", 1006 | "tapable": "^2.2.0" 1007 | }, 1008 | "engines": { 1009 | "node": ">=10.13.0" 1010 | } 1011 | }, 1012 | "node_modules/es-abstract": { 1013 | "version": "1.21.2", 1014 | "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.21.2.tgz", 1015 | "integrity": "sha512-y/B5POM2iBnIxCiernH1G7rC9qQoM77lLIMQLuob0zhp8C56Po81+2Nj0WFKnd0pNReDTnkYryc+zhOzpEIROg==", 1016 | "dependencies": { 1017 | "array-buffer-byte-length": "^1.0.0", 1018 | "available-typed-arrays": "^1.0.5", 1019 | "call-bind": "^1.0.2", 1020 | "es-set-tostringtag": "^2.0.1", 1021 | "es-to-primitive": "^1.2.1", 1022 | "function.prototype.name": "^1.1.5", 1023 | "get-intrinsic": "^1.2.0", 1024 | "get-symbol-description": "^1.0.0", 1025 | "globalthis": "^1.0.3", 1026 | "gopd": "^1.0.1", 1027 | "has": "^1.0.3", 1028 | "has-property-descriptors": "^1.0.0", 1029 | "has-proto": "^1.0.1", 1030 | "has-symbols": "^1.0.3", 1031 | "internal-slot": "^1.0.5", 1032 | "is-array-buffer": "^3.0.2", 1033 | "is-callable": "^1.2.7", 1034 | "is-negative-zero": "^2.0.2", 1035 | "is-regex": "^1.1.4", 1036 | "is-shared-array-buffer": "^1.0.2", 1037 | "is-string": "^1.0.7", 1038 | "is-typed-array": "^1.1.10", 1039 | "is-weakref": "^1.0.2", 1040 | "object-inspect": "^1.12.3", 1041 | "object-keys": "^1.1.1", 1042 | "object.assign": "^4.1.4", 1043 | "regexp.prototype.flags": "^1.4.3", 1044 | "safe-regex-test": "^1.0.0", 1045 | "string.prototype.trim": "^1.2.7", 1046 | "string.prototype.trimend": "^1.0.6", 1047 | "string.prototype.trimstart": "^1.0.6", 1048 | "typed-array-length": "^1.0.4", 1049 | "unbox-primitive": "^1.0.2", 1050 | "which-typed-array": "^1.1.9" 1051 | }, 1052 | "engines": { 1053 | "node": ">= 0.4" 1054 | }, 1055 | "funding": { 1056 | "url": "https://github.com/sponsors/ljharb" 1057 | } 1058 | }, 1059 | "node_modules/es-get-iterator": { 1060 | "version": "1.1.3", 1061 | "resolved": "https://registry.npmjs.org/es-get-iterator/-/es-get-iterator-1.1.3.tgz", 1062 | "integrity": "sha512-sPZmqHBe6JIiTfN5q2pEi//TwxmAFHwj/XEuYjTuse78i8KxaqMTTzxPoFKuzRpDpTJ+0NAbpfenkmH2rePtuw==", 1063 | "dependencies": { 1064 | "call-bind": "^1.0.2", 1065 | "get-intrinsic": "^1.1.3", 1066 | "has-symbols": "^1.0.3", 1067 | "is-arguments": "^1.1.1", 1068 | "is-map": "^2.0.2", 1069 | "is-set": "^2.0.2", 1070 | "is-string": "^1.0.7", 1071 | "isarray": "^2.0.5", 1072 | "stop-iteration-iterator": "^1.0.0" 1073 | }, 1074 | "funding": { 1075 | "url": "https://github.com/sponsors/ljharb" 1076 | } 1077 | }, 1078 | "node_modules/es-set-tostringtag": { 1079 | "version": "2.0.1", 1080 | "resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.0.1.tgz", 1081 | "integrity": "sha512-g3OMbtlwY3QewlqAiMLI47KywjWZoEytKr8pf6iTC8uJq5bIAH52Z9pnQ8pVL6whrCto53JZDuUIsifGeLorTg==", 1082 | "dependencies": { 1083 | "get-intrinsic": "^1.1.3", 1084 | "has": "^1.0.3", 1085 | "has-tostringtag": "^1.0.0" 1086 | }, 1087 | "engines": { 1088 | "node": ">= 0.4" 1089 | } 1090 | }, 1091 | "node_modules/es-shim-unscopables": { 1092 | "version": "1.0.0", 1093 | "resolved": "https://registry.npmjs.org/es-shim-unscopables/-/es-shim-unscopables-1.0.0.tgz", 1094 | "integrity": "sha512-Jm6GPcCdC30eMLbZ2x8z2WuRwAws3zTBBKuusffYVUrNj/GVSUAZ+xKMaUpfNDR5IbyNA5LJbaecoUVbmUcB1w==", 1095 | "dependencies": { 1096 | "has": "^1.0.3" 1097 | } 1098 | }, 1099 | "node_modules/es-to-primitive": { 1100 | "version": "1.2.1", 1101 | "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz", 1102 | "integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==", 1103 | "dependencies": { 1104 | "is-callable": "^1.1.4", 1105 | "is-date-object": "^1.0.1", 1106 | "is-symbol": "^1.0.2" 1107 | }, 1108 | "engines": { 1109 | "node": ">= 0.4" 1110 | }, 1111 | "funding": { 1112 | "url": "https://github.com/sponsors/ljharb" 1113 | } 1114 | }, 1115 | "node_modules/escape-string-regexp": { 1116 | "version": "4.0.0", 1117 | "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", 1118 | "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", 1119 | "engines": { 1120 | "node": ">=10" 1121 | }, 1122 | "funding": { 1123 | "url": "https://github.com/sponsors/sindresorhus" 1124 | } 1125 | }, 1126 | "node_modules/eslint": { 1127 | "version": "8.35.0", 1128 | "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.35.0.tgz", 1129 | "integrity": "sha512-BxAf1fVL7w+JLRQhWl2pzGeSiGqbWumV4WNvc9Rhp6tiCtm4oHnyPBSEtMGZwrQgudFQ+otqzWoPB7x+hxoWsw==", 1130 | "dependencies": { 1131 | "@eslint/eslintrc": "^2.0.0", 1132 | "@eslint/js": "8.35.0", 1133 | "@humanwhocodes/config-array": "^0.11.8", 1134 | "@humanwhocodes/module-importer": "^1.0.1", 1135 | "@nodelib/fs.walk": "^1.2.8", 1136 | "ajv": "^6.10.0", 1137 | "chalk": "^4.0.0", 1138 | "cross-spawn": "^7.0.2", 1139 | "debug": "^4.3.2", 1140 | "doctrine": "^3.0.0", 1141 | "escape-string-regexp": "^4.0.0", 1142 | "eslint-scope": "^7.1.1", 1143 | "eslint-utils": "^3.0.0", 1144 | "eslint-visitor-keys": "^3.3.0", 1145 | "espree": "^9.4.0", 1146 | "esquery": "^1.4.2", 1147 | "esutils": "^2.0.2", 1148 | "fast-deep-equal": "^3.1.3", 1149 | "file-entry-cache": "^6.0.1", 1150 | "find-up": "^5.0.0", 1151 | "glob-parent": "^6.0.2", 1152 | "globals": "^13.19.0", 1153 | "grapheme-splitter": "^1.0.4", 1154 | "ignore": "^5.2.0", 1155 | "import-fresh": "^3.0.0", 1156 | "imurmurhash": "^0.1.4", 1157 | "is-glob": "^4.0.0", 1158 | "is-path-inside": "^3.0.3", 1159 | "js-sdsl": "^4.1.4", 1160 | "js-yaml": "^4.1.0", 1161 | "json-stable-stringify-without-jsonify": "^1.0.1", 1162 | "levn": "^0.4.1", 1163 | "lodash.merge": "^4.6.2", 1164 | "minimatch": "^3.1.2", 1165 | "natural-compare": "^1.4.0", 1166 | "optionator": "^0.9.1", 1167 | "regexpp": "^3.2.0", 1168 | "strip-ansi": "^6.0.1", 1169 | "strip-json-comments": "^3.1.0", 1170 | "text-table": "^0.2.0" 1171 | }, 1172 | "bin": { 1173 | "eslint": "bin/eslint.js" 1174 | }, 1175 | "engines": { 1176 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 1177 | }, 1178 | "funding": { 1179 | "url": "https://opencollective.com/eslint" 1180 | } 1181 | }, 1182 | "node_modules/eslint-config-next": { 1183 | "version": "13.2.1", 1184 | "resolved": "https://registry.npmjs.org/eslint-config-next/-/eslint-config-next-13.2.1.tgz", 1185 | "integrity": "sha512-2GAx7EjSiCzJN6H2L/v1kbYrNiwQxzkyjy6eWSjuhAKt+P6d3nVNHGy9mON8ZcYd72w/M8kyMjm4UB9cvijgrw==", 1186 | "dependencies": { 1187 | "@next/eslint-plugin-next": "13.2.1", 1188 | "@rushstack/eslint-patch": "^1.1.3", 1189 | "@typescript-eslint/parser": "^5.42.0", 1190 | "eslint-import-resolver-node": "^0.3.6", 1191 | "eslint-import-resolver-typescript": "^3.5.2", 1192 | "eslint-plugin-import": "^2.26.0", 1193 | "eslint-plugin-jsx-a11y": "^6.5.1", 1194 | "eslint-plugin-react": "^7.31.7", 1195 | "eslint-plugin-react-hooks": "^4.5.0" 1196 | }, 1197 | "peerDependencies": { 1198 | "eslint": "^7.23.0 || ^8.0.0", 1199 | "typescript": ">=3.3.1" 1200 | }, 1201 | "peerDependenciesMeta": { 1202 | "typescript": { 1203 | "optional": true 1204 | } 1205 | } 1206 | }, 1207 | "node_modules/eslint-import-resolver-node": { 1208 | "version": "0.3.7", 1209 | "resolved": "https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.7.tgz", 1210 | "integrity": "sha512-gozW2blMLJCeFpBwugLTGyvVjNoeo1knonXAcatC6bjPBZitotxdWf7Gimr25N4c0AAOo4eOUfaG82IJPDpqCA==", 1211 | "dependencies": { 1212 | "debug": "^3.2.7", 1213 | "is-core-module": "^2.11.0", 1214 | "resolve": "^1.22.1" 1215 | } 1216 | }, 1217 | "node_modules/eslint-import-resolver-node/node_modules/debug": { 1218 | "version": "3.2.7", 1219 | "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", 1220 | "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", 1221 | "dependencies": { 1222 | "ms": "^2.1.1" 1223 | } 1224 | }, 1225 | "node_modules/eslint-import-resolver-typescript": { 1226 | "version": "3.5.5", 1227 | "resolved": "https://registry.npmjs.org/eslint-import-resolver-typescript/-/eslint-import-resolver-typescript-3.5.5.tgz", 1228 | "integrity": "sha512-TdJqPHs2lW5J9Zpe17DZNQuDnox4xo2o+0tE7Pggain9Rbc19ik8kFtXdxZ250FVx2kF4vlt2RSf4qlUpG7bhw==", 1229 | "dependencies": { 1230 | "debug": "^4.3.4", 1231 | "enhanced-resolve": "^5.12.0", 1232 | "eslint-module-utils": "^2.7.4", 1233 | "get-tsconfig": "^4.5.0", 1234 | "globby": "^13.1.3", 1235 | "is-core-module": "^2.11.0", 1236 | "is-glob": "^4.0.3", 1237 | "synckit": "^0.8.5" 1238 | }, 1239 | "engines": { 1240 | "node": "^14.18.0 || >=16.0.0" 1241 | }, 1242 | "funding": { 1243 | "url": "https://opencollective.com/unts/projects/eslint-import-resolver-ts" 1244 | }, 1245 | "peerDependencies": { 1246 | "eslint": "*", 1247 | "eslint-plugin-import": "*" 1248 | } 1249 | }, 1250 | "node_modules/eslint-import-resolver-typescript/node_modules/globby": { 1251 | "version": "13.1.4", 1252 | "resolved": "https://registry.npmjs.org/globby/-/globby-13.1.4.tgz", 1253 | "integrity": "sha512-iui/IiiW+QrJ1X1hKH5qwlMQyv34wJAYwH1vrf8b9kBA4sNiif3gKsMHa+BrdnOpEudWjpotfa7LrTzB1ERS/g==", 1254 | "dependencies": { 1255 | "dir-glob": "^3.0.1", 1256 | "fast-glob": "^3.2.11", 1257 | "ignore": "^5.2.0", 1258 | "merge2": "^1.4.1", 1259 | "slash": "^4.0.0" 1260 | }, 1261 | "engines": { 1262 | "node": "^12.20.0 || ^14.13.1 || >=16.0.0" 1263 | }, 1264 | "funding": { 1265 | "url": "https://github.com/sponsors/sindresorhus" 1266 | } 1267 | }, 1268 | "node_modules/eslint-import-resolver-typescript/node_modules/slash": { 1269 | "version": "4.0.0", 1270 | "resolved": "https://registry.npmjs.org/slash/-/slash-4.0.0.tgz", 1271 | "integrity": "sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew==", 1272 | "engines": { 1273 | "node": ">=12" 1274 | }, 1275 | "funding": { 1276 | "url": "https://github.com/sponsors/sindresorhus" 1277 | } 1278 | }, 1279 | "node_modules/eslint-module-utils": { 1280 | "version": "2.8.0", 1281 | "resolved": "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.8.0.tgz", 1282 | "integrity": "sha512-aWajIYfsqCKRDgUfjEXNN/JlrzauMuSEy5sbd7WXbtW3EH6A6MpwEh42c7qD+MqQo9QMJ6fWLAeIJynx0g6OAw==", 1283 | "dependencies": { 1284 | "debug": "^3.2.7" 1285 | }, 1286 | "engines": { 1287 | "node": ">=4" 1288 | }, 1289 | "peerDependenciesMeta": { 1290 | "eslint": { 1291 | "optional": true 1292 | } 1293 | } 1294 | }, 1295 | "node_modules/eslint-module-utils/node_modules/debug": { 1296 | "version": "3.2.7", 1297 | "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", 1298 | "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", 1299 | "dependencies": { 1300 | "ms": "^2.1.1" 1301 | } 1302 | }, 1303 | "node_modules/eslint-plugin-import": { 1304 | "version": "2.27.5", 1305 | "resolved": "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.27.5.tgz", 1306 | "integrity": "sha512-LmEt3GVofgiGuiE+ORpnvP+kAm3h6MLZJ4Q5HCyHADofsb4VzXFsRiWj3c0OFiV+3DWFh0qg3v9gcPlfc3zRow==", 1307 | "dependencies": { 1308 | "array-includes": "^3.1.6", 1309 | "array.prototype.flat": "^1.3.1", 1310 | "array.prototype.flatmap": "^1.3.1", 1311 | "debug": "^3.2.7", 1312 | "doctrine": "^2.1.0", 1313 | "eslint-import-resolver-node": "^0.3.7", 1314 | "eslint-module-utils": "^2.7.4", 1315 | "has": "^1.0.3", 1316 | "is-core-module": "^2.11.0", 1317 | "is-glob": "^4.0.3", 1318 | "minimatch": "^3.1.2", 1319 | "object.values": "^1.1.6", 1320 | "resolve": "^1.22.1", 1321 | "semver": "^6.3.0", 1322 | "tsconfig-paths": "^3.14.1" 1323 | }, 1324 | "engines": { 1325 | "node": ">=4" 1326 | }, 1327 | "peerDependencies": { 1328 | "eslint": "^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8" 1329 | } 1330 | }, 1331 | "node_modules/eslint-plugin-import/node_modules/debug": { 1332 | "version": "3.2.7", 1333 | "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", 1334 | "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", 1335 | "dependencies": { 1336 | "ms": "^2.1.1" 1337 | } 1338 | }, 1339 | "node_modules/eslint-plugin-import/node_modules/doctrine": { 1340 | "version": "2.1.0", 1341 | "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", 1342 | "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", 1343 | "dependencies": { 1344 | "esutils": "^2.0.2" 1345 | }, 1346 | "engines": { 1347 | "node": ">=0.10.0" 1348 | } 1349 | }, 1350 | "node_modules/eslint-plugin-import/node_modules/semver": { 1351 | "version": "6.3.0", 1352 | "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", 1353 | "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", 1354 | "bin": { 1355 | "semver": "bin/semver.js" 1356 | } 1357 | }, 1358 | "node_modules/eslint-plugin-jsx-a11y": { 1359 | "version": "6.7.1", 1360 | "resolved": "https://registry.npmjs.org/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.7.1.tgz", 1361 | "integrity": "sha512-63Bog4iIethyo8smBklORknVjB0T2dwB8Mr/hIC+fBS0uyHdYYpzM/Ed+YC8VxTjlXHEWFOdmgwcDn1U2L9VCA==", 1362 | "dependencies": { 1363 | "@babel/runtime": "^7.20.7", 1364 | "aria-query": "^5.1.3", 1365 | "array-includes": "^3.1.6", 1366 | "array.prototype.flatmap": "^1.3.1", 1367 | "ast-types-flow": "^0.0.7", 1368 | "axe-core": "^4.6.2", 1369 | "axobject-query": "^3.1.1", 1370 | "damerau-levenshtein": "^1.0.8", 1371 | "emoji-regex": "^9.2.2", 1372 | "has": "^1.0.3", 1373 | "jsx-ast-utils": "^3.3.3", 1374 | "language-tags": "=1.0.5", 1375 | "minimatch": "^3.1.2", 1376 | "object.entries": "^1.1.6", 1377 | "object.fromentries": "^2.0.6", 1378 | "semver": "^6.3.0" 1379 | }, 1380 | "engines": { 1381 | "node": ">=4.0" 1382 | }, 1383 | "peerDependencies": { 1384 | "eslint": "^3 || ^4 || ^5 || ^6 || ^7 || ^8" 1385 | } 1386 | }, 1387 | "node_modules/eslint-plugin-jsx-a11y/node_modules/semver": { 1388 | "version": "6.3.0", 1389 | "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", 1390 | "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", 1391 | "bin": { 1392 | "semver": "bin/semver.js" 1393 | } 1394 | }, 1395 | "node_modules/eslint-plugin-react": { 1396 | "version": "7.32.2", 1397 | "resolved": "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.32.2.tgz", 1398 | "integrity": "sha512-t2fBMa+XzonrrNkyVirzKlvn5RXzzPwRHtMvLAtVZrt8oxgnTQaYbU6SXTOO1mwQgp1y5+toMSKInnzGr0Knqg==", 1399 | "dependencies": { 1400 | "array-includes": "^3.1.6", 1401 | "array.prototype.flatmap": "^1.3.1", 1402 | "array.prototype.tosorted": "^1.1.1", 1403 | "doctrine": "^2.1.0", 1404 | "estraverse": "^5.3.0", 1405 | "jsx-ast-utils": "^2.4.1 || ^3.0.0", 1406 | "minimatch": "^3.1.2", 1407 | "object.entries": "^1.1.6", 1408 | "object.fromentries": "^2.0.6", 1409 | "object.hasown": "^1.1.2", 1410 | "object.values": "^1.1.6", 1411 | "prop-types": "^15.8.1", 1412 | "resolve": "^2.0.0-next.4", 1413 | "semver": "^6.3.0", 1414 | "string.prototype.matchall": "^4.0.8" 1415 | }, 1416 | "engines": { 1417 | "node": ">=4" 1418 | }, 1419 | "peerDependencies": { 1420 | "eslint": "^3 || ^4 || ^5 || ^6 || ^7 || ^8" 1421 | } 1422 | }, 1423 | "node_modules/eslint-plugin-react-hooks": { 1424 | "version": "4.6.0", 1425 | "resolved": "https://registry.npmjs.org/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-4.6.0.tgz", 1426 | "integrity": "sha512-oFc7Itz9Qxh2x4gNHStv3BqJq54ExXmfC+a1NjAta66IAN87Wu0R/QArgIS9qKzX3dXKPI9H5crl9QchNMY9+g==", 1427 | "engines": { 1428 | "node": ">=10" 1429 | }, 1430 | "peerDependencies": { 1431 | "eslint": "^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0" 1432 | } 1433 | }, 1434 | "node_modules/eslint-plugin-react/node_modules/doctrine": { 1435 | "version": "2.1.0", 1436 | "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", 1437 | "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", 1438 | "dependencies": { 1439 | "esutils": "^2.0.2" 1440 | }, 1441 | "engines": { 1442 | "node": ">=0.10.0" 1443 | } 1444 | }, 1445 | "node_modules/eslint-plugin-react/node_modules/resolve": { 1446 | "version": "2.0.0-next.4", 1447 | "resolved": "https://registry.npmjs.org/resolve/-/resolve-2.0.0-next.4.tgz", 1448 | "integrity": "sha512-iMDbmAWtfU+MHpxt/I5iWI7cY6YVEZUQ3MBgPQ++XD1PELuJHIl82xBmObyP2KyQmkNB2dsqF7seoQQiAn5yDQ==", 1449 | "dependencies": { 1450 | "is-core-module": "^2.9.0", 1451 | "path-parse": "^1.0.7", 1452 | "supports-preserve-symlinks-flag": "^1.0.0" 1453 | }, 1454 | "bin": { 1455 | "resolve": "bin/resolve" 1456 | }, 1457 | "funding": { 1458 | "url": "https://github.com/sponsors/ljharb" 1459 | } 1460 | }, 1461 | "node_modules/eslint-plugin-react/node_modules/semver": { 1462 | "version": "6.3.0", 1463 | "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", 1464 | "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", 1465 | "bin": { 1466 | "semver": "bin/semver.js" 1467 | } 1468 | }, 1469 | "node_modules/eslint-scope": { 1470 | "version": "7.2.0", 1471 | "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.2.0.tgz", 1472 | "integrity": "sha512-DYj5deGlHBfMt15J7rdtyKNq/Nqlv5KfU4iodrQ019XESsRnwXH9KAE0y3cwtUHDo2ob7CypAnCqefh6vioWRw==", 1473 | "dependencies": { 1474 | "esrecurse": "^4.3.0", 1475 | "estraverse": "^5.2.0" 1476 | }, 1477 | "engines": { 1478 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 1479 | }, 1480 | "funding": { 1481 | "url": "https://opencollective.com/eslint" 1482 | } 1483 | }, 1484 | "node_modules/eslint-utils": { 1485 | "version": "3.0.0", 1486 | "resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-3.0.0.tgz", 1487 | "integrity": "sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==", 1488 | "dependencies": { 1489 | "eslint-visitor-keys": "^2.0.0" 1490 | }, 1491 | "engines": { 1492 | "node": "^10.0.0 || ^12.0.0 || >= 14.0.0" 1493 | }, 1494 | "funding": { 1495 | "url": "https://github.com/sponsors/mysticatea" 1496 | }, 1497 | "peerDependencies": { 1498 | "eslint": ">=5" 1499 | } 1500 | }, 1501 | "node_modules/eslint-utils/node_modules/eslint-visitor-keys": { 1502 | "version": "2.1.0", 1503 | "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz", 1504 | "integrity": "sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==", 1505 | "engines": { 1506 | "node": ">=10" 1507 | } 1508 | }, 1509 | "node_modules/eslint-visitor-keys": { 1510 | "version": "3.4.0", 1511 | "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.0.tgz", 1512 | "integrity": "sha512-HPpKPUBQcAsZOsHAFwTtIKcYlCje62XB7SEAcxjtmW6TD1WVpkS6i6/hOVtTZIl4zGj/mBqpFVGvaDneik+VoQ==", 1513 | "engines": { 1514 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 1515 | }, 1516 | "funding": { 1517 | "url": "https://opencollective.com/eslint" 1518 | } 1519 | }, 1520 | "node_modules/espree": { 1521 | "version": "9.5.1", 1522 | "resolved": "https://registry.npmjs.org/espree/-/espree-9.5.1.tgz", 1523 | "integrity": "sha512-5yxtHSZXRSW5pvv3hAlXM5+/Oswi1AUFqBmbibKb5s6bp3rGIDkyXU6xCoyuuLhijr4SFwPrXRoZjz0AZDN9tg==", 1524 | "dependencies": { 1525 | "acorn": "^8.8.0", 1526 | "acorn-jsx": "^5.3.2", 1527 | "eslint-visitor-keys": "^3.4.0" 1528 | }, 1529 | "engines": { 1530 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 1531 | }, 1532 | "funding": { 1533 | "url": "https://opencollective.com/eslint" 1534 | } 1535 | }, 1536 | "node_modules/esquery": { 1537 | "version": "1.5.0", 1538 | "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.5.0.tgz", 1539 | "integrity": "sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==", 1540 | "dependencies": { 1541 | "estraverse": "^5.1.0" 1542 | }, 1543 | "engines": { 1544 | "node": ">=0.10" 1545 | } 1546 | }, 1547 | "node_modules/esrecurse": { 1548 | "version": "4.3.0", 1549 | "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", 1550 | "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", 1551 | "dependencies": { 1552 | "estraverse": "^5.2.0" 1553 | }, 1554 | "engines": { 1555 | "node": ">=4.0" 1556 | } 1557 | }, 1558 | "node_modules/estraverse": { 1559 | "version": "5.3.0", 1560 | "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", 1561 | "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", 1562 | "engines": { 1563 | "node": ">=4.0" 1564 | } 1565 | }, 1566 | "node_modules/esutils": { 1567 | "version": "2.0.3", 1568 | "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", 1569 | "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", 1570 | "engines": { 1571 | "node": ">=0.10.0" 1572 | } 1573 | }, 1574 | "node_modules/fast-deep-equal": { 1575 | "version": "3.1.3", 1576 | "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", 1577 | "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==" 1578 | }, 1579 | "node_modules/fast-glob": { 1580 | "version": "3.2.12", 1581 | "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.12.tgz", 1582 | "integrity": "sha512-DVj4CQIYYow0BlaelwK1pHl5n5cRSJfM60UA0zK891sVInoPri2Ekj7+e1CT3/3qxXenpI+nBBmQAcJPJgaj4w==", 1583 | "dependencies": { 1584 | "@nodelib/fs.stat": "^2.0.2", 1585 | "@nodelib/fs.walk": "^1.2.3", 1586 | "glob-parent": "^5.1.2", 1587 | "merge2": "^1.3.0", 1588 | "micromatch": "^4.0.4" 1589 | }, 1590 | "engines": { 1591 | "node": ">=8.6.0" 1592 | } 1593 | }, 1594 | "node_modules/fast-glob/node_modules/glob-parent": { 1595 | "version": "5.1.2", 1596 | "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", 1597 | "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", 1598 | "dependencies": { 1599 | "is-glob": "^4.0.1" 1600 | }, 1601 | "engines": { 1602 | "node": ">= 6" 1603 | } 1604 | }, 1605 | "node_modules/fast-json-stable-stringify": { 1606 | "version": "2.1.0", 1607 | "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", 1608 | "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==" 1609 | }, 1610 | "node_modules/fast-levenshtein": { 1611 | "version": "2.0.6", 1612 | "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", 1613 | "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==" 1614 | }, 1615 | "node_modules/fastq": { 1616 | "version": "1.15.0", 1617 | "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.15.0.tgz", 1618 | "integrity": "sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==", 1619 | "dependencies": { 1620 | "reusify": "^1.0.4" 1621 | } 1622 | }, 1623 | "node_modules/file-entry-cache": { 1624 | "version": "6.0.1", 1625 | "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz", 1626 | "integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==", 1627 | "dependencies": { 1628 | "flat-cache": "^3.0.4" 1629 | }, 1630 | "engines": { 1631 | "node": "^10.12.0 || >=12.0.0" 1632 | } 1633 | }, 1634 | "node_modules/fill-range": { 1635 | "version": "7.0.1", 1636 | "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", 1637 | "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", 1638 | "dependencies": { 1639 | "to-regex-range": "^5.0.1" 1640 | }, 1641 | "engines": { 1642 | "node": ">=8" 1643 | } 1644 | }, 1645 | "node_modules/find-up": { 1646 | "version": "5.0.0", 1647 | "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", 1648 | "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", 1649 | "dependencies": { 1650 | "locate-path": "^6.0.0", 1651 | "path-exists": "^4.0.0" 1652 | }, 1653 | "engines": { 1654 | "node": ">=10" 1655 | }, 1656 | "funding": { 1657 | "url": "https://github.com/sponsors/sindresorhus" 1658 | } 1659 | }, 1660 | "node_modules/flat-cache": { 1661 | "version": "3.0.4", 1662 | "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.0.4.tgz", 1663 | "integrity": "sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==", 1664 | "dependencies": { 1665 | "flatted": "^3.1.0", 1666 | "rimraf": "^3.0.2" 1667 | }, 1668 | "engines": { 1669 | "node": "^10.12.0 || >=12.0.0" 1670 | } 1671 | }, 1672 | "node_modules/flatted": { 1673 | "version": "3.2.7", 1674 | "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.2.7.tgz", 1675 | "integrity": "sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ==" 1676 | }, 1677 | "node_modules/for-each": { 1678 | "version": "0.3.3", 1679 | "resolved": "https://registry.npmjs.org/for-each/-/for-each-0.3.3.tgz", 1680 | "integrity": "sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==", 1681 | "dependencies": { 1682 | "is-callable": "^1.1.3" 1683 | } 1684 | }, 1685 | "node_modules/framer-motion": { 1686 | "version": "10.12.4", 1687 | "resolved": "https://registry.npmjs.org/framer-motion/-/framer-motion-10.12.4.tgz", 1688 | "integrity": "sha512-9gLtv8T6dui0tujHROR+VM3kdJyKiFCFiD94IQE+0OuX6LaIyXtdVpviokVdrHSb1giWhmmX4yzoucALMx6mtw==", 1689 | "dependencies": { 1690 | "tslib": "^2.4.0" 1691 | }, 1692 | "optionalDependencies": { 1693 | "@emotion/is-prop-valid": "^0.8.2" 1694 | }, 1695 | "peerDependencies": { 1696 | "react": "^18.0.0", 1697 | "react-dom": "^18.0.0" 1698 | }, 1699 | "peerDependenciesMeta": { 1700 | "react": { 1701 | "optional": true 1702 | }, 1703 | "react-dom": { 1704 | "optional": true 1705 | } 1706 | } 1707 | }, 1708 | "node_modules/fs.realpath": { 1709 | "version": "1.0.0", 1710 | "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", 1711 | "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==" 1712 | }, 1713 | "node_modules/fsevents": { 1714 | "version": "2.3.2", 1715 | "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz", 1716 | "integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==", 1717 | "hasInstallScript": true, 1718 | "optional": true, 1719 | "os": [ 1720 | "darwin" 1721 | ], 1722 | "engines": { 1723 | "node": "^8.16.0 || ^10.6.0 || >=11.0.0" 1724 | } 1725 | }, 1726 | "node_modules/function-bind": { 1727 | "version": "1.1.1", 1728 | "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", 1729 | "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==" 1730 | }, 1731 | "node_modules/function.prototype.name": { 1732 | "version": "1.1.5", 1733 | "resolved": "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.5.tgz", 1734 | "integrity": "sha512-uN7m/BzVKQnCUF/iW8jYea67v++2u7m5UgENbHRtdDVclOUP+FMPlCNdmk0h/ysGyo2tavMJEDqJAkJdRa1vMA==", 1735 | "dependencies": { 1736 | "call-bind": "^1.0.2", 1737 | "define-properties": "^1.1.3", 1738 | "es-abstract": "^1.19.0", 1739 | "functions-have-names": "^1.2.2" 1740 | }, 1741 | "engines": { 1742 | "node": ">= 0.4" 1743 | }, 1744 | "funding": { 1745 | "url": "https://github.com/sponsors/ljharb" 1746 | } 1747 | }, 1748 | "node_modules/functions-have-names": { 1749 | "version": "1.2.3", 1750 | "resolved": "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz", 1751 | "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==", 1752 | "funding": { 1753 | "url": "https://github.com/sponsors/ljharb" 1754 | } 1755 | }, 1756 | "node_modules/get-intrinsic": { 1757 | "version": "1.2.0", 1758 | "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.0.tgz", 1759 | "integrity": "sha512-L049y6nFOuom5wGyRc3/gdTLO94dySVKRACj1RmJZBQXlbTMhtNIgkWkUHq+jYmZvKf14EW1EoJnnjbmoHij0Q==", 1760 | "dependencies": { 1761 | "function-bind": "^1.1.1", 1762 | "has": "^1.0.3", 1763 | "has-symbols": "^1.0.3" 1764 | }, 1765 | "funding": { 1766 | "url": "https://github.com/sponsors/ljharb" 1767 | } 1768 | }, 1769 | "node_modules/get-symbol-description": { 1770 | "version": "1.0.0", 1771 | "resolved": "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.0.0.tgz", 1772 | "integrity": "sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==", 1773 | "dependencies": { 1774 | "call-bind": "^1.0.2", 1775 | "get-intrinsic": "^1.1.1" 1776 | }, 1777 | "engines": { 1778 | "node": ">= 0.4" 1779 | }, 1780 | "funding": { 1781 | "url": "https://github.com/sponsors/ljharb" 1782 | } 1783 | }, 1784 | "node_modules/get-tsconfig": { 1785 | "version": "4.5.0", 1786 | "resolved": "https://registry.npmjs.org/get-tsconfig/-/get-tsconfig-4.5.0.tgz", 1787 | "integrity": "sha512-MjhiaIWCJ1sAU4pIQ5i5OfOuHHxVo1oYeNsWTON7jxYkod8pHocXeh+SSbmu5OZZZK73B6cbJ2XADzXehLyovQ==", 1788 | "funding": { 1789 | "url": "https://github.com/privatenumber/get-tsconfig?sponsor=1" 1790 | } 1791 | }, 1792 | "node_modules/glob": { 1793 | "version": "7.1.7", 1794 | "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.7.tgz", 1795 | "integrity": "sha512-OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ==", 1796 | "dependencies": { 1797 | "fs.realpath": "^1.0.0", 1798 | "inflight": "^1.0.4", 1799 | "inherits": "2", 1800 | "minimatch": "^3.0.4", 1801 | "once": "^1.3.0", 1802 | "path-is-absolute": "^1.0.0" 1803 | }, 1804 | "engines": { 1805 | "node": "*" 1806 | }, 1807 | "funding": { 1808 | "url": "https://github.com/sponsors/isaacs" 1809 | } 1810 | }, 1811 | "node_modules/glob-parent": { 1812 | "version": "6.0.2", 1813 | "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", 1814 | "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", 1815 | "dependencies": { 1816 | "is-glob": "^4.0.3" 1817 | }, 1818 | "engines": { 1819 | "node": ">=10.13.0" 1820 | } 1821 | }, 1822 | "node_modules/globals": { 1823 | "version": "13.20.0", 1824 | "resolved": "https://registry.npmjs.org/globals/-/globals-13.20.0.tgz", 1825 | "integrity": "sha512-Qg5QtVkCy/kv3FUSlu4ukeZDVf9ee0iXLAUYX13gbR17bnejFTzr4iS9bY7kwCf1NztRNm1t91fjOiyx4CSwPQ==", 1826 | "dependencies": { 1827 | "type-fest": "^0.20.2" 1828 | }, 1829 | "engines": { 1830 | "node": ">=8" 1831 | }, 1832 | "funding": { 1833 | "url": "https://github.com/sponsors/sindresorhus" 1834 | } 1835 | }, 1836 | "node_modules/globalthis": { 1837 | "version": "1.0.3", 1838 | "resolved": "https://registry.npmjs.org/globalthis/-/globalthis-1.0.3.tgz", 1839 | "integrity": "sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==", 1840 | "dependencies": { 1841 | "define-properties": "^1.1.3" 1842 | }, 1843 | "engines": { 1844 | "node": ">= 0.4" 1845 | }, 1846 | "funding": { 1847 | "url": "https://github.com/sponsors/ljharb" 1848 | } 1849 | }, 1850 | "node_modules/globalyzer": { 1851 | "version": "0.1.0", 1852 | "resolved": "https://registry.npmjs.org/globalyzer/-/globalyzer-0.1.0.tgz", 1853 | "integrity": "sha512-40oNTM9UfG6aBmuKxk/giHn5nQ8RVz/SS4Ir6zgzOv9/qC3kKZ9v4etGTcJbEl/NyVQH7FGU7d+X1egr57Md2Q==" 1854 | }, 1855 | "node_modules/globby": { 1856 | "version": "11.1.0", 1857 | "resolved": "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz", 1858 | "integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==", 1859 | "dependencies": { 1860 | "array-union": "^2.1.0", 1861 | "dir-glob": "^3.0.1", 1862 | "fast-glob": "^3.2.9", 1863 | "ignore": "^5.2.0", 1864 | "merge2": "^1.4.1", 1865 | "slash": "^3.0.0" 1866 | }, 1867 | "engines": { 1868 | "node": ">=10" 1869 | }, 1870 | "funding": { 1871 | "url": "https://github.com/sponsors/sindresorhus" 1872 | } 1873 | }, 1874 | "node_modules/globrex": { 1875 | "version": "0.1.2", 1876 | "resolved": "https://registry.npmjs.org/globrex/-/globrex-0.1.2.tgz", 1877 | "integrity": "sha512-uHJgbwAMwNFf5mLst7IWLNg14x1CkeqglJb/K3doi4dw6q2IvAAmM/Y81kevy83wP+Sst+nutFTYOGg3d1lsxg==" 1878 | }, 1879 | "node_modules/gopd": { 1880 | "version": "1.0.1", 1881 | "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz", 1882 | "integrity": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==", 1883 | "dependencies": { 1884 | "get-intrinsic": "^1.1.3" 1885 | }, 1886 | "funding": { 1887 | "url": "https://github.com/sponsors/ljharb" 1888 | } 1889 | }, 1890 | "node_modules/graceful-fs": { 1891 | "version": "4.2.11", 1892 | "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", 1893 | "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==" 1894 | }, 1895 | "node_modules/grapheme-splitter": { 1896 | "version": "1.0.4", 1897 | "resolved": "https://registry.npmjs.org/grapheme-splitter/-/grapheme-splitter-1.0.4.tgz", 1898 | "integrity": "sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ==" 1899 | }, 1900 | "node_modules/has": { 1901 | "version": "1.0.3", 1902 | "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", 1903 | "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", 1904 | "dependencies": { 1905 | "function-bind": "^1.1.1" 1906 | }, 1907 | "engines": { 1908 | "node": ">= 0.4.0" 1909 | } 1910 | }, 1911 | "node_modules/has-bigints": { 1912 | "version": "1.0.2", 1913 | "resolved": "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.2.tgz", 1914 | "integrity": "sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==", 1915 | "funding": { 1916 | "url": "https://github.com/sponsors/ljharb" 1917 | } 1918 | }, 1919 | "node_modules/has-flag": { 1920 | "version": "4.0.0", 1921 | "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", 1922 | "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", 1923 | "engines": { 1924 | "node": ">=8" 1925 | } 1926 | }, 1927 | "node_modules/has-property-descriptors": { 1928 | "version": "1.0.0", 1929 | "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.0.tgz", 1930 | "integrity": "sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==", 1931 | "dependencies": { 1932 | "get-intrinsic": "^1.1.1" 1933 | }, 1934 | "funding": { 1935 | "url": "https://github.com/sponsors/ljharb" 1936 | } 1937 | }, 1938 | "node_modules/has-proto": { 1939 | "version": "1.0.1", 1940 | "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.0.1.tgz", 1941 | "integrity": "sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==", 1942 | "engines": { 1943 | "node": ">= 0.4" 1944 | }, 1945 | "funding": { 1946 | "url": "https://github.com/sponsors/ljharb" 1947 | } 1948 | }, 1949 | "node_modules/has-symbols": { 1950 | "version": "1.0.3", 1951 | "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", 1952 | "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==", 1953 | "engines": { 1954 | "node": ">= 0.4" 1955 | }, 1956 | "funding": { 1957 | "url": "https://github.com/sponsors/ljharb" 1958 | } 1959 | }, 1960 | "node_modules/has-tostringtag": { 1961 | "version": "1.0.0", 1962 | "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.0.tgz", 1963 | "integrity": "sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==", 1964 | "dependencies": { 1965 | "has-symbols": "^1.0.2" 1966 | }, 1967 | "engines": { 1968 | "node": ">= 0.4" 1969 | }, 1970 | "funding": { 1971 | "url": "https://github.com/sponsors/ljharb" 1972 | } 1973 | }, 1974 | "node_modules/ignore": { 1975 | "version": "5.2.4", 1976 | "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.2.4.tgz", 1977 | "integrity": "sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==", 1978 | "engines": { 1979 | "node": ">= 4" 1980 | } 1981 | }, 1982 | "node_modules/immutable": { 1983 | "version": "4.3.0", 1984 | "resolved": "https://registry.npmjs.org/immutable/-/immutable-4.3.0.tgz", 1985 | "integrity": "sha512-0AOCmOip+xgJwEVTQj1EfiDDOkPmuyllDuTuEX+DDXUgapLAsBIfkg3sxCYyCEA8mQqZrrxPUGjcOQ2JS3WLkg==" 1986 | }, 1987 | "node_modules/import-fresh": { 1988 | "version": "3.3.0", 1989 | "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", 1990 | "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", 1991 | "dependencies": { 1992 | "parent-module": "^1.0.0", 1993 | "resolve-from": "^4.0.0" 1994 | }, 1995 | "engines": { 1996 | "node": ">=6" 1997 | }, 1998 | "funding": { 1999 | "url": "https://github.com/sponsors/sindresorhus" 2000 | } 2001 | }, 2002 | "node_modules/imurmurhash": { 2003 | "version": "0.1.4", 2004 | "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", 2005 | "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", 2006 | "engines": { 2007 | "node": ">=0.8.19" 2008 | } 2009 | }, 2010 | "node_modules/inflight": { 2011 | "version": "1.0.6", 2012 | "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", 2013 | "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", 2014 | "dependencies": { 2015 | "once": "^1.3.0", 2016 | "wrappy": "1" 2017 | } 2018 | }, 2019 | "node_modules/inherits": { 2020 | "version": "2.0.4", 2021 | "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", 2022 | "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" 2023 | }, 2024 | "node_modules/internal-slot": { 2025 | "version": "1.0.5", 2026 | "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.5.tgz", 2027 | "integrity": "sha512-Y+R5hJrzs52QCG2laLn4udYVnxsfny9CpOhNhUvk/SSSVyF6T27FzRbF0sroPidSu3X8oEAkOn2K804mjpt6UQ==", 2028 | "dependencies": { 2029 | "get-intrinsic": "^1.2.0", 2030 | "has": "^1.0.3", 2031 | "side-channel": "^1.0.4" 2032 | }, 2033 | "engines": { 2034 | "node": ">= 0.4" 2035 | } 2036 | }, 2037 | "node_modules/is-arguments": { 2038 | "version": "1.1.1", 2039 | "resolved": "https://registry.npmjs.org/is-arguments/-/is-arguments-1.1.1.tgz", 2040 | "integrity": "sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==", 2041 | "dependencies": { 2042 | "call-bind": "^1.0.2", 2043 | "has-tostringtag": "^1.0.0" 2044 | }, 2045 | "engines": { 2046 | "node": ">= 0.4" 2047 | }, 2048 | "funding": { 2049 | "url": "https://github.com/sponsors/ljharb" 2050 | } 2051 | }, 2052 | "node_modules/is-array-buffer": { 2053 | "version": "3.0.2", 2054 | "resolved": "https://registry.npmjs.org/is-array-buffer/-/is-array-buffer-3.0.2.tgz", 2055 | "integrity": "sha512-y+FyyR/w8vfIRq4eQcM1EYgSTnmHXPqaF+IgzgraytCFq5Xh8lllDVmAZolPJiZttZLeFSINPYMaEJ7/vWUa1w==", 2056 | "dependencies": { 2057 | "call-bind": "^1.0.2", 2058 | "get-intrinsic": "^1.2.0", 2059 | "is-typed-array": "^1.1.10" 2060 | }, 2061 | "funding": { 2062 | "url": "https://github.com/sponsors/ljharb" 2063 | } 2064 | }, 2065 | "node_modules/is-bigint": { 2066 | "version": "1.0.4", 2067 | "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.4.tgz", 2068 | "integrity": "sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==", 2069 | "dependencies": { 2070 | "has-bigints": "^1.0.1" 2071 | }, 2072 | "funding": { 2073 | "url": "https://github.com/sponsors/ljharb" 2074 | } 2075 | }, 2076 | "node_modules/is-binary-path": { 2077 | "version": "2.1.0", 2078 | "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", 2079 | "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", 2080 | "dependencies": { 2081 | "binary-extensions": "^2.0.0" 2082 | }, 2083 | "engines": { 2084 | "node": ">=8" 2085 | } 2086 | }, 2087 | "node_modules/is-boolean-object": { 2088 | "version": "1.1.2", 2089 | "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.2.tgz", 2090 | "integrity": "sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==", 2091 | "dependencies": { 2092 | "call-bind": "^1.0.2", 2093 | "has-tostringtag": "^1.0.0" 2094 | }, 2095 | "engines": { 2096 | "node": ">= 0.4" 2097 | }, 2098 | "funding": { 2099 | "url": "https://github.com/sponsors/ljharb" 2100 | } 2101 | }, 2102 | "node_modules/is-callable": { 2103 | "version": "1.2.7", 2104 | "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz", 2105 | "integrity": "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==", 2106 | "engines": { 2107 | "node": ">= 0.4" 2108 | }, 2109 | "funding": { 2110 | "url": "https://github.com/sponsors/ljharb" 2111 | } 2112 | }, 2113 | "node_modules/is-core-module": { 2114 | "version": "2.12.0", 2115 | "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.12.0.tgz", 2116 | "integrity": "sha512-RECHCBCd/viahWmwj6enj19sKbHfJrddi/6cBDsNTKbNq0f7VeaUkBo60BqzvPqo/W54ChS62Z5qyun7cfOMqQ==", 2117 | "dependencies": { 2118 | "has": "^1.0.3" 2119 | }, 2120 | "funding": { 2121 | "url": "https://github.com/sponsors/ljharb" 2122 | } 2123 | }, 2124 | "node_modules/is-date-object": { 2125 | "version": "1.0.5", 2126 | "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz", 2127 | "integrity": "sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==", 2128 | "dependencies": { 2129 | "has-tostringtag": "^1.0.0" 2130 | }, 2131 | "engines": { 2132 | "node": ">= 0.4" 2133 | }, 2134 | "funding": { 2135 | "url": "https://github.com/sponsors/ljharb" 2136 | } 2137 | }, 2138 | "node_modules/is-docker": { 2139 | "version": "2.2.1", 2140 | "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-2.2.1.tgz", 2141 | "integrity": "sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==", 2142 | "bin": { 2143 | "is-docker": "cli.js" 2144 | }, 2145 | "engines": { 2146 | "node": ">=8" 2147 | }, 2148 | "funding": { 2149 | "url": "https://github.com/sponsors/sindresorhus" 2150 | } 2151 | }, 2152 | "node_modules/is-extglob": { 2153 | "version": "2.1.1", 2154 | "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", 2155 | "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", 2156 | "engines": { 2157 | "node": ">=0.10.0" 2158 | } 2159 | }, 2160 | "node_modules/is-glob": { 2161 | "version": "4.0.3", 2162 | "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", 2163 | "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", 2164 | "dependencies": { 2165 | "is-extglob": "^2.1.1" 2166 | }, 2167 | "engines": { 2168 | "node": ">=0.10.0" 2169 | } 2170 | }, 2171 | "node_modules/is-map": { 2172 | "version": "2.0.2", 2173 | "resolved": "https://registry.npmjs.org/is-map/-/is-map-2.0.2.tgz", 2174 | "integrity": "sha512-cOZFQQozTha1f4MxLFzlgKYPTyj26picdZTx82hbc/Xf4K/tZOOXSCkMvU4pKioRXGDLJRn0GM7Upe7kR721yg==", 2175 | "funding": { 2176 | "url": "https://github.com/sponsors/ljharb" 2177 | } 2178 | }, 2179 | "node_modules/is-negative-zero": { 2180 | "version": "2.0.2", 2181 | "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.2.tgz", 2182 | "integrity": "sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==", 2183 | "engines": { 2184 | "node": ">= 0.4" 2185 | }, 2186 | "funding": { 2187 | "url": "https://github.com/sponsors/ljharb" 2188 | } 2189 | }, 2190 | "node_modules/is-number": { 2191 | "version": "7.0.0", 2192 | "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", 2193 | "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", 2194 | "engines": { 2195 | "node": ">=0.12.0" 2196 | } 2197 | }, 2198 | "node_modules/is-number-object": { 2199 | "version": "1.0.7", 2200 | "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.7.tgz", 2201 | "integrity": "sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==", 2202 | "dependencies": { 2203 | "has-tostringtag": "^1.0.0" 2204 | }, 2205 | "engines": { 2206 | "node": ">= 0.4" 2207 | }, 2208 | "funding": { 2209 | "url": "https://github.com/sponsors/ljharb" 2210 | } 2211 | }, 2212 | "node_modules/is-path-inside": { 2213 | "version": "3.0.3", 2214 | "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz", 2215 | "integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==", 2216 | "engines": { 2217 | "node": ">=8" 2218 | } 2219 | }, 2220 | "node_modules/is-regex": { 2221 | "version": "1.1.4", 2222 | "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz", 2223 | "integrity": "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==", 2224 | "dependencies": { 2225 | "call-bind": "^1.0.2", 2226 | "has-tostringtag": "^1.0.0" 2227 | }, 2228 | "engines": { 2229 | "node": ">= 0.4" 2230 | }, 2231 | "funding": { 2232 | "url": "https://github.com/sponsors/ljharb" 2233 | } 2234 | }, 2235 | "node_modules/is-set": { 2236 | "version": "2.0.2", 2237 | "resolved": "https://registry.npmjs.org/is-set/-/is-set-2.0.2.tgz", 2238 | "integrity": "sha512-+2cnTEZeY5z/iXGbLhPrOAaK/Mau5k5eXq9j14CpRTftq0pAJu2MwVRSZhyZWBzx3o6X795Lz6Bpb6R0GKf37g==", 2239 | "funding": { 2240 | "url": "https://github.com/sponsors/ljharb" 2241 | } 2242 | }, 2243 | "node_modules/is-shared-array-buffer": { 2244 | "version": "1.0.2", 2245 | "resolved": "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.2.tgz", 2246 | "integrity": "sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==", 2247 | "dependencies": { 2248 | "call-bind": "^1.0.2" 2249 | }, 2250 | "funding": { 2251 | "url": "https://github.com/sponsors/ljharb" 2252 | } 2253 | }, 2254 | "node_modules/is-string": { 2255 | "version": "1.0.7", 2256 | "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz", 2257 | "integrity": "sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==", 2258 | "dependencies": { 2259 | "has-tostringtag": "^1.0.0" 2260 | }, 2261 | "engines": { 2262 | "node": ">= 0.4" 2263 | }, 2264 | "funding": { 2265 | "url": "https://github.com/sponsors/ljharb" 2266 | } 2267 | }, 2268 | "node_modules/is-symbol": { 2269 | "version": "1.0.4", 2270 | "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.4.tgz", 2271 | "integrity": "sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==", 2272 | "dependencies": { 2273 | "has-symbols": "^1.0.2" 2274 | }, 2275 | "engines": { 2276 | "node": ">= 0.4" 2277 | }, 2278 | "funding": { 2279 | "url": "https://github.com/sponsors/ljharb" 2280 | } 2281 | }, 2282 | "node_modules/is-typed-array": { 2283 | "version": "1.1.10", 2284 | "resolved": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.10.tgz", 2285 | "integrity": "sha512-PJqgEHiWZvMpaFZ3uTc8kHPM4+4ADTlDniuQL7cU/UDA0Ql7F70yGfHph3cLNe+c9toaigv+DFzTJKhc2CtO6A==", 2286 | "dependencies": { 2287 | "available-typed-arrays": "^1.0.5", 2288 | "call-bind": "^1.0.2", 2289 | "for-each": "^0.3.3", 2290 | "gopd": "^1.0.1", 2291 | "has-tostringtag": "^1.0.0" 2292 | }, 2293 | "engines": { 2294 | "node": ">= 0.4" 2295 | }, 2296 | "funding": { 2297 | "url": "https://github.com/sponsors/ljharb" 2298 | } 2299 | }, 2300 | "node_modules/is-weakmap": { 2301 | "version": "2.0.1", 2302 | "resolved": "https://registry.npmjs.org/is-weakmap/-/is-weakmap-2.0.1.tgz", 2303 | "integrity": "sha512-NSBR4kH5oVj1Uwvv970ruUkCV7O1mzgVFO4/rev2cLRda9Tm9HrL70ZPut4rOHgY0FNrUu9BCbXA2sdQ+x0chA==", 2304 | "funding": { 2305 | "url": "https://github.com/sponsors/ljharb" 2306 | } 2307 | }, 2308 | "node_modules/is-weakref": { 2309 | "version": "1.0.2", 2310 | "resolved": "https://registry.npmjs.org/is-weakref/-/is-weakref-1.0.2.tgz", 2311 | "integrity": "sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==", 2312 | "dependencies": { 2313 | "call-bind": "^1.0.2" 2314 | }, 2315 | "funding": { 2316 | "url": "https://github.com/sponsors/ljharb" 2317 | } 2318 | }, 2319 | "node_modules/is-weakset": { 2320 | "version": "2.0.2", 2321 | "resolved": "https://registry.npmjs.org/is-weakset/-/is-weakset-2.0.2.tgz", 2322 | "integrity": "sha512-t2yVvttHkQktwnNNmBQ98AhENLdPUTDTE21uPqAQ0ARwQfGeQKRVS0NNurH7bTf7RrvcVn1OOge45CnBeHCSmg==", 2323 | "dependencies": { 2324 | "call-bind": "^1.0.2", 2325 | "get-intrinsic": "^1.1.1" 2326 | }, 2327 | "funding": { 2328 | "url": "https://github.com/sponsors/ljharb" 2329 | } 2330 | }, 2331 | "node_modules/is-wsl": { 2332 | "version": "2.2.0", 2333 | "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz", 2334 | "integrity": "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==", 2335 | "dependencies": { 2336 | "is-docker": "^2.0.0" 2337 | }, 2338 | "engines": { 2339 | "node": ">=8" 2340 | } 2341 | }, 2342 | "node_modules/isarray": { 2343 | "version": "2.0.5", 2344 | "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz", 2345 | "integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==" 2346 | }, 2347 | "node_modules/isexe": { 2348 | "version": "2.0.0", 2349 | "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", 2350 | "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==" 2351 | }, 2352 | "node_modules/js-sdsl": { 2353 | "version": "4.4.0", 2354 | "resolved": "https://registry.npmjs.org/js-sdsl/-/js-sdsl-4.4.0.tgz", 2355 | "integrity": "sha512-FfVSdx6pJ41Oa+CF7RDaFmTnCaFhua+SNYQX74riGOpl96x+2jQCqEfQ2bnXu/5DPCqlRuiqyvTJM0Qjz26IVg==", 2356 | "funding": { 2357 | "type": "opencollective", 2358 | "url": "https://opencollective.com/js-sdsl" 2359 | } 2360 | }, 2361 | "node_modules/js-tokens": { 2362 | "version": "4.0.0", 2363 | "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", 2364 | "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==" 2365 | }, 2366 | "node_modules/js-yaml": { 2367 | "version": "4.1.0", 2368 | "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", 2369 | "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", 2370 | "dependencies": { 2371 | "argparse": "^2.0.1" 2372 | }, 2373 | "bin": { 2374 | "js-yaml": "bin/js-yaml.js" 2375 | } 2376 | }, 2377 | "node_modules/json-schema-traverse": { 2378 | "version": "0.4.1", 2379 | "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", 2380 | "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==" 2381 | }, 2382 | "node_modules/json-stable-stringify-without-jsonify": { 2383 | "version": "1.0.1", 2384 | "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", 2385 | "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==" 2386 | }, 2387 | "node_modules/json5": { 2388 | "version": "1.0.2", 2389 | "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.2.tgz", 2390 | "integrity": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==", 2391 | "dependencies": { 2392 | "minimist": "^1.2.0" 2393 | }, 2394 | "bin": { 2395 | "json5": "lib/cli.js" 2396 | } 2397 | }, 2398 | "node_modules/jsx-ast-utils": { 2399 | "version": "3.3.3", 2400 | "resolved": "https://registry.npmjs.org/jsx-ast-utils/-/jsx-ast-utils-3.3.3.tgz", 2401 | "integrity": "sha512-fYQHZTZ8jSfmWZ0iyzfwiU4WDX4HpHbMCZ3gPlWYiCl3BoeOTsqKBqnTVfH2rYT7eP5c3sVbeSPHnnJOaTrWiw==", 2402 | "dependencies": { 2403 | "array-includes": "^3.1.5", 2404 | "object.assign": "^4.1.3" 2405 | }, 2406 | "engines": { 2407 | "node": ">=4.0" 2408 | } 2409 | }, 2410 | "node_modules/language-subtag-registry": { 2411 | "version": "0.3.22", 2412 | "resolved": "https://registry.npmjs.org/language-subtag-registry/-/language-subtag-registry-0.3.22.tgz", 2413 | "integrity": "sha512-tN0MCzyWnoz/4nHS6uxdlFWoUZT7ABptwKPQ52Ea7URk6vll88bWBVhodtnlfEuCcKWNGoc+uGbw1cwa9IKh/w==" 2414 | }, 2415 | "node_modules/language-tags": { 2416 | "version": "1.0.5", 2417 | "resolved": "https://registry.npmjs.org/language-tags/-/language-tags-1.0.5.tgz", 2418 | "integrity": "sha512-qJhlO9cGXi6hBGKoxEG/sKZDAHD5Hnu9Hs4WbOY3pCWXDhw0N8x1NenNzm2EnNLkLkk7J2SdxAkDSbb6ftT+UQ==", 2419 | "dependencies": { 2420 | "language-subtag-registry": "~0.3.2" 2421 | } 2422 | }, 2423 | "node_modules/levn": { 2424 | "version": "0.4.1", 2425 | "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", 2426 | "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", 2427 | "dependencies": { 2428 | "prelude-ls": "^1.2.1", 2429 | "type-check": "~0.4.0" 2430 | }, 2431 | "engines": { 2432 | "node": ">= 0.8.0" 2433 | } 2434 | }, 2435 | "node_modules/locate-path": { 2436 | "version": "6.0.0", 2437 | "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", 2438 | "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", 2439 | "dependencies": { 2440 | "p-locate": "^5.0.0" 2441 | }, 2442 | "engines": { 2443 | "node": ">=10" 2444 | }, 2445 | "funding": { 2446 | "url": "https://github.com/sponsors/sindresorhus" 2447 | } 2448 | }, 2449 | "node_modules/lodash.merge": { 2450 | "version": "4.6.2", 2451 | "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", 2452 | "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==" 2453 | }, 2454 | "node_modules/loose-envify": { 2455 | "version": "1.4.0", 2456 | "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz", 2457 | "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==", 2458 | "dependencies": { 2459 | "js-tokens": "^3.0.0 || ^4.0.0" 2460 | }, 2461 | "bin": { 2462 | "loose-envify": "cli.js" 2463 | } 2464 | }, 2465 | "node_modules/lru-cache": { 2466 | "version": "6.0.0", 2467 | "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", 2468 | "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", 2469 | "dependencies": { 2470 | "yallist": "^4.0.0" 2471 | }, 2472 | "engines": { 2473 | "node": ">=10" 2474 | } 2475 | }, 2476 | "node_modules/merge2": { 2477 | "version": "1.4.1", 2478 | "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", 2479 | "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", 2480 | "engines": { 2481 | "node": ">= 8" 2482 | } 2483 | }, 2484 | "node_modules/micromatch": { 2485 | "version": "4.0.5", 2486 | "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", 2487 | "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", 2488 | "dependencies": { 2489 | "braces": "^3.0.2", 2490 | "picomatch": "^2.3.1" 2491 | }, 2492 | "engines": { 2493 | "node": ">=8.6" 2494 | } 2495 | }, 2496 | "node_modules/minimatch": { 2497 | "version": "3.1.2", 2498 | "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", 2499 | "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", 2500 | "dependencies": { 2501 | "brace-expansion": "^1.1.7" 2502 | }, 2503 | "engines": { 2504 | "node": "*" 2505 | } 2506 | }, 2507 | "node_modules/minimist": { 2508 | "version": "1.2.8", 2509 | "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", 2510 | "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==", 2511 | "funding": { 2512 | "url": "https://github.com/sponsors/ljharb" 2513 | } 2514 | }, 2515 | "node_modules/ms": { 2516 | "version": "2.1.2", 2517 | "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", 2518 | "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" 2519 | }, 2520 | "node_modules/nanoid": { 2521 | "version": "3.3.6", 2522 | "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.6.tgz", 2523 | "integrity": "sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA==", 2524 | "funding": [ 2525 | { 2526 | "type": "github", 2527 | "url": "https://github.com/sponsors/ai" 2528 | } 2529 | ], 2530 | "bin": { 2531 | "nanoid": "bin/nanoid.cjs" 2532 | }, 2533 | "engines": { 2534 | "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" 2535 | } 2536 | }, 2537 | "node_modules/natural-compare": { 2538 | "version": "1.4.0", 2539 | "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", 2540 | "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==" 2541 | }, 2542 | "node_modules/next": { 2543 | "version": "13.2.1", 2544 | "resolved": "https://registry.npmjs.org/next/-/next-13.2.1.tgz", 2545 | "integrity": "sha512-qhgJlDtG0xidNViJUPeQHLGJJoT4zDj/El7fP3D3OzpxJDUfxsm16cK4WTMyvSX1ciIfAq05u+0HqFAa+VJ+Hg==", 2546 | "dependencies": { 2547 | "@next/env": "13.2.1", 2548 | "@swc/helpers": "0.4.14", 2549 | "caniuse-lite": "^1.0.30001406", 2550 | "postcss": "8.4.14", 2551 | "styled-jsx": "5.1.1" 2552 | }, 2553 | "bin": { 2554 | "next": "dist/bin/next" 2555 | }, 2556 | "engines": { 2557 | "node": ">=14.6.0" 2558 | }, 2559 | "optionalDependencies": { 2560 | "@next/swc-android-arm-eabi": "13.2.1", 2561 | "@next/swc-android-arm64": "13.2.1", 2562 | "@next/swc-darwin-arm64": "13.2.1", 2563 | "@next/swc-darwin-x64": "13.2.1", 2564 | "@next/swc-freebsd-x64": "13.2.1", 2565 | "@next/swc-linux-arm-gnueabihf": "13.2.1", 2566 | "@next/swc-linux-arm64-gnu": "13.2.1", 2567 | "@next/swc-linux-arm64-musl": "13.2.1", 2568 | "@next/swc-linux-x64-gnu": "13.2.1", 2569 | "@next/swc-linux-x64-musl": "13.2.1", 2570 | "@next/swc-win32-arm64-msvc": "13.2.1", 2571 | "@next/swc-win32-ia32-msvc": "13.2.1", 2572 | "@next/swc-win32-x64-msvc": "13.2.1" 2573 | }, 2574 | "peerDependencies": { 2575 | "@opentelemetry/api": "^1.4.0", 2576 | "fibers": ">= 3.1.0", 2577 | "node-sass": "^6.0.0 || ^7.0.0", 2578 | "react": "^18.2.0", 2579 | "react-dom": "^18.2.0", 2580 | "sass": "^1.3.0" 2581 | }, 2582 | "peerDependenciesMeta": { 2583 | "@opentelemetry/api": { 2584 | "optional": true 2585 | }, 2586 | "fibers": { 2587 | "optional": true 2588 | }, 2589 | "node-sass": { 2590 | "optional": true 2591 | }, 2592 | "sass": { 2593 | "optional": true 2594 | } 2595 | } 2596 | }, 2597 | "node_modules/normalize-path": { 2598 | "version": "3.0.0", 2599 | "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", 2600 | "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", 2601 | "engines": { 2602 | "node": ">=0.10.0" 2603 | } 2604 | }, 2605 | "node_modules/object-assign": { 2606 | "version": "4.1.1", 2607 | "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", 2608 | "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==", 2609 | "engines": { 2610 | "node": ">=0.10.0" 2611 | } 2612 | }, 2613 | "node_modules/object-inspect": { 2614 | "version": "1.12.3", 2615 | "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.12.3.tgz", 2616 | "integrity": "sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g==", 2617 | "funding": { 2618 | "url": "https://github.com/sponsors/ljharb" 2619 | } 2620 | }, 2621 | "node_modules/object-is": { 2622 | "version": "1.1.5", 2623 | "resolved": "https://registry.npmjs.org/object-is/-/object-is-1.1.5.tgz", 2624 | "integrity": "sha512-3cyDsyHgtmi7I7DfSSI2LDp6SK2lwvtbg0p0R1e0RvTqF5ceGx+K2dfSjm1bKDMVCFEDAQvy+o8c6a7VujOddw==", 2625 | "dependencies": { 2626 | "call-bind": "^1.0.2", 2627 | "define-properties": "^1.1.3" 2628 | }, 2629 | "engines": { 2630 | "node": ">= 0.4" 2631 | }, 2632 | "funding": { 2633 | "url": "https://github.com/sponsors/ljharb" 2634 | } 2635 | }, 2636 | "node_modules/object-keys": { 2637 | "version": "1.1.1", 2638 | "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", 2639 | "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==", 2640 | "engines": { 2641 | "node": ">= 0.4" 2642 | } 2643 | }, 2644 | "node_modules/object.assign": { 2645 | "version": "4.1.4", 2646 | "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.4.tgz", 2647 | "integrity": "sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ==", 2648 | "dependencies": { 2649 | "call-bind": "^1.0.2", 2650 | "define-properties": "^1.1.4", 2651 | "has-symbols": "^1.0.3", 2652 | "object-keys": "^1.1.1" 2653 | }, 2654 | "engines": { 2655 | "node": ">= 0.4" 2656 | }, 2657 | "funding": { 2658 | "url": "https://github.com/sponsors/ljharb" 2659 | } 2660 | }, 2661 | "node_modules/object.entries": { 2662 | "version": "1.1.6", 2663 | "resolved": "https://registry.npmjs.org/object.entries/-/object.entries-1.1.6.tgz", 2664 | "integrity": "sha512-leTPzo4Zvg3pmbQ3rDK69Rl8GQvIqMWubrkxONG9/ojtFE2rD9fjMKfSI5BxW3osRH1m6VdzmqK8oAY9aT4x5w==", 2665 | "dependencies": { 2666 | "call-bind": "^1.0.2", 2667 | "define-properties": "^1.1.4", 2668 | "es-abstract": "^1.20.4" 2669 | }, 2670 | "engines": { 2671 | "node": ">= 0.4" 2672 | } 2673 | }, 2674 | "node_modules/object.fromentries": { 2675 | "version": "2.0.6", 2676 | "resolved": "https://registry.npmjs.org/object.fromentries/-/object.fromentries-2.0.6.tgz", 2677 | "integrity": "sha512-VciD13dswC4j1Xt5394WR4MzmAQmlgN72phd/riNp9vtD7tp4QQWJ0R4wvclXcafgcYK8veHRed2W6XeGBvcfg==", 2678 | "dependencies": { 2679 | "call-bind": "^1.0.2", 2680 | "define-properties": "^1.1.4", 2681 | "es-abstract": "^1.20.4" 2682 | }, 2683 | "engines": { 2684 | "node": ">= 0.4" 2685 | }, 2686 | "funding": { 2687 | "url": "https://github.com/sponsors/ljharb" 2688 | } 2689 | }, 2690 | "node_modules/object.hasown": { 2691 | "version": "1.1.2", 2692 | "resolved": "https://registry.npmjs.org/object.hasown/-/object.hasown-1.1.2.tgz", 2693 | "integrity": "sha512-B5UIT3J1W+WuWIU55h0mjlwaqxiE5vYENJXIXZ4VFe05pNYrkKuK0U/6aFcb0pKywYJh7IhfoqUfKVmrJJHZHw==", 2694 | "dependencies": { 2695 | "define-properties": "^1.1.4", 2696 | "es-abstract": "^1.20.4" 2697 | }, 2698 | "funding": { 2699 | "url": "https://github.com/sponsors/ljharb" 2700 | } 2701 | }, 2702 | "node_modules/object.values": { 2703 | "version": "1.1.6", 2704 | "resolved": "https://registry.npmjs.org/object.values/-/object.values-1.1.6.tgz", 2705 | "integrity": "sha512-FVVTkD1vENCsAcwNs9k6jea2uHC/X0+JcjG8YA60FN5CMaJmG95wT9jek/xX9nornqGRrBkKtzuAu2wuHpKqvw==", 2706 | "dependencies": { 2707 | "call-bind": "^1.0.2", 2708 | "define-properties": "^1.1.4", 2709 | "es-abstract": "^1.20.4" 2710 | }, 2711 | "engines": { 2712 | "node": ">= 0.4" 2713 | }, 2714 | "funding": { 2715 | "url": "https://github.com/sponsors/ljharb" 2716 | } 2717 | }, 2718 | "node_modules/once": { 2719 | "version": "1.4.0", 2720 | "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", 2721 | "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", 2722 | "dependencies": { 2723 | "wrappy": "1" 2724 | } 2725 | }, 2726 | "node_modules/open": { 2727 | "version": "8.4.2", 2728 | "resolved": "https://registry.npmjs.org/open/-/open-8.4.2.tgz", 2729 | "integrity": "sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ==", 2730 | "dependencies": { 2731 | "define-lazy-prop": "^2.0.0", 2732 | "is-docker": "^2.1.1", 2733 | "is-wsl": "^2.2.0" 2734 | }, 2735 | "engines": { 2736 | "node": ">=12" 2737 | }, 2738 | "funding": { 2739 | "url": "https://github.com/sponsors/sindresorhus" 2740 | } 2741 | }, 2742 | "node_modules/optionator": { 2743 | "version": "0.9.1", 2744 | "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.1.tgz", 2745 | "integrity": "sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw==", 2746 | "dependencies": { 2747 | "deep-is": "^0.1.3", 2748 | "fast-levenshtein": "^2.0.6", 2749 | "levn": "^0.4.1", 2750 | "prelude-ls": "^1.2.1", 2751 | "type-check": "^0.4.0", 2752 | "word-wrap": "^1.2.3" 2753 | }, 2754 | "engines": { 2755 | "node": ">= 0.8.0" 2756 | } 2757 | }, 2758 | "node_modules/p-limit": { 2759 | "version": "3.1.0", 2760 | "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", 2761 | "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", 2762 | "dependencies": { 2763 | "yocto-queue": "^0.1.0" 2764 | }, 2765 | "engines": { 2766 | "node": ">=10" 2767 | }, 2768 | "funding": { 2769 | "url": "https://github.com/sponsors/sindresorhus" 2770 | } 2771 | }, 2772 | "node_modules/p-locate": { 2773 | "version": "5.0.0", 2774 | "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", 2775 | "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", 2776 | "dependencies": { 2777 | "p-limit": "^3.0.2" 2778 | }, 2779 | "engines": { 2780 | "node": ">=10" 2781 | }, 2782 | "funding": { 2783 | "url": "https://github.com/sponsors/sindresorhus" 2784 | } 2785 | }, 2786 | "node_modules/parent-module": { 2787 | "version": "1.0.1", 2788 | "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", 2789 | "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", 2790 | "dependencies": { 2791 | "callsites": "^3.0.0" 2792 | }, 2793 | "engines": { 2794 | "node": ">=6" 2795 | } 2796 | }, 2797 | "node_modules/path-exists": { 2798 | "version": "4.0.0", 2799 | "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", 2800 | "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", 2801 | "engines": { 2802 | "node": ">=8" 2803 | } 2804 | }, 2805 | "node_modules/path-is-absolute": { 2806 | "version": "1.0.1", 2807 | "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", 2808 | "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", 2809 | "engines": { 2810 | "node": ">=0.10.0" 2811 | } 2812 | }, 2813 | "node_modules/path-key": { 2814 | "version": "3.1.1", 2815 | "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", 2816 | "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", 2817 | "engines": { 2818 | "node": ">=8" 2819 | } 2820 | }, 2821 | "node_modules/path-parse": { 2822 | "version": "1.0.7", 2823 | "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", 2824 | "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==" 2825 | }, 2826 | "node_modules/path-type": { 2827 | "version": "4.0.0", 2828 | "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", 2829 | "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", 2830 | "engines": { 2831 | "node": ">=8" 2832 | } 2833 | }, 2834 | "node_modules/picocolors": { 2835 | "version": "1.0.0", 2836 | "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", 2837 | "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==" 2838 | }, 2839 | "node_modules/picomatch": { 2840 | "version": "2.3.1", 2841 | "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", 2842 | "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", 2843 | "engines": { 2844 | "node": ">=8.6" 2845 | }, 2846 | "funding": { 2847 | "url": "https://github.com/sponsors/jonschlinkert" 2848 | } 2849 | }, 2850 | "node_modules/postcss": { 2851 | "version": "8.4.14", 2852 | "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.14.tgz", 2853 | "integrity": "sha512-E398TUmfAYFPBSdzgeieK2Y1+1cpdxJx8yXbK/m57nRhKSmk1GB2tO4lbLBtlkfPQTDKfe4Xqv1ASWPpayPEig==", 2854 | "funding": [ 2855 | { 2856 | "type": "opencollective", 2857 | "url": "https://opencollective.com/postcss/" 2858 | }, 2859 | { 2860 | "type": "tidelift", 2861 | "url": "https://tidelift.com/funding/github/npm/postcss" 2862 | } 2863 | ], 2864 | "dependencies": { 2865 | "nanoid": "^3.3.4", 2866 | "picocolors": "^1.0.0", 2867 | "source-map-js": "^1.0.2" 2868 | }, 2869 | "engines": { 2870 | "node": "^10 || ^12 || >=14" 2871 | } 2872 | }, 2873 | "node_modules/prelude-ls": { 2874 | "version": "1.2.1", 2875 | "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", 2876 | "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", 2877 | "engines": { 2878 | "node": ">= 0.8.0" 2879 | } 2880 | }, 2881 | "node_modules/prop-types": { 2882 | "version": "15.8.1", 2883 | "resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.8.1.tgz", 2884 | "integrity": "sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==", 2885 | "dependencies": { 2886 | "loose-envify": "^1.4.0", 2887 | "object-assign": "^4.1.1", 2888 | "react-is": "^16.13.1" 2889 | } 2890 | }, 2891 | "node_modules/punycode": { 2892 | "version": "2.3.0", 2893 | "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.0.tgz", 2894 | "integrity": "sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA==", 2895 | "engines": { 2896 | "node": ">=6" 2897 | } 2898 | }, 2899 | "node_modules/queue-microtask": { 2900 | "version": "1.2.3", 2901 | "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", 2902 | "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", 2903 | "funding": [ 2904 | { 2905 | "type": "github", 2906 | "url": "https://github.com/sponsors/feross" 2907 | }, 2908 | { 2909 | "type": "patreon", 2910 | "url": "https://www.patreon.com/feross" 2911 | }, 2912 | { 2913 | "type": "consulting", 2914 | "url": "https://feross.org/support" 2915 | } 2916 | ] 2917 | }, 2918 | "node_modules/react": { 2919 | "version": "18.2.0", 2920 | "resolved": "https://registry.npmjs.org/react/-/react-18.2.0.tgz", 2921 | "integrity": "sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==", 2922 | "dependencies": { 2923 | "loose-envify": "^1.1.0" 2924 | }, 2925 | "engines": { 2926 | "node": ">=0.10.0" 2927 | } 2928 | }, 2929 | "node_modules/react-dom": { 2930 | "version": "18.2.0", 2931 | "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-18.2.0.tgz", 2932 | "integrity": "sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g==", 2933 | "dependencies": { 2934 | "loose-envify": "^1.1.0", 2935 | "scheduler": "^0.23.0" 2936 | }, 2937 | "peerDependencies": { 2938 | "react": "^18.2.0" 2939 | } 2940 | }, 2941 | "node_modules/react-icons": { 2942 | "version": "4.8.0", 2943 | "resolved": "https://registry.npmjs.org/react-icons/-/react-icons-4.8.0.tgz", 2944 | "integrity": "sha512-N6+kOLcihDiAnj5Czu637waJqSnwlMNROzVZMhfX68V/9bu9qHaMIJC4UdozWoOk57gahFCNHwVvWzm0MTzRjg==", 2945 | "peerDependencies": { 2946 | "react": "*" 2947 | } 2948 | }, 2949 | "node_modules/react-is": { 2950 | "version": "16.13.1", 2951 | "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz", 2952 | "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==" 2953 | }, 2954 | "node_modules/readdirp": { 2955 | "version": "3.6.0", 2956 | "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", 2957 | "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", 2958 | "dependencies": { 2959 | "picomatch": "^2.2.1" 2960 | }, 2961 | "engines": { 2962 | "node": ">=8.10.0" 2963 | } 2964 | }, 2965 | "node_modules/regenerator-runtime": { 2966 | "version": "0.13.11", 2967 | "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.11.tgz", 2968 | "integrity": "sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==" 2969 | }, 2970 | "node_modules/regexp.prototype.flags": { 2971 | "version": "1.5.0", 2972 | "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.5.0.tgz", 2973 | "integrity": "sha512-0SutC3pNudRKgquxGoRGIz946MZVHqbNfPjBdxeOhBrdgDKlRoXmYLQN9xRbrR09ZXWeGAdPuif7egofn6v5LA==", 2974 | "dependencies": { 2975 | "call-bind": "^1.0.2", 2976 | "define-properties": "^1.2.0", 2977 | "functions-have-names": "^1.2.3" 2978 | }, 2979 | "engines": { 2980 | "node": ">= 0.4" 2981 | }, 2982 | "funding": { 2983 | "url": "https://github.com/sponsors/ljharb" 2984 | } 2985 | }, 2986 | "node_modules/regexpp": { 2987 | "version": "3.2.0", 2988 | "resolved": "https://registry.npmjs.org/regexpp/-/regexpp-3.2.0.tgz", 2989 | "integrity": "sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==", 2990 | "engines": { 2991 | "node": ">=8" 2992 | }, 2993 | "funding": { 2994 | "url": "https://github.com/sponsors/mysticatea" 2995 | } 2996 | }, 2997 | "node_modules/resolve": { 2998 | "version": "1.22.2", 2999 | "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.2.tgz", 3000 | "integrity": "sha512-Sb+mjNHOULsBv818T40qSPeRiuWLyaGMa5ewydRLFimneixmVy2zdivRl+AF6jaYPC8ERxGDmFSiqui6SfPd+g==", 3001 | "dependencies": { 3002 | "is-core-module": "^2.11.0", 3003 | "path-parse": "^1.0.7", 3004 | "supports-preserve-symlinks-flag": "^1.0.0" 3005 | }, 3006 | "bin": { 3007 | "resolve": "bin/resolve" 3008 | }, 3009 | "funding": { 3010 | "url": "https://github.com/sponsors/ljharb" 3011 | } 3012 | }, 3013 | "node_modules/resolve-from": { 3014 | "version": "4.0.0", 3015 | "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", 3016 | "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", 3017 | "engines": { 3018 | "node": ">=4" 3019 | } 3020 | }, 3021 | "node_modules/reusify": { 3022 | "version": "1.0.4", 3023 | "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", 3024 | "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", 3025 | "engines": { 3026 | "iojs": ">=1.0.0", 3027 | "node": ">=0.10.0" 3028 | } 3029 | }, 3030 | "node_modules/rimraf": { 3031 | "version": "3.0.2", 3032 | "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", 3033 | "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", 3034 | "dependencies": { 3035 | "glob": "^7.1.3" 3036 | }, 3037 | "bin": { 3038 | "rimraf": "bin.js" 3039 | }, 3040 | "funding": { 3041 | "url": "https://github.com/sponsors/isaacs" 3042 | } 3043 | }, 3044 | "node_modules/run-parallel": { 3045 | "version": "1.2.0", 3046 | "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", 3047 | "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", 3048 | "funding": [ 3049 | { 3050 | "type": "github", 3051 | "url": "https://github.com/sponsors/feross" 3052 | }, 3053 | { 3054 | "type": "patreon", 3055 | "url": "https://www.patreon.com/feross" 3056 | }, 3057 | { 3058 | "type": "consulting", 3059 | "url": "https://feross.org/support" 3060 | } 3061 | ], 3062 | "dependencies": { 3063 | "queue-microtask": "^1.2.2" 3064 | } 3065 | }, 3066 | "node_modules/safe-regex-test": { 3067 | "version": "1.0.0", 3068 | "resolved": "https://registry.npmjs.org/safe-regex-test/-/safe-regex-test-1.0.0.tgz", 3069 | "integrity": "sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA==", 3070 | "dependencies": { 3071 | "call-bind": "^1.0.2", 3072 | "get-intrinsic": "^1.1.3", 3073 | "is-regex": "^1.1.4" 3074 | }, 3075 | "funding": { 3076 | "url": "https://github.com/sponsors/ljharb" 3077 | } 3078 | }, 3079 | "node_modules/sass": { 3080 | "version": "1.62.0", 3081 | "resolved": "https://registry.npmjs.org/sass/-/sass-1.62.0.tgz", 3082 | "integrity": "sha512-Q4USplo4pLYgCi+XlipZCWUQz5pkg/ruSSgJ0WRDSb/+3z9tXUOkQ7QPYn4XrhZKYAK4HlpaQecRwKLJX6+DBg==", 3083 | "dependencies": { 3084 | "chokidar": ">=3.0.0 <4.0.0", 3085 | "immutable": "^4.0.0", 3086 | "source-map-js": ">=0.6.2 <2.0.0" 3087 | }, 3088 | "bin": { 3089 | "sass": "sass.js" 3090 | }, 3091 | "engines": { 3092 | "node": ">=14.0.0" 3093 | } 3094 | }, 3095 | "node_modules/scheduler": { 3096 | "version": "0.23.0", 3097 | "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.23.0.tgz", 3098 | "integrity": "sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw==", 3099 | "dependencies": { 3100 | "loose-envify": "^1.1.0" 3101 | } 3102 | }, 3103 | "node_modules/semver": { 3104 | "version": "7.5.0", 3105 | "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.0.tgz", 3106 | "integrity": "sha512-+XC0AD/R7Q2mPSRuy2Id0+CGTZ98+8f+KvwirxOKIEyid+XSx6HbC63p+O4IndTHuX5Z+JxQ0TghCkO5Cg/2HA==", 3107 | "dependencies": { 3108 | "lru-cache": "^6.0.0" 3109 | }, 3110 | "bin": { 3111 | "semver": "bin/semver.js" 3112 | }, 3113 | "engines": { 3114 | "node": ">=10" 3115 | } 3116 | }, 3117 | "node_modules/shebang-command": { 3118 | "version": "2.0.0", 3119 | "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", 3120 | "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", 3121 | "dependencies": { 3122 | "shebang-regex": "^3.0.0" 3123 | }, 3124 | "engines": { 3125 | "node": ">=8" 3126 | } 3127 | }, 3128 | "node_modules/shebang-regex": { 3129 | "version": "3.0.0", 3130 | "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", 3131 | "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", 3132 | "engines": { 3133 | "node": ">=8" 3134 | } 3135 | }, 3136 | "node_modules/side-channel": { 3137 | "version": "1.0.4", 3138 | "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz", 3139 | "integrity": "sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==", 3140 | "dependencies": { 3141 | "call-bind": "^1.0.0", 3142 | "get-intrinsic": "^1.0.2", 3143 | "object-inspect": "^1.9.0" 3144 | }, 3145 | "funding": { 3146 | "url": "https://github.com/sponsors/ljharb" 3147 | } 3148 | }, 3149 | "node_modules/slash": { 3150 | "version": "3.0.0", 3151 | "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", 3152 | "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", 3153 | "engines": { 3154 | "node": ">=8" 3155 | } 3156 | }, 3157 | "node_modules/source-map-js": { 3158 | "version": "1.0.2", 3159 | "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.0.2.tgz", 3160 | "integrity": "sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==", 3161 | "engines": { 3162 | "node": ">=0.10.0" 3163 | } 3164 | }, 3165 | "node_modules/stop-iteration-iterator": { 3166 | "version": "1.0.0", 3167 | "resolved": "https://registry.npmjs.org/stop-iteration-iterator/-/stop-iteration-iterator-1.0.0.tgz", 3168 | "integrity": "sha512-iCGQj+0l0HOdZ2AEeBADlsRC+vsnDsZsbdSiH1yNSjcfKM7fdpCMfqAL/dwF5BLiw/XhRft/Wax6zQbhq2BcjQ==", 3169 | "dependencies": { 3170 | "internal-slot": "^1.0.4" 3171 | }, 3172 | "engines": { 3173 | "node": ">= 0.4" 3174 | } 3175 | }, 3176 | "node_modules/string.prototype.matchall": { 3177 | "version": "4.0.8", 3178 | "resolved": "https://registry.npmjs.org/string.prototype.matchall/-/string.prototype.matchall-4.0.8.tgz", 3179 | "integrity": "sha512-6zOCOcJ+RJAQshcTvXPHoxoQGONa3e/Lqx90wUA+wEzX78sg5Bo+1tQo4N0pohS0erG9qtCqJDjNCQBjeWVxyg==", 3180 | "dependencies": { 3181 | "call-bind": "^1.0.2", 3182 | "define-properties": "^1.1.4", 3183 | "es-abstract": "^1.20.4", 3184 | "get-intrinsic": "^1.1.3", 3185 | "has-symbols": "^1.0.3", 3186 | "internal-slot": "^1.0.3", 3187 | "regexp.prototype.flags": "^1.4.3", 3188 | "side-channel": "^1.0.4" 3189 | }, 3190 | "funding": { 3191 | "url": "https://github.com/sponsors/ljharb" 3192 | } 3193 | }, 3194 | "node_modules/string.prototype.trim": { 3195 | "version": "1.2.7", 3196 | "resolved": "https://registry.npmjs.org/string.prototype.trim/-/string.prototype.trim-1.2.7.tgz", 3197 | "integrity": "sha512-p6TmeT1T3411M8Cgg9wBTMRtY2q9+PNy9EV1i2lIXUN/btt763oIfxwN3RR8VU6wHX8j/1CFy0L+YuThm6bgOg==", 3198 | "dependencies": { 3199 | "call-bind": "^1.0.2", 3200 | "define-properties": "^1.1.4", 3201 | "es-abstract": "^1.20.4" 3202 | }, 3203 | "engines": { 3204 | "node": ">= 0.4" 3205 | }, 3206 | "funding": { 3207 | "url": "https://github.com/sponsors/ljharb" 3208 | } 3209 | }, 3210 | "node_modules/string.prototype.trimend": { 3211 | "version": "1.0.6", 3212 | "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.6.tgz", 3213 | "integrity": "sha512-JySq+4mrPf9EsDBEDYMOb/lM7XQLulwg5R/m1r0PXEFqrV0qHvl58sdTilSXtKOflCsK2E8jxf+GKC0T07RWwQ==", 3214 | "dependencies": { 3215 | "call-bind": "^1.0.2", 3216 | "define-properties": "^1.1.4", 3217 | "es-abstract": "^1.20.4" 3218 | }, 3219 | "funding": { 3220 | "url": "https://github.com/sponsors/ljharb" 3221 | } 3222 | }, 3223 | "node_modules/string.prototype.trimstart": { 3224 | "version": "1.0.6", 3225 | "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.6.tgz", 3226 | "integrity": "sha512-omqjMDaY92pbn5HOX7f9IccLA+U1tA9GvtU4JrodiXFfYB7jPzzHpRzpglLAjtUV6bB557zwClJezTqnAiYnQA==", 3227 | "dependencies": { 3228 | "call-bind": "^1.0.2", 3229 | "define-properties": "^1.1.4", 3230 | "es-abstract": "^1.20.4" 3231 | }, 3232 | "funding": { 3233 | "url": "https://github.com/sponsors/ljharb" 3234 | } 3235 | }, 3236 | "node_modules/strip-ansi": { 3237 | "version": "6.0.1", 3238 | "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", 3239 | "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", 3240 | "dependencies": { 3241 | "ansi-regex": "^5.0.1" 3242 | }, 3243 | "engines": { 3244 | "node": ">=8" 3245 | } 3246 | }, 3247 | "node_modules/strip-bom": { 3248 | "version": "3.0.0", 3249 | "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", 3250 | "integrity": "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==", 3251 | "engines": { 3252 | "node": ">=4" 3253 | } 3254 | }, 3255 | "node_modules/strip-json-comments": { 3256 | "version": "3.1.1", 3257 | "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", 3258 | "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", 3259 | "engines": { 3260 | "node": ">=8" 3261 | }, 3262 | "funding": { 3263 | "url": "https://github.com/sponsors/sindresorhus" 3264 | } 3265 | }, 3266 | "node_modules/styled-jsx": { 3267 | "version": "5.1.1", 3268 | "resolved": "https://registry.npmjs.org/styled-jsx/-/styled-jsx-5.1.1.tgz", 3269 | "integrity": "sha512-pW7uC1l4mBZ8ugbiZrcIsiIvVx1UmTfw7UkC3Um2tmfUq9Bhk8IiyEIPl6F8agHgjzku6j0xQEZbfA5uSgSaCw==", 3270 | "dependencies": { 3271 | "client-only": "0.0.1" 3272 | }, 3273 | "engines": { 3274 | "node": ">= 12.0.0" 3275 | }, 3276 | "peerDependencies": { 3277 | "react": ">= 16.8.0 || 17.x.x || ^18.0.0-0" 3278 | }, 3279 | "peerDependenciesMeta": { 3280 | "@babel/core": { 3281 | "optional": true 3282 | }, 3283 | "babel-plugin-macros": { 3284 | "optional": true 3285 | } 3286 | } 3287 | }, 3288 | "node_modules/supports-color": { 3289 | "version": "7.2.0", 3290 | "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", 3291 | "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", 3292 | "dependencies": { 3293 | "has-flag": "^4.0.0" 3294 | }, 3295 | "engines": { 3296 | "node": ">=8" 3297 | } 3298 | }, 3299 | "node_modules/supports-preserve-symlinks-flag": { 3300 | "version": "1.0.0", 3301 | "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", 3302 | "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", 3303 | "engines": { 3304 | "node": ">= 0.4" 3305 | }, 3306 | "funding": { 3307 | "url": "https://github.com/sponsors/ljharb" 3308 | } 3309 | }, 3310 | "node_modules/synckit": { 3311 | "version": "0.8.5", 3312 | "resolved": "https://registry.npmjs.org/synckit/-/synckit-0.8.5.tgz", 3313 | "integrity": "sha512-L1dapNV6vu2s/4Sputv8xGsCdAVlb5nRDMFU/E27D44l5U6cw1g0dGd45uLc+OXjNMmF4ntiMdCimzcjFKQI8Q==", 3314 | "dependencies": { 3315 | "@pkgr/utils": "^2.3.1", 3316 | "tslib": "^2.5.0" 3317 | }, 3318 | "engines": { 3319 | "node": "^14.18.0 || >=16.0.0" 3320 | }, 3321 | "funding": { 3322 | "url": "https://opencollective.com/unts" 3323 | } 3324 | }, 3325 | "node_modules/tapable": { 3326 | "version": "2.2.1", 3327 | "resolved": "https://registry.npmjs.org/tapable/-/tapable-2.2.1.tgz", 3328 | "integrity": "sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==", 3329 | "engines": { 3330 | "node": ">=6" 3331 | } 3332 | }, 3333 | "node_modules/text-table": { 3334 | "version": "0.2.0", 3335 | "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", 3336 | "integrity": "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==" 3337 | }, 3338 | "node_modules/tiny-glob": { 3339 | "version": "0.2.9", 3340 | "resolved": "https://registry.npmjs.org/tiny-glob/-/tiny-glob-0.2.9.tgz", 3341 | "integrity": "sha512-g/55ssRPUjShh+xkfx9UPDXqhckHEsHr4Vd9zX55oSdGZc/MD0m3sferOkwWtp98bv+kcVfEHtRJgBVJzelrzg==", 3342 | "dependencies": { 3343 | "globalyzer": "0.1.0", 3344 | "globrex": "^0.1.2" 3345 | } 3346 | }, 3347 | "node_modules/to-regex-range": { 3348 | "version": "5.0.1", 3349 | "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", 3350 | "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", 3351 | "dependencies": { 3352 | "is-number": "^7.0.0" 3353 | }, 3354 | "engines": { 3355 | "node": ">=8.0" 3356 | } 3357 | }, 3358 | "node_modules/tsconfig-paths": { 3359 | "version": "3.14.2", 3360 | "resolved": "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.14.2.tgz", 3361 | "integrity": "sha512-o/9iXgCYc5L/JxCHPe3Hvh8Q/2xm5Z+p18PESBU6Ff33695QnCHBEjcytY2q19ua7Mbl/DavtBOLq+oG0RCL+g==", 3362 | "dependencies": { 3363 | "@types/json5": "^0.0.29", 3364 | "json5": "^1.0.2", 3365 | "minimist": "^1.2.6", 3366 | "strip-bom": "^3.0.0" 3367 | } 3368 | }, 3369 | "node_modules/tslib": { 3370 | "version": "2.5.0", 3371 | "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.0.tgz", 3372 | "integrity": "sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==" 3373 | }, 3374 | "node_modules/tsutils": { 3375 | "version": "3.21.0", 3376 | "resolved": "https://registry.npmjs.org/tsutils/-/tsutils-3.21.0.tgz", 3377 | "integrity": "sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==", 3378 | "dependencies": { 3379 | "tslib": "^1.8.1" 3380 | }, 3381 | "engines": { 3382 | "node": ">= 6" 3383 | }, 3384 | "peerDependencies": { 3385 | "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" 3386 | } 3387 | }, 3388 | "node_modules/tsutils/node_modules/tslib": { 3389 | "version": "1.14.1", 3390 | "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", 3391 | "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" 3392 | }, 3393 | "node_modules/type-check": { 3394 | "version": "0.4.0", 3395 | "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", 3396 | "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", 3397 | "dependencies": { 3398 | "prelude-ls": "^1.2.1" 3399 | }, 3400 | "engines": { 3401 | "node": ">= 0.8.0" 3402 | } 3403 | }, 3404 | "node_modules/type-fest": { 3405 | "version": "0.20.2", 3406 | "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", 3407 | "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", 3408 | "engines": { 3409 | "node": ">=10" 3410 | }, 3411 | "funding": { 3412 | "url": "https://github.com/sponsors/sindresorhus" 3413 | } 3414 | }, 3415 | "node_modules/typed-array-length": { 3416 | "version": "1.0.4", 3417 | "resolved": "https://registry.npmjs.org/typed-array-length/-/typed-array-length-1.0.4.tgz", 3418 | "integrity": "sha512-KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng==", 3419 | "dependencies": { 3420 | "call-bind": "^1.0.2", 3421 | "for-each": "^0.3.3", 3422 | "is-typed-array": "^1.1.9" 3423 | }, 3424 | "funding": { 3425 | "url": "https://github.com/sponsors/ljharb" 3426 | } 3427 | }, 3428 | "node_modules/typescript": { 3429 | "version": "4.9.5", 3430 | "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.9.5.tgz", 3431 | "integrity": "sha512-1FXk9E2Hm+QzZQ7z+McJiHL4NW1F2EzMu9Nq9i3zAaGqibafqYwCVU6WyWAuyQRRzOlxou8xZSyXLEN8oKj24g==", 3432 | "bin": { 3433 | "tsc": "bin/tsc", 3434 | "tsserver": "bin/tsserver" 3435 | }, 3436 | "engines": { 3437 | "node": ">=4.2.0" 3438 | } 3439 | }, 3440 | "node_modules/unbox-primitive": { 3441 | "version": "1.0.2", 3442 | "resolved": "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.2.tgz", 3443 | "integrity": "sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==", 3444 | "dependencies": { 3445 | "call-bind": "^1.0.2", 3446 | "has-bigints": "^1.0.2", 3447 | "has-symbols": "^1.0.3", 3448 | "which-boxed-primitive": "^1.0.2" 3449 | }, 3450 | "funding": { 3451 | "url": "https://github.com/sponsors/ljharb" 3452 | } 3453 | }, 3454 | "node_modules/uri-js": { 3455 | "version": "4.4.1", 3456 | "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", 3457 | "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", 3458 | "dependencies": { 3459 | "punycode": "^2.1.0" 3460 | } 3461 | }, 3462 | "node_modules/which": { 3463 | "version": "2.0.2", 3464 | "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", 3465 | "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", 3466 | "dependencies": { 3467 | "isexe": "^2.0.0" 3468 | }, 3469 | "bin": { 3470 | "node-which": "bin/node-which" 3471 | }, 3472 | "engines": { 3473 | "node": ">= 8" 3474 | } 3475 | }, 3476 | "node_modules/which-boxed-primitive": { 3477 | "version": "1.0.2", 3478 | "resolved": "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz", 3479 | "integrity": "sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==", 3480 | "dependencies": { 3481 | "is-bigint": "^1.0.1", 3482 | "is-boolean-object": "^1.1.0", 3483 | "is-number-object": "^1.0.4", 3484 | "is-string": "^1.0.5", 3485 | "is-symbol": "^1.0.3" 3486 | }, 3487 | "funding": { 3488 | "url": "https://github.com/sponsors/ljharb" 3489 | } 3490 | }, 3491 | "node_modules/which-collection": { 3492 | "version": "1.0.1", 3493 | "resolved": "https://registry.npmjs.org/which-collection/-/which-collection-1.0.1.tgz", 3494 | "integrity": "sha512-W8xeTUwaln8i3K/cY1nGXzdnVZlidBcagyNFtBdD5kxnb4TvGKR7FfSIS3mYpwWS1QUCutfKz8IY8RjftB0+1A==", 3495 | "dependencies": { 3496 | "is-map": "^2.0.1", 3497 | "is-set": "^2.0.1", 3498 | "is-weakmap": "^2.0.1", 3499 | "is-weakset": "^2.0.1" 3500 | }, 3501 | "funding": { 3502 | "url": "https://github.com/sponsors/ljharb" 3503 | } 3504 | }, 3505 | "node_modules/which-typed-array": { 3506 | "version": "1.1.9", 3507 | "resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.9.tgz", 3508 | "integrity": "sha512-w9c4xkx6mPidwp7180ckYWfMmvxpjlZuIudNtDf4N/tTAUB8VJbX25qZoAsrtGuYNnGw3pa0AXgbGKRB8/EceA==", 3509 | "dependencies": { 3510 | "available-typed-arrays": "^1.0.5", 3511 | "call-bind": "^1.0.2", 3512 | "for-each": "^0.3.3", 3513 | "gopd": "^1.0.1", 3514 | "has-tostringtag": "^1.0.0", 3515 | "is-typed-array": "^1.1.10" 3516 | }, 3517 | "engines": { 3518 | "node": ">= 0.4" 3519 | }, 3520 | "funding": { 3521 | "url": "https://github.com/sponsors/ljharb" 3522 | } 3523 | }, 3524 | "node_modules/word-wrap": { 3525 | "version": "1.2.3", 3526 | "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.3.tgz", 3527 | "integrity": "sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==", 3528 | "engines": { 3529 | "node": ">=0.10.0" 3530 | } 3531 | }, 3532 | "node_modules/wrappy": { 3533 | "version": "1.0.2", 3534 | "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", 3535 | "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==" 3536 | }, 3537 | "node_modules/yallist": { 3538 | "version": "4.0.0", 3539 | "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", 3540 | "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==" 3541 | }, 3542 | "node_modules/yocto-queue": { 3543 | "version": "0.1.0", 3544 | "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", 3545 | "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", 3546 | "engines": { 3547 | "node": ">=10" 3548 | }, 3549 | "funding": { 3550 | "url": "https://github.com/sponsors/sindresorhus" 3551 | } 3552 | } 3553 | } 3554 | } 3555 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "steam", 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 | "@types/node": "18.14.2", 13 | "@types/react": "18.0.28", 14 | "@types/react-dom": "18.0.11", 15 | "animejs": "^3.2.1", 16 | "eslint": "8.35.0", 17 | "eslint-config-next": "13.2.1", 18 | "framer-motion": "^10.0.1", 19 | "next": "13.2.1", 20 | "react": "18.2.0", 21 | "react-dom": "18.2.0", 22 | "react-icons": "^4.7.1", 23 | "sass": "^1.58.3", 24 | "typescript": "4.9.5" 25 | }, 26 | "devDependencies": { 27 | "@types/animejs": "^3.1.7" 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /pages/_app.tsx: -------------------------------------------------------------------------------- 1 | import "@/styles/globals.css"; 2 | import type { AppProps } from "next/app"; 3 | import { Poppins } from "next/font/google"; 4 | 5 | const poppins = Poppins({ weight: ["100", "200", "400", "700", "900"] }); 6 | 7 | export default function App({ Component, pageProps }: AppProps) { 8 | return ( 9 |
10 | 11 |
12 | ); 13 | } 14 | -------------------------------------------------------------------------------- /pages/_document.tsx: -------------------------------------------------------------------------------- 1 | import { Html, Head, Main, NextScript } from "next/document"; 2 | 3 | export default function Document() { 4 | return ( 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | ); 13 | } 14 | -------------------------------------------------------------------------------- /pages/index.tsx: -------------------------------------------------------------------------------- 1 | import Head from "next/head"; 2 | import { Home } from "@/components/home/Home"; 3 | 4 | export default function home() { 5 | return ( 6 | <> 7 | 8 | John Carlo Devera | Frontend Developer 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | {/* 29 | 30 | */} 31 | 32 | 33 | 34 | ); 35 | } 36 | -------------------------------------------------------------------------------- /public/John Carlo P. Devera.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcdevz-dev/portfolio-3.0/dd2a885220a2d24a94ac0f072275015b1fd2ceb3/public/John Carlo P. Devera.pdf -------------------------------------------------------------------------------- /public/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcdevz-dev/portfolio-3.0/dd2a885220a2d24a94ac0f072275015b1fd2ceb3/public/favicon.png -------------------------------------------------------------------------------- /public/jc.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcdevz-dev/portfolio-3.0/dd2a885220a2d24a94ac0f072275015b1fd2ceb3/public/jc.jpg -------------------------------------------------------------------------------- /public/project-imgs/agency-iron-crm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcdevz-dev/portfolio-3.0/dd2a885220a2d24a94ac0f072275015b1fd2ceb3/public/project-imgs/agency-iron-crm.png -------------------------------------------------------------------------------- /public/project-imgs/agency-listing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcdevz-dev/portfolio-3.0/dd2a885220a2d24a94ac0f072275015b1fd2ceb3/public/project-imgs/agency-listing.png -------------------------------------------------------------------------------- /public/project-imgs/elancerz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcdevz-dev/portfolio-3.0/dd2a885220a2d24a94ac0f072275015b1fd2ceb3/public/project-imgs/elancerz.png -------------------------------------------------------------------------------- /public/project-imgs/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcdevz-dev/portfolio-3.0/dd2a885220a2d24a94ac0f072275015b1fd2ceb3/public/project-imgs/favicon.png -------------------------------------------------------------------------------- /public/project-imgs/portfolio-00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcdevz-dev/portfolio-3.0/dd2a885220a2d24a94ac0f072275015b1fd2ceb3/public/project-imgs/portfolio-00.png -------------------------------------------------------------------------------- /public/project-imgs/portfolio-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcdevz-dev/portfolio-3.0/dd2a885220a2d24a94ac0f072275015b1fd2ceb3/public/project-imgs/portfolio-01.png -------------------------------------------------------------------------------- /public/project-imgs/wh_app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcdevz-dev/portfolio-3.0/dd2a885220a2d24a94ac0f072275015b1fd2ceb3/public/project-imgs/wh_app.png -------------------------------------------------------------------------------- /public/project-imgs/worshiphim.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcdevz-dev/portfolio-3.0/dd2a885220a2d24a94ac0f072275015b1fd2ceb3/public/project-imgs/worshiphim.png -------------------------------------------------------------------------------- /public/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcdevz-dev/portfolio-3.0/dd2a885220a2d24a94ac0f072275015b1fd2ceb3/public/screenshot.png -------------------------------------------------------------------------------- /styles/globals.css: -------------------------------------------------------------------------------- 1 | :root { 2 | font-size: 62.5%; 3 | 4 | --background: rgb(17, 17, 17); 5 | --bg-opaque: rgb(17, 17, 17, 0.25); 6 | --background-light: rgb(35, 35, 35); 7 | --background-dark: rgb(8, 8, 8); 8 | 9 | --text: rgb(235, 236, 243); 10 | --brand: #BD5FFF; 11 | 12 | --text-xs: 1.6rem; 13 | --text-sm: 1.8rem; 14 | --text-md: 2.2rem; 15 | --text-lg: 3.6rem; 16 | --text-xl: 5.6rem; 17 | --text-2xl: 9.6rem; 18 | } 19 | 20 | * { 21 | box-sizing: border-box; 22 | padding: 0; 23 | margin: 0; 24 | } 25 | 26 | *::selection { 27 | background: var(--brand); 28 | color: var(--background); 29 | } 30 | 31 | html, 32 | body { 33 | max-width: 100vw; 34 | scroll-behavior: smooth; 35 | font-size: var(--text-sm); 36 | } 37 | 38 | body { 39 | color: var(--text); 40 | background: var(--background); 41 | } 42 | 43 | a { 44 | color: inherit; 45 | text-decoration: none; 46 | } 47 | 48 | .section-wrapper { 49 | position: relative; 50 | z-index: 10; 51 | max-width: 1150px; 52 | margin: auto; 53 | padding: 9.6rem; 54 | overflow: hidden; 55 | } 56 | 57 | @media (max-width: 768px) { 58 | .section-wrapper { 59 | padding: 7.2rem 2.4rem; 60 | } 61 | } 62 | 63 | .chip { 64 | font-size: var(--text-xs); 65 | background: var(--background-light); 66 | padding: 0.2rem 0.8rem; 67 | border-radius: 999px; 68 | } 69 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "target": "es5", 4 | "lib": ["dom", "dom.iterable", "esnext"], 5 | "allowJs": true, 6 | "skipLibCheck": true, 7 | "strict": true, 8 | "forceConsistentCasingInFileNames": true, 9 | "noEmit": true, 10 | "esModuleInterop": true, 11 | "module": "esnext", 12 | "moduleResolution": "node", 13 | "resolveJsonModule": true, 14 | "isolatedModules": true, 15 | "jsx": "preserve", 16 | "incremental": true, 17 | "baseUrl": ".", 18 | "paths": { 19 | "@/*": ["./*"] 20 | }, 21 | }, 22 | "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx"], 23 | "exclude": ["node_modules"] 24 | } 25 | --------------------------------------------------------------------------------