├── .prettierrc ├── 01-05-Temel-Node-JS ├── index.js ├── index2.js ├── my-module.js ├── _package.json └── package.json ├── 02-05-nextjs-de-router ├── .eslintrc.json ├── postcss.config.js ├── public │ ├── favicon.ico │ ├── vercel.svg │ └── next.svg ├── next.config.js ├── pages │ ├── _app.tsx │ ├── _document.tsx │ ├── api │ │ └── hello.ts │ └── index.tsx ├── .gitignore ├── tailwind.config.js ├── tsconfig.json ├── styles │ └── globals.css ├── package.json ├── README.md └── package-lock.json ├── 01-07-callback-async-await ├── 01-cb-timeout.js ├── data │ ├── best-movies-2015.json │ └── best-stocks-2015.json ├── package.json ├── __asyncDelay-sample.js ├── 02-cb-setinterval.js ├── index.js ├── 03-cb-fetch.js ├── 04-cb-async-await.js └── package-lock.json ├── .vscode ├── settings.json └── extensions.json ├── 02-02-NextJS └── env_variables_ornek │ ├── .env.development │ └── .env.production ├── 01-06-ES6-Modul-Sistemi ├── index.js ├── package.json ├── my-module-part-1.js └── my-module-part-2.js ├── 01-08-axios ├── package.json ├── index.js ├── 01-axios-vs-fetch.js └── package-lock.json ├── .gitignore ├── tsconfig.json ├── README.md ├── 01-10-array-functions ├── ___map-async-sorunu-Promise-all-cozumu.ts └── 00-array-functions.js ├── package.json └── 01-09-promises ├── 00-promises_part1.js └── 01-promises_part2.js /.prettierrc: -------------------------------------------------------------------------------- 1 | { "semi": false, "singleQuote": true } 2 | -------------------------------------------------------------------------------- /01-05-Temel-Node-JS/index.js: -------------------------------------------------------------------------------- 1 | console.log("Hello world!") -------------------------------------------------------------------------------- /02-05-nextjs-de-router/.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /01-07-callback-async-await/01-cb-timeout.js: -------------------------------------------------------------------------------- 1 | setTimeout(()=>{ 2 | console.log("selam") 3 | },2000) -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "editor.formatOnSave": true, 3 | "editor.defaultFormatter": "esbenp.prettier-vscode" 4 | } 5 | -------------------------------------------------------------------------------- /01-05-Temel-Node-JS/index2.js: -------------------------------------------------------------------------------- 1 | var hello = require('./my-module.js') 2 | // import {hello} from "./my-module.js"; 3 | 4 | hello("ali"); -------------------------------------------------------------------------------- /02-02-NextJS/env_variables_ornek/.env.development: -------------------------------------------------------------------------------- 1 | API_URL='https://dev.to/api/api/articles/{id}/unpublish' 2 | NEXT_PUBLIC_API_URL='public adres' -------------------------------------------------------------------------------- /02-05-nextjs-de-router/postcss.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | plugins: { 3 | tailwindcss: {}, 4 | autoprefixer: {}, 5 | }, 6 | } 7 | -------------------------------------------------------------------------------- /02-02-NextJS/env_variables_ornek/.env.production: -------------------------------------------------------------------------------- 1 | API_URL='https://dev.to/api/api/articles/{id}/unpublish' 2 | NEXT_PUBLIC_API_URL='public adres prod için' -------------------------------------------------------------------------------- /02-05-nextjs-de-router/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trkaplan/patika-react-ders-notlari-2023-fmss-code-samples/HEAD/02-05-nextjs-de-router/public/favicon.ico -------------------------------------------------------------------------------- /02-05-nextjs-de-router/next.config.js: -------------------------------------------------------------------------------- 1 | /** @type {import('next').NextConfig} */ 2 | const nextConfig = { 3 | reactStrictMode: true, 4 | } 5 | 6 | module.exports = nextConfig 7 | -------------------------------------------------------------------------------- /02-05-nextjs-de-router/pages/_app.tsx: -------------------------------------------------------------------------------- 1 | import '@/styles/globals.css' 2 | import type { AppProps } from 'next/app' 3 | 4 | export default function App({ Component, pageProps }: AppProps) { 5 | return 6 | } 7 | -------------------------------------------------------------------------------- /01-06-ES6-Modul-Sistemi/index.js: -------------------------------------------------------------------------------- 1 | import topla from "./my-module-part-1.js"; // SORU: Peki Topla deseydik yine çalışır mıydı? 2 | // Cevap: evet çünkü default export edilmiş modül adı burada ismiyle gelmez, ismi biz tanımlarız. 3 | console.log(topla(2,3)); 4 | -------------------------------------------------------------------------------- /01-07-callback-async-await/data/best-movies-2015.json: -------------------------------------------------------------------------------- 1 | { 2 | "year": "2015", 3 | "movies": [ 4 | "It Follows", 5 | "Ex Machina", 6 | "The Revenant", 7 | "What We Do in the Shadows", 8 | "Mad Max: Fury Road" 9 | ] 10 | } -------------------------------------------------------------------------------- /01-05-Temel-Node-JS/my-module.js: -------------------------------------------------------------------------------- 1 | function hello(name){ 2 | // console.log("hello " + name); 3 | console.log(`helloss ${name}`); 4 | } 5 | //const hello = name => console.log("hello " + name) 6 | //export const hello = name => console.log("hello " + name) // parantezsiz de olur 7 | module.exports = hello 8 | -------------------------------------------------------------------------------- /01-05-Temel-Node-JS/_package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "05-temel-nodejs", 3 | "version": "1.0.0", 4 | "description": "", 5 | "main": "index.js", 6 | "type": "module", 7 | "scripts": { 8 | "test": "echo \"Error: no test specified\" && exit 1" 9 | }, 10 | "author": "", 11 | "license": "ISC" 12 | } 13 | -------------------------------------------------------------------------------- /01-06-ES6-Modul-Sistemi/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "05-temel-nodejs", 3 | "version": "1.0.0", 4 | "description": "", 5 | "main": "index.js", 6 | "type": "module", 7 | "scripts": { 8 | "test": "echo \"Error: no test specified\" && exit 1" 9 | }, 10 | "author": "", 11 | "license": "ISC" 12 | } 13 | -------------------------------------------------------------------------------- /01-05-Temel-Node-JS/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "05-temel-nodejs", 3 | "version": "1.0.0", 4 | "description": "", 5 | "main": "index.js", 6 | /* "type": "module", */ 7 | "scripts": { 8 | "test": "echo \"Error: no test specified\" && exit 1" 9 | }, 10 | "author": "", 11 | "license": "ISC" 12 | } 13 | -------------------------------------------------------------------------------- /02-05-nextjs-de-router/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 | -------------------------------------------------------------------------------- /01-08-axios/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "src", 3 | "version": "1.0.0", 4 | "description": "", 5 | "type":"module", 6 | "main": "index.js", 7 | "scripts": { 8 | "test": "echo \"Error: no test specified\" && exit 1" 9 | }, 10 | "author": "", 11 | "license": "ISC", 12 | "dependencies": { 13 | "axios": "^1.3.4" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /01-07-callback-async-await/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "src", 3 | "version": "1.0.0", 4 | "description": "", 5 | "main": "index.js", 6 | "type":"module", 7 | "scripts": { 8 | "test": "echo \"Error: no test specified\" && exit 1" 9 | }, 10 | "author": "", 11 | "license": "ISC", 12 | "dependencies": { 13 | "node-fetch": "^3.3.1" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /02-05-nextjs-de-router/pages/api/hello.ts: -------------------------------------------------------------------------------- 1 | // Next.js API route support: https://nextjs.org/docs/api-routes/introduction 2 | import type { NextApiRequest, NextApiResponse } from 'next' 3 | 4 | type Data = { 5 | name: string 6 | } 7 | 8 | export default function handler( 9 | req: NextApiRequest, 10 | res: NextApiResponse 11 | ) { 12 | res.status(200).json({ name: 'John Doe' }) 13 | } 14 | -------------------------------------------------------------------------------- /01-07-callback-async-await/__asyncDelay-sample.js: -------------------------------------------------------------------------------- 1 | function delay(ms) { 2 | return new Promise(resolve => { 3 | setTimeout(() => { 4 | resolve(`Promise resolved after ${ms} milliseconds`); 5 | }, ms); 6 | }); 7 | } 8 | 9 | async function asyncDelay(ms) { 10 | const result = await delay(ms); 11 | console.log(result); 12 | } 13 | 14 | asyncDelay(1000); // logs "Promise resolved after 1000 milliseconds" after 1 second -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- 1 | { 2 | // See https://go.microsoft.com/fwlink/?LinkId=827846 to learn about workspace recommendations. 3 | // Extension identifier format: ${publisher}.${name}. Example: vscode.csharp 4 | 5 | // List of extensions which should be recommended for users of this workspace. 6 | "recommendations": ["esbenp.prettier-vscode"], 7 | // List of extensions recommended by VS Code that should not be recommended for users of this workspace. 8 | "unwantedRecommendations": [] 9 | } 10 | -------------------------------------------------------------------------------- /01-06-ES6-Modul-Sistemi/my-module-part-1.js: -------------------------------------------------------------------------------- 1 | function topla(a,b){ 2 | return a+b; 3 | } 4 | 5 | 6 | /* Alternatif - 1 7 | const topla = function topla(a,b){ // named function 8 | return a+b; 9 | } 10 | 11 | /* Alternatif - 2 */ 12 | const topla = function(a,b){ // anonymous function 13 | return a+b; 14 | } 15 | 16 | /* Yol 3 */ 17 | // arrow function 18 | const topla = (a,b) => { 19 | return a+b; 20 | } 21 | // NOT: arrow function ile regular'ın farkı dökümanda mevcut. 22 | export default topla; 23 | 24 | -------------------------------------------------------------------------------- /01-08-axios/index.js: -------------------------------------------------------------------------------- 1 | import axios from "axios"; 2 | async function getData() { 3 | const data = await axios("https://jsonplaceholder.typicode.com/users/1") 4 | console.log("user yüklendi", data); 5 | 6 | const post1 = await axios("https://jsonplaceholder.typicode.com/posts/1") 7 | console.log("post 1 yüklendi", post1); 8 | 9 | const post2 = await axios("https://jsonplaceholder.typicode.com/posts/2") 10 | console.log("post 2 yüklendi", post2); 11 | } 12 | getData(); -------------------------------------------------------------------------------- /.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 | 27 | # local env files 28 | .env*.local 29 | 30 | # vercel 31 | .vercel 32 | 33 | # typescript 34 | *.tsbuildinfo 35 | next-env.d.ts 36 | -------------------------------------------------------------------------------- /02-05-nextjs-de-router/.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 | 27 | # local env files 28 | .env*.local 29 | 30 | # vercel 31 | .vercel 32 | 33 | # typescript 34 | *.tsbuildinfo 35 | next-env.d.ts 36 | -------------------------------------------------------------------------------- /02-05-nextjs-de-router/tailwind.config.js: -------------------------------------------------------------------------------- 1 | /** @type {import('tailwindcss').Config} */ 2 | module.exports = { 3 | content: [ 4 | './pages/**/*.{js,ts,jsx,tsx}', 5 | './components/**/*.{js,ts,jsx,tsx}', 6 | './app/**/*.{js,ts,jsx,tsx}', 7 | ], 8 | theme: { 9 | extend: { 10 | backgroundImage: { 11 | 'gradient-radial': 'radial-gradient(var(--tw-gradient-stops))', 12 | 'gradient-conic': 13 | 'conic-gradient(from 180deg at 50% 50%, var(--tw-gradient-stops))', 14 | }, 15 | }, 16 | }, 17 | plugins: [], 18 | } 19 | -------------------------------------------------------------------------------- /01-07-callback-async-await/02-cb-setinterval.js: -------------------------------------------------------------------------------- 1 | setInterval(()=>{ 2 | console.log("1sn geçti") 3 | },1000) 4 | 5 | 6 | // şimdi kendimiz bir fonk. tanımlayalım: HİGHER ORDER Function 7 | 8 | // bir methodu çalıştıran başka bir method yazalım: 9 | 10 | function runFunction(callback, interval) { 11 | console.log("runFunction çağırıldı"); 12 | setTimeout(callback, interval); 13 | } 14 | /* 15 | const logMessage = () => console.log("merhaba"); 16 | */ 17 | function logMessage2() { 18 | console.log("merhaba"); 19 | } 20 | runFunction(logMessage2, 2000); 21 | -------------------------------------------------------------------------------- /02-05-nextjs-de-router/public/vercel.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /01-07-callback-async-await/data/best-stocks-2015.json: -------------------------------------------------------------------------------- 1 | { 2 | "year": 2015, 3 | "stocks": [ 4 | { 5 | "company": "Netflix", 6 | "return": 134.4 7 | }, 8 | { 9 | "company": "Amazon.com", 10 | "return": 117.8 11 | }, 12 | { 13 | "company": "Ctrip.com International", 14 | "return": 103.6 15 | }, 16 | { 17 | "company": "Activision Blizzard", 18 | "return": 94.1 19 | }, 20 | { 21 | "company": "NVIDIA", 22 | "return": 67.1 23 | } 24 | ] 25 | } -------------------------------------------------------------------------------- /01-08-axios/01-axios-vs-fetch.js: -------------------------------------------------------------------------------- 1 | const fetch = require('node-fetch'); 2 | 3 | async function postData(query, body) { 4 | body = JSON.stringify(body); 5 | query = new URLSearchParams(query).toString(); 6 | 7 | const res = await fetch("/myendpoint?" + query, { 8 | method: "POST", 9 | headers: { 10 | "Content-Type": "application/json", 11 | }, 12 | body, 13 | }); 14 | 15 | const data = await res.json(); 16 | console.log(data); 17 | } 18 | 19 | postData({ param1: "value1", param2: "value2" }, { key1: "value1", key2: "value2" }); 20 | 21 | 22 | // bu da axios ile: 23 | // await axios.post("/myendpoint", { params: query, body }); -------------------------------------------------------------------------------- /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 | "paths": { 18 | "@/*": ["./*"] 19 | } 20 | }, 21 | "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx"], 22 | "exclude": ["node_modules"] 23 | } 24 | -------------------------------------------------------------------------------- /02-05-nextjs-de-router/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 | "paths": { 18 | "@/*": ["./*"] 19 | } 20 | }, 21 | "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx"], 22 | "exclude": ["node_modules"] 23 | } 24 | -------------------------------------------------------------------------------- /02-05-nextjs-de-router/styles/globals.css: -------------------------------------------------------------------------------- 1 | @tailwind base; 2 | @tailwind components; 3 | @tailwind utilities; 4 | 5 | :root { 6 | --foreground-rgb: 0, 0, 0; 7 | --background-start-rgb: 214, 219, 220; 8 | --background-end-rgb: 255, 255, 255; 9 | } 10 | 11 | @media (prefers-color-scheme: dark) { 12 | :root { 13 | --foreground-rgb: 255, 255, 255; 14 | --background-start-rgb: 0, 0, 0; 15 | --background-end-rgb: 0, 0, 0; 16 | } 17 | } 18 | 19 | body { 20 | color: rgb(var(--foreground-rgb)); 21 | background: linear-gradient( 22 | to bottom, 23 | transparent, 24 | rgb(var(--background-end-rgb)) 25 | ) 26 | rgb(var(--background-start-rgb)); 27 | } 28 | -------------------------------------------------------------------------------- /02-05-nextjs-de-router/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "02-05-nextjs-de-router", 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.15.11", 13 | "@types/react": "18.0.35", 14 | "@types/react-dom": "18.0.11", 15 | "autoprefixer": "10.4.14", 16 | "eslint": "8.38.0", 17 | "eslint-config-next": "13.3.0", 18 | "next": "13.3.0", 19 | "postcss": "8.4.21", 20 | "react": "18.2.0", 21 | "react-dom": "18.2.0", 22 | "tailwindcss": "3.3.1", 23 | "typescript": "5.0.4" 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # React Mart 2023 Eğitim Notları 2 | Bu notlar [FMSS React Practicum Mart 2023](https://www.patika.dev/bootcamp/fmss-bilisim-front-end-practicum) öğrencileri için kursu destekleyici amaçla hazırlanmıştır. 3 | Patika'nın [Orta Seviye Frontend Web Development Patikası](https://app.patika.dev/paths/orta-seviye-frontend-web-development-patikasi) altındaki [React dersi](https://app.patika.dev/courses/react) takip edilmiştir. 4 | 5 | Eğitmen: Tuncay Kaplan 6 | 7 | [Github](https://github.com/trkaplan) | [Linkedin](https://linkedin.com/in/trkaplan) | [Twitter](https://twitter.com/trkaplan) | [Dev.to](https://dev.to/trkaplan) 8 | 9 | # TODO 10 | Gördüğünüz hatalar ya da eksikleri PR atabilirsiniz. 11 | -------------------------------------------------------------------------------- /01-06-ES6-Modul-Sistemi/my-module-part-2.js: -------------------------------------------------------------------------------- 1 | export const topla = (a, b) => a + b; 2 | export const cikar = (a, b) => a - b; 3 | export const cikar2 = (b) => a 4 | 5 | 6 | index.js'de 7 | import { topla, cikar } from .... 8 | 9 | 'Ya da daha kısası 10 | ` 11 | const topla = (a,b) => a+b; 12 | const hello = () => console.log("hello); 13 | 14 | export {topla, hello} 15 | 16 | 17 | export const hello = (name) => console.log(name) // parantezsiz de olur 18 | 19 | export const hello = name => console.log("hello " + name) // parantezsiz de olur 20 | 21 | 22 | template literal ile yazdır. 23 | 24 | 25 | - sonra cikar fonk. ekle 26 | - diğer tarafta import etmeden burdan da export etmeden çalıştırmayı dene. 27 | - default olarak export et. importta süslü dışına çıkar 28 | - sadece function değil, string, obje de export edebilbiiz. meseal users (name, surname).. CONSTANT vs. 29 | -------------------------------------------------------------------------------- /01-10-array-functions/___map-async-sorunu-Promise-all-cozumu.ts: -------------------------------------------------------------------------------- 1 | map for each async desteklemediğinden promises.all ile kullanılıyor. 2 | 3 | const urls = ['https://example.com', 'https://google.com', 'https://yahoo.com']; 4 | 5 | const responses = urls.map(url => fetch(url)); 6 | 7 | console.log(responses); 8 | // Output: [Promise { }, Promise { }, Promise { }] 9 | 10 | responses.forEach(response => { 11 | console.log(response); 12 | // Output: Promise { } 13 | }); 14 | 15 | // We can't access the response data here because the promises are still pending 16 | 17 | 18 | 19 | // fix: 20 | 21 | const urls = ['https://example.com', 'https://google.com', 'https://yahoo.com']; 22 | 23 | Promise.all(urls.map(url => fetch(url))) 24 | .then(responses => { 25 | responses.forEach(response => console.log(response)); 26 | }) 27 | .catch(error => console.error(error)); -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "code_samples", 3 | "version": "1.0.0", 4 | "description": "Bu notlar [FMSS React Practicum Mart 2023](https://www.patika.dev/bootcamp/fmss-bilisim-front-end-practicum) öğrencileri için kursu destekleyici amaçla hazırlanmıştır. Patika'nın [Orta Seviye Frontend Web Development Patikası](https://app.patika.dev/paths/orta-seviye-frontend-web-development-patikasi) altındaki [React dersi](https://app.patika.dev/courses/react) takip edilmiştir.", 5 | "main": "index.js", 6 | "scripts": { 7 | "test": "echo \"Error: no test specified\" && exit 1" 8 | }, 9 | "repository": { 10 | "type": "git", 11 | "url": "git+https://github.com/trkaplan/patika-react-ders-notlari-2023-fmss-code-samples.git" 12 | }, 13 | "workspaces": [ 14 | "0*/*" 15 | ], 16 | "author": "", 17 | "license": "ISC", 18 | "bugs": { 19 | "url": "https://github.com/trkaplan/patika-react-ders-notlari-2023-fmss-code-samples/issues" 20 | }, 21 | "homepage": "https://github.com/trkaplan/patika-react-ders-notlari-2023-fmss-code-samples#readme" 22 | } 23 | -------------------------------------------------------------------------------- /01-07-callback-async-await/index.js: -------------------------------------------------------------------------------- 1 | import fetch from "node-fetch"; 2 | 3 | fetch("https://jsonplaceholder.typicode.com/users/1") 4 | .then((response) => response.json()) 5 | .then(function(users) { 6 | console.log(users); 7 | }) 8 | 9 | // peki birden fazla istek atmamız gerekse ve sırayla gelmesi için: 10 | /* 11 | fetch("https://jsonplaceholder.typicode.com/users/1") 12 | .then((response) => response.json()) 13 | .then(function(user) { 14 | console.log("user yüklendi", user); 15 | fetch("https://jsonplaceholder.typicode.com/posts/1") 16 | .then((response) => response.json()) 17 | .then(function(post) { 18 | console.log("post yüklendi", post); 19 | }) 20 | 21 | }) 22 | */ 23 | 24 | // alt alta yazsaydık bu sıra bozulabilirdi: 25 | 26 | /* fetch("https://jsonplaceholder.typicode.com/users/1") 27 | .then((response) => response.json()) 28 | .then(function(user) { 29 | console.log("user yüklendi", user); 30 | }) 31 | 32 | fetch("https://jsonplaceholder.typicode.com/posts/1") 33 | .then((response) => response.json()) 34 | .then(function(post) { 35 | console.log("post yüklendi", post); 36 | }) */ -------------------------------------------------------------------------------- /01-07-callback-async-await/03-cb-fetch.js: -------------------------------------------------------------------------------- 1 | 2 | // - index.js i aç. 3 | 4 | 5 | // node'da fetch yok? fetch es6 ile gelmedi mi? fetch bir web api ve browserlarla beraber geliyor? 6 | // Sıralı Çalışma 7 | fetch("top-movies-2015.json") 8 | .then((response) => response.json()) 9 | .then(function (movies) { 10 | console.log(movies); 11 | fetch("best-stocks-2015.json") 12 | .then((response) => response.json()) 13 | .then(function (stocks) { 14 | console.log(stocks); 15 | }); 16 | }) 17 | .catch((err) => console.log(err)); 18 | 19 | // Sırasız Çalışma 20 | /* console.log("ben senkron bir methodum 1") 21 | console.log("ben senkron bir methodum 2") 22 | 23 | fetch("top-movies-2015.json") 24 | .then((response) => response.json()) 25 | .then(function (movies) { 26 | console.log(movies); 27 | }); 28 | fetch("best-stocks-2015.json") 29 | .then((response) => response.json()) 30 | .then(function (stocks) { 31 | console.log(stocks); 32 | }); */ 33 | 34 | // async await 35 | async function getBestOf2015() { 36 | const movies = await fetch("top-movies-2015.json"); 37 | const stocks = await fetch("top-stocks-2015.json"); 38 | 39 | console.log(movies); 40 | console.log(stocks); 41 | } 42 | 43 | getBestOf2015(); 44 | -------------------------------------------------------------------------------- /02-05-nextjs-de-router/public/next.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /01-09-promises/00-promises_part1.js: -------------------------------------------------------------------------------- 1 | // Promises 2 | 3 | const getComments = () => { // burda yine çalışır ama resolve reject olmadığından aşağıdaki then den sonraki bitti çalışmaz! 4 | return new Promise(() => { 5 | console.log("comments called"); 6 | }); 7 | }; 8 | getComments().then(()=>console.log("bitti")); 9 | 10 | 11 | /* const getComments = () => { 12 | return new Promise((resolve, reject) => { 13 | const sampleResponse = { id: 1, text: "This is my comment." }; 14 | resolve(sampleResponse); // resolve e geçtiğin parametre sonuç olarak döner. then'İn içindeki callback'in paramına. 15 | }); 16 | }; */ 17 | 18 | 19 | /* 20 | getComments() 21 | .then((data) => console.log("comments loaded", data)) 22 | .catch((e) => console.log(e)); 23 | */ 24 | 25 | 26 | // Promise Örnek 2 27 | /* --------------------------------------------------------------------------- 28 | const getComments = (number) => { // burda artık bir de parametre ekledik promisimize. 29 | return new Promise((resolve, reject) => { 30 | if (number == 1) { 31 | const sampleResponse = { id: 1, text: "This is my comment." }; 32 | resolve(sampleResponse); 33 | } else { 34 | reject(new Error("not ok")); // düz string dönmedik, daha uygun olan bir error fırlattık, hem debug'ı kolay. 35 | } 36 | }); 37 | }; 38 | 39 | getComments() 40 | .then((data) => console.log("comments loaded", data)) 41 | .catch((e) => console.log(e)); 42 | */ 43 | 44 | // sonraki dosyadaki örnekte fetch kullancaz yani içerde artık async bir olay olacak. -------------------------------------------------------------------------------- /02-05-nextjs-de-router/README.md: -------------------------------------------------------------------------------- 1 | This is a [Next.js](https://nextjs.org/) project bootstrapped with [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packages/create-next-app). 2 | 3 | ## Getting Started 4 | 5 | First, run the development server: 6 | 7 | ```bash 8 | npm run dev 9 | # or 10 | yarn dev 11 | # or 12 | pnpm dev 13 | ``` 14 | 15 | Open [http://localhost:3000](http://localhost:3000) with your browser to see the result. 16 | 17 | You can start editing the page by modifying `pages/index.tsx`. The page auto-updates as you edit the file. 18 | 19 | [API routes](https://nextjs.org/docs/api-routes/introduction) can be accessed on [http://localhost:3000/api/hello](http://localhost:3000/api/hello). This endpoint can be edited in `pages/api/hello.ts`. 20 | 21 | The `pages/api` directory is mapped to `/api/*`. Files in this directory are treated as [API routes](https://nextjs.org/docs/api-routes/introduction) instead of React pages. 22 | 23 | This project uses [`next/font`](https://nextjs.org/docs/basic-features/font-optimization) to automatically optimize and load Inter, a custom Google Font. 24 | 25 | ## Learn More 26 | 27 | To learn more about Next.js, take a look at the following resources: 28 | 29 | - [Next.js Documentation](https://nextjs.org/docs) - learn about Next.js features and API. 30 | - [Learn Next.js](https://nextjs.org/learn) - an interactive Next.js tutorial. 31 | 32 | You can check out [the Next.js GitHub repository](https://github.com/vercel/next.js/) - your feedback and contributions are welcome! 33 | 34 | ## Deploy on Vercel 35 | 36 | The easiest way to deploy your Next.js app is to use the [Vercel Platform](https://vercel.com/new?utm_medium=default-template&filter=next.js&utm_source=create-next-app&utm_campaign=create-next-app-readme) from the creators of Next.js. 37 | 38 | Check out our [Next.js deployment documentation](https://nextjs.org/docs/deployment) for more details. 39 | -------------------------------------------------------------------------------- /01-07-callback-async-await/04-cb-async-await.js: -------------------------------------------------------------------------------- 1 | import fetch from "node-fetch"; 2 | 3 | /* async function getData() { 4 | const data = fetch("https://jsonplaceholder.typicode.com/users/1") 5 | console.log("user yüklendi", data); 6 | } 7 | getData(); */ 8 | 9 | 10 | // !!!!!! 11 | // 4.satırda awaitsiz promise döndü. sonra await ekle. 12 | // .json() ı ekle. 13 | 14 | // sonra iki fetch daha ekle: sıralama korunacak: 15 | 16 | //sonra .json'ı ekledin ama sonuç bozuldu: 17 | // 18 | async function getData() { 19 | const data = (await fetch("https://jsonplaceholder.typicode.com/users/1")).json() 20 | console.log("user yüklendi", data); 21 | 22 | const post1 = (await fetch("https://jsonplaceholder.typicode.com/posts/1")).json() 23 | console.log("post 1 yüklendi", post1); 24 | 25 | const post2 = (await fetch("https://jsonplaceholder.typicode.com/posts/2")).json() 26 | console.log("post 2 yüklendi", post2); 27 | } 28 | getData(); 29 | 30 | 31 | // çift awaitli hali: // SORU: neden böyle bir şeye ihtiyaç duyulmuş? chatgpt ye soralım: 32 | // why should I use another await to use .json() in node-fetch 33 | // why did they decide to return a promise for json() method? 34 | 35 | 36 | 37 | /* async function getData() { 38 | const data = await (await fetch("https://jsonplaceholder.typicode.com/users/1")).json() 39 | console.log("user yüklendi", data); 40 | 41 | const post1 = await ((await fetch("https://jsonplaceholder.typicode.com/posts/1"))).json() 42 | console.log("post 1 yüklendi", post1); 43 | 44 | const post2 = await ((await fetch("https://jsonplaceholder.typicode.com/posts/2"))).json() 45 | console.log("post 2 yüklendi", post2); 46 | } */ 47 | 48 | 49 | // SON: 50 | // getData(); yazmak yerine direk çağırmak isteseydik? 51 | // normalde IIFE şöyle : 52 | 53 | /* (()=>{ 54 | ... 55 | })(); 56 | buna ek olarak başına async ekliyoruz. 57 | 58 | ( async ()=>{ 59 | ... 60 | })(); */ -------------------------------------------------------------------------------- /01-10-array-functions/00-array-functions.js: -------------------------------------------------------------------------------- 1 | // JavaScript Array Methods 2 | // https://www.javatpoint.com/es6-array-methods 3 | const users = [ 4 | { id: 1, name: "User 1", age: 20, city: "Helsinki" }, 5 | { id: 2, name: "User 2", age: 30, city: "Tokio" }, 6 | { id: 3, name: "User 3", age: 40, city: "Berlin" }, 7 | { id: 4, name: "User 4", age: 40, city: "Moscow" }, 8 | { id: 5, name: "User 5", age: 50, city: "Moscow" }, 9 | ]; 10 | 11 | /* array methodları: 12 | push 13 | forEach 14 | map 15 | filter 16 | find 17 | some 18 | every 19 | includes 20 | */ 21 | 22 | // push 23 | //------------------------------------------------------------------ 24 | 25 | users.push({ id: 4, name: "User 4" }); 26 | console.log(users); 27 | 28 | // forEach 29 | // map ile farkı: Running a function for each element in an array without returning a value 30 | //------------------------------------------------------------------ 31 | const logNames = (users) => { 32 | users.forEach((user) => { 33 | console.log(user.name); 34 | }); 35 | }; 36 | 37 | // map 38 | //------------------------------------------------------------------ 39 | const userIds = users.map((user) => user.id); 40 | // map ile async bir işlem yapmak isterseniz örnek: 41 | https://medium.com/@nyablk97/array-map-async-await-160b66f7180e 42 | 43 | 44 | // map'e alternatif kullanım: 45 | // imperative yol. sayılarla çalışırken ağır hesaplamalar yaparken vs performans açısından... 46 | //------------------------------------------------------------------ 47 | let result1=[]; 48 | for (let i=0; i user.age === 40 && user.city === "Moscow" 56 | //bunu kısaltalım? 57 | ); 58 | 59 | // find 60 | //------------------------------------------------------------------ 61 | const result = users.find((user) => user.age === 40); 62 | 63 | // some 64 | //------------------------------------------------------------------ 65 | const result = users.some((user) => user.age === 60); 66 | // const rowsFiltered = arr.length ? arr.some(({ rowsWithButton }) => !rowsWithButton.includes(item)) : rowsWithButton 67 | // every 68 | //------------------------------------------------------------------ 69 | const result = users.every((user) => user.age === 40); 70 | 71 | // includes 72 | //------------------------------------------------------------------ 73 | const letters = ["A", "B", "C"]; 74 | const hasLetterA = letters.includes("A"); 75 | -------------------------------------------------------------------------------- /01-09-promises/01-promises_part2.js: -------------------------------------------------------------------------------- 1 | // Promise Örnek 3 2 | // --------------------------------------------------------------------------- 3 | 4 | import axios from "axios"; 5 | const getUsers = () => { 6 | return new Promise(async (resolve, reject) => { // ⚠️ async eklemeyi unutma! callback in başına. 7 | const { data } = await axios("https://jsonplaceholder.typicode.com/users"); 8 | resolve(data); 9 | }); 10 | }; 11 | 12 | getUsers() 13 | .then((data) => console.log("comments loaded", data)) 14 | .catch((e) => console.log(e)); 15 | 16 | // Promise Örnek 4 17 | // --------------------------------------------------------------------------- 18 | 19 | // import axios from "axios"; 20 | /* const getPost = (id) => { 21 | return new Promise(async (resolve, reject) => { 22 | const { data } = await axios( 23 | "https://jsonplaceholder.typicode.com/posts/" + id 24 | ); 25 | resolve(data); 26 | }); 27 | }; 28 | 29 | getPost(1) 30 | .then((data) => console.log("post loaded:", data)) 31 | .catch((e) => console.log(e)); */ 32 | 33 | 34 | // Promise Örnek 5 35 | // örnek 3 ve 4 aynı kod içinde çalıştırıldığında sonuçlar sıralı olarak dönmez, bunu sıralı yapalım: 36 | // --------------------------------------------------------------------------- 37 | /* 38 | // yani şu iki çağrı: 39 | getUsers() 40 | .then((data) => console.log("comments loaded", data)) 41 | .catch((e) => console.log(e)); 42 | 43 | getPost(1) 44 | .then((data) => console.log("post loaded:", data)) 45 | .catch((e) => console.log(e)); 46 | 47 | // şu şekilde: 48 | async function test1() { 49 | await getUsers() 50 | .then((data) => console.log("comments loaded", data)) 51 | .catch((e) => console.log(e)); 52 | 53 | await getPost(1) 54 | .then((data) => console.log("post loaded:", data)) 55 | .catch((e) => console.log(e)); 56 | } 57 | test1(); 58 | //datayı birer değişkene atayarak kullanalım: 59 | 60 | (async () => { 61 | const users = await getUsers(true); 62 | const posts = await getPost(1); 63 | console.log(users); 64 | console.log(posts); 65 | })(); 66 | 67 | //hata yakalayalım: 68 | // -------------------------------------------------------------------- 69 | 70 | const getUsers = (isRejected) => { 71 | return new Promise(async (resolve, reject) => { 72 | if (isRejected) { 73 | reject("getUsers rejected!"); 74 | } else { 75 | const { data } = await axios( 76 | "https://jsonplaceholder.typicode.com/users" 77 | ); 78 | resolve(data); 79 | } 80 | }); 81 | }; 82 | 83 | (async () => { 84 | try { 85 | const users = await getUsers(true); // ilk promise fail olunca direk cath e giriyor alt satır çalışmıyor. 86 | const posts = await getPost(1); 87 | console.log(users); 88 | console.log(posts); 89 | } catch (e) { 90 | console.log(e); 91 | } 92 | })(); 93 | 94 | //Promise.all ile sırasını önemsemeden birlikte çağırma 95 | 96 | Promise.all([getUsers(), getPost(1)]) 97 | .then(console.log) 98 | .catch(console.log); 99 | 100 | //BONUS SORU 101 | // peki bu promiselerden biri fail olsa da diğerinden gelen dataya ulaşmak istersem? 102 | chatgpt: 103 | bir promise.all içindeki promise'lerden birisi fail olsa bile diğerinin sonucuna nasıl erişirim? 104 | -------------------------------------------------------------------------------- /01-07-callback-async-await/package-lock.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "src", 3 | "version": "1.0.0", 4 | "lockfileVersion": 3, 5 | "requires": true, 6 | "packages": { 7 | "": { 8 | "name": "src", 9 | "version": "1.0.0", 10 | "license": "ISC", 11 | "dependencies": { 12 | "node-fetch": "^3.3.1" 13 | } 14 | }, 15 | "node_modules/data-uri-to-buffer": { 16 | "version": "4.0.1", 17 | "resolved": "https://registry.npmjs.org/data-uri-to-buffer/-/data-uri-to-buffer-4.0.1.tgz", 18 | "integrity": "sha512-0R9ikRb668HB7QDxT1vkpuUBtqc53YyAwMwGeUFKRojY/NWKvdZ+9UYtRfGmhqNbRkTSVpMbmyhXipFFv2cb/A==", 19 | "engines": { 20 | "node": ">= 12" 21 | } 22 | }, 23 | "node_modules/fetch-blob": { 24 | "version": "3.2.0", 25 | "resolved": "https://registry.npmjs.org/fetch-blob/-/fetch-blob-3.2.0.tgz", 26 | "integrity": "sha512-7yAQpD2UMJzLi1Dqv7qFYnPbaPx7ZfFK6PiIxQ4PfkGPyNyl2Ugx+a/umUonmKqjhM4DnfbMvdX6otXq83soQQ==", 27 | "funding": [ 28 | { 29 | "type": "github", 30 | "url": "https://github.com/sponsors/jimmywarting" 31 | }, 32 | { 33 | "type": "paypal", 34 | "url": "https://paypal.me/jimmywarting" 35 | } 36 | ], 37 | "dependencies": { 38 | "node-domexception": "^1.0.0", 39 | "web-streams-polyfill": "^3.0.3" 40 | }, 41 | "engines": { 42 | "node": "^12.20 || >= 14.13" 43 | } 44 | }, 45 | "node_modules/formdata-polyfill": { 46 | "version": "4.0.10", 47 | "resolved": "https://registry.npmjs.org/formdata-polyfill/-/formdata-polyfill-4.0.10.tgz", 48 | "integrity": "sha512-buewHzMvYL29jdeQTVILecSaZKnt/RJWjoZCF5OW60Z67/GmSLBkOFM7qh1PI3zFNtJbaZL5eQu1vLfazOwj4g==", 49 | "dependencies": { 50 | "fetch-blob": "^3.1.2" 51 | }, 52 | "engines": { 53 | "node": ">=12.20.0" 54 | } 55 | }, 56 | "node_modules/node-domexception": { 57 | "version": "1.0.0", 58 | "resolved": "https://registry.npmjs.org/node-domexception/-/node-domexception-1.0.0.tgz", 59 | "integrity": "sha512-/jKZoMpw0F8GRwl4/eLROPA3cfcXtLApP0QzLmUT/HuPCZWyB7IY9ZrMeKw2O/nFIqPQB3PVM9aYm0F312AXDQ==", 60 | "funding": [ 61 | { 62 | "type": "github", 63 | "url": "https://github.com/sponsors/jimmywarting" 64 | }, 65 | { 66 | "type": "github", 67 | "url": "https://paypal.me/jimmywarting" 68 | } 69 | ], 70 | "engines": { 71 | "node": ">=10.5.0" 72 | } 73 | }, 74 | "node_modules/node-fetch": { 75 | "version": "3.3.1", 76 | "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-3.3.1.tgz", 77 | "integrity": "sha512-cRVc/kyto/7E5shrWca1Wsea4y6tL9iYJE5FBCius3JQfb/4P4I295PfhgbJQBLTx6lATE4z+wK0rPM4VS2uow==", 78 | "dependencies": { 79 | "data-uri-to-buffer": "^4.0.0", 80 | "fetch-blob": "^3.1.4", 81 | "formdata-polyfill": "^4.0.10" 82 | }, 83 | "engines": { 84 | "node": "^12.20.0 || ^14.13.1 || >=16.0.0" 85 | }, 86 | "funding": { 87 | "type": "opencollective", 88 | "url": "https://opencollective.com/node-fetch" 89 | } 90 | }, 91 | "node_modules/web-streams-polyfill": { 92 | "version": "3.2.1", 93 | "resolved": "https://registry.npmjs.org/web-streams-polyfill/-/web-streams-polyfill-3.2.1.tgz", 94 | "integrity": "sha512-e0MO3wdXWKrLbL0DgGnUV7WHVuw9OUvL4hjgnPkIeEvESk74gAITi5G606JtZPp39cd8HA9VQzCIvA49LpPN5Q==", 95 | "engines": { 96 | "node": ">= 8" 97 | } 98 | } 99 | } 100 | } 101 | -------------------------------------------------------------------------------- /01-08-axios/package-lock.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "src", 3 | "version": "1.0.0", 4 | "lockfileVersion": 3, 5 | "requires": true, 6 | "packages": { 7 | "": { 8 | "name": "src", 9 | "version": "1.0.0", 10 | "license": "ISC", 11 | "dependencies": { 12 | "axios": "^1.3.4" 13 | } 14 | }, 15 | "node_modules/asynckit": { 16 | "version": "0.4.0", 17 | "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", 18 | "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==" 19 | }, 20 | "node_modules/axios": { 21 | "version": "1.3.4", 22 | "resolved": "https://registry.npmjs.org/axios/-/axios-1.3.4.tgz", 23 | "integrity": "sha512-toYm+Bsyl6VC5wSkfkbbNB6ROv7KY93PEBBL6xyDczaIHasAiv4wPqQ/c4RjoQzipxRD2W5g21cOqQulZ7rHwQ==", 24 | "dependencies": { 25 | "follow-redirects": "^1.15.0", 26 | "form-data": "^4.0.0", 27 | "proxy-from-env": "^1.1.0" 28 | } 29 | }, 30 | "node_modules/combined-stream": { 31 | "version": "1.0.8", 32 | "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", 33 | "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", 34 | "dependencies": { 35 | "delayed-stream": "~1.0.0" 36 | }, 37 | "engines": { 38 | "node": ">= 0.8" 39 | } 40 | }, 41 | "node_modules/delayed-stream": { 42 | "version": "1.0.0", 43 | "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", 44 | "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==", 45 | "engines": { 46 | "node": ">=0.4.0" 47 | } 48 | }, 49 | "node_modules/follow-redirects": { 50 | "version": "1.15.2", 51 | "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.2.tgz", 52 | "integrity": "sha512-VQLG33o04KaQ8uYi2tVNbdrWp1QWxNNea+nmIB4EVM28v0hmP17z7aG1+wAkNzVq4KeXTq3221ye5qTJP91JwA==", 53 | "funding": [ 54 | { 55 | "type": "individual", 56 | "url": "https://github.com/sponsors/RubenVerborgh" 57 | } 58 | ], 59 | "engines": { 60 | "node": ">=4.0" 61 | }, 62 | "peerDependenciesMeta": { 63 | "debug": { 64 | "optional": true 65 | } 66 | } 67 | }, 68 | "node_modules/form-data": { 69 | "version": "4.0.0", 70 | "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.0.tgz", 71 | "integrity": "sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==", 72 | "dependencies": { 73 | "asynckit": "^0.4.0", 74 | "combined-stream": "^1.0.8", 75 | "mime-types": "^2.1.12" 76 | }, 77 | "engines": { 78 | "node": ">= 6" 79 | } 80 | }, 81 | "node_modules/mime-db": { 82 | "version": "1.52.0", 83 | "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", 84 | "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", 85 | "engines": { 86 | "node": ">= 0.6" 87 | } 88 | }, 89 | "node_modules/mime-types": { 90 | "version": "2.1.35", 91 | "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", 92 | "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", 93 | "dependencies": { 94 | "mime-db": "1.52.0" 95 | }, 96 | "engines": { 97 | "node": ">= 0.6" 98 | } 99 | }, 100 | "node_modules/proxy-from-env": { 101 | "version": "1.1.0", 102 | "resolved": "https://registry.npmjs.org/proxy-from-env/-/proxy-from-env-1.1.0.tgz", 103 | "integrity": "sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==" 104 | } 105 | } 106 | } 107 | -------------------------------------------------------------------------------- /02-05-nextjs-de-router/pages/index.tsx: -------------------------------------------------------------------------------- 1 | import Image from 'next/image' 2 | import { Inter } from 'next/font/google' 3 | 4 | const inter = Inter({ subsets: ['latin'] }) 5 | 6 | export default function Home() { 7 | return ( 8 |
9 |
10 |

11 | Get started by editing  12 | pages/index.tsx 13 |

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