The weeb for the next gen discord boat - Wamellow wamellow.com
bot discord
3
fork

Configure Feed

Select the types of activity you want to include in your feed.

add docker

Luna 0b5f8e09 1b3fed52

+398 -349
+33
.dockerignore
··· 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 + yarn.lock* 27 + 28 + # vercel 29 + .vercel 30 + 31 + # typescript 32 + *.tsbuildinfo 33 + next-env.d.ts
+16
Dockerfile
··· 1 + FROM node:latest 2 + WORKDIR /app 3 + 4 + COPY package.json pnpm-lock.yaml .npmrc ./ 5 + 6 + RUN npm install -g pnpm 7 + 8 + RUN pnpm install 9 + 10 + COPY . . 11 + 12 + RUN pnpm run build 13 + 14 + EXPOSE 3000 15 + 16 + CMD ["pnpm", "run", "start"]
+8
docker-compose.yml
··· 1 + version: '3' 2 + services: 3 + tts: 4 + container_name: mw-web 5 + image: mw-web 6 + restart: unless-stopped 7 + ports: 8 + - "7000:3000"
+11 -11
package.json
··· 5 5 "scripts": { 6 6 "build": "next build", 7 7 "dev": "next dev", 8 - "start": "next start -p 7000", 8 + "start": "next start", 9 9 "lint": "next lint" 10 10 }, 11 11 "dependencies": { 12 12 "@nextui-org/react": "^2.2.10", 13 - "autoprefixer": "10.4.17", 13 + "autoprefixer": "10.4.18", 14 14 "clsx": "^2.1.0", 15 - "eslint": "8.56.0", 16 - "eslint-config-next": "14.1.0", 15 + "eslint": "8.57.0", 16 + "eslint-config-next": "14.1.3", 17 17 "framer-motion": "^11.0.8", 18 - "next": "14.1.0", 19 - "postcss": "8.4.33", 18 + "next": "14.1.3", 19 + "postcss": "8.4.35", 20 20 "react": "18.2.0", 21 21 "react-countup": "^6.5.0", 22 22 "react-dom": "18.2.0", 23 23 "react-icons": "^5.0.1", 24 24 "react-loading-icons": "^1.1.0", 25 - "react-markdown": "^8.0.7", 25 + "react-markdown": "8.0.7", 26 26 "react-query": "^3.39.3", 27 27 "recharts": "^2.12.2", 28 28 "rehype-raw": "^7.0.0", 29 29 "sharp": "^0.33.2", 30 30 "tailwind-merge": "^2.2.1", 31 31 "tailwindcss": "3.4.1", 32 - "typescript": "5.3.3", 32 + "typescript": "5.4.2", 33 33 "zustand": "^4.5.2" 34 34 }, 35 35 "devDependencies": { 36 - "@types/node": "^20.11.24", 37 - "@types/react": "^18.2.63", 38 - "@types/react-dom": "^18.2.19", 36 + "@types/node": "^20.11.27", 37 + "@types/react": "^18.2.65", 38 + "@types/react-dom": "^18.2.22", 39 39 "@typescript-eslint/eslint-plugin": "^5.62.0", 40 40 "@typescript-eslint/parser": "^5.62.0", 41 41 "eslint-plugin-path-alias": "^1.0.0",
+330 -338
pnpm-lock.yaml
··· 7 7 dependencies: 8 8 '@nextui-org/react': 9 9 specifier: ^2.2.10 10 - version: 2.2.10(@types/react@18.2.63)(framer-motion@11.0.8)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0)(tailwindcss@3.4.1) 10 + version: 2.2.10(@types/react@18.2.66)(framer-motion@11.0.13)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0)(tailwindcss@3.4.1) 11 11 autoprefixer: 12 - specifier: 10.4.17 13 - version: 10.4.17(postcss@8.4.33) 12 + specifier: 10.4.18 13 + version: 10.4.18(postcss@8.4.35) 14 14 clsx: 15 15 specifier: ^2.1.0 16 16 version: 2.1.0 17 17 eslint: 18 - specifier: 8.56.0 19 - version: 8.56.0 18 + specifier: 8.57.0 19 + version: 8.57.0 20 20 eslint-config-next: 21 - specifier: 14.1.0 22 - version: 14.1.0(eslint@8.56.0)(typescript@5.3.3) 21 + specifier: 14.1.3 22 + version: 14.1.3(eslint@8.57.0)(typescript@5.4.2) 23 23 framer-motion: 24 24 specifier: ^11.0.8 25 - version: 11.0.8(react-dom@18.2.0)(react@18.2.0) 25 + version: 11.0.13(react-dom@18.2.0)(react@18.2.0) 26 26 next: 27 - specifier: 14.1.0 28 - version: 14.1.0(react-dom@18.2.0)(react@18.2.0) 27 + specifier: 14.1.3 28 + version: 14.1.3(react-dom@18.2.0)(react@18.2.0) 29 29 postcss: 30 - specifier: 8.4.33 31 - version: 8.4.33 30 + specifier: 8.4.35 31 + version: 8.4.35 32 32 react: 33 33 specifier: 18.2.0 34 34 version: 18.2.0 ··· 45 45 specifier: ^1.1.0 46 46 version: 1.1.0 47 47 react-markdown: 48 - specifier: ^8.0.7 49 - version: 8.0.7(@types/react@18.2.63)(react@18.2.0) 48 + specifier: 8.0.7 49 + version: 8.0.7(@types/react@18.2.66)(react@18.2.0) 50 50 react-query: 51 51 specifier: ^3.39.3 52 52 version: 3.39.3(react-dom@18.2.0)(react@18.2.0) ··· 66 66 specifier: 3.4.1 67 67 version: 3.4.1 68 68 typescript: 69 - specifier: 5.3.3 70 - version: 5.3.3 69 + specifier: 5.4.2 70 + version: 5.4.2 71 71 zustand: 72 72 specifier: ^4.5.2 73 - version: 4.5.2(@types/react@18.2.63)(react@18.2.0) 73 + version: 4.5.2(@types/react@18.2.66)(react@18.2.0) 74 74 75 75 devDependencies: 76 76 '@types/node': 77 - specifier: ^20.11.24 78 - version: 20.11.24 77 + specifier: ^20.11.27 78 + version: 20.11.27 79 79 '@types/react': 80 - specifier: ^18.2.63 81 - version: 18.2.63 80 + specifier: ^18.2.65 81 + version: 18.2.66 82 82 '@types/react-dom': 83 - specifier: ^18.2.19 84 - version: 18.2.19 83 + specifier: ^18.2.22 84 + version: 18.2.22 85 85 '@typescript-eslint/eslint-plugin': 86 86 specifier: ^5.62.0 87 - version: 5.62.0(@typescript-eslint/parser@5.62.0)(eslint@8.56.0)(typescript@5.3.3) 87 + version: 5.62.0(@typescript-eslint/parser@5.62.0)(eslint@8.57.0)(typescript@5.4.2) 88 88 '@typescript-eslint/parser': 89 89 specifier: ^5.62.0 90 - version: 5.62.0(eslint@8.56.0)(typescript@5.3.3) 90 + version: 5.62.0(eslint@8.57.0)(typescript@5.4.2) 91 91 eslint-plugin-path-alias: 92 92 specifier: ^1.0.0 93 - version: 1.0.0(eslint@8.56.0) 93 + version: 1.0.0(eslint@8.57.0) 94 94 eslint-plugin-simple-import-sort: 95 95 specifier: ^10.0.0 96 - version: 10.0.0(eslint@8.56.0) 96 + version: 10.0.0(eslint@8.57.0) 97 97 eslint-plugin-unused-imports: 98 98 specifier: ^2.0.0 99 - version: 2.0.0(@typescript-eslint/eslint-plugin@5.62.0)(eslint@8.56.0) 99 + version: 2.0.0(@typescript-eslint/eslint-plugin@5.62.0)(eslint@8.57.0) 100 100 101 101 packages: 102 102 ··· 124 124 dev: false 125 125 optional: true 126 126 127 - /@emotion/is-prop-valid@0.8.8: 128 - resolution: {integrity: sha512-u5WtneEAr5IDG2Wv65yhunPSMLIpuKsbuOktRojfrEiEvRyC85LgPMZI63cr7NUqT8ZIGdSVg8ZKGxIug4lXcA==} 129 - requiresBuild: true 130 - dependencies: 131 - '@emotion/memoize': 0.7.4 132 - dev: false 133 - optional: true 134 - 135 - /@emotion/memoize@0.7.4: 136 - resolution: {integrity: sha512-Ja/Vfqe3HpuzRsG1oBtWTHk2PGZ7GR+2Vz5iYGelAw8dx32K0y7PjVuxK6z1nMpZOqAFsRUPCkK1YjJ56qJlgw==} 137 - requiresBuild: true 138 - dev: false 139 - optional: true 140 - 141 - /@eslint-community/eslint-utils@4.4.0(eslint@8.56.0): 127 + /@eslint-community/eslint-utils@4.4.0(eslint@8.57.0): 142 128 resolution: {integrity: sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==} 143 129 engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 144 130 peerDependencies: 145 131 eslint: ^6.0.0 || ^7.0.0 || >=8.0.0 146 132 dependencies: 147 - eslint: 8.56.0 133 + eslint: 8.57.0 148 134 eslint-visitor-keys: 3.4.3 149 135 150 136 /@eslint-community/regexpp@4.10.0: ··· 167 153 transitivePeerDependencies: 168 154 - supports-color 169 155 170 - /@eslint/js@8.56.0: 171 - resolution: {integrity: sha512-gMsVel9D7f2HLkBma9VbtzZRehRogVRfbr++f06nL2vnCGCNlzOD+/MUov/F4p8myyAHspEhVobgjpX64q5m6A==} 156 + /@eslint/js@8.57.0: 157 + resolution: {integrity: sha512-Ys+3g2TaW7gADOJzPt83SJtCDhMjndcDMFVQ/Tj9iA1BfJzFKD9mAUXT3OenpuPHbI6P/myECxRJrofUsDx/5g==} 172 158 engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 173 159 174 160 /@formatjs/ecma402-abstract@1.18.2: ··· 477 463 '@jridgewell/sourcemap-codec': 1.4.15 478 464 dev: false 479 465 480 - /@next/env@14.1.0: 481 - resolution: {integrity: sha512-Py8zIo+02ht82brwwhTg36iogzFqGLPXlRGKQw5s+qP/kMNc4MAyDeEwBKDijk6zTIbegEgu8Qy7C1LboslQAw==} 466 + /@next/env@14.1.3: 467 + resolution: {integrity: sha512-VhgXTvrgeBRxNPjyfBsDIMvgsKDxjlpw4IAUsHCX8Gjl1vtHUYRT3+xfQ/wwvLPDd/6kqfLqk9Pt4+7gysuCKQ==} 482 468 dev: false 483 469 484 - /@next/eslint-plugin-next@14.1.0: 485 - resolution: {integrity: sha512-x4FavbNEeXx/baD/zC/SdrvkjSby8nBn8KcCREqk6UuwvwoAPZmaV8TFCAuo/cpovBRTIY67mHhe86MQQm/68Q==} 470 + /@next/eslint-plugin-next@14.1.3: 471 + resolution: {integrity: sha512-VCnZI2cy77Yaj3L7Uhs3+44ikMM1VD/fBMwvTBb3hIaTIuqa+DmG4dhUDq+MASu3yx97KhgsVJbsas0XuiKyww==} 486 472 dependencies: 487 473 glob: 10.3.10 488 474 dev: false 489 475 490 - /@next/swc-darwin-arm64@14.1.0: 491 - resolution: {integrity: sha512-nUDn7TOGcIeyQni6lZHfzNoo9S0euXnu0jhsbMOmMJUBfgsnESdjN97kM7cBqQxZa8L/bM9om/S5/1dzCrW6wQ==} 476 + /@next/swc-darwin-arm64@14.1.3: 477 + resolution: {integrity: sha512-LALu0yIBPRiG9ANrD5ncB3pjpO0Gli9ZLhxdOu6ZUNf3x1r3ea1rd9Q+4xxUkGrUXLqKVK9/lDkpYIJaCJ6AHQ==} 492 478 engines: {node: '>= 10'} 493 479 cpu: [arm64] 494 480 os: [darwin] ··· 496 482 dev: false 497 483 optional: true 498 484 499 - /@next/swc-darwin-x64@14.1.0: 500 - resolution: {integrity: sha512-1jgudN5haWxiAl3O1ljUS2GfupPmcftu2RYJqZiMJmmbBT5M1XDffjUtRUzP4W3cBHsrvkfOFdQ71hAreNQP6g==} 485 + /@next/swc-darwin-x64@14.1.3: 486 + resolution: {integrity: sha512-E/9WQeXxkqw2dfcn5UcjApFgUq73jqNKaE5bysDm58hEUdUGedVrnRhblhJM7HbCZNhtVl0j+6TXsK0PuzXTCg==} 501 487 engines: {node: '>= 10'} 502 488 cpu: [x64] 503 489 os: [darwin] ··· 505 491 dev: false 506 492 optional: true 507 493 508 - /@next/swc-linux-arm64-gnu@14.1.0: 509 - resolution: {integrity: sha512-RHo7Tcj+jllXUbK7xk2NyIDod3YcCPDZxj1WLIYxd709BQ7WuRYl3OWUNG+WUfqeQBds6kvZYlc42NJJTNi4tQ==} 494 + /@next/swc-linux-arm64-gnu@14.1.3: 495 + resolution: {integrity: sha512-USArX9B+3rZSXYLFvgy0NVWQgqh6LHWDmMt38O4lmiJNQcwazeI6xRvSsliDLKt+78KChVacNiwvOMbl6g6BBw==} 510 496 engines: {node: '>= 10'} 511 497 cpu: [arm64] 512 498 os: [linux] ··· 514 500 dev: false 515 501 optional: true 516 502 517 - /@next/swc-linux-arm64-musl@14.1.0: 518 - resolution: {integrity: sha512-v6kP8sHYxjO8RwHmWMJSq7VZP2nYCkRVQ0qolh2l6xroe9QjbgV8siTbduED4u0hlk0+tjS6/Tuy4n5XCp+l6g==} 503 + /@next/swc-linux-arm64-musl@14.1.3: 504 + resolution: {integrity: sha512-esk1RkRBLSIEp1qaQXv1+s6ZdYzuVCnDAZySpa62iFTMGTisCyNQmqyCTL9P+cLJ4N9FKCI3ojtSfsyPHJDQNw==} 519 505 engines: {node: '>= 10'} 520 506 cpu: [arm64] 521 507 os: [linux] ··· 523 509 dev: false 524 510 optional: true 525 511 526 - /@next/swc-linux-x64-gnu@14.1.0: 527 - resolution: {integrity: sha512-zJ2pnoFYB1F4vmEVlb/eSe+VH679zT1VdXlZKX+pE66grOgjmKJHKacf82g/sWE4MQ4Rk2FMBCRnX+l6/TVYzQ==} 512 + /@next/swc-linux-x64-gnu@14.1.3: 513 + resolution: {integrity: sha512-8uOgRlYEYiKo0L8YGeS+3TudHVDWDjPVDUcST+z+dUzgBbTEwSSIaSgF/vkcC1T/iwl4QX9iuUyUdQEl0Kxalg==} 528 514 engines: {node: '>= 10'} 529 515 cpu: [x64] 530 516 os: [linux] ··· 532 518 dev: false 533 519 optional: true 534 520 535 - /@next/swc-linux-x64-musl@14.1.0: 536 - resolution: {integrity: sha512-rbaIYFt2X9YZBSbH/CwGAjbBG2/MrACCVu2X0+kSykHzHnYH5FjHxwXLkcoJ10cX0aWCEynpu+rP76x0914atg==} 521 + /@next/swc-linux-x64-musl@14.1.3: 522 + resolution: {integrity: sha512-DX2zqz05ziElLoxskgHasaJBREC5Y9TJcbR2LYqu4r7naff25B4iXkfXWfcp69uD75/0URmmoSgT8JclJtrBoQ==} 537 523 engines: {node: '>= 10'} 538 524 cpu: [x64] 539 525 os: [linux] ··· 541 527 dev: false 542 528 optional: true 543 529 544 - /@next/swc-win32-arm64-msvc@14.1.0: 545 - resolution: {integrity: sha512-o1N5TsYc8f/HpGt39OUQpQ9AKIGApd3QLueu7hXk//2xq5Z9OxmV6sQfNp8C7qYmiOlHYODOGqNNa0e9jvchGQ==} 530 + /@next/swc-win32-arm64-msvc@14.1.3: 531 + resolution: {integrity: sha512-HjssFsCdsD4GHstXSQxsi2l70F/5FsRTRQp8xNgmQs15SxUfUJRvSI9qKny/jLkY3gLgiCR3+6A7wzzK0DBlfA==} 546 532 engines: {node: '>= 10'} 547 533 cpu: [arm64] 548 534 os: [win32] ··· 550 536 dev: false 551 537 optional: true 552 538 553 - /@next/swc-win32-ia32-msvc@14.1.0: 554 - resolution: {integrity: sha512-XXIuB1DBRCFwNO6EEzCTMHT5pauwaSj4SWs7CYnME57eaReAKBXCnkUE80p/pAZcewm7hs+vGvNqDPacEXHVkw==} 539 + /@next/swc-win32-ia32-msvc@14.1.3: 540 + resolution: {integrity: sha512-DRuxD5axfDM1/Ue4VahwSxl1O5rn61hX8/sF0HY8y0iCbpqdxw3rB3QasdHn/LJ6Wb2y5DoWzXcz3L1Cr+Thrw==} 555 541 engines: {node: '>= 10'} 556 542 cpu: [ia32] 557 543 os: [win32] ··· 559 545 dev: false 560 546 optional: true 561 547 562 - /@next/swc-win32-x64-msvc@14.1.0: 563 - resolution: {integrity: sha512-9WEbVRRAqJ3YFVqEZIxUqkiO8l1nool1LmNxygr5HWF8AcSYsEpneUDhmjUVJEzO2A04+oPtZdombzzPPkTtgg==} 548 + /@next/swc-win32-x64-msvc@14.1.3: 549 + resolution: {integrity: sha512-uC2DaDoWH7h1P/aJ4Fok3Xiw6P0Lo4ez7NbowW2VGNXw/Xv6tOuLUcxhBYZxsSUJtpeknCi8/fvnSpyCFp4Rcg==} 564 550 engines: {node: '>= 10'} 565 551 cpu: [x64] 566 552 os: [win32] ··· 568 554 dev: false 569 555 optional: true 570 556 571 - /@nextui-org/accordion@2.0.28(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.18)(framer-motion@11.0.8)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0): 557 + /@nextui-org/accordion@2.0.28(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.18)(framer-motion@11.0.13)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0): 572 558 resolution: {integrity: sha512-WzD7sscL+4K0TFyUutTn1AhU0wcS68TqNCTNv7KgON6ODdwieydilMxAyXvwo3RgXeWG+8BbdxJC/6W+/iLBTg==} 573 559 peerDependencies: 574 560 '@nextui-org/system': '>=2.0.0' ··· 579 565 dependencies: 580 566 '@nextui-org/aria-utils': 2.0.15(@nextui-org/theme@2.1.18)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0) 581 567 '@nextui-org/divider': 2.0.25(@nextui-org/theme@2.1.18)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0) 582 - '@nextui-org/framer-transitions': 2.0.15(@nextui-org/theme@2.1.18)(framer-motion@11.0.8)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0) 568 + '@nextui-org/framer-transitions': 2.0.15(@nextui-org/theme@2.1.18)(framer-motion@11.0.13)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0) 583 569 '@nextui-org/react-utils': 2.0.10(react@18.2.0) 584 570 '@nextui-org/shared-icons': 2.0.6(react@18.2.0) 585 571 '@nextui-org/shared-utils': 2.0.4(react@18.2.0) ··· 594 580 '@react-stately/tree': 3.7.6(react@18.2.0) 595 581 '@react-types/accordion': 3.0.0-alpha.17(react@18.2.0) 596 582 '@react-types/shared': 3.22.1(react@18.2.0) 597 - framer-motion: 11.0.8(react-dom@18.2.0)(react@18.2.0) 583 + framer-motion: 11.0.13(react-dom@18.2.0)(react@18.2.0) 598 584 react: 18.2.0 599 585 react-dom: 18.2.0(react@18.2.0) 600 586 transitivePeerDependencies: ··· 621 607 - tailwind-variants 622 608 dev: false 623 609 624 - /@nextui-org/autocomplete@2.0.10(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.18)(@types/react@18.2.63)(framer-motion@11.0.8)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0): 610 + /@nextui-org/autocomplete@2.0.10(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.18)(@types/react@18.2.66)(framer-motion@11.0.13)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0): 625 611 resolution: {integrity: sha512-nQr8VC5RtpjnPef1qXgjNxRAw8JbN6q5qIFtsHWOCzvvn5jGAtdxkAkNE4C7DTvlMWZkIlEuR4DyAmFfY8CChQ==} 626 612 peerDependencies: 627 613 '@nextui-org/system': '>=2.0.0' ··· 631 617 react-dom: '>=18' 632 618 dependencies: 633 619 '@nextui-org/aria-utils': 2.0.15(@nextui-org/theme@2.1.18)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0) 634 - '@nextui-org/button': 2.0.27(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.18)(framer-motion@11.0.8)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0) 635 - '@nextui-org/input': 2.1.17(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.18)(@types/react@18.2.63)(react-dom@18.2.0)(react@18.2.0) 620 + '@nextui-org/button': 2.0.27(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.18)(framer-motion@11.0.13)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0) 621 + '@nextui-org/input': 2.1.17(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.18)(@types/react@18.2.66)(react-dom@18.2.0)(react@18.2.0) 636 622 '@nextui-org/listbox': 2.1.16(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.18)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0) 637 - '@nextui-org/popover': 2.1.15(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.18)(@types/react@18.2.63)(framer-motion@11.0.8)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0) 623 + '@nextui-org/popover': 2.1.15(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.18)(@types/react@18.2.66)(framer-motion@11.0.13)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0) 638 624 '@nextui-org/react-utils': 2.0.10(react@18.2.0) 639 625 '@nextui-org/scroll-shadow': 2.1.13(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.18)(react-dom@18.2.0)(react@18.2.0) 640 626 '@nextui-org/shared-icons': 2.0.6(react@18.2.0) ··· 652 638 '@react-stately/combobox': 3.8.2(react@18.2.0) 653 639 '@react-types/combobox': 3.10.1(react@18.2.0) 654 640 '@react-types/shared': 3.22.1(react@18.2.0) 655 - framer-motion: 11.0.8(react-dom@18.2.0)(react@18.2.0) 641 + framer-motion: 11.0.13(react-dom@18.2.0)(react@18.2.0) 656 642 react: 18.2.0 657 643 react-dom: 18.2.0(react@18.2.0) 658 644 transitivePeerDependencies: ··· 719 705 react-dom: 18.2.0(react@18.2.0) 720 706 dev: false 721 707 722 - /@nextui-org/button@2.0.27(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.18)(framer-motion@11.0.8)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0): 708 + /@nextui-org/button@2.0.27(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.18)(framer-motion@11.0.13)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0): 723 709 resolution: {integrity: sha512-oErzUr9KtE/qjUx4dSbalphxURssxGf9tv0mW++ZMkmVX1E6i887FwZb9xAVm9oBwYwR6+xpJaqjQLmt8aN/rQ==} 724 710 peerDependencies: 725 711 '@nextui-org/system': '>=2.0.0' ··· 729 715 react-dom: '>=18' 730 716 dependencies: 731 717 '@nextui-org/react-utils': 2.0.10(react@18.2.0) 732 - '@nextui-org/ripple': 2.0.24(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.18)(framer-motion@11.0.8)(react-dom@18.2.0)(react@18.2.0) 718 + '@nextui-org/ripple': 2.0.24(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.18)(framer-motion@11.0.13)(react-dom@18.2.0)(react@18.2.0) 733 719 '@nextui-org/shared-utils': 2.0.4(react@18.2.0) 734 720 '@nextui-org/spinner': 2.0.25(@nextui-org/theme@2.1.18)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0) 735 721 '@nextui-org/system': 2.0.15(@nextui-org/theme@2.1.18)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0) ··· 741 727 '@react-aria/utils': 3.23.2(react@18.2.0) 742 728 '@react-types/button': 3.9.2(react@18.2.0) 743 729 '@react-types/shared': 3.22.1(react@18.2.0) 744 - framer-motion: 11.0.8(react-dom@18.2.0)(react@18.2.0) 730 + framer-motion: 11.0.13(react-dom@18.2.0)(react@18.2.0) 745 731 react: 18.2.0 746 732 react-dom: 18.2.0(react@18.2.0) 747 733 transitivePeerDependencies: 748 734 - tailwind-variants 749 735 dev: false 750 736 751 - /@nextui-org/card@2.0.24(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.18)(framer-motion@11.0.8)(react-dom@18.2.0)(react@18.2.0): 737 + /@nextui-org/card@2.0.24(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.18)(framer-motion@11.0.13)(react-dom@18.2.0)(react@18.2.0): 752 738 resolution: {integrity: sha512-16uAS0i6+EO+u8aqtmaCXatjovsyuTq51JwCLBlB67OldfgXoYcYl3GaE2VoZdEwxVu1G/qypDfXv29k46nZuA==} 753 739 peerDependencies: 754 740 '@nextui-org/system': '>=2.0.0' ··· 758 744 react-dom: '>=18' 759 745 dependencies: 760 746 '@nextui-org/react-utils': 2.0.10(react@18.2.0) 761 - '@nextui-org/ripple': 2.0.24(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.18)(framer-motion@11.0.8)(react-dom@18.2.0)(react@18.2.0) 747 + '@nextui-org/ripple': 2.0.24(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.18)(framer-motion@11.0.13)(react-dom@18.2.0)(react@18.2.0) 762 748 '@nextui-org/shared-utils': 2.0.4(react@18.2.0) 763 749 '@nextui-org/system': 2.0.15(@nextui-org/theme@2.1.18)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0) 764 750 '@nextui-org/theme': 2.1.18(tailwindcss@3.4.1) ··· 768 754 '@react-aria/interactions': 3.21.1(react@18.2.0) 769 755 '@react-aria/utils': 3.23.2(react@18.2.0) 770 756 '@react-types/shared': 3.22.1(react@18.2.0) 771 - framer-motion: 11.0.8(react-dom@18.2.0)(react@18.2.0) 757 + framer-motion: 11.0.13(react-dom@18.2.0)(react@18.2.0) 772 758 react: 18.2.0 773 759 react-dom: 18.2.0(react@18.2.0) 774 760 dev: false ··· 856 842 - tailwind-variants 857 843 dev: false 858 844 859 - /@nextui-org/dropdown@2.1.17(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.18)(@types/react@18.2.63)(framer-motion@11.0.8)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0): 845 + /@nextui-org/dropdown@2.1.17(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.18)(@types/react@18.2.66)(framer-motion@11.0.13)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0): 860 846 resolution: {integrity: sha512-Hxmz1Yf/LjjOLqWRF49Q5ZYJtae6ydDEk1mv8oMKNmSWHi92lrgmHlwkGvR3mjczbRuF+WkXHLEhVZH6/tZQ7A==} 861 847 peerDependencies: 862 848 '@nextui-org/system': '>=2.0.0' ··· 866 852 react-dom: '>=18' 867 853 dependencies: 868 854 '@nextui-org/menu': 2.0.17(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.18)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0) 869 - '@nextui-org/popover': 2.1.15(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.18)(@types/react@18.2.63)(framer-motion@11.0.8)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0) 855 + '@nextui-org/popover': 2.1.15(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.18)(@types/react@18.2.66)(framer-motion@11.0.13)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0) 870 856 '@nextui-org/react-utils': 2.0.10(react@18.2.0) 871 857 '@nextui-org/shared-utils': 2.0.4(react@18.2.0) 872 858 '@nextui-org/system': 2.0.15(@nextui-org/theme@2.1.18)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0) ··· 876 862 '@react-aria/utils': 3.23.2(react@18.2.0) 877 863 '@react-stately/menu': 3.6.1(react@18.2.0) 878 864 '@react-types/menu': 3.9.7(react@18.2.0) 879 - framer-motion: 11.0.8(react-dom@18.2.0)(react@18.2.0) 865 + framer-motion: 11.0.13(react-dom@18.2.0)(react@18.2.0) 880 866 react: 18.2.0 881 867 react-dom: 18.2.0(react@18.2.0) 882 868 transitivePeerDependencies: ··· 884 870 - tailwind-variants 885 871 dev: false 886 872 887 - /@nextui-org/framer-transitions@2.0.15(@nextui-org/theme@2.1.18)(framer-motion@11.0.8)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0): 873 + /@nextui-org/framer-transitions@2.0.15(@nextui-org/theme@2.1.18)(framer-motion@11.0.13)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0): 888 874 resolution: {integrity: sha512-UlWMCAFdrq8wKrYFGwc+O4kFhKCkL4L9ZadBkP0PqjmfyAC2gA3ygRbNqtKhFMWeKbBAiC8qQ9aTBEA/+0r/EA==} 889 875 peerDependencies: 890 876 framer-motion: '>=4.0.0' ··· 893 879 dependencies: 894 880 '@nextui-org/shared-utils': 2.0.4(react@18.2.0) 895 881 '@nextui-org/system': 2.0.15(@nextui-org/theme@2.1.18)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0) 896 - framer-motion: 11.0.8(react-dom@18.2.0)(react@18.2.0) 882 + framer-motion: 11.0.13(react-dom@18.2.0)(react@18.2.0) 897 883 react: 18.2.0 898 884 react-dom: 18.2.0(react@18.2.0) 899 885 transitivePeerDependencies: ··· 918 904 react-dom: 18.2.0(react@18.2.0) 919 905 dev: false 920 906 921 - /@nextui-org/input@2.1.17(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.18)(@types/react@18.2.63)(react-dom@18.2.0)(react@18.2.0): 907 + /@nextui-org/input@2.1.17(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.18)(@types/react@18.2.66)(react-dom@18.2.0)(react@18.2.0): 922 908 resolution: {integrity: sha512-3FW3NDDbQOa5IlUCpO2Ma/XEjGnx4TQLM8MvMbskc+GNbZ0mtzfV0hCeQkqxxJ2lP4Mkp4QhwGRRkRrDu1G0Wg==} 923 909 peerDependencies: 924 910 '@nextui-org/system': '>=2.0.0' ··· 940 926 '@react-types/textfield': 3.9.1(react@18.2.0) 941 927 react: 18.2.0 942 928 react-dom: 18.2.0(react@18.2.0) 943 - react-textarea-autosize: 8.5.3(@types/react@18.2.63)(react@18.2.0) 929 + react-textarea-autosize: 8.5.3(@types/react@18.2.66)(react@18.2.0) 944 930 transitivePeerDependencies: 945 931 - '@types/react' 946 932 dev: false ··· 1044 1030 - tailwind-variants 1045 1031 dev: false 1046 1032 1047 - /@nextui-org/modal@2.0.29(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.18)(@types/react@18.2.63)(framer-motion@11.0.8)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0): 1033 + /@nextui-org/modal@2.0.29(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.18)(@types/react@18.2.66)(framer-motion@11.0.13)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0): 1048 1034 resolution: {integrity: sha512-C/pvw0fAPWKbfMoGfIVZWhMRbe+DRGEg7GqPVY7EmW4FSSIK7Sfdn6Jxm+sSv+a7xHpDr86nirFbvN3S4jCaHw==} 1049 1035 peerDependencies: 1050 1036 '@nextui-org/system': '>=2.0.0' ··· 1053 1039 react: '>=18' 1054 1040 react-dom: '>=18' 1055 1041 dependencies: 1056 - '@nextui-org/framer-transitions': 2.0.15(@nextui-org/theme@2.1.18)(framer-motion@11.0.8)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0) 1042 + '@nextui-org/framer-transitions': 2.0.15(@nextui-org/theme@2.1.18)(framer-motion@11.0.13)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0) 1057 1043 '@nextui-org/react-utils': 2.0.10(react@18.2.0) 1058 1044 '@nextui-org/shared-icons': 2.0.6(react@18.2.0) 1059 1045 '@nextui-org/shared-utils': 2.0.4(react@18.2.0) ··· 1069 1055 '@react-aria/utils': 3.23.2(react@18.2.0) 1070 1056 '@react-stately/overlays': 3.6.5(react@18.2.0) 1071 1057 '@react-types/overlays': 3.8.5(react@18.2.0) 1072 - framer-motion: 11.0.8(react-dom@18.2.0)(react@18.2.0) 1058 + framer-motion: 11.0.13(react-dom@18.2.0)(react@18.2.0) 1073 1059 react: 18.2.0 1074 1060 react-dom: 18.2.0(react@18.2.0) 1075 - react-remove-scroll: 2.5.7(@types/react@18.2.63)(react@18.2.0) 1061 + react-remove-scroll: 2.5.7(@types/react@18.2.66)(react@18.2.0) 1076 1062 transitivePeerDependencies: 1077 1063 - '@types/react' 1078 1064 - tailwind-variants 1079 1065 dev: false 1080 1066 1081 - /@nextui-org/navbar@2.0.27(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.18)(@types/react@18.2.63)(framer-motion@11.0.8)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0): 1067 + /@nextui-org/navbar@2.0.27(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.18)(@types/react@18.2.66)(framer-motion@11.0.13)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0): 1082 1068 resolution: {integrity: sha512-iP4Pn4ItQkAW1nbu1Jmrh5l9pMVG43lDxq9rbx6DbLjLnnZOOrE6fURb8uN5NVy3ooV5dF02zKAoxlkE5fN/xw==} 1083 1069 peerDependencies: 1084 1070 '@nextui-org/system': '>=2.0.0' ··· 1087 1073 react: '>=18' 1088 1074 react-dom: '>=18' 1089 1075 dependencies: 1090 - '@nextui-org/framer-transitions': 2.0.15(@nextui-org/theme@2.1.18)(framer-motion@11.0.8)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0) 1076 + '@nextui-org/framer-transitions': 2.0.15(@nextui-org/theme@2.1.18)(framer-motion@11.0.13)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0) 1091 1077 '@nextui-org/react-utils': 2.0.10(react@18.2.0) 1092 1078 '@nextui-org/shared-utils': 2.0.4(react@18.2.0) 1093 1079 '@nextui-org/system': 2.0.15(@nextui-org/theme@2.1.18)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0) ··· 1100 1086 '@react-aria/utils': 3.23.2(react@18.2.0) 1101 1087 '@react-stately/toggle': 3.7.2(react@18.2.0) 1102 1088 '@react-stately/utils': 3.9.1(react@18.2.0) 1103 - framer-motion: 11.0.8(react-dom@18.2.0)(react@18.2.0) 1089 + framer-motion: 11.0.13(react-dom@18.2.0)(react@18.2.0) 1104 1090 react: 18.2.0 1105 1091 react-dom: 18.2.0(react@18.2.0) 1106 - react-remove-scroll: 2.5.7(@types/react@18.2.63)(react@18.2.0) 1092 + react-remove-scroll: 2.5.7(@types/react@18.2.66)(react@18.2.0) 1107 1093 transitivePeerDependencies: 1108 1094 - '@types/react' 1109 1095 - tailwind-variants ··· 1133 1119 scroll-into-view-if-needed: 3.0.10 1134 1120 dev: false 1135 1121 1136 - /@nextui-org/popover@2.1.15(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.18)(@types/react@18.2.63)(framer-motion@11.0.8)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0): 1122 + /@nextui-org/popover@2.1.15(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.18)(@types/react@18.2.66)(framer-motion@11.0.13)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0): 1137 1123 resolution: {integrity: sha512-FQ66y49sQvXvyDrEsEFAC0qfpl2X+5ZPGaVXdNd3Cjox/jxAxp93cSUkk0iOfYvdsbO5zVFjuM0L3Dqn4hsHMw==} 1138 1124 peerDependencies: 1139 1125 '@nextui-org/system': '>=2.0.0' ··· 1143 1129 react-dom: '>=18' 1144 1130 dependencies: 1145 1131 '@nextui-org/aria-utils': 2.0.15(@nextui-org/theme@2.1.18)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0) 1146 - '@nextui-org/button': 2.0.27(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.18)(framer-motion@11.0.8)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0) 1147 - '@nextui-org/framer-transitions': 2.0.15(@nextui-org/theme@2.1.18)(framer-motion@11.0.8)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0) 1132 + '@nextui-org/button': 2.0.27(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.18)(framer-motion@11.0.13)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0) 1133 + '@nextui-org/framer-transitions': 2.0.15(@nextui-org/theme@2.1.18)(framer-motion@11.0.13)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0) 1148 1134 '@nextui-org/react-utils': 2.0.10(react@18.2.0) 1149 1135 '@nextui-org/shared-utils': 2.0.4(react@18.2.0) 1150 1136 '@nextui-org/system': 2.0.15(@nextui-org/theme@2.1.18)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0) ··· 1159 1145 '@react-stately/overlays': 3.6.5(react@18.2.0) 1160 1146 '@react-types/button': 3.9.2(react@18.2.0) 1161 1147 '@react-types/overlays': 3.8.5(react@18.2.0) 1162 - framer-motion: 11.0.8(react-dom@18.2.0)(react@18.2.0) 1148 + framer-motion: 11.0.13(react-dom@18.2.0)(react@18.2.0) 1163 1149 react: 18.2.0 1164 1150 react-dom: 18.2.0(react@18.2.0) 1165 - react-remove-scroll: 2.5.7(@types/react@18.2.63)(react@18.2.0) 1151 + react-remove-scroll: 2.5.7(@types/react@18.2.66)(react@18.2.0) 1166 1152 transitivePeerDependencies: 1167 1153 - '@types/react' 1168 1154 - tailwind-variants ··· 1228 1214 react: 18.2.0 1229 1215 dev: false 1230 1216 1231 - /@nextui-org/react@2.2.10(@types/react@18.2.63)(framer-motion@11.0.8)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0)(tailwindcss@3.4.1): 1217 + /@nextui-org/react@2.2.10(@types/react@18.2.66)(framer-motion@11.0.13)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0)(tailwindcss@3.4.1): 1232 1218 resolution: {integrity: sha512-YJhUIeLnO/FGDbZgfeWEz32RBrH2YFA1qsJQtMF7mza8rjspX/CkankvI7xs1o6sW/TYLSTq7sOF9RGMxLTIAA==} 1233 1219 peerDependencies: 1234 1220 framer-motion: '>=4.0.0' 1235 1221 react: '>=18' 1236 1222 react-dom: '>=18' 1237 1223 dependencies: 1238 - '@nextui-org/accordion': 2.0.28(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.18)(framer-motion@11.0.8)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0) 1239 - '@nextui-org/autocomplete': 2.0.10(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.18)(@types/react@18.2.63)(framer-motion@11.0.8)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0) 1224 + '@nextui-org/accordion': 2.0.28(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.18)(framer-motion@11.0.13)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0) 1225 + '@nextui-org/autocomplete': 2.0.10(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.18)(@types/react@18.2.66)(framer-motion@11.0.13)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0) 1240 1226 '@nextui-org/avatar': 2.0.24(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.18)(react-dom@18.2.0)(react@18.2.0) 1241 1227 '@nextui-org/badge': 2.0.24(@nextui-org/theme@2.1.18)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0) 1242 1228 '@nextui-org/breadcrumbs': 2.0.4(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.18)(react-dom@18.2.0)(react@18.2.0) 1243 - '@nextui-org/button': 2.0.27(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.18)(framer-motion@11.0.8)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0) 1244 - '@nextui-org/card': 2.0.24(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.18)(framer-motion@11.0.8)(react-dom@18.2.0)(react@18.2.0) 1229 + '@nextui-org/button': 2.0.27(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.18)(framer-motion@11.0.13)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0) 1230 + '@nextui-org/card': 2.0.24(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.18)(framer-motion@11.0.13)(react-dom@18.2.0)(react@18.2.0) 1245 1231 '@nextui-org/checkbox': 2.0.25(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.18)(react-dom@18.2.0)(react@18.2.0) 1246 1232 '@nextui-org/chip': 2.0.25(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.18)(react-dom@18.2.0)(react@18.2.0) 1247 1233 '@nextui-org/code': 2.0.24(@nextui-org/theme@2.1.18)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0) 1248 1234 '@nextui-org/divider': 2.0.25(@nextui-org/theme@2.1.18)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0) 1249 - '@nextui-org/dropdown': 2.1.17(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.18)(@types/react@18.2.63)(framer-motion@11.0.8)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0) 1235 + '@nextui-org/dropdown': 2.1.17(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.18)(@types/react@18.2.66)(framer-motion@11.0.13)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0) 1250 1236 '@nextui-org/image': 2.0.24(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.18)(react-dom@18.2.0)(react@18.2.0) 1251 - '@nextui-org/input': 2.1.17(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.18)(@types/react@18.2.63)(react-dom@18.2.0)(react@18.2.0) 1237 + '@nextui-org/input': 2.1.17(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.18)(@types/react@18.2.66)(react-dom@18.2.0)(react@18.2.0) 1252 1238 '@nextui-org/kbd': 2.0.25(@nextui-org/theme@2.1.18)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0) 1253 1239 '@nextui-org/link': 2.0.26(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.18)(react-dom@18.2.0)(react@18.2.0) 1254 1240 '@nextui-org/listbox': 2.1.16(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.18)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0) 1255 1241 '@nextui-org/menu': 2.0.17(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.18)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0) 1256 - '@nextui-org/modal': 2.0.29(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.18)(@types/react@18.2.63)(framer-motion@11.0.8)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0) 1257 - '@nextui-org/navbar': 2.0.27(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.18)(@types/react@18.2.63)(framer-motion@11.0.8)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0) 1242 + '@nextui-org/modal': 2.0.29(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.18)(@types/react@18.2.66)(framer-motion@11.0.13)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0) 1243 + '@nextui-org/navbar': 2.0.27(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.18)(@types/react@18.2.66)(framer-motion@11.0.13)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0) 1258 1244 '@nextui-org/pagination': 2.0.27(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.18)(react-dom@18.2.0)(react@18.2.0) 1259 - '@nextui-org/popover': 2.1.15(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.18)(@types/react@18.2.63)(framer-motion@11.0.8)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0) 1245 + '@nextui-org/popover': 2.1.15(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.18)(@types/react@18.2.66)(framer-motion@11.0.13)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0) 1260 1246 '@nextui-org/progress': 2.0.25(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.18)(react-dom@18.2.0)(react@18.2.0) 1261 1247 '@nextui-org/radio': 2.0.25(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.18)(react-dom@18.2.0)(react@18.2.0) 1262 - '@nextui-org/ripple': 2.0.24(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.18)(framer-motion@11.0.8)(react-dom@18.2.0)(react@18.2.0) 1248 + '@nextui-org/ripple': 2.0.24(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.18)(framer-motion@11.0.13)(react-dom@18.2.0)(react@18.2.0) 1263 1249 '@nextui-org/scroll-shadow': 2.1.13(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.18)(react-dom@18.2.0)(react@18.2.0) 1264 - '@nextui-org/select': 2.1.21(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.18)(@types/react@18.2.63)(framer-motion@11.0.8)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0) 1250 + '@nextui-org/select': 2.1.21(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.18)(@types/react@18.2.66)(framer-motion@11.0.13)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0) 1265 1251 '@nextui-org/skeleton': 2.0.24(@nextui-org/theme@2.1.18)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0) 1266 - '@nextui-org/slider': 2.2.6(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.18)(framer-motion@11.0.8)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0) 1267 - '@nextui-org/snippet': 2.0.31(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.18)(framer-motion@11.0.8)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0) 1252 + '@nextui-org/slider': 2.2.6(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.18)(framer-motion@11.0.13)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0) 1253 + '@nextui-org/snippet': 2.0.31(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.18)(framer-motion@11.0.13)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0) 1268 1254 '@nextui-org/spacer': 2.0.24(@nextui-org/theme@2.1.18)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0) 1269 1255 '@nextui-org/spinner': 2.0.25(@nextui-org/theme@2.1.18)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0) 1270 1256 '@nextui-org/switch': 2.0.25(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.18)(react-dom@18.2.0)(react@18.2.0) 1271 1257 '@nextui-org/system': 2.0.15(@nextui-org/theme@2.1.18)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0) 1272 1258 '@nextui-org/table': 2.0.28(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.18)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0) 1273 - '@nextui-org/tabs': 2.0.26(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.18)(framer-motion@11.0.8)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0) 1259 + '@nextui-org/tabs': 2.0.26(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.18)(framer-motion@11.0.13)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0) 1274 1260 '@nextui-org/theme': 2.1.18(tailwindcss@3.4.1) 1275 - '@nextui-org/tooltip': 2.0.30(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.18)(framer-motion@11.0.8)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0) 1261 + '@nextui-org/tooltip': 2.0.30(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.18)(framer-motion@11.0.13)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0) 1276 1262 '@nextui-org/user': 2.0.25(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.18)(react-dom@18.2.0)(react@18.2.0) 1277 1263 '@react-aria/visually-hidden': 3.8.10(react@18.2.0) 1278 - framer-motion: 11.0.8(react-dom@18.2.0)(react@18.2.0) 1264 + framer-motion: 11.0.13(react-dom@18.2.0)(react@18.2.0) 1279 1265 react: 18.2.0 1280 1266 react-dom: 18.2.0(react@18.2.0) 1281 1267 transitivePeerDependencies: ··· 1284 1270 - tailwindcss 1285 1271 dev: false 1286 1272 1287 - /@nextui-org/ripple@2.0.24(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.18)(framer-motion@11.0.8)(react-dom@18.2.0)(react@18.2.0): 1273 + /@nextui-org/ripple@2.0.24(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.18)(framer-motion@11.0.13)(react-dom@18.2.0)(react@18.2.0): 1288 1274 resolution: {integrity: sha512-PCvAk9ErhmPX46VRmhsg8yMxw3Qd9LY7BDkRRfIF8KftgRDyOpG2vV8DxvSOxQu1/aqBWkkHNUuEjM/EvSEung==} 1289 1275 peerDependencies: 1290 1276 '@nextui-org/system': '>=2.0.0' ··· 1297 1283 '@nextui-org/shared-utils': 2.0.4(react@18.2.0) 1298 1284 '@nextui-org/system': 2.0.15(@nextui-org/theme@2.1.18)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0) 1299 1285 '@nextui-org/theme': 2.1.18(tailwindcss@3.4.1) 1300 - framer-motion: 11.0.8(react-dom@18.2.0)(react@18.2.0) 1286 + framer-motion: 11.0.13(react-dom@18.2.0)(react@18.2.0) 1301 1287 react: 18.2.0 1302 1288 react-dom: 18.2.0(react@18.2.0) 1303 1289 dev: false ··· 1319 1305 react-dom: 18.2.0(react@18.2.0) 1320 1306 dev: false 1321 1307 1322 - /@nextui-org/select@2.1.21(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.18)(@types/react@18.2.63)(framer-motion@11.0.8)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0): 1308 + /@nextui-org/select@2.1.21(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.18)(@types/react@18.2.66)(framer-motion@11.0.13)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0): 1323 1309 resolution: {integrity: sha512-BVfmxIsZTL6dBiZ1Q5RbAnqiNpVnaJgWi0M1QMV448FHMaDHLTWtNOJPMD0QyxHRNPfDgFrqEAq6a1+pA26ckQ==} 1324 1310 peerDependencies: 1325 1311 '@nextui-org/system': '>=2.0.0' ··· 1330 1316 dependencies: 1331 1317 '@nextui-org/aria-utils': 2.0.15(@nextui-org/theme@2.1.18)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0) 1332 1318 '@nextui-org/listbox': 2.1.16(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.18)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0) 1333 - '@nextui-org/popover': 2.1.15(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.18)(@types/react@18.2.63)(framer-motion@11.0.8)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0) 1319 + '@nextui-org/popover': 2.1.15(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.18)(@types/react@18.2.66)(framer-motion@11.0.13)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0) 1334 1320 '@nextui-org/react-utils': 2.0.10(react@18.2.0) 1335 1321 '@nextui-org/scroll-shadow': 2.1.13(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.18)(react-dom@18.2.0)(react@18.2.0) 1336 1322 '@nextui-org/shared-icons': 2.0.6(react@18.2.0) ··· 1345 1331 '@react-aria/utils': 3.23.2(react@18.2.0) 1346 1332 '@react-aria/visually-hidden': 3.8.10(react@18.2.0) 1347 1333 '@react-types/shared': 3.22.1(react@18.2.0) 1348 - framer-motion: 11.0.8(react-dom@18.2.0)(react@18.2.0) 1334 + framer-motion: 11.0.13(react-dom@18.2.0)(react@18.2.0) 1349 1335 react: 18.2.0 1350 1336 react-dom: 18.2.0(react@18.2.0) 1351 1337 transitivePeerDependencies: ··· 1386 1372 - tailwind-variants 1387 1373 dev: false 1388 1374 1389 - /@nextui-org/slider@2.2.6(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.18)(framer-motion@11.0.8)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0): 1375 + /@nextui-org/slider@2.2.6(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.18)(framer-motion@11.0.13)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0): 1390 1376 resolution: {integrity: sha512-adCjQ8k4bUwWcvmOJUki3+UVsCz4ms+qLG4jnY2wClPdQAwISMbZzQsuv3km+1HIZE5Ja7jzeeT/dMd8l3n+bg==} 1391 1377 peerDependencies: 1392 1378 '@nextui-org/system': '>=2.0.0' ··· 1398 1384 '@nextui-org/shared-utils': 2.0.4(react@18.2.0) 1399 1385 '@nextui-org/system': 2.0.15(@nextui-org/theme@2.1.18)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0) 1400 1386 '@nextui-org/theme': 2.1.18(tailwindcss@3.4.1) 1401 - '@nextui-org/tooltip': 2.0.30(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.18)(framer-motion@11.0.8)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0) 1387 + '@nextui-org/tooltip': 2.0.30(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.18)(framer-motion@11.0.13)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0) 1402 1388 '@nextui-org/use-aria-press': 2.0.1(react@18.2.0) 1403 1389 '@react-aria/focus': 3.16.2(react@18.2.0) 1404 1390 '@react-aria/i18n': 3.10.2(react@18.2.0) ··· 1414 1400 - tailwind-variants 1415 1401 dev: false 1416 1402 1417 - /@nextui-org/snippet@2.0.31(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.18)(framer-motion@11.0.8)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0): 1403 + /@nextui-org/snippet@2.0.31(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.18)(framer-motion@11.0.13)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0): 1418 1404 resolution: {integrity: sha512-WooH5cqlHoa6SqUhzseKY7g1ah8kzSv382u95Or9kIgSirEZCrjygup3nFeKTMAe01NZoAz3OOYO7XNFWJ57vA==} 1419 1405 peerDependencies: 1420 1406 '@nextui-org/system': '>=2.0.0' ··· 1423 1409 react: '>=18' 1424 1410 react-dom: '>=18' 1425 1411 dependencies: 1426 - '@nextui-org/button': 2.0.27(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.18)(framer-motion@11.0.8)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0) 1412 + '@nextui-org/button': 2.0.27(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.18)(framer-motion@11.0.13)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0) 1427 1413 '@nextui-org/react-utils': 2.0.10(react@18.2.0) 1428 1414 '@nextui-org/shared-icons': 2.0.6(react@18.2.0) 1429 1415 '@nextui-org/shared-utils': 2.0.4(react@18.2.0) 1430 1416 '@nextui-org/system': 2.0.15(@nextui-org/theme@2.1.18)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0) 1431 1417 '@nextui-org/theme': 2.1.18(tailwindcss@3.4.1) 1432 - '@nextui-org/tooltip': 2.0.30(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.18)(framer-motion@11.0.8)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0) 1418 + '@nextui-org/tooltip': 2.0.30(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.18)(framer-motion@11.0.13)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0) 1433 1419 '@nextui-org/use-clipboard': 2.0.4(react@18.2.0) 1434 1420 '@react-aria/focus': 3.16.2(react@18.2.0) 1435 1421 '@react-aria/utils': 3.23.2(react@18.2.0) 1436 - framer-motion: 11.0.8(react-dom@18.2.0)(react@18.2.0) 1422 + framer-motion: 11.0.13(react-dom@18.2.0)(react@18.2.0) 1437 1423 react: 18.2.0 1438 1424 react-dom: 18.2.0(react@18.2.0) 1439 1425 transitivePeerDependencies: ··· 1559 1545 - tailwind-variants 1560 1546 dev: false 1561 1547 1562 - /@nextui-org/tabs@2.0.26(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.18)(framer-motion@11.0.8)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0): 1548 + /@nextui-org/tabs@2.0.26(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.18)(framer-motion@11.0.13)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0): 1563 1549 resolution: {integrity: sha512-GjERgBYUAY1KD4GqNVy0cRi6GyQnf62q0ddcN4je3sEM6rsq3PygEXhkN5pxxFPacoYM/UE6rBswHSKlbjJjgw==} 1564 1550 peerDependencies: 1565 1551 '@nextui-org/system': '>=2.0.0' ··· 1569 1555 react-dom: '>=18' 1570 1556 dependencies: 1571 1557 '@nextui-org/aria-utils': 2.0.15(@nextui-org/theme@2.1.18)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0) 1572 - '@nextui-org/framer-transitions': 2.0.15(@nextui-org/theme@2.1.18)(framer-motion@11.0.8)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0) 1558 + '@nextui-org/framer-transitions': 2.0.15(@nextui-org/theme@2.1.18)(framer-motion@11.0.13)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0) 1573 1559 '@nextui-org/react-utils': 2.0.10(react@18.2.0) 1574 1560 '@nextui-org/shared-utils': 2.0.4(react@18.2.0) 1575 1561 '@nextui-org/system': 2.0.15(@nextui-org/theme@2.1.18)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0) ··· 1583 1569 '@react-stately/tabs': 3.6.4(react@18.2.0) 1584 1570 '@react-types/shared': 3.22.1(react@18.2.0) 1585 1571 '@react-types/tabs': 3.3.5(react@18.2.0) 1586 - framer-motion: 11.0.8(react-dom@18.2.0)(react@18.2.0) 1572 + framer-motion: 11.0.13(react-dom@18.2.0)(react@18.2.0) 1587 1573 react: 18.2.0 1588 1574 react-dom: 18.2.0(react@18.2.0) 1589 1575 scroll-into-view-if-needed: 3.0.10 ··· 1609 1595 tailwindcss: 3.4.1 1610 1596 dev: false 1611 1597 1612 - /@nextui-org/tooltip@2.0.30(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.18)(framer-motion@11.0.8)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0): 1598 + /@nextui-org/tooltip@2.0.30(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.18)(framer-motion@11.0.13)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0): 1613 1599 resolution: {integrity: sha512-V3N9o/oNU1Y11etiilrlqt5dF4/o9eJSttgN2CPo8eRAPc96+sRpdGPGX3XcLJZNFRcNx8BkD/bcEUcrDdjmRA==} 1614 1600 peerDependencies: 1615 1601 '@nextui-org/system': '>=2.0.0' ··· 1619 1605 react-dom: '>=18' 1620 1606 dependencies: 1621 1607 '@nextui-org/aria-utils': 2.0.15(@nextui-org/theme@2.1.18)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0) 1622 - '@nextui-org/framer-transitions': 2.0.15(@nextui-org/theme@2.1.18)(framer-motion@11.0.8)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0) 1608 + '@nextui-org/framer-transitions': 2.0.15(@nextui-org/theme@2.1.18)(framer-motion@11.0.13)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0) 1623 1609 '@nextui-org/react-utils': 2.0.10(react@18.2.0) 1624 1610 '@nextui-org/shared-utils': 2.0.4(react@18.2.0) 1625 1611 '@nextui-org/system': 2.0.15(@nextui-org/theme@2.1.18)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0) ··· 1632 1618 '@react-stately/tooltip': 3.4.7(react@18.2.0) 1633 1619 '@react-types/overlays': 3.8.5(react@18.2.0) 1634 1620 '@react-types/tooltip': 3.4.7(react@18.2.0) 1635 - framer-motion: 11.0.8(react-dom@18.2.0)(react@18.2.0) 1621 + framer-motion: 11.0.13(react-dom@18.2.0)(react@18.2.0) 1636 1622 react: 18.2.0 1637 1623 react-dom: 18.2.0(react@18.2.0) 1638 1624 transitivePeerDependencies: ··· 2897 2883 resolution: {integrity: sha512-nG96G3Wp6acyAgJqGasjODb+acrI7KltPiRxzHPXnP3NgI28bpQDRv53olbqGXbfcgF5aiiHmO3xpwEpS5Ld9g==} 2898 2884 dev: false 2899 2885 2900 - /@types/node@20.11.24: 2901 - resolution: {integrity: sha512-Kza43ewS3xoLgCEpQrsT+xRo/EJej1y0kVYGiLFE1NEODXGzTfwiC6tXTLMQskn1X4/Rjlh0MQUvx9W+L9long==} 2886 + /@types/node@20.11.27: 2887 + resolution: {integrity: sha512-qyUZfMnCg1KEz57r7pzFtSGt49f6RPkPBis3Vo4PbS7roQEDn22hiHzl/Lo1q4i4hDEgBJmBF/NTNg2XR0HbFg==} 2902 2888 dependencies: 2903 2889 undici-types: 5.26.5 2904 2890 dev: true ··· 2906 2892 /@types/prop-types@15.7.11: 2907 2893 resolution: {integrity: sha512-ga8y9v9uyeiLdpKddhxYQkxNDrfvuPrlFb0N1qnZZByvcElJaXthF1UhvCh9TLWJBEHeNtdnbysW7Y6Uq8CVng==} 2908 2894 2909 - /@types/react-dom@18.2.19: 2910 - resolution: {integrity: sha512-aZvQL6uUbIJpjZk4U8JZGbau9KDeAwMfmhyWorxgBkqDIEf6ROjRozcmPIicqsUwPUjbkDfHKgGee1Lq65APcA==} 2895 + /@types/react-dom@18.2.22: 2896 + resolution: {integrity: sha512-fHkBXPeNtfvri6gdsMYyW+dW7RXFo6Ad09nLFK0VQWR7yGLai/Cyvyj696gbwYvBnhGtevUG9cET0pmUbMtoPQ==} 2911 2897 dependencies: 2912 - '@types/react': 18.2.63 2898 + '@types/react': 18.2.66 2913 2899 dev: true 2914 2900 2915 - /@types/react@18.2.63: 2916 - resolution: {integrity: sha512-ppaqODhs15PYL2nGUOaOu2RSCCB4Difu4UFrP4I3NHLloXC/ESQzQMi9nvjfT1+rudd0d2L3fQPJxRSey+rGlQ==} 2901 + /@types/react@18.2.66: 2902 + resolution: {integrity: sha512-OYTmMI4UigXeFMF/j4uv0lBBEbongSgptPrHBxqME44h9+yNov+oL6Z3ocJKo0WyXR84sQUNeyIp9MRfckvZpg==} 2917 2903 dependencies: 2918 2904 '@types/prop-types': 15.7.11 2919 2905 '@types/scheduler': 0.16.8 ··· 2934 2920 resolution: {integrity: sha512-dqId9J8K/vGi5Zr7oo212BGii5m3q5Hxlkwy3WpYuKPklmBEvsbMYYyLxAQpSffdLl/gdW0XUpKWFvYmyoWCoQ==} 2935 2921 dev: false 2936 2922 2937 - /@typescript-eslint/eslint-plugin@5.62.0(@typescript-eslint/parser@5.62.0)(eslint@8.56.0)(typescript@5.3.3): 2923 + /@typescript-eslint/eslint-plugin@5.62.0(@typescript-eslint/parser@5.62.0)(eslint@8.57.0)(typescript@5.4.2): 2938 2924 resolution: {integrity: sha512-TiZzBSJja/LbhNPvk6yc0JrX9XqhQ0hdh6M2svYfsHGejaKFIAGd9MQ+ERIMzLGlN/kZoYIgdxFV0PuljTKXag==} 2939 2925 engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 2940 2926 peerDependencies: ··· 2946 2932 optional: true 2947 2933 dependencies: 2948 2934 '@eslint-community/regexpp': 4.10.0 2949 - '@typescript-eslint/parser': 5.62.0(eslint@8.56.0)(typescript@5.3.3) 2935 + '@typescript-eslint/parser': 5.62.0(eslint@8.57.0)(typescript@5.4.2) 2950 2936 '@typescript-eslint/scope-manager': 5.62.0 2951 - '@typescript-eslint/type-utils': 5.62.0(eslint@8.56.0)(typescript@5.3.3) 2952 - '@typescript-eslint/utils': 5.62.0(eslint@8.56.0)(typescript@5.3.3) 2937 + '@typescript-eslint/type-utils': 5.62.0(eslint@8.57.0)(typescript@5.4.2) 2938 + '@typescript-eslint/utils': 5.62.0(eslint@8.57.0)(typescript@5.4.2) 2953 2939 debug: 4.3.4 2954 - eslint: 8.56.0 2940 + eslint: 8.57.0 2955 2941 graphemer: 1.4.0 2956 2942 ignore: 5.3.1 2957 2943 natural-compare-lite: 1.4.0 2958 2944 semver: 7.6.0 2959 - tsutils: 3.21.0(typescript@5.3.3) 2960 - typescript: 5.3.3 2945 + tsutils: 3.21.0(typescript@5.4.2) 2946 + typescript: 5.4.2 2961 2947 transitivePeerDependencies: 2962 2948 - supports-color 2963 2949 dev: true 2964 2950 2965 - /@typescript-eslint/parser@5.62.0(eslint@8.56.0)(typescript@5.3.3): 2951 + /@typescript-eslint/parser@5.62.0(eslint@8.57.0)(typescript@5.4.2): 2966 2952 resolution: {integrity: sha512-VlJEV0fOQ7BExOsHYAGrgbEiZoi8D+Bl2+f6V2RrXerRSylnp+ZBHmPvaIa8cz0Ajx7WO7Z5RqfgYg7ED1nRhA==} 2967 2953 engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 2968 2954 peerDependencies: ··· 2974 2960 dependencies: 2975 2961 '@typescript-eslint/scope-manager': 5.62.0 2976 2962 '@typescript-eslint/types': 5.62.0 2977 - '@typescript-eslint/typescript-estree': 5.62.0(typescript@5.3.3) 2963 + '@typescript-eslint/typescript-estree': 5.62.0(typescript@5.4.2) 2978 2964 debug: 4.3.4 2979 - eslint: 8.56.0 2980 - typescript: 5.3.3 2965 + eslint: 8.57.0 2966 + typescript: 5.4.2 2981 2967 transitivePeerDependencies: 2982 2968 - supports-color 2983 2969 ··· 2988 2974 '@typescript-eslint/types': 5.62.0 2989 2975 '@typescript-eslint/visitor-keys': 5.62.0 2990 2976 2991 - /@typescript-eslint/type-utils@5.62.0(eslint@8.56.0)(typescript@5.3.3): 2977 + /@typescript-eslint/type-utils@5.62.0(eslint@8.57.0)(typescript@5.4.2): 2992 2978 resolution: {integrity: sha512-xsSQreu+VnfbqQpW5vnCJdq1Z3Q0U31qiWmRhr98ONQmcp/yhiPJFPq8MXiJVLiksmOKSjIldZzkebzHuCGzew==} 2993 2979 engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 2994 2980 peerDependencies: ··· 2998 2984 typescript: 2999 2985 optional: true 3000 2986 dependencies: 3001 - '@typescript-eslint/typescript-estree': 5.62.0(typescript@5.3.3) 3002 - '@typescript-eslint/utils': 5.62.0(eslint@8.56.0)(typescript@5.3.3) 2987 + '@typescript-eslint/typescript-estree': 5.62.0(typescript@5.4.2) 2988 + '@typescript-eslint/utils': 5.62.0(eslint@8.57.0)(typescript@5.4.2) 3003 2989 debug: 4.3.4 3004 - eslint: 8.56.0 3005 - tsutils: 3.21.0(typescript@5.3.3) 3006 - typescript: 5.3.3 2990 + eslint: 8.57.0 2991 + tsutils: 3.21.0(typescript@5.4.2) 2992 + typescript: 5.4.2 3007 2993 transitivePeerDependencies: 3008 2994 - supports-color 3009 2995 dev: true ··· 3012 2998 resolution: {integrity: sha512-87NVngcbVXUahrRTqIK27gD2t5Cu1yuCXxbLcFtCzZGlfyVWWh8mLHkoxzjsB6DDNnvdL+fW8MiwPEJyGJQDgQ==} 3013 2999 engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 3014 3000 3015 - /@typescript-eslint/typescript-estree@5.62.0(typescript@5.3.3): 3001 + /@typescript-eslint/typescript-estree@5.62.0(typescript@5.4.2): 3016 3002 resolution: {integrity: sha512-CmcQ6uY7b9y694lKdRB8FEel7JbU/40iSAPomu++SjLMntB+2Leay2LO6i8VnJk58MtE9/nQSFIH6jpyRWyYzA==} 3017 3003 engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 3018 3004 peerDependencies: ··· 3027 3013 globby: 11.1.0 3028 3014 is-glob: 4.0.3 3029 3015 semver: 7.6.0 3030 - tsutils: 3.21.0(typescript@5.3.3) 3031 - typescript: 5.3.3 3016 + tsutils: 3.21.0(typescript@5.4.2) 3017 + typescript: 5.4.2 3032 3018 transitivePeerDependencies: 3033 3019 - supports-color 3034 3020 3035 - /@typescript-eslint/utils@5.62.0(eslint@8.56.0)(typescript@5.3.3): 3021 + /@typescript-eslint/utils@5.62.0(eslint@8.57.0)(typescript@5.4.2): 3036 3022 resolution: {integrity: sha512-n8oxjeb5aIbPFEtmQxQYOLI0i9n5ySBEY/ZEHHZqKQSFnxio1rv6dthascc9dLuwrL0RC5mPCxB7vnAVGAYWAQ==} 3037 3023 engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 3038 3024 peerDependencies: 3039 3025 eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 3040 3026 dependencies: 3041 - '@eslint-community/eslint-utils': 4.4.0(eslint@8.56.0) 3027 + '@eslint-community/eslint-utils': 4.4.0(eslint@8.57.0) 3042 3028 '@types/json-schema': 7.0.15 3043 3029 '@types/semver': 7.5.8 3044 3030 '@typescript-eslint/scope-manager': 5.62.0 3045 3031 '@typescript-eslint/types': 5.62.0 3046 - '@typescript-eslint/typescript-estree': 5.62.0(typescript@5.3.3) 3047 - eslint: 8.56.0 3032 + '@typescript-eslint/typescript-estree': 5.62.0(typescript@5.4.2) 3033 + eslint: 8.57.0 3048 3034 eslint-scope: 5.1.1 3049 3035 semver: 7.6.0 3050 3036 transitivePeerDependencies: ··· 3272 3258 hasBin: true 3273 3259 dev: true 3274 3260 3275 - /autoprefixer@10.4.17(postcss@8.4.33): 3276 - resolution: {integrity: sha512-/cpVNRLSfhOtcGflT13P2794gVSgmPgTR+erw5ifnMLZb0UnSlkK4tquLmkd3BhA+nLo5tX8Cu0upUsGKvKbmg==} 3261 + /autoprefixer@10.4.18(postcss@8.4.35): 3262 + resolution: {integrity: sha512-1DKbDfsr6KUElM6wg+0zRNkB/Q7WcKYAaK+pzXn+Xqmszm/5Xa9coeNdtP88Vi+dPzZnMjhge8GIV49ZQkDa+g==} 3277 3263 engines: {node: ^10 || ^12 || >=14} 3278 3264 hasBin: true 3279 3265 peerDependencies: 3280 3266 postcss: ^8.1.0 3281 3267 dependencies: 3282 3268 browserslist: 4.23.0 3283 - caniuse-lite: 1.0.30001594 3269 + caniuse-lite: 1.0.30001597 3284 3270 fraction.js: 4.3.7 3285 3271 normalize-range: 0.1.2 3286 3272 picocolors: 1.0.0 3287 - postcss: 8.4.33 3273 + postcss: 8.4.35 3288 3274 postcss-value-parser: 4.2.0 3289 3275 dev: false 3290 3276 ··· 3331 3317 engines: {node: '>=0.6'} 3332 3318 dev: false 3333 3319 3334 - /binary-extensions@2.2.0: 3335 - resolution: {integrity: sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==} 3320 + /binary-extensions@2.3.0: 3321 + resolution: {integrity: sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==} 3336 3322 engines: {node: '>=8'} 3337 3323 dev: false 3338 3324 ··· 3372 3358 engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} 3373 3359 hasBin: true 3374 3360 dependencies: 3375 - caniuse-lite: 1.0.30001594 3376 - electron-to-chromium: 1.4.692 3361 + caniuse-lite: 1.0.30001597 3362 + electron-to-chromium: 1.4.705 3377 3363 node-releases: 2.0.14 3378 3364 update-browserslist-db: 1.0.13(browserslist@4.23.0) 3379 3365 dev: false ··· 3408 3394 es-errors: 1.3.0 3409 3395 function-bind: 1.1.2 3410 3396 get-intrinsic: 1.2.4 3411 - set-function-length: 1.2.1 3397 + set-function-length: 1.2.2 3412 3398 dev: false 3413 3399 3414 3400 /callsites@3.1.0: ··· 3420 3406 engines: {node: '>= 6'} 3421 3407 dev: false 3422 3408 3423 - /caniuse-lite@1.0.30001594: 3424 - resolution: {integrity: sha512-VblSX6nYqyJVs8DKFMldE2IVCJjZ225LW00ydtUWwh5hk9IfkTOffO6r8gJNsH0qqqeAF8KrbMYA2VEwTlGW5g==} 3409 + /caniuse-lite@1.0.30001597: 3410 + resolution: {integrity: sha512-7LjJvmQU6Sj7bL0j5b5WY/3n7utXUJvAe1lxhsHDbLmwX9mdL86Yjtr+5SRCyf8qME4M7pU2hswj0FpyBVCv9w==} 3425 3411 dev: false 3426 3412 3427 3413 /chalk@4.1.2: ··· 3794 3780 resolution: {integrity: sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==} 3795 3781 dev: false 3796 3782 3797 - /electron-to-chromium@1.4.692: 3798 - resolution: {integrity: sha512-d5rZRka9n2Y3MkWRN74IoAsxR0HK3yaAt7T50e3iT9VZmCCQDT3geXUO5ZRMhDToa1pkCeQXuNo+0g+NfDOVPA==} 3783 + /electron-to-chromium@1.4.705: 3784 + resolution: {integrity: sha512-LKqhpwJCLhYId2VVwEzFXWrqQI5n5zBppz1W9ehhTlfYU8CUUW6kClbN8LHF/v7flMgRdETS772nqywJ+ckVAw==} 3799 3785 dev: false 3800 3786 3801 3787 /emoji-regex@8.0.0: ··· 3806 3792 resolution: {integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==} 3807 3793 dev: false 3808 3794 3809 - /enhanced-resolve@5.15.1: 3810 - resolution: {integrity: sha512-3d3JRbwsCLJsYgvb6NuWEG44jjPSOMuS73L/6+7BZuoKm3W+qXnSoIYVHi8dG7Qcg4inAY4jbzkZ7MnskePeDg==} 3795 + /enhanced-resolve@5.16.0: 3796 + resolution: {integrity: sha512-O+QWCviPNSSLAD9Ucn8Awv+poAkqn3T1XY5/N7kR7rQO9yfSGWkYZDwpJ+iKF7B8rxaQKWngSqACpgzeapSyoA==} 3811 3797 engines: {node: '>=10.13.0'} 3812 3798 dependencies: 3813 3799 graceful-fs: 4.2.11 ··· 3839 3825 has-property-descriptors: 1.0.2 3840 3826 has-proto: 1.0.3 3841 3827 has-symbols: 1.0.3 3842 - hasown: 2.0.1 3828 + hasown: 2.0.2 3843 3829 internal-slot: 1.0.7 3844 3830 is-array-buffer: 3.0.4 3845 3831 is-callable: 1.2.7 ··· 3853 3839 object-keys: 1.1.1 3854 3840 object.assign: 4.1.5 3855 3841 regexp.prototype.flags: 1.5.2 3856 - safe-array-concat: 1.1.0 3842 + safe-array-concat: 1.1.2 3857 3843 safe-regex-test: 1.0.3 3858 3844 string.prototype.trim: 1.2.8 3859 3845 string.prototype.trimend: 1.0.7 ··· 3863 3849 typed-array-byte-offset: 1.0.2 3864 3850 typed-array-length: 1.0.5 3865 3851 unbox-primitive: 1.0.2 3866 - which-typed-array: 1.1.14 3852 + which-typed-array: 1.1.15 3867 3853 dev: false 3868 3854 3869 3855 /es-array-method-boxes-properly@1.0.0: ··· 3900 3886 has-symbols: 1.0.3 3901 3887 internal-slot: 1.0.7 3902 3888 iterator.prototype: 1.1.2 3903 - safe-array-concat: 1.1.0 3889 + safe-array-concat: 1.1.2 3904 3890 dev: false 3905 3891 3906 3892 /es-set-tostringtag@2.0.3: ··· 3909 3895 dependencies: 3910 3896 get-intrinsic: 1.2.4 3911 3897 has-tostringtag: 1.0.2 3912 - hasown: 2.0.1 3898 + hasown: 2.0.2 3913 3899 dev: false 3914 3900 3915 3901 /es-shim-unscopables@1.0.2: 3916 3902 resolution: {integrity: sha512-J3yBRXCzDu4ULnQwxyToo/OjdMx6akgVC7K6few0a7F/0wLtmKKN7I73AH5T2836UuXRqN7Qg+IIUw/+YJksRw==} 3917 3903 dependencies: 3918 - hasown: 2.0.1 3904 + hasown: 2.0.2 3919 3905 dev: false 3920 3906 3921 3907 /es-to-primitive@1.2.1: ··· 3936 3922 resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==} 3937 3923 engines: {node: '>=10'} 3938 3924 3939 - /eslint-config-next@14.1.0(eslint@8.56.0)(typescript@5.3.3): 3940 - resolution: {integrity: sha512-SBX2ed7DoRFXC6CQSLc/SbLY9Ut6HxNB2wPTcoIWjUMd7aF7O/SIE7111L8FdZ9TXsNV4pulUDnfthpyPtbFUg==} 3925 + /eslint-config-next@14.1.3(eslint@8.57.0)(typescript@5.4.2): 3926 + resolution: {integrity: sha512-sUCpWlGuHpEhI0pIT0UtdSLJk5Z8E2DYinPTwsBiWaSYQomchdl0i60pjynY48+oXvtyWMQ7oE+G3m49yrfacg==} 3941 3927 peerDependencies: 3942 3928 eslint: ^7.23.0 || ^8.0.0 3943 3929 typescript: '>=3.3.1' ··· 3945 3931 typescript: 3946 3932 optional: true 3947 3933 dependencies: 3948 - '@next/eslint-plugin-next': 14.1.0 3934 + '@next/eslint-plugin-next': 14.1.3 3949 3935 '@rushstack/eslint-patch': 1.7.2 3950 - '@typescript-eslint/parser': 5.62.0(eslint@8.56.0)(typescript@5.3.3) 3951 - eslint: 8.56.0 3936 + '@typescript-eslint/parser': 5.62.0(eslint@8.57.0)(typescript@5.4.2) 3937 + eslint: 8.57.0 3952 3938 eslint-import-resolver-node: 0.3.9 3953 - eslint-import-resolver-typescript: 3.6.1(@typescript-eslint/parser@5.62.0)(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.29.1)(eslint@8.56.0) 3954 - eslint-plugin-import: 2.29.1(@typescript-eslint/parser@5.62.0)(eslint-import-resolver-typescript@3.6.1)(eslint@8.56.0) 3955 - eslint-plugin-jsx-a11y: 6.8.0(eslint@8.56.0) 3956 - eslint-plugin-react: 7.34.0(eslint@8.56.0) 3957 - eslint-plugin-react-hooks: 4.6.0(eslint@8.56.0) 3958 - typescript: 5.3.3 3939 + eslint-import-resolver-typescript: 3.6.1(@typescript-eslint/parser@5.62.0)(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.29.1)(eslint@8.57.0) 3940 + eslint-plugin-import: 2.29.1(@typescript-eslint/parser@5.62.0)(eslint-import-resolver-typescript@3.6.1)(eslint@8.57.0) 3941 + eslint-plugin-jsx-a11y: 6.8.0(eslint@8.57.0) 3942 + eslint-plugin-react: 7.34.0(eslint@8.57.0) 3943 + eslint-plugin-react-hooks: 4.6.0(eslint@8.57.0) 3944 + typescript: 5.4.2 3959 3945 transitivePeerDependencies: 3960 3946 - eslint-import-resolver-webpack 3961 3947 - supports-color ··· 3971 3957 - supports-color 3972 3958 dev: false 3973 3959 3974 - /eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@5.62.0)(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.29.1)(eslint@8.56.0): 3960 + /eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@5.62.0)(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.29.1)(eslint@8.57.0): 3975 3961 resolution: {integrity: sha512-xgdptdoi5W3niYeuQxKmzVDTATvLYqhpwmykwsh7f6HIOStGWEIL9iqZgQDF9u9OEzrRwR8no5q2VT+bjAujTg==} 3976 3962 engines: {node: ^14.18.0 || >=16.0.0} 3977 3963 peerDependencies: ··· 3979 3965 eslint-plugin-import: '*' 3980 3966 dependencies: 3981 3967 debug: 4.3.4 3982 - enhanced-resolve: 5.15.1 3983 - eslint: 8.56.0 3984 - eslint-module-utils: 2.8.1(@typescript-eslint/parser@5.62.0)(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1)(eslint@8.56.0) 3985 - eslint-plugin-import: 2.29.1(@typescript-eslint/parser@5.62.0)(eslint-import-resolver-typescript@3.6.1)(eslint@8.56.0) 3968 + enhanced-resolve: 5.16.0 3969 + eslint: 8.57.0 3970 + eslint-module-utils: 2.8.1(@typescript-eslint/parser@5.62.0)(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1)(eslint@8.57.0) 3971 + eslint-plugin-import: 2.29.1(@typescript-eslint/parser@5.62.0)(eslint-import-resolver-typescript@3.6.1)(eslint@8.57.0) 3986 3972 fast-glob: 3.3.2 3987 - get-tsconfig: 4.7.2 3973 + get-tsconfig: 4.7.3 3988 3974 is-core-module: 2.13.1 3989 3975 is-glob: 4.0.3 3990 3976 transitivePeerDependencies: ··· 3994 3980 - supports-color 3995 3981 dev: false 3996 3982 3997 - /eslint-module-utils@2.8.1(@typescript-eslint/parser@5.62.0)(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1)(eslint@8.56.0): 3983 + /eslint-module-utils@2.8.1(@typescript-eslint/parser@5.62.0)(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1)(eslint@8.57.0): 3998 3984 resolution: {integrity: sha512-rXDXR3h7cs7dy9RNpUlQf80nX31XWJEyGq1tRMo+6GsO5VmTe4UTwtmonAD4ZkAsrfMVDA2wlGJ3790Ys+D49Q==} 3999 3985 engines: {node: '>=4'} 4000 3986 peerDependencies: ··· 4015 4001 eslint-import-resolver-webpack: 4016 4002 optional: true 4017 4003 dependencies: 4018 - '@typescript-eslint/parser': 5.62.0(eslint@8.56.0)(typescript@5.3.3) 4004 + '@typescript-eslint/parser': 5.62.0(eslint@8.57.0)(typescript@5.4.2) 4019 4005 debug: 3.2.7 4020 - eslint: 8.56.0 4006 + eslint: 8.57.0 4021 4007 eslint-import-resolver-node: 0.3.9 4022 - eslint-import-resolver-typescript: 3.6.1(@typescript-eslint/parser@5.62.0)(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.29.1)(eslint@8.56.0) 4008 + eslint-import-resolver-typescript: 3.6.1(@typescript-eslint/parser@5.62.0)(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.29.1)(eslint@8.57.0) 4023 4009 transitivePeerDependencies: 4024 4010 - supports-color 4025 4011 dev: false 4026 4012 4027 - /eslint-plugin-import@2.29.1(@typescript-eslint/parser@5.62.0)(eslint-import-resolver-typescript@3.6.1)(eslint@8.56.0): 4013 + /eslint-plugin-import@2.29.1(@typescript-eslint/parser@5.62.0)(eslint-import-resolver-typescript@3.6.1)(eslint@8.57.0): 4028 4014 resolution: {integrity: sha512-BbPC0cuExzhiMo4Ff1BTVwHpjjv28C5R+btTOGaCRC7UEz801up0JadwkeSk5Ued6TG34uaczuVuH6qyy5YUxw==} 4029 4015 engines: {node: '>=4'} 4030 4016 peerDependencies: ··· 4034 4020 '@typescript-eslint/parser': 4035 4021 optional: true 4036 4022 dependencies: 4037 - '@typescript-eslint/parser': 5.62.0(eslint@8.56.0)(typescript@5.3.3) 4023 + '@typescript-eslint/parser': 5.62.0(eslint@8.57.0)(typescript@5.4.2) 4038 4024 array-includes: 3.1.7 4039 4025 array.prototype.findlastindex: 1.2.4 4040 4026 array.prototype.flat: 1.3.2 4041 4027 array.prototype.flatmap: 1.3.2 4042 4028 debug: 3.2.7 4043 4029 doctrine: 2.1.0 4044 - eslint: 8.56.0 4030 + eslint: 8.57.0 4045 4031 eslint-import-resolver-node: 0.3.9 4046 - eslint-module-utils: 2.8.1(@typescript-eslint/parser@5.62.0)(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1)(eslint@8.56.0) 4047 - hasown: 2.0.1 4032 + eslint-module-utils: 2.8.1(@typescript-eslint/parser@5.62.0)(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1)(eslint@8.57.0) 4033 + hasown: 2.0.2 4048 4034 is-core-module: 2.13.1 4049 4035 is-glob: 4.0.3 4050 4036 minimatch: 3.1.2 ··· 4059 4045 - supports-color 4060 4046 dev: false 4061 4047 4062 - /eslint-plugin-jsx-a11y@6.8.0(eslint@8.56.0): 4048 + /eslint-plugin-jsx-a11y@6.8.0(eslint@8.57.0): 4063 4049 resolution: {integrity: sha512-Hdh937BS3KdwwbBaKd5+PLCOmYY6U4f2h9Z2ktwtNKvIdIEu137rjYbcb9ApSbVJfWxANNuiKTD/9tOKjK9qOA==} 4064 4050 engines: {node: '>=4.0'} 4065 4051 peerDependencies: ··· 4075 4061 damerau-levenshtein: 1.0.8 4076 4062 emoji-regex: 9.2.2 4077 4063 es-iterator-helpers: 1.0.17 4078 - eslint: 8.56.0 4079 - hasown: 2.0.1 4064 + eslint: 8.57.0 4065 + hasown: 2.0.2 4080 4066 jsx-ast-utils: 3.3.5 4081 4067 language-tags: 1.0.9 4082 4068 minimatch: 3.1.2 ··· 4084 4070 object.fromentries: 2.0.7 4085 4071 dev: false 4086 4072 4087 - /eslint-plugin-path-alias@1.0.0(eslint@8.56.0): 4073 + /eslint-plugin-path-alias@1.0.0(eslint@8.57.0): 4088 4074 resolution: {integrity: sha512-FXus57yC+Zd3sMv46pbloXYwFeNVNHJqlACr9V68FG/IzGFBBokGJpmjDbEjpt8ZCeVSndUubeDWWl2A8sCNVQ==} 4089 4075 peerDependencies: 4090 4076 eslint: ^7 4091 4077 dependencies: 4092 - eslint: 8.56.0 4078 + eslint: 8.57.0 4093 4079 nanomatch: 1.2.13 4094 4080 transitivePeerDependencies: 4095 4081 - supports-color 4096 4082 dev: true 4097 4083 4098 - /eslint-plugin-react-hooks@4.6.0(eslint@8.56.0): 4084 + /eslint-plugin-react-hooks@4.6.0(eslint@8.57.0): 4099 4085 resolution: {integrity: sha512-oFc7Itz9Qxh2x4gNHStv3BqJq54ExXmfC+a1NjAta66IAN87Wu0R/QArgIS9qKzX3dXKPI9H5crl9QchNMY9+g==} 4100 4086 engines: {node: '>=10'} 4101 4087 peerDependencies: 4102 4088 eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 4103 4089 dependencies: 4104 - eslint: 8.56.0 4090 + eslint: 8.57.0 4105 4091 dev: false 4106 4092 4107 - /eslint-plugin-react@7.34.0(eslint@8.56.0): 4093 + /eslint-plugin-react@7.34.0(eslint@8.57.0): 4108 4094 resolution: {integrity: sha512-MeVXdReleBTdkz/bvcQMSnCXGi+c9kvy51IpinjnJgutl3YTHWsDdke7Z1ufZpGfDG8xduBDKyjtB9JH1eBKIQ==} 4109 4095 engines: {node: '>=4'} 4110 4096 peerDependencies: ··· 4117 4103 array.prototype.tosorted: 1.1.3 4118 4104 doctrine: 2.1.0 4119 4105 es-iterator-helpers: 1.0.17 4120 - eslint: 8.56.0 4106 + eslint: 8.57.0 4121 4107 estraverse: 5.3.0 4122 4108 jsx-ast-utils: 3.3.5 4123 4109 minimatch: 3.1.2 ··· 4131 4117 string.prototype.matchall: 4.0.10 4132 4118 dev: false 4133 4119 4134 - /eslint-plugin-simple-import-sort@10.0.0(eslint@8.56.0): 4120 + /eslint-plugin-simple-import-sort@10.0.0(eslint@8.57.0): 4135 4121 resolution: {integrity: sha512-AeTvO9UCMSNzIHRkg8S6c3RPy5YEwKWSQPx3DYghLedo2ZQxowPFLGDN1AZ2evfg6r6mjBSZSLxLFsWSu3acsw==} 4136 4122 peerDependencies: 4137 4123 eslint: '>=5.0.0' 4138 4124 dependencies: 4139 - eslint: 8.56.0 4125 + eslint: 8.57.0 4140 4126 dev: true 4141 4127 4142 - /eslint-plugin-unused-imports@2.0.0(@typescript-eslint/eslint-plugin@5.62.0)(eslint@8.56.0): 4128 + /eslint-plugin-unused-imports@2.0.0(@typescript-eslint/eslint-plugin@5.62.0)(eslint@8.57.0): 4143 4129 resolution: {integrity: sha512-3APeS/tQlTrFa167ThtP0Zm0vctjr4M44HMpeg1P4bK6wItarumq0Ma82xorMKdFsWpphQBlRPzw/pxiVELX1A==} 4144 4130 engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 4145 4131 peerDependencies: ··· 4149 4135 '@typescript-eslint/eslint-plugin': 4150 4136 optional: true 4151 4137 dependencies: 4152 - '@typescript-eslint/eslint-plugin': 5.62.0(@typescript-eslint/parser@5.62.0)(eslint@8.56.0)(typescript@5.3.3) 4153 - eslint: 8.56.0 4138 + '@typescript-eslint/eslint-plugin': 5.62.0(@typescript-eslint/parser@5.62.0)(eslint@8.57.0)(typescript@5.4.2) 4139 + eslint: 8.57.0 4154 4140 eslint-rule-composer: 0.3.0 4155 4141 dev: true 4156 4142 ··· 4178 4164 resolution: {integrity: sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==} 4179 4165 engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 4180 4166 4181 - /eslint@8.56.0: 4182 - resolution: {integrity: sha512-Go19xM6T9puCOWntie1/P997aXxFsOi37JIHRWI514Hc6ZnaHGKY9xFhrU65RT6CcBEzZoGG1e6Nq+DT04ZtZQ==} 4167 + /eslint@8.57.0: 4168 + resolution: {integrity: sha512-dZ6+mexnaTIbSBZWgou51U6OmzIhYM2VcNdtiTtI7qPNZm35Akpr0f6vtw3w1Kmn5PYo+tZVfh13WrhpS6oLqQ==} 4183 4169 engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 4184 4170 hasBin: true 4185 4171 dependencies: 4186 - '@eslint-community/eslint-utils': 4.4.0(eslint@8.56.0) 4172 + '@eslint-community/eslint-utils': 4.4.0(eslint@8.57.0) 4187 4173 '@eslint-community/regexpp': 4.10.0 4188 4174 '@eslint/eslintrc': 2.1.4 4189 - '@eslint/js': 8.56.0 4175 + '@eslint/js': 8.57.0 4190 4176 '@humanwhocodes/config-array': 0.11.14 4191 4177 '@humanwhocodes/module-importer': 1.0.1 4192 4178 '@nodelib/fs.walk': 1.2.8 ··· 4374 4360 map-cache: 0.2.2 4375 4361 dev: true 4376 4362 4377 - /framer-motion@11.0.8(react-dom@18.2.0)(react@18.2.0): 4378 - resolution: {integrity: sha512-1KSGNuqe1qZkS/SWQlDnqK2VCVzRVEoval379j0FiUBJAZoqgwyvqFkfvJbgW2IPFo4wX16K+M0k5jO23lCIjA==} 4363 + /framer-motion@11.0.13(react-dom@18.2.0)(react@18.2.0): 4364 + resolution: {integrity: sha512-zDjUj7dBiB6WklCvklKH06mwbYO0hzWrq5Rdz/DgeBFsCVQRmb9Zv7I9dPM7lX5c8eMxxba5D6sEVIv1kj/Ttg==} 4379 4365 peerDependencies: 4366 + '@emotion/is-prop-valid': '*' 4380 4367 react: ^18.0.0 4381 4368 react-dom: ^18.0.0 4382 4369 peerDependenciesMeta: 4370 + '@emotion/is-prop-valid': 4371 + optional: true 4383 4372 react: 4384 4373 optional: true 4385 4374 react-dom: ··· 4388 4377 react: 18.2.0 4389 4378 react-dom: 18.2.0(react@18.2.0) 4390 4379 tslib: 2.6.2 4391 - optionalDependencies: 4392 - '@emotion/is-prop-valid': 0.8.8 4393 4380 dev: false 4394 4381 4395 4382 /fs.realpath@1.0.0: ··· 4428 4415 function-bind: 1.1.2 4429 4416 has-proto: 1.0.3 4430 4417 has-symbols: 1.0.3 4431 - hasown: 2.0.1 4418 + hasown: 2.0.2 4432 4419 dev: false 4433 4420 4434 4421 /get-nonce@1.0.1: ··· 4445 4432 get-intrinsic: 1.2.4 4446 4433 dev: false 4447 4434 4448 - /get-tsconfig@4.7.2: 4449 - resolution: {integrity: sha512-wuMsz4leaj5hbGgg4IvDU0bqJagpftG5l5cXIAvo8uZrqn0NJqwtfupTN00VnkQJPcIRrxYrm1Ue24btpCha2A==} 4435 + /get-tsconfig@4.7.3: 4436 + resolution: {integrity: sha512-ZvkrzoUA0PQZM6fy6+/Hce561s+faD1rsNwhnO5FelNjyy7EMGJ3Rz1AQ8GYDWjhRs/7dBLOEJvhK8MiEJOAFg==} 4450 4437 dependencies: 4451 4438 resolve-pkg-maps: 1.0.0 4452 4439 dev: false ··· 4589 4576 kind-of: 4.0.0 4590 4577 dev: true 4591 4578 4592 - /hasown@2.0.1: 4593 - resolution: {integrity: sha512-1/th4MHjnwncwXsIW6QMzlvYL9kG5e/CpVvLRZe4XPa8TOUNbCELqmvhDmnkNsAjwaG4+I8gJJL0JBvTTLO9qA==} 4579 + /hasown@2.0.2: 4580 + resolution: {integrity: sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==} 4594 4581 engines: {node: '>= 0.4'} 4595 4582 dependencies: 4596 4583 function-bind: 1.1.2 ··· 4695 4682 engines: {node: '>= 0.4'} 4696 4683 dependencies: 4697 4684 es-errors: 1.3.0 4698 - hasown: 2.0.1 4685 + hasown: 2.0.2 4699 4686 side-channel: 1.0.6 4700 4687 dev: false 4701 4688 ··· 4723 4710 resolution: {integrity: sha512-YBUanLI8Yoihw923YeFUS5fs0fF2f5TSFTNiYAAzhhDscDa3lEqYuz1pDOEP5KvX94I9ey3vsqjJcLVFVU+3QA==} 4724 4711 engines: {node: '>= 0.10'} 4725 4712 dependencies: 4726 - hasown: 2.0.1 4713 + hasown: 2.0.2 4727 4714 dev: true 4728 4715 4729 4716 /is-array-buffer@3.0.4: ··· 4755 4742 resolution: {integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==} 4756 4743 engines: {node: '>=8'} 4757 4744 dependencies: 4758 - binary-extensions: 2.2.0 4745 + binary-extensions: 2.3.0 4759 4746 dev: false 4760 4747 4761 4748 /is-boolean-object@1.1.2: ··· 4783 4770 /is-core-module@2.13.1: 4784 4771 resolution: {integrity: sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw==} 4785 4772 dependencies: 4786 - hasown: 2.0.1 4773 + hasown: 2.0.2 4787 4774 dev: false 4788 4775 4789 4776 /is-data-descriptor@1.0.1: 4790 4777 resolution: {integrity: sha512-bc4NlCDiCr28U4aEsQ3Qs2491gVq4V8G7MQyws968ImqjKuYtTJXrl7Vq7jsN7Ly/C3xj5KWFrY7sHNeDkAzXw==} 4791 4778 engines: {node: '>= 0.4'} 4792 4779 dependencies: 4793 - hasown: 2.0.1 4780 + hasown: 2.0.2 4794 4781 dev: true 4795 4782 4796 4783 /is-date-object@1.0.5: ··· 4856 4843 dependencies: 4857 4844 is-extglob: 2.1.1 4858 4845 4859 - /is-map@2.0.2: 4860 - resolution: {integrity: sha512-cOZFQQozTha1f4MxLFzlgKYPTyj26picdZTx82hbc/Xf4K/tZOOXSCkMvU4pKioRXGDLJRn0GM7Upe7kR721yg==} 4846 + /is-map@2.0.3: 4847 + resolution: {integrity: sha512-1Qed0/Hr2m+YqxnM09CjA2d/i6YZNfF6R2oRAOj36eUdS6qIV/huPJNSEpKbupewFs+ZsJlxsjjPbc0/afW6Lw==} 4848 + engines: {node: '>= 0.4'} 4861 4849 dev: false 4862 4850 4863 4851 /is-negative-zero@2.0.3: ··· 4907 4895 has-tostringtag: 1.0.2 4908 4896 dev: false 4909 4897 4910 - /is-set@2.0.2: 4911 - resolution: {integrity: sha512-+2cnTEZeY5z/iXGbLhPrOAaK/Mau5k5eXq9j14CpRTftq0pAJu2MwVRSZhyZWBzx3o6X795Lz6Bpb6R0GKf37g==} 4898 + /is-set@2.0.3: 4899 + resolution: {integrity: sha512-iPAjerrse27/ygGLxw+EBR9agv9Y6uLeYVJMu+QNCoouJ1/1ri0mGrcWpfCqFZuzzx3WjtwxG098X+n4OuRkPg==} 4900 + engines: {node: '>= 0.4'} 4912 4901 dev: false 4913 4902 4914 4903 /is-shared-array-buffer@1.0.3: ··· 4936 4925 resolution: {integrity: sha512-uZ25/bUAlUY5fR4OKT4rZQEBrzQWYV9ZJYGGsUmEJ6thodVJ1HX64ePQ6Z0qPWP+m+Uq6e9UugrE38jeYsDSMw==} 4937 4926 engines: {node: '>= 0.4'} 4938 4927 dependencies: 4939 - which-typed-array: 1.1.14 4928 + which-typed-array: 1.1.15 4940 4929 dev: false 4941 4930 4942 - /is-weakmap@2.0.1: 4943 - resolution: {integrity: sha512-NSBR4kH5oVj1Uwvv970ruUkCV7O1mzgVFO4/rev2cLRda9Tm9HrL70ZPut4rOHgY0FNrUu9BCbXA2sdQ+x0chA==} 4931 + /is-weakmap@2.0.2: 4932 + resolution: {integrity: sha512-K5pXYOm9wqY1RgjpL3YTkF39tni1XajUIkawTLUo9EZEVUFga5gSQJF8nNS7ZwJQ02y+1YCNYcMh+HIf1ZqE+w==} 4933 + engines: {node: '>= 0.4'} 4944 4934 dev: false 4945 4935 4946 4936 /is-weakref@1.0.2: ··· 4949 4939 call-bind: 1.0.7 4950 4940 dev: false 4951 4941 4952 - /is-weakset@2.0.2: 4953 - resolution: {integrity: sha512-t2yVvttHkQktwnNNmBQ98AhENLdPUTDTE21uPqAQ0ARwQfGeQKRVS0NNurH7bTf7RrvcVn1OOge45CnBeHCSmg==} 4942 + /is-weakset@2.0.3: 4943 + resolution: {integrity: sha512-LvIm3/KWzS9oRFHugab7d+M/GcBXuXX5xZkzPmN+NxihdQlZUQ4dWuSV1xR/sq6upL1TJEDrfBgRepHFdBtSNQ==} 4944 + engines: {node: '>= 0.4'} 4954 4945 dependencies: 4955 4946 call-bind: 1.0.7 4956 4947 get-intrinsic: 1.2.4 ··· 5547 5538 /natural-compare@1.4.0: 5548 5539 resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==} 5549 5540 5550 - /next@14.1.0(react-dom@18.2.0)(react@18.2.0): 5551 - resolution: {integrity: sha512-wlzrsbfeSU48YQBjZhDzOwhWhGsy+uQycR8bHAOt1LY1bn3zZEcDyHQOEoN3aWzQ8LHCAJ1nqrWCc9XF2+O45Q==} 5541 + /next@14.1.3(react-dom@18.2.0)(react@18.2.0): 5542 + resolution: {integrity: sha512-oexgMV2MapI0UIWiXKkixF8J8ORxpy64OuJ/J9oVUmIthXOUCcuVEZX+dtpgq7wIfIqtBwQsKEDXejcjTsan9g==} 5552 5543 engines: {node: '>=18.17.0'} 5553 5544 hasBin: true 5554 5545 peerDependencies: ··· 5562 5553 sass: 5563 5554 optional: true 5564 5555 dependencies: 5565 - '@next/env': 14.1.0 5556 + '@next/env': 14.1.3 5566 5557 '@swc/helpers': 0.5.2 5567 5558 busboy: 1.6.0 5568 - caniuse-lite: 1.0.30001594 5559 + caniuse-lite: 1.0.30001597 5569 5560 graceful-fs: 4.2.11 5570 5561 postcss: 8.4.31 5571 5562 react: 18.2.0 5572 5563 react-dom: 18.2.0(react@18.2.0) 5573 5564 styled-jsx: 5.1.1(react@18.2.0) 5574 5565 optionalDependencies: 5575 - '@next/swc-darwin-arm64': 14.1.0 5576 - '@next/swc-darwin-x64': 14.1.0 5577 - '@next/swc-linux-arm64-gnu': 14.1.0 5578 - '@next/swc-linux-arm64-musl': 14.1.0 5579 - '@next/swc-linux-x64-gnu': 14.1.0 5580 - '@next/swc-linux-x64-musl': 14.1.0 5581 - '@next/swc-win32-arm64-msvc': 14.1.0 5582 - '@next/swc-win32-ia32-msvc': 14.1.0 5583 - '@next/swc-win32-x64-msvc': 14.1.0 5566 + '@next/swc-darwin-arm64': 14.1.3 5567 + '@next/swc-darwin-x64': 14.1.3 5568 + '@next/swc-linux-arm64-gnu': 14.1.3 5569 + '@next/swc-linux-arm64-musl': 14.1.3 5570 + '@next/swc-linux-x64-gnu': 14.1.3 5571 + '@next/swc-linux-x64-musl': 14.1.3 5572 + '@next/swc-win32-arm64-msvc': 14.1.3 5573 + '@next/swc-win32-ia32-msvc': 14.1.3 5574 + '@next/swc-win32-x64-msvc': 14.1.3 5584 5575 transitivePeerDependencies: 5585 5576 - '@babel/core' 5586 5577 - babel-plugin-macros ··· 5796 5787 engines: {node: '>= 0.4'} 5797 5788 dev: false 5798 5789 5799 - /postcss-import@15.1.0(postcss@8.4.33): 5790 + /postcss-import@15.1.0(postcss@8.4.35): 5800 5791 resolution: {integrity: sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew==} 5801 5792 engines: {node: '>=14.0.0'} 5802 5793 peerDependencies: 5803 5794 postcss: ^8.0.0 5804 5795 dependencies: 5805 - postcss: 8.4.33 5796 + postcss: 8.4.35 5806 5797 postcss-value-parser: 4.2.0 5807 5798 read-cache: 1.0.0 5808 5799 resolve: 1.22.8 5809 5800 dev: false 5810 5801 5811 - /postcss-js@4.0.1(postcss@8.4.33): 5802 + /postcss-js@4.0.1(postcss@8.4.35): 5812 5803 resolution: {integrity: sha512-dDLF8pEO191hJMtlHFPRa8xsizHaM82MLfNkUHdUtVEV3tgTp5oj+8qbEqYM57SLfc74KSbw//4SeJma2LRVIw==} 5813 5804 engines: {node: ^12 || ^14 || >= 16} 5814 5805 peerDependencies: 5815 5806 postcss: ^8.4.21 5816 5807 dependencies: 5817 5808 camelcase-css: 2.0.1 5818 - postcss: 8.4.33 5809 + postcss: 8.4.35 5819 5810 dev: false 5820 5811 5821 - /postcss-load-config@4.0.2(postcss@8.4.33): 5812 + /postcss-load-config@4.0.2(postcss@8.4.35): 5822 5813 resolution: {integrity: sha512-bSVhyJGL00wMVoPUzAVAnbEoWyqRxkjv64tUl427SKnPrENtq6hJwUojroMz2VB+Q1edmi4IfrAPpami5VVgMQ==} 5823 5814 engines: {node: '>= 14'} 5824 5815 peerDependencies: ··· 5831 5822 optional: true 5832 5823 dependencies: 5833 5824 lilconfig: 3.1.1 5834 - postcss: 8.4.33 5835 - yaml: 2.4.0 5825 + postcss: 8.4.35 5826 + yaml: 2.4.1 5836 5827 dev: false 5837 5828 5838 - /postcss-nested@6.0.1(postcss@8.4.33): 5829 + /postcss-nested@6.0.1(postcss@8.4.35): 5839 5830 resolution: {integrity: sha512-mEp4xPMi5bSWiMbsgoPfcP74lsWLHkQbZc3sY+jWYd65CUwXrUaTp0fmNpa01ZcETKlIgUdFN/MpS2xZtqL9dQ==} 5840 5831 engines: {node: '>=12.0'} 5841 5832 peerDependencies: 5842 5833 postcss: ^8.2.14 5843 5834 dependencies: 5844 - postcss: 8.4.33 5845 - postcss-selector-parser: 6.0.15 5835 + postcss: 8.4.35 5836 + postcss-selector-parser: 6.0.16 5846 5837 dev: false 5847 5838 5848 - /postcss-selector-parser@6.0.15: 5849 - resolution: {integrity: sha512-rEYkQOMUCEMhsKbK66tbEU9QVIxbhN18YiniAwA7XQYTVBqrBy+P2p5JcdqsHgKM2zWylp8d7J6eszocfds5Sw==} 5839 + /postcss-selector-parser@6.0.16: 5840 + resolution: {integrity: sha512-A0RVJrX+IUkVZbW3ClroRWurercFhieevHB38sr2+l9eUClMqome3LmEmnhlNy+5Mr2EYN6B2Kaw9wYdd+VHiw==} 5850 5841 engines: {node: '>=4'} 5851 5842 dependencies: 5852 5843 cssesc: 3.0.0 ··· 5866 5857 source-map-js: 1.0.2 5867 5858 dev: false 5868 5859 5869 - /postcss@8.4.33: 5870 - resolution: {integrity: sha512-Kkpbhhdjw2qQs2O2DGX+8m5OVqEcbB9HRBvuYM9pgrjEFUg30A9LmXNlTAUj4S9kgtGyrMbTzVjH7E+s5Re2yg==} 5860 + /postcss@8.4.35: 5861 + resolution: {integrity: sha512-u5U8qYpBCpN13BsiEB0CbR1Hhh4Gc0zLFuedrHJKMctHCHAGrMdG0PRM/KErzAL3CU6/eckEtmHNB3x6e3c0vA==} 5871 5862 engines: {node: ^10 || ^12 || >=14} 5872 5863 dependencies: 5873 5864 nanoid: 3.3.7 ··· 5938 5929 engines: {node: '>= 12.0.0'} 5939 5930 dev: false 5940 5931 5941 - /react-markdown@8.0.7(@types/react@18.2.63)(react@18.2.0): 5932 + /react-markdown@8.0.7(@types/react@18.2.66)(react@18.2.0): 5942 5933 resolution: {integrity: sha512-bvWbzG4MtOU62XqBx3Xx+zB2raaFFsq4mYiAzfjXJMEz2sixgeAfraA3tvzULF02ZdOMUOKTBFFaZJDDrq+BJQ==} 5943 5934 peerDependencies: 5944 5935 '@types/react': '>=16' ··· 5946 5937 dependencies: 5947 5938 '@types/hast': 2.3.10 5948 5939 '@types/prop-types': 15.7.11 5949 - '@types/react': 18.2.63 5940 + '@types/react': 18.2.66 5950 5941 '@types/unist': 2.0.10 5951 5942 comma-separated-tokens: 2.0.3 5952 5943 hast-util-whitespace: 2.0.1 ··· 5984 5975 react-dom: 18.2.0(react@18.2.0) 5985 5976 dev: false 5986 5977 5987 - /react-remove-scroll-bar@2.3.5(@types/react@18.2.63)(react@18.2.0): 5988 - resolution: {integrity: sha512-3cqjOqg6s0XbOjWvmasmqHch+RLxIEk2r/70rzGXuz3iIGQsQheEQyqYCBb5EECoD01Vo2SIbDqW4paLeLTASw==} 5978 + /react-remove-scroll-bar@2.3.6(@types/react@18.2.66)(react@18.2.0): 5979 + resolution: {integrity: sha512-DtSYaao4mBmX+HDo5YWYdBWQwYIQQshUV/dVxFxK+KM26Wjwp1gZ6rv6OC3oujI6Bfu6Xyg3TwK533AQutsn/g==} 5989 5980 engines: {node: '>=10'} 5990 5981 peerDependencies: 5991 5982 '@types/react': ^16.8.0 || ^17.0.0 || ^18.0.0 ··· 5994 5985 '@types/react': 5995 5986 optional: true 5996 5987 dependencies: 5997 - '@types/react': 18.2.63 5988 + '@types/react': 18.2.66 5998 5989 react: 18.2.0 5999 - react-style-singleton: 2.2.1(@types/react@18.2.63)(react@18.2.0) 5990 + react-style-singleton: 2.2.1(@types/react@18.2.66)(react@18.2.0) 6000 5991 tslib: 2.6.2 6001 5992 dev: false 6002 5993 6003 - /react-remove-scroll@2.5.7(@types/react@18.2.63)(react@18.2.0): 5994 + /react-remove-scroll@2.5.7(@types/react@18.2.66)(react@18.2.0): 6004 5995 resolution: {integrity: sha512-FnrTWO4L7/Bhhf3CYBNArEG/yROV0tKmTv7/3h9QCFvH6sndeFf1wPqOcbFVu5VAulS5dV1wGT3GZZ/1GawqiA==} 6005 5996 engines: {node: '>=10'} 6006 5997 peerDependencies: ··· 6010 6001 '@types/react': 6011 6002 optional: true 6012 6003 dependencies: 6013 - '@types/react': 18.2.63 6004 + '@types/react': 18.2.66 6014 6005 react: 18.2.0 6015 - react-remove-scroll-bar: 2.3.5(@types/react@18.2.63)(react@18.2.0) 6016 - react-style-singleton: 2.2.1(@types/react@18.2.63)(react@18.2.0) 6006 + react-remove-scroll-bar: 2.3.6(@types/react@18.2.66)(react@18.2.0) 6007 + react-style-singleton: 2.2.1(@types/react@18.2.66)(react@18.2.0) 6017 6008 tslib: 2.6.2 6018 - use-callback-ref: 1.3.1(@types/react@18.2.63)(react@18.2.0) 6019 - use-sidecar: 1.1.2(@types/react@18.2.63)(react@18.2.0) 6009 + use-callback-ref: 1.3.1(@types/react@18.2.66)(react@18.2.0) 6010 + use-sidecar: 1.1.2(@types/react@18.2.66)(react@18.2.0) 6020 6011 dev: false 6021 6012 6022 6013 /react-smooth@4.0.0(react-dom@18.2.0)(react@18.2.0): ··· 6032 6023 react-transition-group: 4.4.5(react-dom@18.2.0)(react@18.2.0) 6033 6024 dev: false 6034 6025 6035 - /react-style-singleton@2.2.1(@types/react@18.2.63)(react@18.2.0): 6026 + /react-style-singleton@2.2.1(@types/react@18.2.66)(react@18.2.0): 6036 6027 resolution: {integrity: sha512-ZWj0fHEMyWkHzKYUr2Bs/4zU6XLmq9HsgBURm7g5pAVfyn49DgUiNgY2d4lXRlYSiCif9YBGpQleewkcqddc7g==} 6037 6028 engines: {node: '>=10'} 6038 6029 peerDependencies: ··· 6042 6033 '@types/react': 6043 6034 optional: true 6044 6035 dependencies: 6045 - '@types/react': 18.2.63 6036 + '@types/react': 18.2.66 6046 6037 get-nonce: 1.0.1 6047 6038 invariant: 2.2.4 6048 6039 react: 18.2.0 6049 6040 tslib: 2.6.2 6050 6041 dev: false 6051 6042 6052 - /react-textarea-autosize@8.5.3(@types/react@18.2.63)(react@18.2.0): 6043 + /react-textarea-autosize@8.5.3(@types/react@18.2.66)(react@18.2.0): 6053 6044 resolution: {integrity: sha512-XT1024o2pqCuZSuBt9FwHlaDeNtVrtCXu0Rnz88t1jUGheCLa3PhjE1GH8Ctm2axEtvdCl5SUHYschyQ0L5QHQ==} 6054 6045 engines: {node: '>=10'} 6055 6046 peerDependencies: ··· 6058 6049 '@babel/runtime': 7.24.0 6059 6050 react: 18.2.0 6060 6051 use-composed-ref: 1.3.0(react@18.2.0) 6061 - use-latest: 1.2.1(@types/react@18.2.63)(react@18.2.0) 6052 + use-latest: 1.2.1(@types/react@18.2.66)(react@18.2.0) 6062 6053 transitivePeerDependencies: 6063 6054 - '@types/react' 6064 6055 dev: false ··· 6119 6110 react-smooth: 4.0.0(react-dom@18.2.0)(react@18.2.0) 6120 6111 recharts-scale: 0.4.5 6121 6112 tiny-invariant: 1.3.3 6122 - victory-vendor: 36.9.1 6113 + victory-vendor: 36.9.2 6123 6114 dev: false 6124 6115 6125 6116 /reflect.getprototypeof@1.0.5: ··· 6246 6237 mri: 1.2.0 6247 6238 dev: false 6248 6239 6249 - /safe-array-concat@1.1.0: 6250 - resolution: {integrity: sha512-ZdQ0Jeb9Ofti4hbt5lX3T2JcAamT9hfzYU1MNB+z/jaEbB6wfFfPIR/zEORmZqobkCCJhSjodobH6WHNmJ97dg==} 6240 + /safe-array-concat@1.1.2: 6241 + resolution: {integrity: sha512-vj6RsCsWBCf19jIeHEfkRMw8DPiBb+DMXklQ/1SGDHOMlHdPUkZXFQ2YdplS23zESTijAcurb1aSgJA3AgMu1Q==} 6251 6242 engines: {node: '>=0.4'} 6252 6243 dependencies: 6253 6244 call-bind: 1.0.7 ··· 6295 6286 dependencies: 6296 6287 lru-cache: 6.0.0 6297 6288 6298 - /set-function-length@1.2.1: 6299 - resolution: {integrity: sha512-j4t6ccc+VsKwYHso+kElc5neZpjtq9EnRICFZtWyBsLojhmeF/ZBd/elqm22WJh/BziDe/SBiOeAt0m2mfLD0g==} 6289 + /set-function-length@1.2.2: 6290 + resolution: {integrity: sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==} 6300 6291 engines: {node: '>= 0.4'} 6301 6292 dependencies: 6302 6293 define-data-property: 1.1.4 ··· 6634 6625 normalize-path: 3.0.0 6635 6626 object-hash: 3.0.0 6636 6627 picocolors: 1.0.0 6637 - postcss: 8.4.33 6638 - postcss-import: 15.1.0(postcss@8.4.33) 6639 - postcss-js: 4.0.1(postcss@8.4.33) 6640 - postcss-load-config: 4.0.2(postcss@8.4.33) 6641 - postcss-nested: 6.0.1(postcss@8.4.33) 6642 - postcss-selector-parser: 6.0.15 6628 + postcss: 8.4.35 6629 + postcss-import: 15.1.0(postcss@8.4.35) 6630 + postcss-js: 4.0.1(postcss@8.4.35) 6631 + postcss-load-config: 4.0.2(postcss@8.4.35) 6632 + postcss-nested: 6.0.1(postcss@8.4.35) 6633 + postcss-selector-parser: 6.0.16 6643 6634 resolve: 1.22.8 6644 6635 sucrase: 3.35.0 6645 6636 transitivePeerDependencies: ··· 6722 6713 resolution: {integrity: sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==} 6723 6714 dev: false 6724 6715 6725 - /tsutils@3.21.0(typescript@5.3.3): 6716 + /tsutils@3.21.0(typescript@5.4.2): 6726 6717 resolution: {integrity: sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==} 6727 6718 engines: {node: '>= 6'} 6728 6719 peerDependencies: 6729 6720 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' 6730 6721 dependencies: 6731 6722 tslib: 1.14.1 6732 - typescript: 5.3.3 6723 + typescript: 5.4.2 6733 6724 6734 6725 /type-check@0.4.0: 6735 6726 resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==} ··· 6785 6776 possible-typed-array-names: 1.0.0 6786 6777 dev: false 6787 6778 6788 - /typescript@5.3.3: 6789 - resolution: {integrity: sha512-pXWcraxM0uxAS+tN0AG/BF2TyqmHO014Z070UsJ+pFvYuRSq8KH8DmWpnbXe0pEPDHXZV3FcAbJkijJ5oNEnWw==} 6779 + /typescript@5.4.2: 6780 + resolution: {integrity: sha512-+2/g0Fds1ERlP6JsakQQDXjZdZMM+rqpamFZJEKh4kwTIn3iDkgKtby0CeNd5ATNZ4Ry1ax15TMx0W2V+miizQ==} 6790 6781 engines: {node: '>=14.17'} 6791 6782 hasBin: true 6792 6783 ··· 6931 6922 deprecated: Please see https://github.com/lydell/urix#deprecated 6932 6923 dev: true 6933 6924 6934 - /use-callback-ref@1.3.1(@types/react@18.2.63)(react@18.2.0): 6925 + /use-callback-ref@1.3.1(@types/react@18.2.66)(react@18.2.0): 6935 6926 resolution: {integrity: sha512-Lg4Vx1XZQauB42Hw3kK7JM6yjVjgFmFC5/Ab797s79aARomD2nEErc4mCgM8EZrARLmmbWpi5DGCadmK50DcAQ==} 6936 6927 engines: {node: '>=10'} 6937 6928 peerDependencies: ··· 6941 6932 '@types/react': 6942 6933 optional: true 6943 6934 dependencies: 6944 - '@types/react': 18.2.63 6935 + '@types/react': 18.2.66 6945 6936 react: 18.2.0 6946 6937 tslib: 2.6.2 6947 6938 dev: false ··· 6954 6945 react: 18.2.0 6955 6946 dev: false 6956 6947 6957 - /use-isomorphic-layout-effect@1.1.2(@types/react@18.2.63)(react@18.2.0): 6948 + /use-isomorphic-layout-effect@1.1.2(@types/react@18.2.66)(react@18.2.0): 6958 6949 resolution: {integrity: sha512-49L8yCO3iGT/ZF9QttjwLF/ZD9Iwto5LnH5LmEdk/6cFmXddqi2ulF0edxTwjj+7mqvpVVGQWvbXZdn32wRSHA==} 6959 6950 peerDependencies: 6960 6951 '@types/react': '*' ··· 6963 6954 '@types/react': 6964 6955 optional: true 6965 6956 dependencies: 6966 - '@types/react': 18.2.63 6957 + '@types/react': 18.2.66 6967 6958 react: 18.2.0 6968 6959 dev: false 6969 6960 6970 - /use-latest@1.2.1(@types/react@18.2.63)(react@18.2.0): 6961 + /use-latest@1.2.1(@types/react@18.2.66)(react@18.2.0): 6971 6962 resolution: {integrity: sha512-xA+AVm/Wlg3e2P/JiItTziwS7FK92LWrDB0p+hgXloIMuVCeJJ8v6f0eeHyPZaJrM+usM1FkFfbNCrJGs8A/zw==} 6972 6963 peerDependencies: 6973 6964 '@types/react': '*' ··· 6976 6967 '@types/react': 6977 6968 optional: true 6978 6969 dependencies: 6979 - '@types/react': 18.2.63 6970 + '@types/react': 18.2.66 6980 6971 react: 18.2.0 6981 - use-isomorphic-layout-effect: 1.1.2(@types/react@18.2.63)(react@18.2.0) 6972 + use-isomorphic-layout-effect: 1.1.2(@types/react@18.2.66)(react@18.2.0) 6982 6973 dev: false 6983 6974 6984 - /use-sidecar@1.1.2(@types/react@18.2.63)(react@18.2.0): 6975 + /use-sidecar@1.1.2(@types/react@18.2.66)(react@18.2.0): 6985 6976 resolution: {integrity: sha512-epTbsLuzZ7lPClpz2TyryBfztm7m+28DlEv2ZCQ3MDr5ssiwyOwGH/e5F9CkfWjJ1t4clvI58yF822/GUkjjhw==} 6986 6977 engines: {node: '>=10'} 6987 6978 peerDependencies: ··· 6991 6982 '@types/react': 6992 6983 optional: true 6993 6984 dependencies: 6994 - '@types/react': 18.2.63 6985 + '@types/react': 18.2.66 6995 6986 detect-node-es: 1.1.0 6996 6987 react: 18.2.0 6997 6988 tslib: 2.6.2 ··· 7063 7054 vfile-message: 4.0.2 7064 7055 dev: false 7065 7056 7066 - /victory-vendor@36.9.1: 7067 - resolution: {integrity: sha512-+pZIP+U3pEJdDCeFmsXwHzV7vNHQC/eIbHklfe2ZCZqayYRH7lQbHcVgsJ0XOOv27hWs4jH4MONgXxHMObTMSA==} 7057 + /victory-vendor@36.9.2: 7058 + resolution: {integrity: sha512-PnpQQMuxlwYdocC8fIJqVXvkeViHYzotI+NJrCuav0ZYFoq912ZHBk3mCeuj+5/VpodOjPe1z0Fk2ihgzlXqjQ==} 7068 7059 dependencies: 7069 7060 '@types/d3-array': 3.2.1 7070 7061 '@types/d3-ease': 3.0.2 ··· 7110 7101 is-weakref: 1.0.2 7111 7102 isarray: 2.0.5 7112 7103 which-boxed-primitive: 1.0.2 7113 - which-collection: 1.0.1 7114 - which-typed-array: 1.1.14 7104 + which-collection: 1.0.2 7105 + which-typed-array: 1.1.15 7115 7106 dev: false 7116 7107 7117 - /which-collection@1.0.1: 7118 - resolution: {integrity: sha512-W8xeTUwaln8i3K/cY1nGXzdnVZlidBcagyNFtBdD5kxnb4TvGKR7FfSIS3mYpwWS1QUCutfKz8IY8RjftB0+1A==} 7108 + /which-collection@1.0.2: 7109 + resolution: {integrity: sha512-K4jVyjnBdgvc86Y6BkaLZEN933SwYOuBFkdmBu9ZfkcAbdVbpITnDmjvZ/aQjRXQrv5EPkTnD1s39GiiqbngCw==} 7110 + engines: {node: '>= 0.4'} 7119 7111 dependencies: 7120 - is-map: 2.0.2 7121 - is-set: 2.0.2 7122 - is-weakmap: 2.0.1 7123 - is-weakset: 2.0.2 7112 + is-map: 2.0.3 7113 + is-set: 2.0.3 7114 + is-weakmap: 2.0.2 7115 + is-weakset: 2.0.3 7124 7116 dev: false 7125 7117 7126 - /which-typed-array@1.1.14: 7127 - resolution: {integrity: sha512-VnXFiIW8yNn9kIHN88xvZ4yOWchftKDsRJ8fEPacX/wl1lOvBrhsJ/OeJCXq7B0AaijRuqgzSKalJoPk+D8MPg==} 7118 + /which-typed-array@1.1.15: 7119 + resolution: {integrity: sha512-oV0jmFtUky6CXfkqehVvBP/LSWJ2sy4vWMioiENyJLePrBO/yKyV9OyJySfAKosh+RYkIl5zJCNZ8/4JncrpdA==} 7128 7120 engines: {node: '>= 0.4'} 7129 7121 dependencies: 7130 7122 available-typed-arrays: 1.0.7 ··· 7165 7157 /yallist@4.0.0: 7166 7158 resolution: {integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==} 7167 7159 7168 - /yaml@2.4.0: 7169 - resolution: {integrity: sha512-j9iR8g+/t0lArF4V6NE/QCfT+CO7iLqrXAHZbJdo+LfjqP1vR8Fg5bSiaq6Q2lOD1AUEVrEVIgABvBFYojJVYQ==} 7160 + /yaml@2.4.1: 7161 + resolution: {integrity: sha512-pIXzoImaqmfOrL7teGUBt/T7ZDnyeGBWyXQBvOVhLkWLN37GXv8NMLK406UY6dS51JfcQHsmcW5cJ441bHg6Lg==} 7170 7162 engines: {node: '>= 14'} 7171 7163 hasBin: true 7172 7164 dev: false ··· 7175 7167 resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==} 7176 7168 engines: {node: '>=10'} 7177 7169 7178 - /zustand@4.5.2(@types/react@18.2.63)(react@18.2.0): 7170 + /zustand@4.5.2(@types/react@18.2.66)(react@18.2.0): 7179 7171 resolution: {integrity: sha512-2cN1tPkDVkwCy5ickKrI7vijSjPksFRfqS6237NzT0vqSsztTNnQdHw9mmN7uBdk3gceVXU0a+21jFzFzAc9+g==} 7180 7172 engines: {node: '>=12.7.0'} 7181 7173 peerDependencies: ··· 7190 7182 react: 7191 7183 optional: true 7192 7184 dependencies: 7193 - '@types/react': 18.2.63 7185 + '@types/react': 18.2.66 7194 7186 react: 18.2.0 7195 7187 use-sync-external-store: 1.2.0(react@18.2.0) 7196 7188 dev: false