├── .github ├── cover.svg └── logo.png ├── .gitignore ├── LICENSE.md ├── README.md ├── next.config.js ├── package-lock.json ├── package.json ├── postcss.config.js ├── public ├── favicon.ico ├── hora.html ├── horaAtual.html ├── next.svg ├── thirteen.svg └── vercel.svg ├── src ├── components │ ├── examples │ │ ├── Basico.tsx │ │ ├── Evento.tsx │ │ ├── contexto │ │ │ ├── Alterar.tsx │ │ │ └── Exibir.tsx │ │ ├── direta │ │ │ ├── Filho.tsx │ │ │ └── Pai.tsx │ │ ├── estado │ │ │ ├── Formulario.tsx │ │ │ └── Minimo.tsx │ │ ├── filhos │ │ │ ├── Caixa.tsx │ │ │ └── Grade.tsx │ │ └── indireta │ │ │ ├── Botoes.tsx │ │ │ └── Painel.tsx │ ├── layout │ │ └── Linha.tsx │ └── template │ │ ├── Menu.tsx │ │ ├── MenuItem.tsx │ │ └── Pagina.tsx ├── data │ └── contexts │ │ └── ContadorContexto.tsx ├── pages │ ├── _app.tsx │ ├── _document.tsx │ ├── api │ │ ├── hora.ts │ │ ├── promocoes.ts │ │ ├── tabela.ts │ │ └── usuarios.ts │ ├── examples │ │ ├── basico.tsx │ │ ├── contexto.tsx │ │ ├── direta.tsx │ │ ├── estado.tsx │ │ ├── evento.tsx │ │ ├── filhos.tsx │ │ ├── indireta.tsx │ │ ├── promocoes.tsx │ │ └── simples.tsx │ └── index.tsx └── styles │ ├── components.css │ └── globals.css ├── tailwind.config.js └── tsconfig.json /.github/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/transformacaodev/fundamentos/12944c2993ccc8e0b3668f12c4f526892d24442b/.github/logo.png -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # See https://help.github.com/articles/ignoring-files/ for more about ignoring files. 2 | 3 | # dependencies 4 | /node_modules 5 | /.pnp 6 | .pnp.js 7 | 8 | # testing 9 | /coverage 10 | 11 | # next.js 12 | /.next/ 13 | /out/ 14 | 15 | # production 16 | /build 17 | 18 | # misc 19 | .DS_Store 20 | *.pem 21 | 22 | # debug 23 | npm-debug.log* 24 | yarn-debug.log* 25 | yarn-error.log* 26 | .pnpm-debug.log* 27 | 28 | # local env files 29 | .env*.local 30 | 31 | # vercel 32 | .vercel 33 | 34 | # typescript 35 | *.tsbuildinfo 36 | next-env.d.ts 37 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2023 Cod3r 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: 6 | 7 | The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 8 | 9 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 |

2 | Logo 3 |

4 | 5 |

6 | Semana Transformação.DEV #01 7 | License 8 |

9 | 10 |

11 | Fundamentos 12 |

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

Componente Básico

5 |
6 | ) 7 | } -------------------------------------------------------------------------------- /src/components/examples/Evento.tsx: -------------------------------------------------------------------------------- 1 | import { IconMinus, IconPlus } from "@tabler/icons-react" 2 | import { useState } from "react" 3 | 4 | export default function Evento() { 5 | const [valor, setValor] = useState(0) 6 | 7 | function incrementar() { 8 | setValor(valor + 1) 9 | } 10 | 11 | function decrementar() { 12 | setValor(valor - 1) 13 | } 14 | 15 | return ( 16 |
17 | Valor: {valor} 18 |
19 | 22 | 25 |
26 |
27 | ) 28 | } -------------------------------------------------------------------------------- /src/components/examples/contexto/Alterar.tsx: -------------------------------------------------------------------------------- 1 | import ContadorContexto from '@/data/contexts/ContadorContexto' 2 | import { useContext } from 'react' 3 | 4 | export default function Alterar() { 5 | const { inc, dec } = useContext(ContadorContexto) 6 | 7 | return ( 8 |
9 | 10 | 11 |
12 | ) 13 | } 14 | -------------------------------------------------------------------------------- /src/components/examples/contexto/Exibir.tsx: -------------------------------------------------------------------------------- 1 | import ContadorContexto from "@/data/contexts/ContadorContexto" 2 | import { useContext } from "react" 3 | 4 | export default function Exibir() { 5 | 6 | const ctx = useContext(ContadorContexto) 7 | 8 | return ( 9 |
10 | {ctx.numero} 11 |
12 | ) 13 | } -------------------------------------------------------------------------------- /src/components/examples/direta/Filho.tsx: -------------------------------------------------------------------------------- 1 | export interface FilhoProps { 2 | nome: string 3 | sobrenome: string 4 | } 5 | 6 | export default function Filho(props: FilhoProps) { 7 | return ( 8 |
  • 9 | {props.nome} {props.sobrenome} 10 |
  • 11 | ) 12 | } 13 | -------------------------------------------------------------------------------- /src/components/examples/direta/Pai.tsx: -------------------------------------------------------------------------------- 1 | import Filho from './Filho' 2 | 3 | export interface PaiProps { 4 | nome: string 5 | sobrenome: string 6 | } 7 | 8 | export default function Pai(props: PaiProps) { 9 | return ( 10 |
    11 |

    12 | {props.nome} {props.sobrenome} 13 |

    14 | 20 |
    21 | ) 22 | } 23 | -------------------------------------------------------------------------------- /src/components/examples/estado/Formulario.tsx: -------------------------------------------------------------------------------- 1 | import { useState } from 'react' 2 | 3 | interface Produto { 4 | nome: string 5 | preco: number 6 | desconto: number 7 | } 8 | 9 | export default function Formulario() { 10 | const [produto, alterarProduto] = useState({ 11 | nome: '', 12 | preco: 0, 13 | desconto: 0 14 | }) 15 | 16 | return ( 17 |
    18 | Exemplo Formulário 19 |
    20 | Nome: 21 | { 26 | alterarProduto({ 27 | ...produto, 28 | nome: e.target.value 29 | }) 30 | }} 31 | /> 32 |
    33 |
    34 | Preço: 35 | { 42 | alterarProduto({ 43 | ...produto, 44 | preco: +e.target.value 45 | }) 46 | }} 47 | /> 48 |
    49 |
    50 | Preço: 51 | { 59 | alterarProduto({ 60 | ...produto, 61 | desconto: +e.target.value 62 | }) 63 | }} 64 | /> 65 |
    66 | 67 |
    68 | {JSON.stringify(produto)} 69 | {produto.nome} 70 | R$ {produto.preco} 71 | R$ {produto.desconto} 72 | R$ {produto.preco * (1 - produto.desconto)} 73 |
    74 |
    75 | ) 76 | } 77 | -------------------------------------------------------------------------------- /src/components/examples/estado/Minimo.tsx: -------------------------------------------------------------------------------- 1 | import { useState } from "react" 2 | 3 | export default function Minimo() { 4 | const [valor, setValor] = useState('') 5 | 6 | return ( 7 |
    8 | Exemplo Estado Mínimo 9 | { 14 | setValor(e.target.value) 15 | }} 16 | /> 17 |
    18 | ) 19 | } -------------------------------------------------------------------------------- /src/components/examples/filhos/Caixa.tsx: -------------------------------------------------------------------------------- 1 | export default function Caixa(props: any) { 2 | return ( 3 |
    7 | {props.children} 8 |
    9 | ) 10 | } -------------------------------------------------------------------------------- /src/components/examples/filhos/Grade.tsx: -------------------------------------------------------------------------------- 1 | export default function Grade(props: any) { 2 | return ( 3 |
    6 | {props.children} 7 |
    8 | ) 9 | } -------------------------------------------------------------------------------- /src/components/examples/indireta/Botoes.tsx: -------------------------------------------------------------------------------- 1 | export interface BotoesProps { 2 | mudarValor: (novo: string) => void 3 | } 4 | 5 | export default function Botoes(props: BotoesProps) { 6 | return ( 7 |
    8 | 11 | 14 | 17 | 20 |
    21 | ) 22 | } 23 | -------------------------------------------------------------------------------- /src/components/examples/indireta/Painel.tsx: -------------------------------------------------------------------------------- 1 | import { useState } from "react"; 2 | import Botoes from "./Botoes"; 3 | 4 | export default function Painel() { 5 | const [nome, setNome] = useState('Inicial') 6 | 7 | function mudarValor(novo: string) { 8 | console.log(novo) 9 | setNome(novo) 10 | } 11 | 12 | return ( 13 |
    14 |

    {nome}

    15 | 16 |
    17 | ) 18 | } -------------------------------------------------------------------------------- /src/components/layout/Linha.tsx: -------------------------------------------------------------------------------- 1 | export interface LinhaProps { 2 | children: any 3 | } 4 | 5 | export default function Linha(props: LinhaProps) { 6 | return ( 7 |
    8 | {props.children} 9 |
    10 | ) 11 | } -------------------------------------------------------------------------------- /src/components/template/Menu.tsx: -------------------------------------------------------------------------------- 1 | export default function Menu(props: any) { 2 | return ( 3 |
    4 | {props.children} 5 |
    6 | ) 7 | } -------------------------------------------------------------------------------- /src/components/template/MenuItem.tsx: -------------------------------------------------------------------------------- 1 | import Link from "next/link"; 2 | import React from "react"; 3 | 4 | interface MenuItemProps { 5 | url: string 6 | icone: any 7 | children: any 8 | className?: string 9 | } 10 | 11 | export default function MenuItem(props: MenuItemProps) { 12 | return ( 13 | 14 |
    18 |
    24 | {props.icone && React.cloneElement(props.icone, { 25 | size: 70, 26 | strokeWidth: 1, 27 | })} 28 |
    29 |
    {props.children}
    30 |
    31 | 32 | ) 33 | } -------------------------------------------------------------------------------- /src/components/template/Pagina.tsx: -------------------------------------------------------------------------------- 1 | export default function Pagina(props: any) { 2 | return ( 3 |
    9 |
    13 | {props.children} 14 |
    15 |
    16 | ) 17 | } -------------------------------------------------------------------------------- /src/data/contexts/ContadorContexto.tsx: -------------------------------------------------------------------------------- 1 | import { createContext, useState } from 'react' 2 | 3 | interface ContadorContextoProps { 4 | numero: number 5 | inc: () => void 6 | dec: () => void 7 | } 8 | 9 | const ContadorContexto = createContext({ 10 | numero: 0, 11 | inc: () => {}, 12 | dec: () => {}, 13 | }) 14 | 15 | export function ContadorProvedor(props: any) { 16 | const [numero, setNumero] = useState(10) 17 | 18 | const inc = () => setNumero(numero + 1) 19 | const dec = () => setNumero(numero - 1) 20 | 21 | return ( 22 | 29 | {props.children} 30 | 31 | ) 32 | } 33 | 34 | export default ContadorContexto 35 | -------------------------------------------------------------------------------- /src/pages/_app.tsx: -------------------------------------------------------------------------------- 1 | import { ContadorProvedor } from '@/data/contexts/ContadorContexto' 2 | import '@/styles/globals.css' 3 | import type { AppProps } from 'next/app' 4 | 5 | export default function App({ Component, pageProps }: AppProps) { 6 | return ( 7 | 8 | 9 | 10 | ) 11 | } 12 | -------------------------------------------------------------------------------- /src/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 | -------------------------------------------------------------------------------- /src/pages/api/hora.ts: -------------------------------------------------------------------------------- 1 | import type { NextApiRequest, NextApiResponse } from 'next' 2 | 3 | export default function handler( 4 | req: NextApiRequest, 5 | res: NextApiResponse 6 | ) { 7 | res.status(200).send(` 8 | 9 | 10 | 17 | 18 | 19 | Hora certa: 20 | ${new Date().toLocaleTimeString('pt-BR')} 21 | 22 | 23 | `) 24 | } -------------------------------------------------------------------------------- /src/pages/api/promocoes.ts: -------------------------------------------------------------------------------- 1 | import type { NextApiRequest, NextApiResponse } from 'next' 2 | 3 | export default function handler(req: NextApiRequest, res: NextApiResponse) { 4 | // Simulando uma demora de 6 segundos 5 | const demora = 6000 6 | const inicio = Date.now() 7 | while (Date.now() - inicio < demora) {} 8 | 9 | res.status(200).json([ 10 | { id: 1, nome: 'Caneta', preco: 7.59 }, 11 | { id: 2, nome: 'Lápis', preco: 3.81 }, 12 | { id: 3, nome: 'Caderno', preco: 18.3 }, 13 | ]) 14 | } 15 | -------------------------------------------------------------------------------- /src/pages/api/tabela.ts: -------------------------------------------------------------------------------- 1 | import type { NextApiRequest, NextApiResponse } from 'next' 2 | 3 | // http://localhost:3000/api/tabela?colunas=6&linhas=4 4 | 5 | export default function handler(req: NextApiRequest, res: NextApiResponse) { 6 | const colunas = +(req.query.colunas || 10) 7 | const linhas = +(req.query.linhas || 10) 8 | 9 | res.status(200).send(` 10 | 11 | 12 | 13 | 25 | 26 | 27 | 28 | ${linhasEColunas(colunas, linhas)} 29 |
    30 | 31 | 32 | `) 33 | } 34 | 35 | function linhasEColunas(colunas: number, linhas: number) { 36 | let html = '' 37 | for (let l = 0; l < linhas; l++) { 38 | html += '' 39 | for (let c = 0; c < colunas; c++) { 40 | html += `${l + 1}x${c + 1}` 41 | } 42 | html += '' 43 | } 44 | return html 45 | } -------------------------------------------------------------------------------- /src/pages/api/usuarios.ts: -------------------------------------------------------------------------------- 1 | // Next.js API route support: https://nextjs.org/docs/api-routes/introduction 2 | import type { NextApiRequest, NextApiResponse } from 'next' 3 | 4 | export default function handler( 5 | req: NextApiRequest, 6 | res: NextApiResponse 7 | ) { 8 | res.status(200).json([ 9 | { nome: 'João', email: 'jjjoao@gmail.com' }, 10 | { nome: 'Maria', email: 'mmmaria@gmail.com' } 11 | ]) 12 | } 13 | -------------------------------------------------------------------------------- /src/pages/examples/basico.tsx: -------------------------------------------------------------------------------- 1 | import Basico from "@/components/examples/Basico"; 2 | import Pagina from "@/components/template/Pagina"; 3 | 4 | export default function PaginaBasico() { 5 | return ( 6 | 7 | 8 | 9 | ) 10 | } -------------------------------------------------------------------------------- /src/pages/examples/contexto.tsx: -------------------------------------------------------------------------------- 1 | import Alterar from '@/components/examples/contexto/Alterar' 2 | import Exibir from '@/components/examples/contexto/Exibir' 3 | import Pagina from '@/components/template/Pagina' 4 | 5 | export default function PaginaEvento() { 6 | return ( 7 | 8 |
    9 | 10 | 11 |
    12 |
    13 | ) 14 | } 15 | -------------------------------------------------------------------------------- /src/pages/examples/direta.tsx: -------------------------------------------------------------------------------- 1 | import Pai from "@/components/examples/direta/Pai"; 2 | import Pagina from "@/components/template/Pagina"; 3 | 4 | export default function PaginaDireta() { 5 | return ( 6 | 7 | 8 | 9 | ) 10 | } -------------------------------------------------------------------------------- /src/pages/examples/estado.tsx: -------------------------------------------------------------------------------- 1 | import Formulario from "@/components/examples/estado/Formulario"; 2 | import Minimo from "@/components/examples/estado/Minimo"; 3 | import Pagina from "@/components/template/Pagina"; 4 | 5 | export default function PaginaEstado() { 6 | return ( 7 | 8 |
    9 | 10 | 11 |
    12 |
    13 | ) 14 | } -------------------------------------------------------------------------------- /src/pages/examples/evento.tsx: -------------------------------------------------------------------------------- 1 | import Evento from "@/components/examples/Evento"; 2 | import Pagina from "@/components/template/Pagina"; 3 | 4 | export default function PaginaEvento() { 5 | return ( 6 | 7 | 8 | 9 | ) 10 | } -------------------------------------------------------------------------------- /src/pages/examples/filhos.tsx: -------------------------------------------------------------------------------- 1 | import Caixa from "@/components/examples/filhos/Caixa"; 2 | import Grade from "@/components/examples/filhos/Grade"; 3 | import Pagina from "@/components/template/Pagina"; 4 | 5 | export default function PaginaFilhos() { 6 | return ( 7 | 8 | 9 | #1 10 | #2 11 | #3 12 | #4 13 | #5 14 | #6 15 | #7 16 | #8 17 | 18 | # 19 | 9 20 | 21 | 22 | 23 | ) 24 | } -------------------------------------------------------------------------------- /src/pages/examples/indireta.tsx: -------------------------------------------------------------------------------- 1 | import Painel from "@/components/examples/indireta/Painel"; 2 | import Pagina from "@/components/template/Pagina"; 3 | 4 | export default function PaginaDireta() { 5 | return ( 6 | 7 | 8 | 9 | ) 10 | } -------------------------------------------------------------------------------- /src/pages/examples/promocoes.tsx: -------------------------------------------------------------------------------- 1 | import Pagina from '@/components/template/Pagina' 2 | 3 | export async function getStaticProps() { 4 | const url = 'http://localhost:3000/api/promocoes' 5 | const resp = await fetch(url) 6 | const promocoes = await resp.json() 7 | 8 | const data = new Date().toLocaleTimeString('pt-BR') 9 | return { 10 | props: { abc: 123, data, promocoes }, 11 | revalidate: 30, // 30 segundos 12 | } 13 | } 14 | 15 | export default function PaginaDireta(props: any) { 16 | return ( 17 | 18 |
    19 | {props.data} 20 |
      21 | {props.promocoes?.map((prod: any) => { 22 | return ( 23 |
    • 24 | {prod.nome} - {prod.preco} 25 |
    • 26 | ) 27 | })} 28 |
    29 |
    30 |
    31 | ) 32 | } 33 | -------------------------------------------------------------------------------- /src/pages/examples/simples.tsx: -------------------------------------------------------------------------------- 1 | export default function Simples() { 2 | return "Componente Simples" 3 | } -------------------------------------------------------------------------------- /src/pages/index.tsx: -------------------------------------------------------------------------------- 1 | import Linha from '@/components/layout/Linha' 2 | import Menu from '@/components/template/Menu' 3 | import MenuItem from '@/components/template/MenuItem' 4 | import Pagina from '@/components/template/Pagina' 5 | import { 6 | IconArrowMoveDown, 7 | IconArrowMoveUp, 8 | IconArrowsDiff, 9 | IconClick, 10 | IconClock, 11 | IconComponents, 12 | IconDatabase, 13 | IconH1, 14 | IconNumbers, 15 | IconRotate2, 16 | IconSitemap, 17 | IconSourceCode, 18 | IconTable, 19 | } from '@tabler/icons-react' 20 | 21 | export default function Home() { 22 | return ( 23 | 24 | 25 | 26 | } 28 | url="/hora.html" 29 | className="bg-gradient-to-r from-red-500 to-yellow-500" 30 | > 31 | Hora (Estático) 32 | 33 | } 35 | url="/horaAtual.html" 36 | className="bg-gradient-to-r from-red-500 to-yellow-500" 37 | > 38 | Hora com JS (Estático) 39 | 40 | } 42 | url="/api/hora" 43 | className="bg-gradient-to-r from-red-500 to-yellow-500" 44 | > 45 | Hora (Dinâmico) 46 | 47 | } 49 | url="/api/tabela?colunas=5&linhas=7" 50 | className="bg-gradient-to-r from-red-500 to-yellow-500" 51 | > 52 | Tabela (Dinâmico) 53 | 54 | } 56 | url="/api/usuarios" 57 | className="bg-gradient-to-r from-red-500 to-yellow-500" 58 | > 59 | API de Usuários 60 | 61 | 62 | 63 | } 65 | url="/examples/simples" 66 | className="bg-gradient-to-r from-cyan-500 to-red-500" 67 | > 68 | Componente Simples 69 | 70 | } 72 | url="/examples/basico" 73 | className="bg-gradient-to-r from-cyan-500 to-red-500" 74 | > 75 | Componente Básico 76 | 77 | } 79 | url="/examples/evento" 80 | className="bg-gradient-to-r from-cyan-500 to-red-500" 81 | > 82 | Eventos 83 | 84 | } 86 | url="/examples/filhos" 87 | className="bg-gradient-to-r from-cyan-500 to-red-500" 88 | > 89 | Filhos 90 | 91 | } 93 | url="/examples/direta" 94 | className="bg-gradient-to-r from-cyan-500 to-red-500" 95 | > 96 | Comunicação Direta 97 | 98 | } 100 | url="/examples/indireta" 101 | className="bg-gradient-to-r from-cyan-500 to-red-500" 102 | > 103 | Comunicação Indireta 104 | 105 | 106 | 107 | } 109 | url="/examples/estado" 110 | className="bg-gradient-to-r from-blue-400 to-purple-600" 111 | > 112 | Com Estado 113 | 114 | } 116 | url="/examples/contexto" 117 | className="bg-gradient-to-r from-blue-400 to-purple-600" 118 | > 119 | Contexto Compartilhado 120 | 121 | } 123 | url="/examples/promocoes" 124 | className="bg-gradient-to-r from-blue-400 to-purple-600" 125 | > 126 | Conteúdo ServerSide 127 | 128 | 129 | 130 | 131 | ) 132 | } 133 | -------------------------------------------------------------------------------- /src/styles/components.css: -------------------------------------------------------------------------------- 1 | .botao { 2 | @apply bg-blue-500 text-white; 3 | @apply hover:bg-blue-600; 4 | @apply rounded-md px-5 py-2; 5 | } 6 | 7 | .entrada { 8 | @apply bg-black px-3 py-2; 9 | @apply text-white outline-none; 10 | @apply rounded-md border border-blue-500; 11 | } -------------------------------------------------------------------------------- /src/styles/globals.css: -------------------------------------------------------------------------------- 1 | @import url(components.css); 2 | 3 | @tailwind base; 4 | @tailwind components; 5 | @tailwind utilities; -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- 1 | /** @type {import('tailwindcss').Config} */ 2 | module.exports = { 3 | content: [ 4 | "./src/**/*.{js,ts,jsx,tsx}", 5 | ], 6 | theme: { 7 | extend: {}, 8 | }, 9 | plugins: [], 10 | } 11 | -------------------------------------------------------------------------------- /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 | "@/*": ["./src/*"] 19 | } 20 | }, 21 | "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx"], 22 | "exclude": ["node_modules"] 23 | } 24 | --------------------------------------------------------------------------------