├── .devcontainer └── devcontainer.json ├── .editorconfig ├── .github ├── dependabot.yml └── funding.yml ├── .gitignore ├── .npmrc ├── .nvmrc ├── .prettierignore ├── .prettierrc.json ├── .vscode ├── extensions.json ├── launch.json └── settings.json ├── Dockerfile ├── Dockerfile.bun ├── LICENSE.md ├── README.md ├── eslint.config.mjs ├── next.config.ts ├── package-lock.json ├── package.json ├── public ├── file.svg ├── globe.svg ├── images │ └── screenshot.png ├── next copy.svg ├── next.svg ├── vercel.svg └── window.svg ├── src └── app │ ├── (delete-this-and-modify-page.tsx) │ ├── ExtensionDetails.css │ ├── ExtensionDetails.tsx │ ├── HomePage.css │ ├── HomePage.tsx │ ├── NavigationBar.css │ ├── NavigationBar.tsx │ ├── SetupDetails.css │ ├── SetupDetails.tsx │ ├── ThemeSwitch.css │ └── ThemeSwitch.tsx │ ├── favicon.ico │ ├── fonts │ ├── GeistMonoVF.woff │ └── GeistVF.woff │ ├── globals.css │ ├── layout.tsx │ └── page.tsx └── tsconfig.json /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- 1 | // For format details, see https://aka.ms/devcontainer.json. For config options, see the 2 | // README at: https://github.com/devcontainers/templates/tree/main/src/typescript-node 3 | { 4 | "name": "Next.js 15 Starter (core)", 5 | // Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile 6 | "image": "mcr.microsoft.com/devcontainers/typescript-node:1-22-bookworm", 7 | // Features to add to the dev container. More info: https://containers.dev/features. 8 | // "features": {}, 9 | // Use 'forwardPorts' to make a list of ports inside the container available locally. 10 | // "forwardPorts": [], 11 | // Use 'postCreateCommand' to run commands after the container is created. 12 | "postCreateCommand": "npm install --legacy-peer-deps && npm run dev", 13 | // Configure tool-specific properties. 14 | // "customizations": {}, 15 | // Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root. 16 | "remoteUser": "root" 17 | } -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- 1 | # EditorConfig is awesome: https://editorconfig.org 2 | 3 | # Top-most EditorConfig file 4 | root = true 5 | 6 | # Unix-style newlines with a newline ending every file 7 | [*] 8 | end_of_line = lf 9 | insert_final_newline = true 10 | 11 | # Matches multiple files with brace expansion notation 12 | [*.{js,jsx,ts,tsx,json}] 13 | charset = utf-8 14 | indent_style = space 15 | indent_size = 4 16 | trim_trailing_whitespace = true 17 | insert_final_newline = true 18 | 19 | # Matches the exact files either package.json or .travis.yml 20 | [{package.json,.travis.yml}] 21 | indent_style = space 22 | indent_size = 4 23 | 24 | # Ignore minified JavaScript files 25 | [**.min.js] 26 | indent_style = ignore 27 | 28 | # Denote filenames that should be used as they are without any conversion 29 | [*.{md,html,css,scss}] 30 | indent_style = unset 31 | -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- 1 | # To get started with Dependabot version updates, you'll need to specify which 2 | # package ecosystems to update and where the package manifests are located. 3 | # Please see the documentation for more information: 4 | # https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates 5 | # https://containers.dev/guide/dependabot 6 | 7 | # To get started with Dependabot version updates, you'll need to specify which 8 | # package ecosystems to update and where the package manifests are located. 9 | # Please see the documentation for more information: 10 | # https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates 11 | # https://containers.dev/guide/dependabot 12 | version: 2 13 | updates: 14 | - package-ecosystem: 'devcontainers' 15 | directory: '/' 16 | schedule: 17 | interval: monthly 18 | - package-ecosystem: 'docker' 19 | directory: '/' 20 | schedule: 21 | interval: monthly 22 | - package-ecosystem: 'npm' 23 | directory: '/' 24 | schedule: 25 | interval: weekly 26 | -------------------------------------------------------------------------------- /.github/funding.yml: -------------------------------------------------------------------------------- 1 | github: siddharthamaity 2 | buy_me_a_coffee: siddharthamaity 3 | thanks_dev: u/gh/siddharthamaity 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # See https://help.github.com/articles/ignoring-files/ for more about ignoring files. 2 | 3 | # dependencies 4 | /node_modules 5 | /.pnp 6 | .pnp.js 7 | .yarn/install-state.gz 8 | 9 | # testing 10 | /coverage 11 | 12 | # next.js 13 | /.next/ 14 | /out/ 15 | 16 | # production 17 | /build 18 | 19 | # misc 20 | .DS_Store 21 | *.pem 22 | 23 | # debug 24 | npm-debug.log* 25 | yarn-debug.log* 26 | yarn-error.log* 27 | 28 | # local env files 29 | .env*.local 30 | 31 | # vercel 32 | .vercel 33 | 34 | # typescript 35 | *.tsbuildinfo 36 | next-env.d.ts 37 | -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | legacy-peer-deps = true 2 | -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 22.16.0 2 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | README.MD 2 | CHANGELOG.md 3 | -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "arrowParens": "always", 3 | "bracketSpacing": true, 4 | "htmlWhitespaceSensitivity": "css", 5 | "insertPragma": false, 6 | "bracketSameLine": true, 7 | "jsxSingleQuote": true, 8 | "printWidth": 120, 9 | "proseWrap": "preserve", 10 | "quoteProps": "as-needed", 11 | "requirePragma": false, 12 | "semi": true, 13 | "singleQuote": true, 14 | "tabWidth": 4, 15 | "trailingComma": "none", 16 | "useTabs": false, 17 | "endOfLine": "auto", 18 | "plugins": [ 19 | "@trivago/prettier-plugin-sort-imports" 20 | ], 21 | "importOrder": [ 22 | "^react$", 23 | "^next(/.*)?$", 24 | "next-themes", 25 | "@/*", 26 | "" 27 | ], 28 | "importOrderSeparation": true, 29 | "importOrderSortSpecifiers": true 30 | } -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- 1 | { 2 | /** 3 | * These are the extensions recommended by the workspace. The workspace recommendations are calculated based on the extensions used by others in the same workspace. 4 | * Feel free to include or exclude extensions from the list. The order of extensions is not important. 5 | * 6 | * See https://go.microsoft.com/fwlink/?LinkId=827846 to learn about workspace recommendations. 7 | **/ 8 | "recommendations": [ 9 | "PulkitGangwar.nextjs-snippets", // ? https://marketplace.visualstudio.com/items?itemName=PulkitGangwar.nextjs-snippets 10 | "formulahendry.auto-close-tag", // ? https://marketplace.visualstudio.com/items?itemName=formulahendry.auto-close-tag 11 | "aaron-bond.better-comments", // ? https://marketplace.visualstudio.com/items?itemName=aaron-bond.better-comments 12 | "mikestead.dotenv", // ? https://marketplace.visualstudio.com/items?itemName=EditorConfig.EditorConfig 13 | "EditorConfig.EditorConfig", // ? https://marketplace.visualstudio.com/items?itemName=EditorConfig.EditorConfig 14 | "dbaeumer.vscode-eslint", // ? https://marketplace.visualstudio.com/items?itemName=dbaeumer.vscode-eslint 15 | "MikeBovenlander.formate", // ? https://marketplace.visualstudio.com/items?itemName=MikeBovenlander.formate 16 | "donjayamanne.githistory", // ? https://marketplace.visualstudio.com/items?itemName=donjayamanne.githistory 17 | "wix.vscode-import-cost", // ? https://marketplace.visualstudio.com/items?itemName=wix.vscode-import-cost 18 | "sburg.vscode-javascript-booster", // ? https://marketplace.visualstudio.com/items?itemName=sburg.vscode-javascript-booster 19 | "christian-kohler.npm-intellisense", // ? https://marketplace.visualstudio.com/items?itemName=christian-kohler.npm-intellisense 20 | "esbenp.prettier-vscode", // ? https://marketplace.visualstudio.com/items?itemName=esbenp.prettier-vscode 21 | "ChakrounAnas.turbo-console-log", // ? https://marketplace.visualstudio.com/items?itemName=ChakrounAnas.turbo-console-log 22 | "codeandstuff.package-json-upgrade", // ? https://marketplace.visualstudio.com/items?itemName=codeandstuff.package-json-upgrade 23 | "KnisterPeter.vscode-commitizen", // ? https://marketplace.visualstudio.com/items?itemName=KnisterPeter.vscode-commitizen 24 | "yzhang.markdown-all-in-one" // ? https://marketplace.visualstudio.com/items?itemName=yzhang.markdown-all-in-one 25 | ] 26 | } 27 | -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "0.2.0", 3 | "configurations": [ 4 | { 5 | "name": "Next.js: debug server-side", 6 | "type": "node-terminal", 7 | "request": "launch", 8 | "command": "npm run dev" 9 | }, 10 | { 11 | "name": "Next.js: debug client-side (Chrome)", 12 | "type": "chrome", 13 | "request": "launch", 14 | "url": "http://localhost:3000" 15 | }, 16 | { 17 | "name": "Next.js: debug client-side (Firefox)", 18 | "type": "firefox", 19 | "request": "launch", 20 | "url": "http://localhost:3000", 21 | "reAttach": true, 22 | "pathMappings": [ 23 | { 24 | "url": "webpack://_N_E", 25 | "path": "${workspaceFolder}" 26 | } 27 | ] 28 | }, 29 | { 30 | "name": "Next.js: debug full stack", 31 | "type": "node", 32 | "request": "launch", 33 | "program": "${workspaceFolder}/node_modules/.bin/next", 34 | "runtimeArgs": [ 35 | "--inspect" 36 | ], 37 | "skipFiles": [ 38 | "/**" 39 | ], 40 | "serverReadyAction": { 41 | "action": "debugWithChrome", 42 | "killOnServerStop": true, 43 | "pattern": "- Local:.+(https?://.+)", 44 | "uriFormat": "%s", 45 | "webRoot": "${workspaceFolder}" 46 | } 47 | } 48 | ] 49 | } -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | // JS 3 | "javascript.updateImportsOnFileMove.enabled": "always", 4 | // TS 5 | "typescript.updateImportsOnFileMove.enabled": "always", 6 | // JSON 7 | "[json]": { 8 | "editor.defaultFormatter": "vscode.json-language-features" 9 | }, 10 | "[jsonc]": { 11 | "editor.defaultFormatter": "vscode.json-language-features" 12 | }, 13 | // Extension: Git 14 | "git.rebaseWhenSync": false, 15 | "git.autofetch": true, 16 | "git.enableSmartCommit": true, 17 | // Extension: Prettier 18 | "prettier.requireConfig": true, 19 | "editor.defaultFormatter": "esbenp.prettier-vscode", 20 | "editor.formatOnSave": true, 21 | // Extension: ESLint 22 | "editor.codeActionsOnSave": { 23 | "source.fixAll": "explicit", 24 | "source.organizeImports": "never" 25 | }, 26 | "eslint.validate": [ 27 | "javascript", 28 | "javascriptreact", 29 | "typescript", 30 | "typescriptreact" 31 | ], 32 | "eslint.format.enable": true, 33 | "npm.packageManager": "npm", 34 | } -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- 1 | FROM node:22.16.0-alpine AS base 2 | 3 | # Install dependencies only when needed 4 | FROM base AS deps 5 | # Check https://github.com/nodejs/docker-node/tree/b4117f9333da4138b03a546ec926ef50a31506c3#nodealpine to understand why libc6-compat might be needed. 6 | RUN apk add --no-cache libc6-compat 7 | WORKDIR /app 8 | 9 | # Install dependencies based on the preferred package manager 10 | COPY package.json yarn.lock* package-lock.json* pnpm-lock.yaml* ./ 11 | RUN \ 12 | if [ -f yarn.lock ]; then yarn --frozen-lockfile; \ 13 | elif [ -f package-lock.json ]; then npm ci --legacy-peer-deps; \ 14 | elif [ -f pnpm-lock.yaml ]; then corepack enable pnpm && pnpm i --frozen-lockfile; \ 15 | else echo "Lockfile not found." && exit 1; \ 16 | fi 17 | 18 | # Rebuild the source code only when needed 19 | FROM base AS builder 20 | WORKDIR /app 21 | ENV NODE_ENV=production 22 | COPY --from=deps /app/node_modules ./node_modules 23 | COPY . . 24 | 25 | # Next.js collects completely anonymous telemetry data about general usage. 26 | # Learn more here: https://nextjs.org/telemetry 27 | # Uncomment the following line in case you want to disable telemetry during the build. 28 | # ENV NEXT_TELEMETRY_DISABLED=1 29 | 30 | RUN \ 31 | if [ -f yarn.lock ]; then yarn run build; \ 32 | elif [ -f package-lock.json ]; then npm run build; \ 33 | elif [ -f pnpm-lock.yaml ]; then corepack enable pnpm && pnpm run build; \ 34 | else echo "Lockfile not found." && exit 1; \ 35 | fi 36 | 37 | # Production image, copy all the files and run next 38 | FROM base AS runner 39 | WORKDIR /app 40 | 41 | ENV NODE_ENV=production 42 | # Uncomment the following line in case you want to disable telemetry during runtime. 43 | # ENV NEXT_TELEMETRY_DISABLED=1 44 | 45 | RUN addgroup --system --gid 1001 nodejs 46 | RUN adduser --system --uid 1001 nextjs 47 | 48 | COPY --from=builder /app/public ./public 49 | 50 | # Set the correct permission for prerender cache 51 | RUN mkdir .next 52 | RUN chown nextjs:nodejs .next 53 | 54 | # Automatically leverage output traces to reduce image size 55 | # https://nextjs.org/docs/advanced-features/output-file-tracing 56 | COPY --from=builder --chown=nextjs:nodejs /app/.next/standalone ./ 57 | COPY --from=builder --chown=nextjs:nodejs /app/.next/static ./.next/static 58 | 59 | USER nextjs 60 | 61 | EXPOSE 3000 62 | 63 | ENV PORT=3000 64 | 65 | # server.js is created by next build from the standalone output 66 | # https://nextjs.org/docs/pages/api-reference/next-config-js/output 67 | ENV HOSTNAME="0.0.0.0" 68 | CMD ["node", "server.js"] 69 | -------------------------------------------------------------------------------- /Dockerfile.bun: -------------------------------------------------------------------------------- 1 | FROM oven/bun:1.2.15-alpine AS base 2 | 3 | # Install dependencies only when needed 4 | FROM base AS deps 5 | WORKDIR /app 6 | 7 | # Install dependencies based on the preferred package manager 8 | COPY package.json bun.lock ./ 9 | RUN bun install --frozen-lockfile --production 10 | 11 | # Rebuild the source code only when needed 12 | FROM base AS builder 13 | WORKDIR /app 14 | ENV NODE_ENV=production 15 | COPY --from=deps /app/node_modules ./node_modules 16 | COPY . . 17 | 18 | # Next.js collects completely anonymous telemetry data about general usage. 19 | # Learn more here: https://nextjs.org/telemetry 20 | # Uncomment the following line in case you want to disable telemetry during the build. 21 | # ENV NEXT_TELEMETRY_DISABLED=1 22 | 23 | RUN bun run build 24 | 25 | # Production image, copy all the files and run next 26 | FROM base AS runner 27 | WORKDIR /app 28 | 29 | ENV NODE_ENV=production 30 | # Uncomment the following line in case you want to disable telemetry during runtime. 31 | # ENV NEXT_TELEMETRY_DISABLED=1 32 | 33 | RUN adduser --system --uid 1001 nextjs 34 | 35 | COPY --from=builder /app/public ./public 36 | 37 | # Set the correct permission for prerender cache 38 | RUN mkdir .next 39 | RUN chown nextjs:bun .next 40 | 41 | # Automatically leverage output traces to reduce image size 42 | # https://nextjs.org/docs/advanced-features/output-file-tracing 43 | COPY --from=builder --chown=nextjs:bun /app/.next/standalone ./ 44 | COPY --from=builder --chown=nextjs:bun /app/.next/static ./.next/static 45 | 46 | USER nextjs 47 | 48 | EXPOSE 3000 49 | 50 | ENV PORT=3000 51 | 52 | # server.js is created by next build from the standalone output 53 | # https://nextjs.org/docs/pages/api-reference/next-config-js/output 54 | ENV HOSTNAME="0.0.0.0" 55 | CMD ["bun", "server.js"] 56 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2024 Vercel, Inc. 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Next.js 15 Starter (core) [[LIVE DEMO](https://nextjs-15-starter-core.vercel.app/)] 2 | 3 | ![MIT License](https://img.shields.io/badge/license-MIT-blue) [![TypeScript](https://badgen.net/badge/icon/typescript?icon=typescript&label)](https://typescriptlang.org) ![ESLint](https://img.shields.io/badge/code%20style-eslint-brightgreen) ![GitHub stars](https://img.shields.io/github/stars/siddharthamaity/nextjs-15-starter-core?style=social) ![GitHub forks](https://img.shields.io/github/forks/siddharthamaity/nextjs-15-starter-core?style=social) [![Say Thanks!](https://img.shields.io/badge/Say%20Thanks-!-1EAEDB.svg)](https://saythanks.io/to/siddharthamaity) 4 | 5 | *This is the core version for Next.js 15 Starter, you may be interested in other templates too -* 6 | - [**Next.js 15 Starter with Tailwind CSS**](https://github.com/siddharthamaity/nextjs-15-starter-tailwind) 7 | - [**Next.js 15 Starter with Shadcn UI**](https://github.com/siddharthamaity/nextjs-15-starter-shadcn) 8 | 9 | Welcome to the **Next.js 15 Starter** repository! This starter template is built with Next.js 15, React 19, TypeScript 5 and comes packed with several powerful tools and configurations to accelerate your project setup and streamline development workflows using VS Code. 10 | 11 | ![Next.js 15 Starter](public/images/screenshot.png) 12 | 13 | ## 🚀 What's Included 14 | 15 | - **Next.js 15** 16 | - **React 19** 17 | - **TypeScript 5** 18 | - **ESLint 9** 19 | - **Prettier 3** 20 | - **App Directory** 21 | - **System, Light & Dark Mode** 22 | - **Next.js Bundle Analyzer** 23 | - **Dockerfile** with Node.js 22.16.0 (Alpine) 24 | - **Dockerfile.bun** with Bun 1.2.15 (Alpine) 25 | 26 | ### 🛠️ ESLint Plugins 27 | 28 | - [**@eslint/js**](https://www.npmjs.com/package/@eslint/js) 29 | - [**typescript-eslint**](https://github.com/typescript-eslint/typescript-eslint) 30 | - [**eslint-plugin-react**](https://github.com/jsx-eslint/eslint-plugin-react) 31 | - [**@next/eslint-plugin-next**](https://github.com/vercel/next.js) 32 | - [**eslint-config-prettier**](eslint-config-prettier) 33 | - [**eslint-plugin-import**](https://github.com/import-js/eslint-plugin-import) 34 | - [**eslint-plugin-promise**](https://github.com/eslint-community/eslint-plugin-promise) 35 | 36 | ### ✨ Prettier Plugins 37 | 38 | - [**@trivago/prettier-plugin-sort-imports**](https://github.com/trivago/prettier-plugin-sort-imports) 39 | 40 | ### 💻 VS Code Extensions (Recommended) 41 | 42 | To enhance development experience, install the following VS Code extensions: 43 | 44 | - [**Auto Close Tag**](https://marketplace.visualstudio.com/items?itemName=formulahendry.auto-close-tag) 45 | - [**Better Comments**](https://marketplace.visualstudio.com/items?itemName=aaron-bond.better-comments) 46 | - [**DotENV**](https://marketplace.visualstudio.com/items?itemName=mikestead.dotenv) 47 | - [**EditorConfig for VS Code**](https://marketplace.visualstudio.com/items?itemName=EditorConfig.EditorConfig) 48 | - [**ESLint**](https://marketplace.visualstudio.com/items?itemName=dbaeumer.vscode-eslint) 49 | - [**formate: CSS/LESS/SCSS formatter**](https://marketplace.visualstudio.com/items?itemName=MikeBovenlander.formate) 50 | - [**Git History**](https://marketplace.visualstudio.com/items?itemName=donjayamanne.githistory) 51 | - [**Import Cost**](https://marketplace.visualstudio.com/items?itemName=wix.vscode-import-cost) 52 | - [**JavaScript Booster**](https://marketplace.visualstudio.com/items?itemName=sburg.vscode-javascript-booster) 53 | - [**npm Intellisense**](https://marketplace.visualstudio.com/items?itemName=christian-kohler.npm-intellisense) 54 | - [**Prettier - Code formatter**](https://marketplace.visualstudio.com/items?itemName=esbenp) 55 | - [**Todo Tree**](https://marketplace.visualstudio.com/items?itemName=Gruntfuggly.todo-tree) 56 | - [**Turbo Console Log**](https://marketplace.visualstudio.com/items?itemName=ChakrounAnas.turbo-console-log) 57 | - [**Package Json Upgrade**](https://marketplace.visualstudio.com/items?itemName=codeandstuff.package-json-upgrade) 58 | - [**Visual Studio Code Commitizen Support**](https://marketplace.visualstudio.com/items?itemName=KnisterPeter.vscode-commitizen) 59 | - [**Markdown All in One**](https://marketplace.visualstudio.com/items?itemName=yzhang.markdown-all-in-one) 60 | 61 | 62 | ## 🏁 Getting Started 63 | 64 | ### Prerequisites 65 | 66 | - **Bun**: Version 1.2.15 or higher OR 67 | - **Node.js**: Version 20.18.0 or higher 68 | - **Docker**: For containerized deployment (optional but recommended) 69 | 70 | ### Installation 71 | 72 | 1. **Clone the Repository**: 73 | ```bash 74 | git clone https://github.com/siddharthamaity/nextjs-15-starter-core.git 75 | cd nextjs-15-starter-core 76 | ``` 77 | 78 | 2. **Install Dependencies**: 79 | ```bash 80 | npm install 81 | # or with Yarn 82 | yarn install 83 | # or with pnpm 84 | pnpm install 85 | # or with Bun 86 | bun install 87 | ``` 88 | 89 | 3. **Run Development Server**: 90 | ```bash 91 | npm run dev 92 | # or with Yarn 93 | yarn dev 94 | # or with pnpm 95 | pnpm dev 96 | # or with Bun 97 | bun dev 98 | ``` 99 | 100 | 4. **Build for Production**: 101 | ```bash 102 | npm run build 103 | # or with Yarn 104 | yarn build 105 | # or with pnpm 106 | pnpm build 107 | # or with Bun 108 | bun run build 109 | ``` 110 | 111 | ### 🐳 Docker Setup 112 | 113 | To use Docker, make sure Docker is installed on your machine. Then, build and run the Docker container: 114 | 115 | ```bash 116 | docker build . -t nextjs-starter-core 117 | # or if using Bun 118 | docker build . -t nextjs-starter-core -f Dockerfile.bun 119 | 120 | docker run -p 3000:3000 nextjs-starter-core 121 | ``` 122 | 123 | ### ☁ Try it in the Cloud 124 | 125 | [![Open in VS Code](https://img.shields.io/badge/Open%20in-VS%20Code-blue?logo=visualstudiocode)](https://vscode.dev/github/siddharthamaity/nextjs-15-starter-core) 126 | 127 | [![Open in GitHub Codespaces](https://img.shields.io/badge/Open%20in-GitHub%20Codespaces-blue?logo=github)](https://github.com/codespaces/new?hide_repo_select=true&ref=main&repo=siddharthamaity/nextjs-15-starter-core) 128 | 129 | [![Open in CodeSandbox](https://codesandbox.io/static/img/play-codesandbox.svg)](https://codesandbox.io/s/github/siddharthamaity/nextjs-15-starter-core) 130 | 131 | [![Open in Gitpod](https://gitpod.io/button/open-in-gitpod.svg)](https://gitpod.io/#https://github.com/siddharthamaity/nextjs-15-starter-core) 132 | 133 | [![Open in StackBlitz](https://developer.stackblitz.com/img/open_in_stackblitz_small.svg)](https://stackblitz.com/github/siddharthamaity/nextjs-15-starter-core) 134 | 135 | [![Open in Repl.it](https://replit.com/badge/github/siddharthamaity/nextjs-15-starter-core)](https://replit.com/github/siddharthamaity/nextjs-15-starter-core) 136 | 137 | [![Open in Glitch](https://img.shields.io/badge/Open%20in-Glitch-blue?logo=glitch)](https://glitch.com/edit/#!/import/github/siddharthamaity/nextjs-15-starter-core) 138 | 139 | ### License 140 | 141 | This project is licensed under the MIT License. See the [LICENSE](LICENSE) file for details. 142 | 143 | --- 144 | 145 |

With ❤️ from 🇮🇳

146 | -------------------------------------------------------------------------------- /eslint.config.mjs: -------------------------------------------------------------------------------- 1 | import pluginJs from '@eslint/js'; 2 | import nextPlugin from '@next/eslint-plugin-next'; 3 | 4 | import eslintConfigPrettier from 'eslint-config-prettier'; 5 | import importPlugin from 'eslint-plugin-import'; 6 | import pluginPromise from 'eslint-plugin-promise'; 7 | import pluginReact from 'eslint-plugin-react'; 8 | import globals from 'globals'; 9 | import tseslint from 'typescript-eslint'; 10 | 11 | export default [ 12 | { 13 | files: ['**/*.{js,mjs,cjs,ts,jsx,tsx}'] 14 | }, 15 | { 16 | languageOptions: { 17 | ecmaVersion: 'latest', 18 | globals: { ...globals.browser, ...globals.node } 19 | } 20 | }, 21 | { 22 | settings: { 23 | react: { 24 | version: 'detect' 25 | } 26 | } 27 | }, 28 | pluginJs.configs.recommended, // ? https://github.com/eslint/eslint 29 | importPlugin.flatConfigs.recommended, // ? https://github.com/import-js/eslint-plugin-import 30 | ...tseslint.configs.recommended, // ? https://github.com/typescript-eslint/typescript-eslint 31 | pluginPromise.configs['flat/recommended'], // ? https://github.com/eslint-community/eslint-plugin-promise 32 | pluginReact.configs.flat.recommended, // ? https://github.com/jsx-eslint/eslint-plugin-react 33 | pluginReact.configs.flat['jsx-runtime'], // ? https://github.com/jsx-eslint/eslint-plugin-react 34 | eslintConfigPrettier, // ? https://github.com/prettier/eslint-config-prettier 35 | { 36 | rules: { 37 | 'no-unused-vars': 'off', 38 | 'react/react-in-jsx-scope': 'off', 39 | 'react-hooks/exhaustive-deps': 'off', 40 | 'react/display-name': 'off', 41 | 'react/prop-types': 'off', 42 | 'newline-before-return': 'error', 43 | '@typescript-eslint/no-unused-vars': 'off', 44 | '@typescript-eslint/no-unused-expressions': 'off', 45 | 'import/no-unresolved': 'off', 46 | 'import/no-named-as-default': 'off' 47 | } 48 | }, 49 | // ! ===================== DISCLAIMER ===================== 50 | // ! There is no official solution available for new ESLint 9 flat config structure for NextJS 51 | // ! The solution is taken from the community and may not be the best practice, use it at your own risk 52 | // ? Ref: https://github.com/vercel/next.js/discussions/49337?sort=top#discussioncomment-5998603 53 | // ! ====================================================== 54 | { 55 | plugins: { 56 | '@next/next': nextPlugin 57 | }, 58 | rules: { 59 | ...nextPlugin.configs.recommended.rules, 60 | ...nextPlugin.configs['core-web-vitals'].rules, 61 | '@next/next/no-img-element': 'off' 62 | } 63 | }, 64 | { 65 | ignores: ['.next/*'] 66 | } 67 | ]; 68 | -------------------------------------------------------------------------------- /next.config.ts: -------------------------------------------------------------------------------- 1 | import type { NextConfig } from 'next'; 2 | 3 | import initializeBundleAnalyzer from '@next/bundle-analyzer'; 4 | 5 | // https://www.npmjs.com/package/@next/bundle-analyzer 6 | const withBundleAnalyzer = initializeBundleAnalyzer({ 7 | enabled: process.env.BUNDLE_ANALYZER_ENABLED === 'true' 8 | }); 9 | 10 | // https://nextjs.org/docs/pages/api-reference/next-config-js 11 | const nextConfig: NextConfig = { 12 | output: 'standalone' 13 | }; 14 | 15 | export default withBundleAnalyzer(nextConfig); 16 | -------------------------------------------------------------------------------- /package-lock.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "nextjs-15-starter-core", 3 | "version": "1.0.0", 4 | "lockfileVersion": 3, 5 | "requires": true, 6 | "packages": { 7 | "": { 8 | "name": "nextjs-15-starter-core", 9 | "version": "1.0.0", 10 | "license": "MIT", 11 | "dependencies": { 12 | "next": "^15.3.3", 13 | "next-themes": "^0.4.6", 14 | "react": "^19.1.0", 15 | "react-dom": "^19.1.0" 16 | }, 17 | "devDependencies": { 18 | "@eslint/js": "^9.28.0", 19 | "@next/bundle-analyzer": "^15.3.3", 20 | "@next/eslint-plugin-next": "^15.3.3", 21 | "@trivago/prettier-plugin-sort-imports": "^5.2.2", 22 | "@types/node": "^22.15.29", 23 | "@types/react": "^19.1.6", 24 | "@types/react-dom": "^19.1.6", 25 | "eslint": "^9.28.0", 26 | "eslint-config-next": "^15.3.3", 27 | "eslint-config-prettier": "^10.1.5", 28 | "eslint-plugin-import": "^2.31.0", 29 | "eslint-plugin-promise": "^7.2.1", 30 | "eslint-plugin-react": "^7.37.5", 31 | "globals": "^16.2.0", 32 | "postcss": "^8.5.4", 33 | "prettier": "^3.5.3", 34 | "typescript": "^5.8.3", 35 | "typescript-eslint": "^8.33.1" 36 | } 37 | }, 38 | "node_modules/@babel/code-frame": { 39 | "version": "7.27.1", 40 | "dev": true, 41 | "license": "MIT", 42 | "dependencies": { 43 | "@babel/helper-validator-identifier": "^7.27.1", 44 | "js-tokens": "^4.0.0", 45 | "picocolors": "^1.1.1" 46 | }, 47 | "engines": { 48 | "node": ">=6.9.0" 49 | } 50 | }, 51 | "node_modules/@babel/generator": { 52 | "version": "7.27.3", 53 | "dev": true, 54 | "license": "MIT", 55 | "dependencies": { 56 | "@babel/parser": "^7.27.3", 57 | "@babel/types": "^7.27.3", 58 | "@jridgewell/gen-mapping": "^0.3.5", 59 | "@jridgewell/trace-mapping": "^0.3.25", 60 | "jsesc": "^3.0.2" 61 | }, 62 | "engines": { 63 | "node": ">=6.9.0" 64 | } 65 | }, 66 | "node_modules/@babel/helper-string-parser": { 67 | "version": "7.27.1", 68 | "dev": true, 69 | "license": "MIT", 70 | "engines": { 71 | "node": ">=6.9.0" 72 | } 73 | }, 74 | "node_modules/@babel/helper-validator-identifier": { 75 | "version": "7.27.1", 76 | "dev": true, 77 | "license": "MIT", 78 | "engines": { 79 | "node": ">=6.9.0" 80 | } 81 | }, 82 | "node_modules/@babel/parser": { 83 | "version": "7.27.3", 84 | "dev": true, 85 | "license": "MIT", 86 | "dependencies": { 87 | "@babel/types": "^7.27.3" 88 | }, 89 | "bin": { 90 | "parser": "bin/babel-parser.js" 91 | }, 92 | "engines": { 93 | "node": ">=6.0.0" 94 | } 95 | }, 96 | "node_modules/@babel/template": { 97 | "version": "7.27.2", 98 | "dev": true, 99 | "license": "MIT", 100 | "dependencies": { 101 | "@babel/code-frame": "^7.27.1", 102 | "@babel/parser": "^7.27.2", 103 | "@babel/types": "^7.27.1" 104 | }, 105 | "engines": { 106 | "node": ">=6.9.0" 107 | } 108 | }, 109 | "node_modules/@babel/traverse": { 110 | "version": "7.27.3", 111 | "dev": true, 112 | "license": "MIT", 113 | "dependencies": { 114 | "@babel/code-frame": "^7.27.1", 115 | "@babel/generator": "^7.27.3", 116 | "@babel/parser": "^7.27.3", 117 | "@babel/template": "^7.27.2", 118 | "@babel/types": "^7.27.3", 119 | "debug": "^4.3.1", 120 | "globals": "^11.1.0" 121 | }, 122 | "engines": { 123 | "node": ">=6.9.0" 124 | } 125 | }, 126 | "node_modules/@babel/traverse/node_modules/globals": { 127 | "version": "11.12.0", 128 | "dev": true, 129 | "license": "MIT", 130 | "engines": { 131 | "node": ">=4" 132 | } 133 | }, 134 | "node_modules/@babel/types": { 135 | "version": "7.27.3", 136 | "dev": true, 137 | "license": "MIT", 138 | "dependencies": { 139 | "@babel/helper-string-parser": "^7.27.1", 140 | "@babel/helper-validator-identifier": "^7.27.1" 141 | }, 142 | "engines": { 143 | "node": ">=6.9.0" 144 | } 145 | }, 146 | "node_modules/@discoveryjs/json-ext": { 147 | "version": "0.5.7", 148 | "dev": true, 149 | "license": "MIT", 150 | "engines": { 151 | "node": ">=10.0.0" 152 | } 153 | }, 154 | "node_modules/@eslint-community/eslint-utils": { 155 | "version": "4.7.0", 156 | "dev": true, 157 | "license": "MIT", 158 | "dependencies": { 159 | "eslint-visitor-keys": "^3.4.3" 160 | }, 161 | "engines": { 162 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 163 | }, 164 | "funding": { 165 | "url": "https://opencollective.com/eslint" 166 | }, 167 | "peerDependencies": { 168 | "eslint": "^6.0.0 || ^7.0.0 || >=8.0.0" 169 | } 170 | }, 171 | "node_modules/@eslint-community/eslint-utils/node_modules/eslint-visitor-keys": { 172 | "version": "3.4.3", 173 | "dev": true, 174 | "license": "Apache-2.0", 175 | "engines": { 176 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 177 | }, 178 | "funding": { 179 | "url": "https://opencollective.com/eslint" 180 | } 181 | }, 182 | "node_modules/@eslint-community/regexpp": { 183 | "version": "4.12.1", 184 | "dev": true, 185 | "license": "MIT", 186 | "engines": { 187 | "node": "^12.0.0 || ^14.0.0 || >=16.0.0" 188 | } 189 | }, 190 | "node_modules/@eslint/config-array": { 191 | "version": "0.20.0", 192 | "dev": true, 193 | "license": "Apache-2.0", 194 | "dependencies": { 195 | "@eslint/object-schema": "^2.1.6", 196 | "debug": "^4.3.1", 197 | "minimatch": "^3.1.2" 198 | }, 199 | "engines": { 200 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 201 | } 202 | }, 203 | "node_modules/@eslint/config-helpers": { 204 | "version": "0.2.2", 205 | "dev": true, 206 | "license": "Apache-2.0", 207 | "engines": { 208 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 209 | } 210 | }, 211 | "node_modules/@eslint/core": { 212 | "version": "0.14.0", 213 | "dev": true, 214 | "license": "Apache-2.0", 215 | "dependencies": { 216 | "@types/json-schema": "^7.0.15" 217 | }, 218 | "engines": { 219 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 220 | } 221 | }, 222 | "node_modules/@eslint/eslintrc": { 223 | "version": "3.3.1", 224 | "dev": true, 225 | "license": "MIT", 226 | "dependencies": { 227 | "ajv": "^6.12.4", 228 | "debug": "^4.3.2", 229 | "espree": "^10.0.1", 230 | "globals": "^14.0.0", 231 | "ignore": "^5.2.0", 232 | "import-fresh": "^3.2.1", 233 | "js-yaml": "^4.1.0", 234 | "minimatch": "^3.1.2", 235 | "strip-json-comments": "^3.1.1" 236 | }, 237 | "engines": { 238 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 239 | }, 240 | "funding": { 241 | "url": "https://opencollective.com/eslint" 242 | } 243 | }, 244 | "node_modules/@eslint/eslintrc/node_modules/globals": { 245 | "version": "14.0.0", 246 | "dev": true, 247 | "license": "MIT", 248 | "engines": { 249 | "node": ">=18" 250 | }, 251 | "funding": { 252 | "url": "https://github.com/sponsors/sindresorhus" 253 | } 254 | }, 255 | "node_modules/@eslint/js": { 256 | "version": "9.28.0", 257 | "resolved": "https://registry.npmjs.org/@eslint/js/-/js-9.28.0.tgz", 258 | "integrity": "sha512-fnqSjGWd/CoIp4EXIxWVK/sHA6DOHN4+8Ix2cX5ycOY7LG0UY8nHCU5pIp2eaE1Mc7Qd8kHspYNzYXT2ojPLzg==", 259 | "dev": true, 260 | "license": "MIT", 261 | "engines": { 262 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 263 | }, 264 | "funding": { 265 | "url": "https://eslint.org/donate" 266 | } 267 | }, 268 | "node_modules/@eslint/object-schema": { 269 | "version": "2.1.6", 270 | "dev": true, 271 | "license": "Apache-2.0", 272 | "engines": { 273 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 274 | } 275 | }, 276 | "node_modules/@eslint/plugin-kit": { 277 | "version": "0.3.1", 278 | "dev": true, 279 | "license": "Apache-2.0", 280 | "dependencies": { 281 | "@eslint/core": "^0.14.0", 282 | "levn": "^0.4.1" 283 | }, 284 | "engines": { 285 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 286 | } 287 | }, 288 | "node_modules/@humanfs/core": { 289 | "version": "0.19.1", 290 | "dev": true, 291 | "license": "Apache-2.0", 292 | "engines": { 293 | "node": ">=18.18.0" 294 | } 295 | }, 296 | "node_modules/@humanfs/node": { 297 | "version": "0.16.6", 298 | "dev": true, 299 | "license": "Apache-2.0", 300 | "dependencies": { 301 | "@humanfs/core": "^0.19.1", 302 | "@humanwhocodes/retry": "^0.3.0" 303 | }, 304 | "engines": { 305 | "node": ">=18.18.0" 306 | } 307 | }, 308 | "node_modules/@humanfs/node/node_modules/@humanwhocodes/retry": { 309 | "version": "0.3.1", 310 | "dev": true, 311 | "license": "Apache-2.0", 312 | "engines": { 313 | "node": ">=18.18" 314 | }, 315 | "funding": { 316 | "type": "github", 317 | "url": "https://github.com/sponsors/nzakas" 318 | } 319 | }, 320 | "node_modules/@humanwhocodes/module-importer": { 321 | "version": "1.0.1", 322 | "dev": true, 323 | "license": "Apache-2.0", 324 | "engines": { 325 | "node": ">=12.22" 326 | }, 327 | "funding": { 328 | "type": "github", 329 | "url": "https://github.com/sponsors/nzakas" 330 | } 331 | }, 332 | "node_modules/@humanwhocodes/retry": { 333 | "version": "0.4.3", 334 | "dev": true, 335 | "license": "Apache-2.0", 336 | "engines": { 337 | "node": ">=18.18" 338 | }, 339 | "funding": { 340 | "type": "github", 341 | "url": "https://github.com/sponsors/nzakas" 342 | } 343 | }, 344 | "node_modules/@img/sharp-libvips-linux-x64": { 345 | "version": "1.1.0", 346 | "cpu": [ 347 | "x64" 348 | ], 349 | "license": "LGPL-3.0-or-later", 350 | "optional": true, 351 | "os": [ 352 | "linux" 353 | ], 354 | "funding": { 355 | "url": "https://opencollective.com/libvips" 356 | } 357 | }, 358 | "node_modules/@img/sharp-libvips-linuxmusl-x64": { 359 | "version": "1.1.0", 360 | "cpu": [ 361 | "x64" 362 | ], 363 | "license": "LGPL-3.0-or-later", 364 | "optional": true, 365 | "os": [ 366 | "linux" 367 | ], 368 | "funding": { 369 | "url": "https://opencollective.com/libvips" 370 | } 371 | }, 372 | "node_modules/@img/sharp-linux-x64": { 373 | "version": "0.34.2", 374 | "cpu": [ 375 | "x64" 376 | ], 377 | "license": "Apache-2.0", 378 | "optional": true, 379 | "os": [ 380 | "linux" 381 | ], 382 | "engines": { 383 | "node": "^18.17.0 || ^20.3.0 || >=21.0.0" 384 | }, 385 | "funding": { 386 | "url": "https://opencollective.com/libvips" 387 | }, 388 | "optionalDependencies": { 389 | "@img/sharp-libvips-linux-x64": "1.1.0" 390 | } 391 | }, 392 | "node_modules/@img/sharp-linuxmusl-x64": { 393 | "version": "0.34.2", 394 | "cpu": [ 395 | "x64" 396 | ], 397 | "license": "Apache-2.0", 398 | "optional": true, 399 | "os": [ 400 | "linux" 401 | ], 402 | "engines": { 403 | "node": "^18.17.0 || ^20.3.0 || >=21.0.0" 404 | }, 405 | "funding": { 406 | "url": "https://opencollective.com/libvips" 407 | }, 408 | "optionalDependencies": { 409 | "@img/sharp-libvips-linuxmusl-x64": "1.1.0" 410 | } 411 | }, 412 | "node_modules/@jridgewell/gen-mapping": { 413 | "version": "0.3.8", 414 | "dev": true, 415 | "license": "MIT", 416 | "dependencies": { 417 | "@jridgewell/set-array": "^1.2.1", 418 | "@jridgewell/sourcemap-codec": "^1.4.10", 419 | "@jridgewell/trace-mapping": "^0.3.24" 420 | }, 421 | "engines": { 422 | "node": ">=6.0.0" 423 | } 424 | }, 425 | "node_modules/@jridgewell/resolve-uri": { 426 | "version": "3.1.2", 427 | "dev": true, 428 | "license": "MIT", 429 | "engines": { 430 | "node": ">=6.0.0" 431 | } 432 | }, 433 | "node_modules/@jridgewell/set-array": { 434 | "version": "1.2.1", 435 | "dev": true, 436 | "license": "MIT", 437 | "engines": { 438 | "node": ">=6.0.0" 439 | } 440 | }, 441 | "node_modules/@jridgewell/sourcemap-codec": { 442 | "version": "1.5.0", 443 | "dev": true, 444 | "license": "MIT" 445 | }, 446 | "node_modules/@jridgewell/trace-mapping": { 447 | "version": "0.3.25", 448 | "dev": true, 449 | "license": "MIT", 450 | "dependencies": { 451 | "@jridgewell/resolve-uri": "^3.1.0", 452 | "@jridgewell/sourcemap-codec": "^1.4.14" 453 | } 454 | }, 455 | "node_modules/@next/bundle-analyzer": { 456 | "version": "15.3.3", 457 | "dev": true, 458 | "license": "MIT", 459 | "dependencies": { 460 | "webpack-bundle-analyzer": "4.10.1" 461 | } 462 | }, 463 | "node_modules/@next/env": { 464 | "version": "15.3.3", 465 | "license": "MIT" 466 | }, 467 | "node_modules/@next/eslint-plugin-next": { 468 | "version": "15.3.3", 469 | "dev": true, 470 | "license": "MIT", 471 | "dependencies": { 472 | "fast-glob": "3.3.1" 473 | } 474 | }, 475 | "node_modules/@next/swc-linux-x64-gnu": { 476 | "version": "15.3.3", 477 | "cpu": [ 478 | "x64" 479 | ], 480 | "license": "MIT", 481 | "optional": true, 482 | "os": [ 483 | "linux" 484 | ], 485 | "engines": { 486 | "node": ">= 10" 487 | } 488 | }, 489 | "node_modules/@next/swc-linux-x64-musl": { 490 | "version": "15.3.3", 491 | "cpu": [ 492 | "x64" 493 | ], 494 | "license": "MIT", 495 | "optional": true, 496 | "os": [ 497 | "linux" 498 | ], 499 | "engines": { 500 | "node": ">= 10" 501 | } 502 | }, 503 | "node_modules/@nodelib/fs.scandir": { 504 | "version": "2.1.5", 505 | "dev": true, 506 | "license": "MIT", 507 | "dependencies": { 508 | "@nodelib/fs.stat": "2.0.5", 509 | "run-parallel": "^1.1.9" 510 | }, 511 | "engines": { 512 | "node": ">= 8" 513 | } 514 | }, 515 | "node_modules/@nodelib/fs.stat": { 516 | "version": "2.0.5", 517 | "dev": true, 518 | "license": "MIT", 519 | "engines": { 520 | "node": ">= 8" 521 | } 522 | }, 523 | "node_modules/@nodelib/fs.walk": { 524 | "version": "1.2.8", 525 | "dev": true, 526 | "license": "MIT", 527 | "dependencies": { 528 | "@nodelib/fs.scandir": "2.1.5", 529 | "fastq": "^1.6.0" 530 | }, 531 | "engines": { 532 | "node": ">= 8" 533 | } 534 | }, 535 | "node_modules/@nolyfill/is-core-module": { 536 | "version": "1.0.39", 537 | "dev": true, 538 | "license": "MIT", 539 | "engines": { 540 | "node": ">=12.4.0" 541 | } 542 | }, 543 | "node_modules/@polka/url": { 544 | "version": "1.0.0-next.29", 545 | "dev": true, 546 | "license": "MIT" 547 | }, 548 | "node_modules/@rtsao/scc": { 549 | "version": "1.1.0", 550 | "dev": true, 551 | "license": "MIT" 552 | }, 553 | "node_modules/@rushstack/eslint-patch": { 554 | "version": "1.11.0", 555 | "dev": true, 556 | "license": "MIT" 557 | }, 558 | "node_modules/@swc/counter": { 559 | "version": "0.1.3", 560 | "license": "Apache-2.0" 561 | }, 562 | "node_modules/@swc/helpers": { 563 | "version": "0.5.15", 564 | "license": "Apache-2.0", 565 | "dependencies": { 566 | "tslib": "^2.8.0" 567 | } 568 | }, 569 | "node_modules/@trivago/prettier-plugin-sort-imports": { 570 | "version": "5.2.2", 571 | "dev": true, 572 | "license": "Apache-2.0", 573 | "dependencies": { 574 | "@babel/generator": "^7.26.5", 575 | "@babel/parser": "^7.26.7", 576 | "@babel/traverse": "^7.26.7", 577 | "@babel/types": "^7.26.7", 578 | "javascript-natural-sort": "^0.7.1", 579 | "lodash": "^4.17.21" 580 | }, 581 | "engines": { 582 | "node": ">18.12" 583 | }, 584 | "peerDependencies": { 585 | "@vue/compiler-sfc": "3.x", 586 | "prettier": "2.x - 3.x", 587 | "prettier-plugin-svelte": "3.x", 588 | "svelte": "4.x || 5.x" 589 | }, 590 | "peerDependenciesMeta": { 591 | "@vue/compiler-sfc": { 592 | "optional": true 593 | }, 594 | "prettier-plugin-svelte": { 595 | "optional": true 596 | }, 597 | "svelte": { 598 | "optional": true 599 | } 600 | } 601 | }, 602 | "node_modules/@types/estree": { 603 | "version": "1.0.7", 604 | "dev": true, 605 | "license": "MIT" 606 | }, 607 | "node_modules/@types/json-schema": { 608 | "version": "7.0.15", 609 | "dev": true, 610 | "license": "MIT" 611 | }, 612 | "node_modules/@types/json5": { 613 | "version": "0.0.29", 614 | "dev": true, 615 | "license": "MIT" 616 | }, 617 | "node_modules/@types/node": { 618 | "version": "22.15.29", 619 | "resolved": "https://registry.npmjs.org/@types/node/-/node-22.15.29.tgz", 620 | "integrity": "sha512-LNdjOkUDlU1RZb8e1kOIUpN1qQUlzGkEtbVNo53vbrwDg5om6oduhm4SiUaPW5ASTXhAiP0jInWG8Qx9fVlOeQ==", 621 | "dev": true, 622 | "license": "MIT", 623 | "dependencies": { 624 | "undici-types": "~6.21.0" 625 | } 626 | }, 627 | "node_modules/@types/react": { 628 | "version": "19.1.6", 629 | "dev": true, 630 | "license": "MIT", 631 | "dependencies": { 632 | "csstype": "^3.0.2" 633 | } 634 | }, 635 | "node_modules/@types/react-dom": { 636 | "version": "19.1.6", 637 | "resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-19.1.6.tgz", 638 | "integrity": "sha512-4hOiT/dwO8Ko0gV1m/TJZYk3y0KBnY9vzDh7W+DH17b2HFSOGgdj33dhihPeuy3l0q23+4e+hoXHV6hCC4dCXw==", 639 | "dev": true, 640 | "license": "MIT", 641 | "peerDependencies": { 642 | "@types/react": "^19.0.0" 643 | } 644 | }, 645 | "node_modules/@typescript-eslint/eslint-plugin": { 646 | "version": "8.33.1", 647 | "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-8.33.1.tgz", 648 | "integrity": "sha512-TDCXj+YxLgtvxvFlAvpoRv9MAncDLBV2oT9Bd7YBGC/b/sEURoOYuIwLI99rjWOfY3QtDzO+mk0n4AmdFExW8A==", 649 | "dev": true, 650 | "license": "MIT", 651 | "dependencies": { 652 | "@eslint-community/regexpp": "^4.10.0", 653 | "@typescript-eslint/scope-manager": "8.33.1", 654 | "@typescript-eslint/type-utils": "8.33.1", 655 | "@typescript-eslint/utils": "8.33.1", 656 | "@typescript-eslint/visitor-keys": "8.33.1", 657 | "graphemer": "^1.4.0", 658 | "ignore": "^7.0.0", 659 | "natural-compare": "^1.4.0", 660 | "ts-api-utils": "^2.1.0" 661 | }, 662 | "engines": { 663 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 664 | }, 665 | "funding": { 666 | "type": "opencollective", 667 | "url": "https://opencollective.com/typescript-eslint" 668 | }, 669 | "peerDependencies": { 670 | "@typescript-eslint/parser": "^8.33.1", 671 | "eslint": "^8.57.0 || ^9.0.0", 672 | "typescript": ">=4.8.4 <5.9.0" 673 | } 674 | }, 675 | "node_modules/@typescript-eslint/eslint-plugin/node_modules/ignore": { 676 | "version": "7.0.4", 677 | "dev": true, 678 | "license": "MIT", 679 | "engines": { 680 | "node": ">= 4" 681 | } 682 | }, 683 | "node_modules/@typescript-eslint/parser": { 684 | "version": "8.33.1", 685 | "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-8.33.1.tgz", 686 | "integrity": "sha512-qwxv6dq682yVvgKKp2qWwLgRbscDAYktPptK4JPojCwwi3R9cwrvIxS4lvBpzmcqzR4bdn54Z0IG1uHFskW4dA==", 687 | "dev": true, 688 | "license": "MIT", 689 | "dependencies": { 690 | "@typescript-eslint/scope-manager": "8.33.1", 691 | "@typescript-eslint/types": "8.33.1", 692 | "@typescript-eslint/typescript-estree": "8.33.1", 693 | "@typescript-eslint/visitor-keys": "8.33.1", 694 | "debug": "^4.3.4" 695 | }, 696 | "engines": { 697 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 698 | }, 699 | "funding": { 700 | "type": "opencollective", 701 | "url": "https://opencollective.com/typescript-eslint" 702 | }, 703 | "peerDependencies": { 704 | "eslint": "^8.57.0 || ^9.0.0", 705 | "typescript": ">=4.8.4 <5.9.0" 706 | } 707 | }, 708 | "node_modules/@typescript-eslint/project-service": { 709 | "version": "8.33.1", 710 | "resolved": "https://registry.npmjs.org/@typescript-eslint/project-service/-/project-service-8.33.1.tgz", 711 | "integrity": "sha512-DZR0efeNklDIHHGRpMpR5gJITQpu6tLr9lDJnKdONTC7vvzOlLAG/wcfxcdxEWrbiZApcoBCzXqU/Z458Za5Iw==", 712 | "dev": true, 713 | "license": "MIT", 714 | "dependencies": { 715 | "@typescript-eslint/tsconfig-utils": "^8.33.1", 716 | "@typescript-eslint/types": "^8.33.1", 717 | "debug": "^4.3.4" 718 | }, 719 | "engines": { 720 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 721 | }, 722 | "funding": { 723 | "type": "opencollective", 724 | "url": "https://opencollective.com/typescript-eslint" 725 | }, 726 | "peerDependencies": { 727 | "typescript": ">=4.8.4 <5.9.0" 728 | } 729 | }, 730 | "node_modules/@typescript-eslint/scope-manager": { 731 | "version": "8.33.1", 732 | "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-8.33.1.tgz", 733 | "integrity": "sha512-dM4UBtgmzHR9bS0Rv09JST0RcHYearoEoo3pG5B6GoTR9XcyeqX87FEhPo+5kTvVfKCvfHaHrcgeJQc6mrDKrA==", 734 | "dev": true, 735 | "license": "MIT", 736 | "dependencies": { 737 | "@typescript-eslint/types": "8.33.1", 738 | "@typescript-eslint/visitor-keys": "8.33.1" 739 | }, 740 | "engines": { 741 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 742 | }, 743 | "funding": { 744 | "type": "opencollective", 745 | "url": "https://opencollective.com/typescript-eslint" 746 | } 747 | }, 748 | "node_modules/@typescript-eslint/tsconfig-utils": { 749 | "version": "8.33.1", 750 | "resolved": "https://registry.npmjs.org/@typescript-eslint/tsconfig-utils/-/tsconfig-utils-8.33.1.tgz", 751 | "integrity": "sha512-STAQsGYbHCF0/e+ShUQ4EatXQ7ceh3fBCXkNU7/MZVKulrlq1usH7t2FhxvCpuCi5O5oi1vmVaAjrGeL71OK1g==", 752 | "dev": true, 753 | "license": "MIT", 754 | "engines": { 755 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 756 | }, 757 | "funding": { 758 | "type": "opencollective", 759 | "url": "https://opencollective.com/typescript-eslint" 760 | }, 761 | "peerDependencies": { 762 | "typescript": ">=4.8.4 <5.9.0" 763 | } 764 | }, 765 | "node_modules/@typescript-eslint/type-utils": { 766 | "version": "8.33.1", 767 | "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-8.33.1.tgz", 768 | "integrity": "sha512-1cG37d9xOkhlykom55WVwG2QRNC7YXlxMaMzqw2uPeJixBFfKWZgaP/hjAObqMN/u3fr5BrTwTnc31/L9jQ2ww==", 769 | "dev": true, 770 | "license": "MIT", 771 | "dependencies": { 772 | "@typescript-eslint/typescript-estree": "8.33.1", 773 | "@typescript-eslint/utils": "8.33.1", 774 | "debug": "^4.3.4", 775 | "ts-api-utils": "^2.1.0" 776 | }, 777 | "engines": { 778 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 779 | }, 780 | "funding": { 781 | "type": "opencollective", 782 | "url": "https://opencollective.com/typescript-eslint" 783 | }, 784 | "peerDependencies": { 785 | "eslint": "^8.57.0 || ^9.0.0", 786 | "typescript": ">=4.8.4 <5.9.0" 787 | } 788 | }, 789 | "node_modules/@typescript-eslint/types": { 790 | "version": "8.33.1", 791 | "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-8.33.1.tgz", 792 | "integrity": "sha512-xid1WfizGhy/TKMTwhtVOgalHwPtV8T32MS9MaH50Cwvz6x6YqRIPdD2WvW0XaqOzTV9p5xdLY0h/ZusU5Lokg==", 793 | "dev": true, 794 | "license": "MIT", 795 | "engines": { 796 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 797 | }, 798 | "funding": { 799 | "type": "opencollective", 800 | "url": "https://opencollective.com/typescript-eslint" 801 | } 802 | }, 803 | "node_modules/@typescript-eslint/typescript-estree": { 804 | "version": "8.33.1", 805 | "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-8.33.1.tgz", 806 | "integrity": "sha512-+s9LYcT8LWjdYWu7IWs7FvUxpQ/DGkdjZeE/GGulHvv8rvYwQvVaUZ6DE+j5x/prADUgSbbCWZ2nPI3usuVeOA==", 807 | "dev": true, 808 | "license": "MIT", 809 | "dependencies": { 810 | "@typescript-eslint/project-service": "8.33.1", 811 | "@typescript-eslint/tsconfig-utils": "8.33.1", 812 | "@typescript-eslint/types": "8.33.1", 813 | "@typescript-eslint/visitor-keys": "8.33.1", 814 | "debug": "^4.3.4", 815 | "fast-glob": "^3.3.2", 816 | "is-glob": "^4.0.3", 817 | "minimatch": "^9.0.4", 818 | "semver": "^7.6.0", 819 | "ts-api-utils": "^2.1.0" 820 | }, 821 | "engines": { 822 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 823 | }, 824 | "funding": { 825 | "type": "opencollective", 826 | "url": "https://opencollective.com/typescript-eslint" 827 | }, 828 | "peerDependencies": { 829 | "typescript": ">=4.8.4 <5.9.0" 830 | } 831 | }, 832 | "node_modules/@typescript-eslint/typescript-estree/node_modules/brace-expansion": { 833 | "version": "2.0.1", 834 | "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", 835 | "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", 836 | "dev": true, 837 | "license": "MIT", 838 | "dependencies": { 839 | "balanced-match": "^1.0.0" 840 | } 841 | }, 842 | "node_modules/@typescript-eslint/typescript-estree/node_modules/fast-glob": { 843 | "version": "3.3.3", 844 | "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.3.tgz", 845 | "integrity": "sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg==", 846 | "dev": true, 847 | "license": "MIT", 848 | "dependencies": { 849 | "@nodelib/fs.stat": "^2.0.2", 850 | "@nodelib/fs.walk": "^1.2.3", 851 | "glob-parent": "^5.1.2", 852 | "merge2": "^1.3.0", 853 | "micromatch": "^4.0.8" 854 | }, 855 | "engines": { 856 | "node": ">=8.6.0" 857 | } 858 | }, 859 | "node_modules/@typescript-eslint/typescript-estree/node_modules/glob-parent": { 860 | "version": "5.1.2", 861 | "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", 862 | "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", 863 | "dev": true, 864 | "license": "ISC", 865 | "dependencies": { 866 | "is-glob": "^4.0.1" 867 | }, 868 | "engines": { 869 | "node": ">= 6" 870 | } 871 | }, 872 | "node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch": { 873 | "version": "9.0.5", 874 | "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz", 875 | "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==", 876 | "dev": true, 877 | "license": "ISC", 878 | "dependencies": { 879 | "brace-expansion": "^2.0.1" 880 | }, 881 | "engines": { 882 | "node": ">=16 || 14 >=14.17" 883 | }, 884 | "funding": { 885 | "url": "https://github.com/sponsors/isaacs" 886 | } 887 | }, 888 | "node_modules/@typescript-eslint/typescript-estree/node_modules/semver": { 889 | "version": "7.7.2", 890 | "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.2.tgz", 891 | "integrity": "sha512-RF0Fw+rO5AMf9MAyaRXI4AV0Ulj5lMHqVxxdSgiVbixSCXoEmmX/jk0CuJw4+3SqroYO9VoUh+HcuJivvtJemA==", 892 | "dev": true, 893 | "license": "ISC", 894 | "bin": { 895 | "semver": "bin/semver.js" 896 | }, 897 | "engines": { 898 | "node": ">=10" 899 | } 900 | }, 901 | "node_modules/@typescript-eslint/utils": { 902 | "version": "8.33.1", 903 | "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-8.33.1.tgz", 904 | "integrity": "sha512-52HaBiEQUaRYqAXpfzWSR2U3gxk92Kw006+xZpElaPMg3C4PgM+A5LqwoQI1f9E5aZ/qlxAZxzm42WX+vn92SQ==", 905 | "dev": true, 906 | "license": "MIT", 907 | "dependencies": { 908 | "@eslint-community/eslint-utils": "^4.7.0", 909 | "@typescript-eslint/scope-manager": "8.33.1", 910 | "@typescript-eslint/types": "8.33.1", 911 | "@typescript-eslint/typescript-estree": "8.33.1" 912 | }, 913 | "engines": { 914 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 915 | }, 916 | "funding": { 917 | "type": "opencollective", 918 | "url": "https://opencollective.com/typescript-eslint" 919 | }, 920 | "peerDependencies": { 921 | "eslint": "^8.57.0 || ^9.0.0", 922 | "typescript": ">=4.8.4 <5.9.0" 923 | } 924 | }, 925 | "node_modules/@typescript-eslint/visitor-keys": { 926 | "version": "8.33.1", 927 | "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-8.33.1.tgz", 928 | "integrity": "sha512-3i8NrFcZeeDHJ+7ZUuDkGT+UHq+XoFGsymNK2jZCOHcfEzRQ0BdpRtdpSx/Iyf3MHLWIcLS0COuOPibKQboIiQ==", 929 | "dev": true, 930 | "license": "MIT", 931 | "dependencies": { 932 | "@typescript-eslint/types": "8.33.1", 933 | "eslint-visitor-keys": "^4.2.0" 934 | }, 935 | "engines": { 936 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 937 | }, 938 | "funding": { 939 | "type": "opencollective", 940 | "url": "https://opencollective.com/typescript-eslint" 941 | } 942 | }, 943 | "node_modules/@unrs/resolver-binding-linux-x64-gnu": { 944 | "version": "1.7.8", 945 | "cpu": [ 946 | "x64" 947 | ], 948 | "dev": true, 949 | "license": "MIT", 950 | "optional": true, 951 | "os": [ 952 | "linux" 953 | ] 954 | }, 955 | "node_modules/@unrs/resolver-binding-linux-x64-musl": { 956 | "version": "1.7.8", 957 | "cpu": [ 958 | "x64" 959 | ], 960 | "dev": true, 961 | "license": "MIT", 962 | "optional": true, 963 | "os": [ 964 | "linux" 965 | ] 966 | }, 967 | "node_modules/acorn": { 968 | "version": "8.14.1", 969 | "dev": true, 970 | "license": "MIT", 971 | "bin": { 972 | "acorn": "bin/acorn" 973 | }, 974 | "engines": { 975 | "node": ">=0.4.0" 976 | } 977 | }, 978 | "node_modules/acorn-jsx": { 979 | "version": "5.3.2", 980 | "dev": true, 981 | "license": "MIT", 982 | "peerDependencies": { 983 | "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" 984 | } 985 | }, 986 | "node_modules/acorn-walk": { 987 | "version": "8.3.4", 988 | "dev": true, 989 | "license": "MIT", 990 | "dependencies": { 991 | "acorn": "^8.11.0" 992 | }, 993 | "engines": { 994 | "node": ">=0.4.0" 995 | } 996 | }, 997 | "node_modules/ajv": { 998 | "version": "6.12.6", 999 | "dev": true, 1000 | "license": "MIT", 1001 | "dependencies": { 1002 | "fast-deep-equal": "^3.1.1", 1003 | "fast-json-stable-stringify": "^2.0.0", 1004 | "json-schema-traverse": "^0.4.1", 1005 | "uri-js": "^4.2.2" 1006 | }, 1007 | "funding": { 1008 | "type": "github", 1009 | "url": "https://github.com/sponsors/epoberezkin" 1010 | } 1011 | }, 1012 | "node_modules/ansi-styles": { 1013 | "version": "4.3.0", 1014 | "dev": true, 1015 | "license": "MIT", 1016 | "dependencies": { 1017 | "color-convert": "^2.0.1" 1018 | }, 1019 | "engines": { 1020 | "node": ">=8" 1021 | }, 1022 | "funding": { 1023 | "url": "https://github.com/chalk/ansi-styles?sponsor=1" 1024 | } 1025 | }, 1026 | "node_modules/argparse": { 1027 | "version": "2.0.1", 1028 | "dev": true, 1029 | "license": "Python-2.0" 1030 | }, 1031 | "node_modules/aria-query": { 1032 | "version": "5.3.2", 1033 | "dev": true, 1034 | "license": "Apache-2.0", 1035 | "engines": { 1036 | "node": ">= 0.4" 1037 | } 1038 | }, 1039 | "node_modules/array-buffer-byte-length": { 1040 | "version": "1.0.2", 1041 | "dev": true, 1042 | "license": "MIT", 1043 | "dependencies": { 1044 | "call-bound": "^1.0.3", 1045 | "is-array-buffer": "^3.0.5" 1046 | }, 1047 | "engines": { 1048 | "node": ">= 0.4" 1049 | }, 1050 | "funding": { 1051 | "url": "https://github.com/sponsors/ljharb" 1052 | } 1053 | }, 1054 | "node_modules/array-includes": { 1055 | "version": "3.1.8", 1056 | "dev": true, 1057 | "license": "MIT", 1058 | "dependencies": { 1059 | "call-bind": "^1.0.7", 1060 | "define-properties": "^1.2.1", 1061 | "es-abstract": "^1.23.2", 1062 | "es-object-atoms": "^1.0.0", 1063 | "get-intrinsic": "^1.2.4", 1064 | "is-string": "^1.0.7" 1065 | }, 1066 | "engines": { 1067 | "node": ">= 0.4" 1068 | }, 1069 | "funding": { 1070 | "url": "https://github.com/sponsors/ljharb" 1071 | } 1072 | }, 1073 | "node_modules/array.prototype.findlast": { 1074 | "version": "1.2.5", 1075 | "dev": true, 1076 | "license": "MIT", 1077 | "dependencies": { 1078 | "call-bind": "^1.0.7", 1079 | "define-properties": "^1.2.1", 1080 | "es-abstract": "^1.23.2", 1081 | "es-errors": "^1.3.0", 1082 | "es-object-atoms": "^1.0.0", 1083 | "es-shim-unscopables": "^1.0.2" 1084 | }, 1085 | "engines": { 1086 | "node": ">= 0.4" 1087 | }, 1088 | "funding": { 1089 | "url": "https://github.com/sponsors/ljharb" 1090 | } 1091 | }, 1092 | "node_modules/array.prototype.findlastindex": { 1093 | "version": "1.2.6", 1094 | "dev": true, 1095 | "license": "MIT", 1096 | "dependencies": { 1097 | "call-bind": "^1.0.8", 1098 | "call-bound": "^1.0.4", 1099 | "define-properties": "^1.2.1", 1100 | "es-abstract": "^1.23.9", 1101 | "es-errors": "^1.3.0", 1102 | "es-object-atoms": "^1.1.1", 1103 | "es-shim-unscopables": "^1.1.0" 1104 | }, 1105 | "engines": { 1106 | "node": ">= 0.4" 1107 | }, 1108 | "funding": { 1109 | "url": "https://github.com/sponsors/ljharb" 1110 | } 1111 | }, 1112 | "node_modules/array.prototype.flat": { 1113 | "version": "1.3.3", 1114 | "dev": true, 1115 | "license": "MIT", 1116 | "dependencies": { 1117 | "call-bind": "^1.0.8", 1118 | "define-properties": "^1.2.1", 1119 | "es-abstract": "^1.23.5", 1120 | "es-shim-unscopables": "^1.0.2" 1121 | }, 1122 | "engines": { 1123 | "node": ">= 0.4" 1124 | }, 1125 | "funding": { 1126 | "url": "https://github.com/sponsors/ljharb" 1127 | } 1128 | }, 1129 | "node_modules/array.prototype.flatmap": { 1130 | "version": "1.3.3", 1131 | "dev": true, 1132 | "license": "MIT", 1133 | "dependencies": { 1134 | "call-bind": "^1.0.8", 1135 | "define-properties": "^1.2.1", 1136 | "es-abstract": "^1.23.5", 1137 | "es-shim-unscopables": "^1.0.2" 1138 | }, 1139 | "engines": { 1140 | "node": ">= 0.4" 1141 | }, 1142 | "funding": { 1143 | "url": "https://github.com/sponsors/ljharb" 1144 | } 1145 | }, 1146 | "node_modules/array.prototype.tosorted": { 1147 | "version": "1.1.4", 1148 | "dev": true, 1149 | "license": "MIT", 1150 | "dependencies": { 1151 | "call-bind": "^1.0.7", 1152 | "define-properties": "^1.2.1", 1153 | "es-abstract": "^1.23.3", 1154 | "es-errors": "^1.3.0", 1155 | "es-shim-unscopables": "^1.0.2" 1156 | }, 1157 | "engines": { 1158 | "node": ">= 0.4" 1159 | } 1160 | }, 1161 | "node_modules/arraybuffer.prototype.slice": { 1162 | "version": "1.0.4", 1163 | "dev": true, 1164 | "license": "MIT", 1165 | "dependencies": { 1166 | "array-buffer-byte-length": "^1.0.1", 1167 | "call-bind": "^1.0.8", 1168 | "define-properties": "^1.2.1", 1169 | "es-abstract": "^1.23.5", 1170 | "es-errors": "^1.3.0", 1171 | "get-intrinsic": "^1.2.6", 1172 | "is-array-buffer": "^3.0.4" 1173 | }, 1174 | "engines": { 1175 | "node": ">= 0.4" 1176 | }, 1177 | "funding": { 1178 | "url": "https://github.com/sponsors/ljharb" 1179 | } 1180 | }, 1181 | "node_modules/ast-types-flow": { 1182 | "version": "0.0.8", 1183 | "dev": true, 1184 | "license": "MIT" 1185 | }, 1186 | "node_modules/async-function": { 1187 | "version": "1.0.0", 1188 | "dev": true, 1189 | "license": "MIT", 1190 | "engines": { 1191 | "node": ">= 0.4" 1192 | } 1193 | }, 1194 | "node_modules/available-typed-arrays": { 1195 | "version": "1.0.7", 1196 | "dev": true, 1197 | "license": "MIT", 1198 | "dependencies": { 1199 | "possible-typed-array-names": "^1.0.0" 1200 | }, 1201 | "engines": { 1202 | "node": ">= 0.4" 1203 | }, 1204 | "funding": { 1205 | "url": "https://github.com/sponsors/ljharb" 1206 | } 1207 | }, 1208 | "node_modules/axe-core": { 1209 | "version": "4.10.3", 1210 | "dev": true, 1211 | "license": "MPL-2.0", 1212 | "engines": { 1213 | "node": ">=4" 1214 | } 1215 | }, 1216 | "node_modules/axobject-query": { 1217 | "version": "4.1.0", 1218 | "dev": true, 1219 | "license": "Apache-2.0", 1220 | "engines": { 1221 | "node": ">= 0.4" 1222 | } 1223 | }, 1224 | "node_modules/balanced-match": { 1225 | "version": "1.0.2", 1226 | "dev": true, 1227 | "license": "MIT" 1228 | }, 1229 | "node_modules/brace-expansion": { 1230 | "version": "1.1.11", 1231 | "dev": true, 1232 | "license": "MIT", 1233 | "dependencies": { 1234 | "balanced-match": "^1.0.0", 1235 | "concat-map": "0.0.1" 1236 | } 1237 | }, 1238 | "node_modules/braces": { 1239 | "version": "3.0.3", 1240 | "dev": true, 1241 | "license": "MIT", 1242 | "dependencies": { 1243 | "fill-range": "^7.1.1" 1244 | }, 1245 | "engines": { 1246 | "node": ">=8" 1247 | } 1248 | }, 1249 | "node_modules/busboy": { 1250 | "version": "1.6.0", 1251 | "dependencies": { 1252 | "streamsearch": "^1.1.0" 1253 | }, 1254 | "engines": { 1255 | "node": ">=10.16.0" 1256 | } 1257 | }, 1258 | "node_modules/call-bind": { 1259 | "version": "1.0.8", 1260 | "dev": true, 1261 | "license": "MIT", 1262 | "dependencies": { 1263 | "call-bind-apply-helpers": "^1.0.0", 1264 | "es-define-property": "^1.0.0", 1265 | "get-intrinsic": "^1.2.4", 1266 | "set-function-length": "^1.2.2" 1267 | }, 1268 | "engines": { 1269 | "node": ">= 0.4" 1270 | }, 1271 | "funding": { 1272 | "url": "https://github.com/sponsors/ljharb" 1273 | } 1274 | }, 1275 | "node_modules/call-bind-apply-helpers": { 1276 | "version": "1.0.2", 1277 | "dev": true, 1278 | "license": "MIT", 1279 | "dependencies": { 1280 | "es-errors": "^1.3.0", 1281 | "function-bind": "^1.1.2" 1282 | }, 1283 | "engines": { 1284 | "node": ">= 0.4" 1285 | } 1286 | }, 1287 | "node_modules/call-bound": { 1288 | "version": "1.0.4", 1289 | "dev": true, 1290 | "license": "MIT", 1291 | "dependencies": { 1292 | "call-bind-apply-helpers": "^1.0.2", 1293 | "get-intrinsic": "^1.3.0" 1294 | }, 1295 | "engines": { 1296 | "node": ">= 0.4" 1297 | }, 1298 | "funding": { 1299 | "url": "https://github.com/sponsors/ljharb" 1300 | } 1301 | }, 1302 | "node_modules/callsites": { 1303 | "version": "3.1.0", 1304 | "dev": true, 1305 | "license": "MIT", 1306 | "engines": { 1307 | "node": ">=6" 1308 | } 1309 | }, 1310 | "node_modules/caniuse-lite": { 1311 | "version": "1.0.30001720", 1312 | "funding": [ 1313 | { 1314 | "type": "opencollective", 1315 | "url": "https://opencollective.com/browserslist" 1316 | }, 1317 | { 1318 | "type": "tidelift", 1319 | "url": "https://tidelift.com/funding/github/npm/caniuse-lite" 1320 | }, 1321 | { 1322 | "type": "github", 1323 | "url": "https://github.com/sponsors/ai" 1324 | } 1325 | ], 1326 | "license": "CC-BY-4.0" 1327 | }, 1328 | "node_modules/chalk": { 1329 | "version": "4.1.2", 1330 | "dev": true, 1331 | "license": "MIT", 1332 | "dependencies": { 1333 | "ansi-styles": "^4.1.0", 1334 | "supports-color": "^7.1.0" 1335 | }, 1336 | "engines": { 1337 | "node": ">=10" 1338 | }, 1339 | "funding": { 1340 | "url": "https://github.com/chalk/chalk?sponsor=1" 1341 | } 1342 | }, 1343 | "node_modules/client-only": { 1344 | "version": "0.0.1", 1345 | "license": "MIT" 1346 | }, 1347 | "node_modules/color": { 1348 | "version": "4.2.3", 1349 | "license": "MIT", 1350 | "optional": true, 1351 | "dependencies": { 1352 | "color-convert": "^2.0.1", 1353 | "color-string": "^1.9.0" 1354 | }, 1355 | "engines": { 1356 | "node": ">=12.5.0" 1357 | } 1358 | }, 1359 | "node_modules/color-convert": { 1360 | "version": "2.0.1", 1361 | "devOptional": true, 1362 | "license": "MIT", 1363 | "dependencies": { 1364 | "color-name": "~1.1.4" 1365 | }, 1366 | "engines": { 1367 | "node": ">=7.0.0" 1368 | } 1369 | }, 1370 | "node_modules/color-name": { 1371 | "version": "1.1.4", 1372 | "devOptional": true, 1373 | "license": "MIT" 1374 | }, 1375 | "node_modules/color-string": { 1376 | "version": "1.9.1", 1377 | "license": "MIT", 1378 | "optional": true, 1379 | "dependencies": { 1380 | "color-name": "^1.0.0", 1381 | "simple-swizzle": "^0.2.2" 1382 | } 1383 | }, 1384 | "node_modules/commander": { 1385 | "version": "7.2.0", 1386 | "dev": true, 1387 | "license": "MIT", 1388 | "engines": { 1389 | "node": ">= 10" 1390 | } 1391 | }, 1392 | "node_modules/concat-map": { 1393 | "version": "0.0.1", 1394 | "dev": true, 1395 | "license": "MIT" 1396 | }, 1397 | "node_modules/cross-spawn": { 1398 | "version": "7.0.6", 1399 | "dev": true, 1400 | "license": "MIT", 1401 | "dependencies": { 1402 | "path-key": "^3.1.0", 1403 | "shebang-command": "^2.0.0", 1404 | "which": "^2.0.1" 1405 | }, 1406 | "engines": { 1407 | "node": ">= 8" 1408 | } 1409 | }, 1410 | "node_modules/csstype": { 1411 | "version": "3.1.3", 1412 | "dev": true, 1413 | "license": "MIT" 1414 | }, 1415 | "node_modules/damerau-levenshtein": { 1416 | "version": "1.0.8", 1417 | "dev": true, 1418 | "license": "BSD-2-Clause" 1419 | }, 1420 | "node_modules/data-view-buffer": { 1421 | "version": "1.0.2", 1422 | "dev": true, 1423 | "license": "MIT", 1424 | "dependencies": { 1425 | "call-bound": "^1.0.3", 1426 | "es-errors": "^1.3.0", 1427 | "is-data-view": "^1.0.2" 1428 | }, 1429 | "engines": { 1430 | "node": ">= 0.4" 1431 | }, 1432 | "funding": { 1433 | "url": "https://github.com/sponsors/ljharb" 1434 | } 1435 | }, 1436 | "node_modules/data-view-byte-length": { 1437 | "version": "1.0.2", 1438 | "dev": true, 1439 | "license": "MIT", 1440 | "dependencies": { 1441 | "call-bound": "^1.0.3", 1442 | "es-errors": "^1.3.0", 1443 | "is-data-view": "^1.0.2" 1444 | }, 1445 | "engines": { 1446 | "node": ">= 0.4" 1447 | }, 1448 | "funding": { 1449 | "url": "https://github.com/sponsors/inspect-js" 1450 | } 1451 | }, 1452 | "node_modules/data-view-byte-offset": { 1453 | "version": "1.0.1", 1454 | "dev": true, 1455 | "license": "MIT", 1456 | "dependencies": { 1457 | "call-bound": "^1.0.2", 1458 | "es-errors": "^1.3.0", 1459 | "is-data-view": "^1.0.1" 1460 | }, 1461 | "engines": { 1462 | "node": ">= 0.4" 1463 | }, 1464 | "funding": { 1465 | "url": "https://github.com/sponsors/ljharb" 1466 | } 1467 | }, 1468 | "node_modules/debounce": { 1469 | "version": "1.2.1", 1470 | "dev": true, 1471 | "license": "MIT" 1472 | }, 1473 | "node_modules/debug": { 1474 | "version": "4.4.1", 1475 | "dev": true, 1476 | "license": "MIT", 1477 | "dependencies": { 1478 | "ms": "^2.1.3" 1479 | }, 1480 | "engines": { 1481 | "node": ">=6.0" 1482 | }, 1483 | "peerDependenciesMeta": { 1484 | "supports-color": { 1485 | "optional": true 1486 | } 1487 | } 1488 | }, 1489 | "node_modules/deep-is": { 1490 | "version": "0.1.4", 1491 | "dev": true, 1492 | "license": "MIT" 1493 | }, 1494 | "node_modules/define-data-property": { 1495 | "version": "1.1.4", 1496 | "dev": true, 1497 | "license": "MIT", 1498 | "dependencies": { 1499 | "es-define-property": "^1.0.0", 1500 | "es-errors": "^1.3.0", 1501 | "gopd": "^1.0.1" 1502 | }, 1503 | "engines": { 1504 | "node": ">= 0.4" 1505 | }, 1506 | "funding": { 1507 | "url": "https://github.com/sponsors/ljharb" 1508 | } 1509 | }, 1510 | "node_modules/define-properties": { 1511 | "version": "1.2.1", 1512 | "dev": true, 1513 | "license": "MIT", 1514 | "dependencies": { 1515 | "define-data-property": "^1.0.1", 1516 | "has-property-descriptors": "^1.0.0", 1517 | "object-keys": "^1.1.1" 1518 | }, 1519 | "engines": { 1520 | "node": ">= 0.4" 1521 | }, 1522 | "funding": { 1523 | "url": "https://github.com/sponsors/ljharb" 1524 | } 1525 | }, 1526 | "node_modules/detect-libc": { 1527 | "version": "2.0.4", 1528 | "license": "Apache-2.0", 1529 | "optional": true, 1530 | "engines": { 1531 | "node": ">=8" 1532 | } 1533 | }, 1534 | "node_modules/doctrine": { 1535 | "version": "2.1.0", 1536 | "dev": true, 1537 | "license": "Apache-2.0", 1538 | "dependencies": { 1539 | "esutils": "^2.0.2" 1540 | }, 1541 | "engines": { 1542 | "node": ">=0.10.0" 1543 | } 1544 | }, 1545 | "node_modules/dunder-proto": { 1546 | "version": "1.0.1", 1547 | "dev": true, 1548 | "license": "MIT", 1549 | "dependencies": { 1550 | "call-bind-apply-helpers": "^1.0.1", 1551 | "es-errors": "^1.3.0", 1552 | "gopd": "^1.2.0" 1553 | }, 1554 | "engines": { 1555 | "node": ">= 0.4" 1556 | } 1557 | }, 1558 | "node_modules/duplexer": { 1559 | "version": "0.1.2", 1560 | "dev": true, 1561 | "license": "MIT" 1562 | }, 1563 | "node_modules/emoji-regex": { 1564 | "version": "9.2.2", 1565 | "dev": true, 1566 | "license": "MIT" 1567 | }, 1568 | "node_modules/es-abstract": { 1569 | "version": "1.24.0", 1570 | "dev": true, 1571 | "license": "MIT", 1572 | "dependencies": { 1573 | "array-buffer-byte-length": "^1.0.2", 1574 | "arraybuffer.prototype.slice": "^1.0.4", 1575 | "available-typed-arrays": "^1.0.7", 1576 | "call-bind": "^1.0.8", 1577 | "call-bound": "^1.0.4", 1578 | "data-view-buffer": "^1.0.2", 1579 | "data-view-byte-length": "^1.0.2", 1580 | "data-view-byte-offset": "^1.0.1", 1581 | "es-define-property": "^1.0.1", 1582 | "es-errors": "^1.3.0", 1583 | "es-object-atoms": "^1.1.1", 1584 | "es-set-tostringtag": "^2.1.0", 1585 | "es-to-primitive": "^1.3.0", 1586 | "function.prototype.name": "^1.1.8", 1587 | "get-intrinsic": "^1.3.0", 1588 | "get-proto": "^1.0.1", 1589 | "get-symbol-description": "^1.1.0", 1590 | "globalthis": "^1.0.4", 1591 | "gopd": "^1.2.0", 1592 | "has-property-descriptors": "^1.0.2", 1593 | "has-proto": "^1.2.0", 1594 | "has-symbols": "^1.1.0", 1595 | "hasown": "^2.0.2", 1596 | "internal-slot": "^1.1.0", 1597 | "is-array-buffer": "^3.0.5", 1598 | "is-callable": "^1.2.7", 1599 | "is-data-view": "^1.0.2", 1600 | "is-negative-zero": "^2.0.3", 1601 | "is-regex": "^1.2.1", 1602 | "is-set": "^2.0.3", 1603 | "is-shared-array-buffer": "^1.0.4", 1604 | "is-string": "^1.1.1", 1605 | "is-typed-array": "^1.1.15", 1606 | "is-weakref": "^1.1.1", 1607 | "math-intrinsics": "^1.1.0", 1608 | "object-inspect": "^1.13.4", 1609 | "object-keys": "^1.1.1", 1610 | "object.assign": "^4.1.7", 1611 | "own-keys": "^1.0.1", 1612 | "regexp.prototype.flags": "^1.5.4", 1613 | "safe-array-concat": "^1.1.3", 1614 | "safe-push-apply": "^1.0.0", 1615 | "safe-regex-test": "^1.1.0", 1616 | "set-proto": "^1.0.0", 1617 | "stop-iteration-iterator": "^1.1.0", 1618 | "string.prototype.trim": "^1.2.10", 1619 | "string.prototype.trimend": "^1.0.9", 1620 | "string.prototype.trimstart": "^1.0.8", 1621 | "typed-array-buffer": "^1.0.3", 1622 | "typed-array-byte-length": "^1.0.3", 1623 | "typed-array-byte-offset": "^1.0.4", 1624 | "typed-array-length": "^1.0.7", 1625 | "unbox-primitive": "^1.1.0", 1626 | "which-typed-array": "^1.1.19" 1627 | }, 1628 | "engines": { 1629 | "node": ">= 0.4" 1630 | }, 1631 | "funding": { 1632 | "url": "https://github.com/sponsors/ljharb" 1633 | } 1634 | }, 1635 | "node_modules/es-define-property": { 1636 | "version": "1.0.1", 1637 | "dev": true, 1638 | "license": "MIT", 1639 | "engines": { 1640 | "node": ">= 0.4" 1641 | } 1642 | }, 1643 | "node_modules/es-errors": { 1644 | "version": "1.3.0", 1645 | "dev": true, 1646 | "license": "MIT", 1647 | "engines": { 1648 | "node": ">= 0.4" 1649 | } 1650 | }, 1651 | "node_modules/es-iterator-helpers": { 1652 | "version": "1.2.1", 1653 | "dev": true, 1654 | "license": "MIT", 1655 | "dependencies": { 1656 | "call-bind": "^1.0.8", 1657 | "call-bound": "^1.0.3", 1658 | "define-properties": "^1.2.1", 1659 | "es-abstract": "^1.23.6", 1660 | "es-errors": "^1.3.0", 1661 | "es-set-tostringtag": "^2.0.3", 1662 | "function-bind": "^1.1.2", 1663 | "get-intrinsic": "^1.2.6", 1664 | "globalthis": "^1.0.4", 1665 | "gopd": "^1.2.0", 1666 | "has-property-descriptors": "^1.0.2", 1667 | "has-proto": "^1.2.0", 1668 | "has-symbols": "^1.1.0", 1669 | "internal-slot": "^1.1.0", 1670 | "iterator.prototype": "^1.1.4", 1671 | "safe-array-concat": "^1.1.3" 1672 | }, 1673 | "engines": { 1674 | "node": ">= 0.4" 1675 | } 1676 | }, 1677 | "node_modules/es-object-atoms": { 1678 | "version": "1.1.1", 1679 | "dev": true, 1680 | "license": "MIT", 1681 | "dependencies": { 1682 | "es-errors": "^1.3.0" 1683 | }, 1684 | "engines": { 1685 | "node": ">= 0.4" 1686 | } 1687 | }, 1688 | "node_modules/es-set-tostringtag": { 1689 | "version": "2.1.0", 1690 | "dev": true, 1691 | "license": "MIT", 1692 | "dependencies": { 1693 | "es-errors": "^1.3.0", 1694 | "get-intrinsic": "^1.2.6", 1695 | "has-tostringtag": "^1.0.2", 1696 | "hasown": "^2.0.2" 1697 | }, 1698 | "engines": { 1699 | "node": ">= 0.4" 1700 | } 1701 | }, 1702 | "node_modules/es-shim-unscopables": { 1703 | "version": "1.1.0", 1704 | "dev": true, 1705 | "license": "MIT", 1706 | "dependencies": { 1707 | "hasown": "^2.0.2" 1708 | }, 1709 | "engines": { 1710 | "node": ">= 0.4" 1711 | } 1712 | }, 1713 | "node_modules/es-to-primitive": { 1714 | "version": "1.3.0", 1715 | "dev": true, 1716 | "license": "MIT", 1717 | "dependencies": { 1718 | "is-callable": "^1.2.7", 1719 | "is-date-object": "^1.0.5", 1720 | "is-symbol": "^1.0.4" 1721 | }, 1722 | "engines": { 1723 | "node": ">= 0.4" 1724 | }, 1725 | "funding": { 1726 | "url": "https://github.com/sponsors/ljharb" 1727 | } 1728 | }, 1729 | "node_modules/escape-string-regexp": { 1730 | "version": "4.0.0", 1731 | "dev": true, 1732 | "license": "MIT", 1733 | "engines": { 1734 | "node": ">=10" 1735 | }, 1736 | "funding": { 1737 | "url": "https://github.com/sponsors/sindresorhus" 1738 | } 1739 | }, 1740 | "node_modules/eslint": { 1741 | "version": "9.28.0", 1742 | "resolved": "https://registry.npmjs.org/eslint/-/eslint-9.28.0.tgz", 1743 | "integrity": "sha512-ocgh41VhRlf9+fVpe7QKzwLj9c92fDiqOj8Y3Sd4/ZmVA4Btx4PlUYPq4pp9JDyupkf1upbEXecxL2mwNV7jPQ==", 1744 | "dev": true, 1745 | "license": "MIT", 1746 | "dependencies": { 1747 | "@eslint-community/eslint-utils": "^4.2.0", 1748 | "@eslint-community/regexpp": "^4.12.1", 1749 | "@eslint/config-array": "^0.20.0", 1750 | "@eslint/config-helpers": "^0.2.1", 1751 | "@eslint/core": "^0.14.0", 1752 | "@eslint/eslintrc": "^3.3.1", 1753 | "@eslint/js": "9.28.0", 1754 | "@eslint/plugin-kit": "^0.3.1", 1755 | "@humanfs/node": "^0.16.6", 1756 | "@humanwhocodes/module-importer": "^1.0.1", 1757 | "@humanwhocodes/retry": "^0.4.2", 1758 | "@types/estree": "^1.0.6", 1759 | "@types/json-schema": "^7.0.15", 1760 | "ajv": "^6.12.4", 1761 | "chalk": "^4.0.0", 1762 | "cross-spawn": "^7.0.6", 1763 | "debug": "^4.3.2", 1764 | "escape-string-regexp": "^4.0.0", 1765 | "eslint-scope": "^8.3.0", 1766 | "eslint-visitor-keys": "^4.2.0", 1767 | "espree": "^10.3.0", 1768 | "esquery": "^1.5.0", 1769 | "esutils": "^2.0.2", 1770 | "fast-deep-equal": "^3.1.3", 1771 | "file-entry-cache": "^8.0.0", 1772 | "find-up": "^5.0.0", 1773 | "glob-parent": "^6.0.2", 1774 | "ignore": "^5.2.0", 1775 | "imurmurhash": "^0.1.4", 1776 | "is-glob": "^4.0.0", 1777 | "json-stable-stringify-without-jsonify": "^1.0.1", 1778 | "lodash.merge": "^4.6.2", 1779 | "minimatch": "^3.1.2", 1780 | "natural-compare": "^1.4.0", 1781 | "optionator": "^0.9.3" 1782 | }, 1783 | "bin": { 1784 | "eslint": "bin/eslint.js" 1785 | }, 1786 | "engines": { 1787 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 1788 | }, 1789 | "funding": { 1790 | "url": "https://eslint.org/donate" 1791 | }, 1792 | "peerDependencies": { 1793 | "jiti": "*" 1794 | }, 1795 | "peerDependenciesMeta": { 1796 | "jiti": { 1797 | "optional": true 1798 | } 1799 | } 1800 | }, 1801 | "node_modules/eslint-config-next": { 1802 | "version": "15.3.3", 1803 | "dev": true, 1804 | "license": "MIT", 1805 | "dependencies": { 1806 | "@next/eslint-plugin-next": "15.3.3", 1807 | "@rushstack/eslint-patch": "^1.10.3", 1808 | "@typescript-eslint/eslint-plugin": "^5.4.2 || ^6.0.0 || ^7.0.0 || ^8.0.0", 1809 | "@typescript-eslint/parser": "^5.4.2 || ^6.0.0 || ^7.0.0 || ^8.0.0", 1810 | "eslint-import-resolver-node": "^0.3.6", 1811 | "eslint-import-resolver-typescript": "^3.5.2", 1812 | "eslint-plugin-import": "^2.31.0", 1813 | "eslint-plugin-jsx-a11y": "^6.10.0", 1814 | "eslint-plugin-react": "^7.37.0", 1815 | "eslint-plugin-react-hooks": "^5.0.0" 1816 | }, 1817 | "peerDependencies": { 1818 | "eslint": "^7.23.0 || ^8.0.0 || ^9.0.0", 1819 | "typescript": ">=3.3.1" 1820 | }, 1821 | "peerDependenciesMeta": { 1822 | "typescript": { 1823 | "optional": true 1824 | } 1825 | } 1826 | }, 1827 | "node_modules/eslint-config-prettier": { 1828 | "version": "10.1.5", 1829 | "dev": true, 1830 | "license": "MIT", 1831 | "bin": { 1832 | "eslint-config-prettier": "bin/cli.js" 1833 | }, 1834 | "funding": { 1835 | "url": "https://opencollective.com/eslint-config-prettier" 1836 | }, 1837 | "peerDependencies": { 1838 | "eslint": ">=7.0.0" 1839 | } 1840 | }, 1841 | "node_modules/eslint-import-resolver-node": { 1842 | "version": "0.3.9", 1843 | "dev": true, 1844 | "license": "MIT", 1845 | "dependencies": { 1846 | "debug": "^3.2.7", 1847 | "is-core-module": "^2.13.0", 1848 | "resolve": "^1.22.4" 1849 | } 1850 | }, 1851 | "node_modules/eslint-import-resolver-node/node_modules/debug": { 1852 | "version": "3.2.7", 1853 | "dev": true, 1854 | "license": "MIT", 1855 | "dependencies": { 1856 | "ms": "^2.1.1" 1857 | } 1858 | }, 1859 | "node_modules/eslint-import-resolver-node/node_modules/resolve": { 1860 | "version": "1.22.10", 1861 | "dev": true, 1862 | "license": "MIT", 1863 | "dependencies": { 1864 | "is-core-module": "^2.16.0", 1865 | "path-parse": "^1.0.7", 1866 | "supports-preserve-symlinks-flag": "^1.0.0" 1867 | }, 1868 | "bin": { 1869 | "resolve": "bin/resolve" 1870 | }, 1871 | "engines": { 1872 | "node": ">= 0.4" 1873 | }, 1874 | "funding": { 1875 | "url": "https://github.com/sponsors/ljharb" 1876 | } 1877 | }, 1878 | "node_modules/eslint-import-resolver-typescript": { 1879 | "version": "3.10.1", 1880 | "dev": true, 1881 | "license": "ISC", 1882 | "dependencies": { 1883 | "@nolyfill/is-core-module": "1.0.39", 1884 | "debug": "^4.4.0", 1885 | "get-tsconfig": "^4.10.0", 1886 | "is-bun-module": "^2.0.0", 1887 | "stable-hash": "^0.0.5", 1888 | "tinyglobby": "^0.2.13", 1889 | "unrs-resolver": "^1.6.2" 1890 | }, 1891 | "engines": { 1892 | "node": "^14.18.0 || >=16.0.0" 1893 | }, 1894 | "funding": { 1895 | "url": "https://opencollective.com/eslint-import-resolver-typescript" 1896 | }, 1897 | "peerDependencies": { 1898 | "eslint": "*", 1899 | "eslint-plugin-import": "*", 1900 | "eslint-plugin-import-x": "*" 1901 | }, 1902 | "peerDependenciesMeta": { 1903 | "eslint-plugin-import": { 1904 | "optional": true 1905 | }, 1906 | "eslint-plugin-import-x": { 1907 | "optional": true 1908 | } 1909 | } 1910 | }, 1911 | "node_modules/eslint-module-utils": { 1912 | "version": "2.12.0", 1913 | "dev": true, 1914 | "license": "MIT", 1915 | "dependencies": { 1916 | "debug": "^3.2.7" 1917 | }, 1918 | "engines": { 1919 | "node": ">=4" 1920 | }, 1921 | "peerDependenciesMeta": { 1922 | "eslint": { 1923 | "optional": true 1924 | } 1925 | } 1926 | }, 1927 | "node_modules/eslint-module-utils/node_modules/debug": { 1928 | "version": "3.2.7", 1929 | "dev": true, 1930 | "license": "MIT", 1931 | "dependencies": { 1932 | "ms": "^2.1.1" 1933 | } 1934 | }, 1935 | "node_modules/eslint-plugin-import": { 1936 | "version": "2.31.0", 1937 | "dev": true, 1938 | "license": "MIT", 1939 | "dependencies": { 1940 | "@rtsao/scc": "^1.1.0", 1941 | "array-includes": "^3.1.8", 1942 | "array.prototype.findlastindex": "^1.2.5", 1943 | "array.prototype.flat": "^1.3.2", 1944 | "array.prototype.flatmap": "^1.3.2", 1945 | "debug": "^3.2.7", 1946 | "doctrine": "^2.1.0", 1947 | "eslint-import-resolver-node": "^0.3.9", 1948 | "eslint-module-utils": "^2.12.0", 1949 | "hasown": "^2.0.2", 1950 | "is-core-module": "^2.15.1", 1951 | "is-glob": "^4.0.3", 1952 | "minimatch": "^3.1.2", 1953 | "object.fromentries": "^2.0.8", 1954 | "object.groupby": "^1.0.3", 1955 | "object.values": "^1.2.0", 1956 | "semver": "^6.3.1", 1957 | "string.prototype.trimend": "^1.0.8", 1958 | "tsconfig-paths": "^3.15.0" 1959 | }, 1960 | "engines": { 1961 | "node": ">=4" 1962 | }, 1963 | "peerDependencies": { 1964 | "eslint": "^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8 || ^9" 1965 | } 1966 | }, 1967 | "node_modules/eslint-plugin-import/node_modules/debug": { 1968 | "version": "3.2.7", 1969 | "dev": true, 1970 | "license": "MIT", 1971 | "dependencies": { 1972 | "ms": "^2.1.1" 1973 | } 1974 | }, 1975 | "node_modules/eslint-plugin-jsx-a11y": { 1976 | "version": "6.10.2", 1977 | "dev": true, 1978 | "license": "MIT", 1979 | "dependencies": { 1980 | "aria-query": "^5.3.2", 1981 | "array-includes": "^3.1.8", 1982 | "array.prototype.flatmap": "^1.3.2", 1983 | "ast-types-flow": "^0.0.8", 1984 | "axe-core": "^4.10.0", 1985 | "axobject-query": "^4.1.0", 1986 | "damerau-levenshtein": "^1.0.8", 1987 | "emoji-regex": "^9.2.2", 1988 | "hasown": "^2.0.2", 1989 | "jsx-ast-utils": "^3.3.5", 1990 | "language-tags": "^1.0.9", 1991 | "minimatch": "^3.1.2", 1992 | "object.fromentries": "^2.0.8", 1993 | "safe-regex-test": "^1.0.3", 1994 | "string.prototype.includes": "^2.0.1" 1995 | }, 1996 | "engines": { 1997 | "node": ">=4.0" 1998 | }, 1999 | "peerDependencies": { 2000 | "eslint": "^3 || ^4 || ^5 || ^6 || ^7 || ^8 || ^9" 2001 | } 2002 | }, 2003 | "node_modules/eslint-plugin-promise": { 2004 | "version": "7.2.1", 2005 | "dev": true, 2006 | "license": "ISC", 2007 | "dependencies": { 2008 | "@eslint-community/eslint-utils": "^4.4.0" 2009 | }, 2010 | "engines": { 2011 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 2012 | }, 2013 | "funding": { 2014 | "url": "https://opencollective.com/eslint" 2015 | }, 2016 | "peerDependencies": { 2017 | "eslint": "^7.0.0 || ^8.0.0 || ^9.0.0" 2018 | } 2019 | }, 2020 | "node_modules/eslint-plugin-react": { 2021 | "version": "7.37.5", 2022 | "dev": true, 2023 | "license": "MIT", 2024 | "dependencies": { 2025 | "array-includes": "^3.1.8", 2026 | "array.prototype.findlast": "^1.2.5", 2027 | "array.prototype.flatmap": "^1.3.3", 2028 | "array.prototype.tosorted": "^1.1.4", 2029 | "doctrine": "^2.1.0", 2030 | "es-iterator-helpers": "^1.2.1", 2031 | "estraverse": "^5.3.0", 2032 | "hasown": "^2.0.2", 2033 | "jsx-ast-utils": "^2.4.1 || ^3.0.0", 2034 | "minimatch": "^3.1.2", 2035 | "object.entries": "^1.1.9", 2036 | "object.fromentries": "^2.0.8", 2037 | "object.values": "^1.2.1", 2038 | "prop-types": "^15.8.1", 2039 | "resolve": "^2.0.0-next.5", 2040 | "semver": "^6.3.1", 2041 | "string.prototype.matchall": "^4.0.12", 2042 | "string.prototype.repeat": "^1.0.0" 2043 | }, 2044 | "engines": { 2045 | "node": ">=4" 2046 | }, 2047 | "peerDependencies": { 2048 | "eslint": "^3 || ^4 || ^5 || ^6 || ^7 || ^8 || ^9.7" 2049 | } 2050 | }, 2051 | "node_modules/eslint-plugin-react-hooks": { 2052 | "version": "5.2.0", 2053 | "dev": true, 2054 | "license": "MIT", 2055 | "engines": { 2056 | "node": ">=10" 2057 | }, 2058 | "peerDependencies": { 2059 | "eslint": "^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 || ^9.0.0" 2060 | } 2061 | }, 2062 | "node_modules/eslint-scope": { 2063 | "version": "8.3.0", 2064 | "dev": true, 2065 | "license": "BSD-2-Clause", 2066 | "dependencies": { 2067 | "esrecurse": "^4.3.0", 2068 | "estraverse": "^5.2.0" 2069 | }, 2070 | "engines": { 2071 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 2072 | }, 2073 | "funding": { 2074 | "url": "https://opencollective.com/eslint" 2075 | } 2076 | }, 2077 | "node_modules/eslint-visitor-keys": { 2078 | "version": "4.2.0", 2079 | "dev": true, 2080 | "license": "Apache-2.0", 2081 | "engines": { 2082 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 2083 | }, 2084 | "funding": { 2085 | "url": "https://opencollective.com/eslint" 2086 | } 2087 | }, 2088 | "node_modules/espree": { 2089 | "version": "10.3.0", 2090 | "dev": true, 2091 | "license": "BSD-2-Clause", 2092 | "dependencies": { 2093 | "acorn": "^8.14.0", 2094 | "acorn-jsx": "^5.3.2", 2095 | "eslint-visitor-keys": "^4.2.0" 2096 | }, 2097 | "engines": { 2098 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 2099 | }, 2100 | "funding": { 2101 | "url": "https://opencollective.com/eslint" 2102 | } 2103 | }, 2104 | "node_modules/esquery": { 2105 | "version": "1.6.0", 2106 | "dev": true, 2107 | "license": "BSD-3-Clause", 2108 | "dependencies": { 2109 | "estraverse": "^5.1.0" 2110 | }, 2111 | "engines": { 2112 | "node": ">=0.10" 2113 | } 2114 | }, 2115 | "node_modules/esrecurse": { 2116 | "version": "4.3.0", 2117 | "dev": true, 2118 | "license": "BSD-2-Clause", 2119 | "dependencies": { 2120 | "estraverse": "^5.2.0" 2121 | }, 2122 | "engines": { 2123 | "node": ">=4.0" 2124 | } 2125 | }, 2126 | "node_modules/estraverse": { 2127 | "version": "5.3.0", 2128 | "dev": true, 2129 | "license": "BSD-2-Clause", 2130 | "engines": { 2131 | "node": ">=4.0" 2132 | } 2133 | }, 2134 | "node_modules/esutils": { 2135 | "version": "2.0.3", 2136 | "dev": true, 2137 | "license": "BSD-2-Clause", 2138 | "engines": { 2139 | "node": ">=0.10.0" 2140 | } 2141 | }, 2142 | "node_modules/fast-deep-equal": { 2143 | "version": "3.1.3", 2144 | "dev": true, 2145 | "license": "MIT" 2146 | }, 2147 | "node_modules/fast-glob": { 2148 | "version": "3.3.1", 2149 | "dev": true, 2150 | "license": "MIT", 2151 | "dependencies": { 2152 | "@nodelib/fs.stat": "^2.0.2", 2153 | "@nodelib/fs.walk": "^1.2.3", 2154 | "glob-parent": "^5.1.2", 2155 | "merge2": "^1.3.0", 2156 | "micromatch": "^4.0.4" 2157 | }, 2158 | "engines": { 2159 | "node": ">=8.6.0" 2160 | } 2161 | }, 2162 | "node_modules/fast-glob/node_modules/glob-parent": { 2163 | "version": "5.1.2", 2164 | "dev": true, 2165 | "license": "ISC", 2166 | "dependencies": { 2167 | "is-glob": "^4.0.1" 2168 | }, 2169 | "engines": { 2170 | "node": ">= 6" 2171 | } 2172 | }, 2173 | "node_modules/fast-json-stable-stringify": { 2174 | "version": "2.1.0", 2175 | "dev": true, 2176 | "license": "MIT" 2177 | }, 2178 | "node_modules/fast-levenshtein": { 2179 | "version": "2.0.6", 2180 | "dev": true, 2181 | "license": "MIT" 2182 | }, 2183 | "node_modules/fastq": { 2184 | "version": "1.19.1", 2185 | "dev": true, 2186 | "license": "ISC", 2187 | "dependencies": { 2188 | "reusify": "^1.0.4" 2189 | } 2190 | }, 2191 | "node_modules/fdir": { 2192 | "version": "6.4.5", 2193 | "dev": true, 2194 | "license": "MIT", 2195 | "peerDependencies": { 2196 | "picomatch": "^3 || ^4" 2197 | }, 2198 | "peerDependenciesMeta": { 2199 | "picomatch": { 2200 | "optional": true 2201 | } 2202 | } 2203 | }, 2204 | "node_modules/file-entry-cache": { 2205 | "version": "8.0.0", 2206 | "dev": true, 2207 | "license": "MIT", 2208 | "dependencies": { 2209 | "flat-cache": "^4.0.0" 2210 | }, 2211 | "engines": { 2212 | "node": ">=16.0.0" 2213 | } 2214 | }, 2215 | "node_modules/fill-range": { 2216 | "version": "7.1.1", 2217 | "dev": true, 2218 | "license": "MIT", 2219 | "dependencies": { 2220 | "to-regex-range": "^5.0.1" 2221 | }, 2222 | "engines": { 2223 | "node": ">=8" 2224 | } 2225 | }, 2226 | "node_modules/find-up": { 2227 | "version": "5.0.0", 2228 | "dev": true, 2229 | "license": "MIT", 2230 | "dependencies": { 2231 | "locate-path": "^6.0.0", 2232 | "path-exists": "^4.0.0" 2233 | }, 2234 | "engines": { 2235 | "node": ">=10" 2236 | }, 2237 | "funding": { 2238 | "url": "https://github.com/sponsors/sindresorhus" 2239 | } 2240 | }, 2241 | "node_modules/flat-cache": { 2242 | "version": "4.0.1", 2243 | "dev": true, 2244 | "license": "MIT", 2245 | "dependencies": { 2246 | "flatted": "^3.2.9", 2247 | "keyv": "^4.5.4" 2248 | }, 2249 | "engines": { 2250 | "node": ">=16" 2251 | } 2252 | }, 2253 | "node_modules/flatted": { 2254 | "version": "3.3.3", 2255 | "dev": true, 2256 | "license": "ISC" 2257 | }, 2258 | "node_modules/for-each": { 2259 | "version": "0.3.5", 2260 | "dev": true, 2261 | "license": "MIT", 2262 | "dependencies": { 2263 | "is-callable": "^1.2.7" 2264 | }, 2265 | "engines": { 2266 | "node": ">= 0.4" 2267 | }, 2268 | "funding": { 2269 | "url": "https://github.com/sponsors/ljharb" 2270 | } 2271 | }, 2272 | "node_modules/function-bind": { 2273 | "version": "1.1.2", 2274 | "dev": true, 2275 | "license": "MIT", 2276 | "funding": { 2277 | "url": "https://github.com/sponsors/ljharb" 2278 | } 2279 | }, 2280 | "node_modules/function.prototype.name": { 2281 | "version": "1.1.8", 2282 | "dev": true, 2283 | "license": "MIT", 2284 | "dependencies": { 2285 | "call-bind": "^1.0.8", 2286 | "call-bound": "^1.0.3", 2287 | "define-properties": "^1.2.1", 2288 | "functions-have-names": "^1.2.3", 2289 | "hasown": "^2.0.2", 2290 | "is-callable": "^1.2.7" 2291 | }, 2292 | "engines": { 2293 | "node": ">= 0.4" 2294 | }, 2295 | "funding": { 2296 | "url": "https://github.com/sponsors/ljharb" 2297 | } 2298 | }, 2299 | "node_modules/functions-have-names": { 2300 | "version": "1.2.3", 2301 | "dev": true, 2302 | "license": "MIT", 2303 | "funding": { 2304 | "url": "https://github.com/sponsors/ljharb" 2305 | } 2306 | }, 2307 | "node_modules/get-intrinsic": { 2308 | "version": "1.3.0", 2309 | "dev": true, 2310 | "license": "MIT", 2311 | "dependencies": { 2312 | "call-bind-apply-helpers": "^1.0.2", 2313 | "es-define-property": "^1.0.1", 2314 | "es-errors": "^1.3.0", 2315 | "es-object-atoms": "^1.1.1", 2316 | "function-bind": "^1.1.2", 2317 | "get-proto": "^1.0.1", 2318 | "gopd": "^1.2.0", 2319 | "has-symbols": "^1.1.0", 2320 | "hasown": "^2.0.2", 2321 | "math-intrinsics": "^1.1.0" 2322 | }, 2323 | "engines": { 2324 | "node": ">= 0.4" 2325 | }, 2326 | "funding": { 2327 | "url": "https://github.com/sponsors/ljharb" 2328 | } 2329 | }, 2330 | "node_modules/get-proto": { 2331 | "version": "1.0.1", 2332 | "dev": true, 2333 | "license": "MIT", 2334 | "dependencies": { 2335 | "dunder-proto": "^1.0.1", 2336 | "es-object-atoms": "^1.0.0" 2337 | }, 2338 | "engines": { 2339 | "node": ">= 0.4" 2340 | } 2341 | }, 2342 | "node_modules/get-symbol-description": { 2343 | "version": "1.1.0", 2344 | "dev": true, 2345 | "license": "MIT", 2346 | "dependencies": { 2347 | "call-bound": "^1.0.3", 2348 | "es-errors": "^1.3.0", 2349 | "get-intrinsic": "^1.2.6" 2350 | }, 2351 | "engines": { 2352 | "node": ">= 0.4" 2353 | }, 2354 | "funding": { 2355 | "url": "https://github.com/sponsors/ljharb" 2356 | } 2357 | }, 2358 | "node_modules/get-tsconfig": { 2359 | "version": "4.10.1", 2360 | "dev": true, 2361 | "license": "MIT", 2362 | "dependencies": { 2363 | "resolve-pkg-maps": "^1.0.0" 2364 | }, 2365 | "funding": { 2366 | "url": "https://github.com/privatenumber/get-tsconfig?sponsor=1" 2367 | } 2368 | }, 2369 | "node_modules/glob-parent": { 2370 | "version": "6.0.2", 2371 | "dev": true, 2372 | "license": "ISC", 2373 | "dependencies": { 2374 | "is-glob": "^4.0.3" 2375 | }, 2376 | "engines": { 2377 | "node": ">=10.13.0" 2378 | } 2379 | }, 2380 | "node_modules/globals": { 2381 | "version": "16.2.0", 2382 | "dev": true, 2383 | "license": "MIT", 2384 | "engines": { 2385 | "node": ">=18" 2386 | }, 2387 | "funding": { 2388 | "url": "https://github.com/sponsors/sindresorhus" 2389 | } 2390 | }, 2391 | "node_modules/globalthis": { 2392 | "version": "1.0.4", 2393 | "dev": true, 2394 | "license": "MIT", 2395 | "dependencies": { 2396 | "define-properties": "^1.2.1", 2397 | "gopd": "^1.0.1" 2398 | }, 2399 | "engines": { 2400 | "node": ">= 0.4" 2401 | }, 2402 | "funding": { 2403 | "url": "https://github.com/sponsors/ljharb" 2404 | } 2405 | }, 2406 | "node_modules/gopd": { 2407 | "version": "1.2.0", 2408 | "dev": true, 2409 | "license": "MIT", 2410 | "engines": { 2411 | "node": ">= 0.4" 2412 | }, 2413 | "funding": { 2414 | "url": "https://github.com/sponsors/ljharb" 2415 | } 2416 | }, 2417 | "node_modules/graphemer": { 2418 | "version": "1.4.0", 2419 | "dev": true, 2420 | "license": "MIT" 2421 | }, 2422 | "node_modules/gzip-size": { 2423 | "version": "6.0.0", 2424 | "dev": true, 2425 | "license": "MIT", 2426 | "dependencies": { 2427 | "duplexer": "^0.1.2" 2428 | }, 2429 | "engines": { 2430 | "node": ">=10" 2431 | }, 2432 | "funding": { 2433 | "url": "https://github.com/sponsors/sindresorhus" 2434 | } 2435 | }, 2436 | "node_modules/has-bigints": { 2437 | "version": "1.1.0", 2438 | "dev": true, 2439 | "license": "MIT", 2440 | "engines": { 2441 | "node": ">= 0.4" 2442 | }, 2443 | "funding": { 2444 | "url": "https://github.com/sponsors/ljharb" 2445 | } 2446 | }, 2447 | "node_modules/has-flag": { 2448 | "version": "4.0.0", 2449 | "dev": true, 2450 | "license": "MIT", 2451 | "engines": { 2452 | "node": ">=8" 2453 | } 2454 | }, 2455 | "node_modules/has-property-descriptors": { 2456 | "version": "1.0.2", 2457 | "dev": true, 2458 | "license": "MIT", 2459 | "dependencies": { 2460 | "es-define-property": "^1.0.0" 2461 | }, 2462 | "funding": { 2463 | "url": "https://github.com/sponsors/ljharb" 2464 | } 2465 | }, 2466 | "node_modules/has-proto": { 2467 | "version": "1.2.0", 2468 | "dev": true, 2469 | "license": "MIT", 2470 | "dependencies": { 2471 | "dunder-proto": "^1.0.0" 2472 | }, 2473 | "engines": { 2474 | "node": ">= 0.4" 2475 | }, 2476 | "funding": { 2477 | "url": "https://github.com/sponsors/ljharb" 2478 | } 2479 | }, 2480 | "node_modules/has-symbols": { 2481 | "version": "1.1.0", 2482 | "dev": true, 2483 | "license": "MIT", 2484 | "engines": { 2485 | "node": ">= 0.4" 2486 | }, 2487 | "funding": { 2488 | "url": "https://github.com/sponsors/ljharb" 2489 | } 2490 | }, 2491 | "node_modules/has-tostringtag": { 2492 | "version": "1.0.2", 2493 | "dev": true, 2494 | "license": "MIT", 2495 | "dependencies": { 2496 | "has-symbols": "^1.0.3" 2497 | }, 2498 | "engines": { 2499 | "node": ">= 0.4" 2500 | }, 2501 | "funding": { 2502 | "url": "https://github.com/sponsors/ljharb" 2503 | } 2504 | }, 2505 | "node_modules/hasown": { 2506 | "version": "2.0.2", 2507 | "dev": true, 2508 | "license": "MIT", 2509 | "dependencies": { 2510 | "function-bind": "^1.1.2" 2511 | }, 2512 | "engines": { 2513 | "node": ">= 0.4" 2514 | } 2515 | }, 2516 | "node_modules/html-escaper": { 2517 | "version": "2.0.2", 2518 | "dev": true, 2519 | "license": "MIT" 2520 | }, 2521 | "node_modules/ignore": { 2522 | "version": "5.3.2", 2523 | "dev": true, 2524 | "license": "MIT", 2525 | "engines": { 2526 | "node": ">= 4" 2527 | } 2528 | }, 2529 | "node_modules/import-fresh": { 2530 | "version": "3.3.1", 2531 | "dev": true, 2532 | "license": "MIT", 2533 | "dependencies": { 2534 | "parent-module": "^1.0.0", 2535 | "resolve-from": "^4.0.0" 2536 | }, 2537 | "engines": { 2538 | "node": ">=6" 2539 | }, 2540 | "funding": { 2541 | "url": "https://github.com/sponsors/sindresorhus" 2542 | } 2543 | }, 2544 | "node_modules/imurmurhash": { 2545 | "version": "0.1.4", 2546 | "dev": true, 2547 | "license": "MIT", 2548 | "engines": { 2549 | "node": ">=0.8.19" 2550 | } 2551 | }, 2552 | "node_modules/internal-slot": { 2553 | "version": "1.1.0", 2554 | "dev": true, 2555 | "license": "MIT", 2556 | "dependencies": { 2557 | "es-errors": "^1.3.0", 2558 | "hasown": "^2.0.2", 2559 | "side-channel": "^1.1.0" 2560 | }, 2561 | "engines": { 2562 | "node": ">= 0.4" 2563 | } 2564 | }, 2565 | "node_modules/is-array-buffer": { 2566 | "version": "3.0.5", 2567 | "dev": true, 2568 | "license": "MIT", 2569 | "dependencies": { 2570 | "call-bind": "^1.0.8", 2571 | "call-bound": "^1.0.3", 2572 | "get-intrinsic": "^1.2.6" 2573 | }, 2574 | "engines": { 2575 | "node": ">= 0.4" 2576 | }, 2577 | "funding": { 2578 | "url": "https://github.com/sponsors/ljharb" 2579 | } 2580 | }, 2581 | "node_modules/is-arrayish": { 2582 | "version": "0.3.2", 2583 | "license": "MIT", 2584 | "optional": true 2585 | }, 2586 | "node_modules/is-async-function": { 2587 | "version": "2.1.1", 2588 | "dev": true, 2589 | "license": "MIT", 2590 | "dependencies": { 2591 | "async-function": "^1.0.0", 2592 | "call-bound": "^1.0.3", 2593 | "get-proto": "^1.0.1", 2594 | "has-tostringtag": "^1.0.2", 2595 | "safe-regex-test": "^1.1.0" 2596 | }, 2597 | "engines": { 2598 | "node": ">= 0.4" 2599 | }, 2600 | "funding": { 2601 | "url": "https://github.com/sponsors/ljharb" 2602 | } 2603 | }, 2604 | "node_modules/is-bigint": { 2605 | "version": "1.1.0", 2606 | "dev": true, 2607 | "license": "MIT", 2608 | "dependencies": { 2609 | "has-bigints": "^1.0.2" 2610 | }, 2611 | "engines": { 2612 | "node": ">= 0.4" 2613 | }, 2614 | "funding": { 2615 | "url": "https://github.com/sponsors/ljharb" 2616 | } 2617 | }, 2618 | "node_modules/is-boolean-object": { 2619 | "version": "1.2.2", 2620 | "dev": true, 2621 | "license": "MIT", 2622 | "dependencies": { 2623 | "call-bound": "^1.0.3", 2624 | "has-tostringtag": "^1.0.2" 2625 | }, 2626 | "engines": { 2627 | "node": ">= 0.4" 2628 | }, 2629 | "funding": { 2630 | "url": "https://github.com/sponsors/ljharb" 2631 | } 2632 | }, 2633 | "node_modules/is-bun-module": { 2634 | "version": "2.0.0", 2635 | "dev": true, 2636 | "license": "MIT", 2637 | "dependencies": { 2638 | "semver": "^7.7.1" 2639 | } 2640 | }, 2641 | "node_modules/is-bun-module/node_modules/semver": { 2642 | "version": "7.7.2", 2643 | "dev": true, 2644 | "license": "ISC", 2645 | "bin": { 2646 | "semver": "bin/semver.js" 2647 | }, 2648 | "engines": { 2649 | "node": ">=10" 2650 | } 2651 | }, 2652 | "node_modules/is-callable": { 2653 | "version": "1.2.7", 2654 | "dev": true, 2655 | "license": "MIT", 2656 | "engines": { 2657 | "node": ">= 0.4" 2658 | }, 2659 | "funding": { 2660 | "url": "https://github.com/sponsors/ljharb" 2661 | } 2662 | }, 2663 | "node_modules/is-core-module": { 2664 | "version": "2.16.1", 2665 | "dev": true, 2666 | "license": "MIT", 2667 | "dependencies": { 2668 | "hasown": "^2.0.2" 2669 | }, 2670 | "engines": { 2671 | "node": ">= 0.4" 2672 | }, 2673 | "funding": { 2674 | "url": "https://github.com/sponsors/ljharb" 2675 | } 2676 | }, 2677 | "node_modules/is-data-view": { 2678 | "version": "1.0.2", 2679 | "dev": true, 2680 | "license": "MIT", 2681 | "dependencies": { 2682 | "call-bound": "^1.0.2", 2683 | "get-intrinsic": "^1.2.6", 2684 | "is-typed-array": "^1.1.13" 2685 | }, 2686 | "engines": { 2687 | "node": ">= 0.4" 2688 | }, 2689 | "funding": { 2690 | "url": "https://github.com/sponsors/ljharb" 2691 | } 2692 | }, 2693 | "node_modules/is-date-object": { 2694 | "version": "1.1.0", 2695 | "dev": true, 2696 | "license": "MIT", 2697 | "dependencies": { 2698 | "call-bound": "^1.0.2", 2699 | "has-tostringtag": "^1.0.2" 2700 | }, 2701 | "engines": { 2702 | "node": ">= 0.4" 2703 | }, 2704 | "funding": { 2705 | "url": "https://github.com/sponsors/ljharb" 2706 | } 2707 | }, 2708 | "node_modules/is-extglob": { 2709 | "version": "2.1.1", 2710 | "dev": true, 2711 | "license": "MIT", 2712 | "engines": { 2713 | "node": ">=0.10.0" 2714 | } 2715 | }, 2716 | "node_modules/is-finalizationregistry": { 2717 | "version": "1.1.1", 2718 | "dev": true, 2719 | "license": "MIT", 2720 | "dependencies": { 2721 | "call-bound": "^1.0.3" 2722 | }, 2723 | "engines": { 2724 | "node": ">= 0.4" 2725 | }, 2726 | "funding": { 2727 | "url": "https://github.com/sponsors/ljharb" 2728 | } 2729 | }, 2730 | "node_modules/is-generator-function": { 2731 | "version": "1.1.0", 2732 | "dev": true, 2733 | "license": "MIT", 2734 | "dependencies": { 2735 | "call-bound": "^1.0.3", 2736 | "get-proto": "^1.0.0", 2737 | "has-tostringtag": "^1.0.2", 2738 | "safe-regex-test": "^1.1.0" 2739 | }, 2740 | "engines": { 2741 | "node": ">= 0.4" 2742 | }, 2743 | "funding": { 2744 | "url": "https://github.com/sponsors/ljharb" 2745 | } 2746 | }, 2747 | "node_modules/is-glob": { 2748 | "version": "4.0.3", 2749 | "dev": true, 2750 | "license": "MIT", 2751 | "dependencies": { 2752 | "is-extglob": "^2.1.1" 2753 | }, 2754 | "engines": { 2755 | "node": ">=0.10.0" 2756 | } 2757 | }, 2758 | "node_modules/is-map": { 2759 | "version": "2.0.3", 2760 | "dev": true, 2761 | "license": "MIT", 2762 | "engines": { 2763 | "node": ">= 0.4" 2764 | }, 2765 | "funding": { 2766 | "url": "https://github.com/sponsors/ljharb" 2767 | } 2768 | }, 2769 | "node_modules/is-negative-zero": { 2770 | "version": "2.0.3", 2771 | "dev": true, 2772 | "license": "MIT", 2773 | "engines": { 2774 | "node": ">= 0.4" 2775 | }, 2776 | "funding": { 2777 | "url": "https://github.com/sponsors/ljharb" 2778 | } 2779 | }, 2780 | "node_modules/is-number": { 2781 | "version": "7.0.0", 2782 | "dev": true, 2783 | "license": "MIT", 2784 | "engines": { 2785 | "node": ">=0.12.0" 2786 | } 2787 | }, 2788 | "node_modules/is-number-object": { 2789 | "version": "1.1.1", 2790 | "dev": true, 2791 | "license": "MIT", 2792 | "dependencies": { 2793 | "call-bound": "^1.0.3", 2794 | "has-tostringtag": "^1.0.2" 2795 | }, 2796 | "engines": { 2797 | "node": ">= 0.4" 2798 | }, 2799 | "funding": { 2800 | "url": "https://github.com/sponsors/ljharb" 2801 | } 2802 | }, 2803 | "node_modules/is-plain-object": { 2804 | "version": "5.0.0", 2805 | "dev": true, 2806 | "license": "MIT", 2807 | "engines": { 2808 | "node": ">=0.10.0" 2809 | } 2810 | }, 2811 | "node_modules/is-regex": { 2812 | "version": "1.2.1", 2813 | "dev": true, 2814 | "license": "MIT", 2815 | "dependencies": { 2816 | "call-bound": "^1.0.2", 2817 | "gopd": "^1.2.0", 2818 | "has-tostringtag": "^1.0.2", 2819 | "hasown": "^2.0.2" 2820 | }, 2821 | "engines": { 2822 | "node": ">= 0.4" 2823 | }, 2824 | "funding": { 2825 | "url": "https://github.com/sponsors/ljharb" 2826 | } 2827 | }, 2828 | "node_modules/is-set": { 2829 | "version": "2.0.3", 2830 | "dev": true, 2831 | "license": "MIT", 2832 | "engines": { 2833 | "node": ">= 0.4" 2834 | }, 2835 | "funding": { 2836 | "url": "https://github.com/sponsors/ljharb" 2837 | } 2838 | }, 2839 | "node_modules/is-shared-array-buffer": { 2840 | "version": "1.0.4", 2841 | "dev": true, 2842 | "license": "MIT", 2843 | "dependencies": { 2844 | "call-bound": "^1.0.3" 2845 | }, 2846 | "engines": { 2847 | "node": ">= 0.4" 2848 | }, 2849 | "funding": { 2850 | "url": "https://github.com/sponsors/ljharb" 2851 | } 2852 | }, 2853 | "node_modules/is-string": { 2854 | "version": "1.1.1", 2855 | "dev": true, 2856 | "license": "MIT", 2857 | "dependencies": { 2858 | "call-bound": "^1.0.3", 2859 | "has-tostringtag": "^1.0.2" 2860 | }, 2861 | "engines": { 2862 | "node": ">= 0.4" 2863 | }, 2864 | "funding": { 2865 | "url": "https://github.com/sponsors/ljharb" 2866 | } 2867 | }, 2868 | "node_modules/is-symbol": { 2869 | "version": "1.1.1", 2870 | "dev": true, 2871 | "license": "MIT", 2872 | "dependencies": { 2873 | "call-bound": "^1.0.2", 2874 | "has-symbols": "^1.1.0", 2875 | "safe-regex-test": "^1.1.0" 2876 | }, 2877 | "engines": { 2878 | "node": ">= 0.4" 2879 | }, 2880 | "funding": { 2881 | "url": "https://github.com/sponsors/ljharb" 2882 | } 2883 | }, 2884 | "node_modules/is-typed-array": { 2885 | "version": "1.1.15", 2886 | "dev": true, 2887 | "license": "MIT", 2888 | "dependencies": { 2889 | "which-typed-array": "^1.1.16" 2890 | }, 2891 | "engines": { 2892 | "node": ">= 0.4" 2893 | }, 2894 | "funding": { 2895 | "url": "https://github.com/sponsors/ljharb" 2896 | } 2897 | }, 2898 | "node_modules/is-weakmap": { 2899 | "version": "2.0.2", 2900 | "dev": true, 2901 | "license": "MIT", 2902 | "engines": { 2903 | "node": ">= 0.4" 2904 | }, 2905 | "funding": { 2906 | "url": "https://github.com/sponsors/ljharb" 2907 | } 2908 | }, 2909 | "node_modules/is-weakref": { 2910 | "version": "1.1.1", 2911 | "dev": true, 2912 | "license": "MIT", 2913 | "dependencies": { 2914 | "call-bound": "^1.0.3" 2915 | }, 2916 | "engines": { 2917 | "node": ">= 0.4" 2918 | }, 2919 | "funding": { 2920 | "url": "https://github.com/sponsors/ljharb" 2921 | } 2922 | }, 2923 | "node_modules/is-weakset": { 2924 | "version": "2.0.4", 2925 | "dev": true, 2926 | "license": "MIT", 2927 | "dependencies": { 2928 | "call-bound": "^1.0.3", 2929 | "get-intrinsic": "^1.2.6" 2930 | }, 2931 | "engines": { 2932 | "node": ">= 0.4" 2933 | }, 2934 | "funding": { 2935 | "url": "https://github.com/sponsors/ljharb" 2936 | } 2937 | }, 2938 | "node_modules/isarray": { 2939 | "version": "2.0.5", 2940 | "dev": true, 2941 | "license": "MIT" 2942 | }, 2943 | "node_modules/isexe": { 2944 | "version": "2.0.0", 2945 | "dev": true, 2946 | "license": "ISC" 2947 | }, 2948 | "node_modules/iterator.prototype": { 2949 | "version": "1.1.5", 2950 | "dev": true, 2951 | "license": "MIT", 2952 | "dependencies": { 2953 | "define-data-property": "^1.1.4", 2954 | "es-object-atoms": "^1.0.0", 2955 | "get-intrinsic": "^1.2.6", 2956 | "get-proto": "^1.0.0", 2957 | "has-symbols": "^1.1.0", 2958 | "set-function-name": "^2.0.2" 2959 | }, 2960 | "engines": { 2961 | "node": ">= 0.4" 2962 | } 2963 | }, 2964 | "node_modules/javascript-natural-sort": { 2965 | "version": "0.7.1", 2966 | "dev": true, 2967 | "license": "MIT" 2968 | }, 2969 | "node_modules/js-tokens": { 2970 | "version": "4.0.0", 2971 | "dev": true, 2972 | "license": "MIT" 2973 | }, 2974 | "node_modules/js-yaml": { 2975 | "version": "4.1.0", 2976 | "dev": true, 2977 | "license": "MIT", 2978 | "dependencies": { 2979 | "argparse": "^2.0.1" 2980 | }, 2981 | "bin": { 2982 | "js-yaml": "bin/js-yaml.js" 2983 | } 2984 | }, 2985 | "node_modules/jsesc": { 2986 | "version": "3.1.0", 2987 | "dev": true, 2988 | "license": "MIT", 2989 | "bin": { 2990 | "jsesc": "bin/jsesc" 2991 | }, 2992 | "engines": { 2993 | "node": ">=6" 2994 | } 2995 | }, 2996 | "node_modules/json-buffer": { 2997 | "version": "3.0.1", 2998 | "dev": true, 2999 | "license": "MIT" 3000 | }, 3001 | "node_modules/json-schema-traverse": { 3002 | "version": "0.4.1", 3003 | "dev": true, 3004 | "license": "MIT" 3005 | }, 3006 | "node_modules/json-stable-stringify-without-jsonify": { 3007 | "version": "1.0.1", 3008 | "dev": true, 3009 | "license": "MIT" 3010 | }, 3011 | "node_modules/json5": { 3012 | "version": "1.0.2", 3013 | "dev": true, 3014 | "license": "MIT", 3015 | "dependencies": { 3016 | "minimist": "^1.2.0" 3017 | }, 3018 | "bin": { 3019 | "json5": "lib/cli.js" 3020 | } 3021 | }, 3022 | "node_modules/jsx-ast-utils": { 3023 | "version": "3.3.5", 3024 | "dev": true, 3025 | "license": "MIT", 3026 | "dependencies": { 3027 | "array-includes": "^3.1.6", 3028 | "array.prototype.flat": "^1.3.1", 3029 | "object.assign": "^4.1.4", 3030 | "object.values": "^1.1.6" 3031 | }, 3032 | "engines": { 3033 | "node": ">=4.0" 3034 | } 3035 | }, 3036 | "node_modules/keyv": { 3037 | "version": "4.5.4", 3038 | "dev": true, 3039 | "license": "MIT", 3040 | "dependencies": { 3041 | "json-buffer": "3.0.1" 3042 | } 3043 | }, 3044 | "node_modules/language-subtag-registry": { 3045 | "version": "0.3.23", 3046 | "dev": true, 3047 | "license": "CC0-1.0" 3048 | }, 3049 | "node_modules/language-tags": { 3050 | "version": "1.0.9", 3051 | "dev": true, 3052 | "license": "MIT", 3053 | "dependencies": { 3054 | "language-subtag-registry": "^0.3.20" 3055 | }, 3056 | "engines": { 3057 | "node": ">=0.10" 3058 | } 3059 | }, 3060 | "node_modules/levn": { 3061 | "version": "0.4.1", 3062 | "dev": true, 3063 | "license": "MIT", 3064 | "dependencies": { 3065 | "prelude-ls": "^1.2.1", 3066 | "type-check": "~0.4.0" 3067 | }, 3068 | "engines": { 3069 | "node": ">= 0.8.0" 3070 | } 3071 | }, 3072 | "node_modules/locate-path": { 3073 | "version": "6.0.0", 3074 | "dev": true, 3075 | "license": "MIT", 3076 | "dependencies": { 3077 | "p-locate": "^5.0.0" 3078 | }, 3079 | "engines": { 3080 | "node": ">=10" 3081 | }, 3082 | "funding": { 3083 | "url": "https://github.com/sponsors/sindresorhus" 3084 | } 3085 | }, 3086 | "node_modules/lodash": { 3087 | "version": "4.17.21", 3088 | "dev": true, 3089 | "license": "MIT" 3090 | }, 3091 | "node_modules/lodash.merge": { 3092 | "version": "4.6.2", 3093 | "dev": true, 3094 | "license": "MIT" 3095 | }, 3096 | "node_modules/loose-envify": { 3097 | "version": "1.4.0", 3098 | "dev": true, 3099 | "license": "MIT", 3100 | "dependencies": { 3101 | "js-tokens": "^3.0.0 || ^4.0.0" 3102 | }, 3103 | "bin": { 3104 | "loose-envify": "cli.js" 3105 | } 3106 | }, 3107 | "node_modules/math-intrinsics": { 3108 | "version": "1.1.0", 3109 | "dev": true, 3110 | "license": "MIT", 3111 | "engines": { 3112 | "node": ">= 0.4" 3113 | } 3114 | }, 3115 | "node_modules/merge2": { 3116 | "version": "1.4.1", 3117 | "dev": true, 3118 | "license": "MIT", 3119 | "engines": { 3120 | "node": ">= 8" 3121 | } 3122 | }, 3123 | "node_modules/micromatch": { 3124 | "version": "4.0.8", 3125 | "dev": true, 3126 | "license": "MIT", 3127 | "dependencies": { 3128 | "braces": "^3.0.3", 3129 | "picomatch": "^2.3.1" 3130 | }, 3131 | "engines": { 3132 | "node": ">=8.6" 3133 | } 3134 | }, 3135 | "node_modules/minimatch": { 3136 | "version": "3.1.2", 3137 | "dev": true, 3138 | "license": "ISC", 3139 | "dependencies": { 3140 | "brace-expansion": "^1.1.7" 3141 | }, 3142 | "engines": { 3143 | "node": "*" 3144 | } 3145 | }, 3146 | "node_modules/minimist": { 3147 | "version": "1.2.8", 3148 | "dev": true, 3149 | "license": "MIT", 3150 | "funding": { 3151 | "url": "https://github.com/sponsors/ljharb" 3152 | } 3153 | }, 3154 | "node_modules/mrmime": { 3155 | "version": "2.0.1", 3156 | "dev": true, 3157 | "license": "MIT", 3158 | "engines": { 3159 | "node": ">=10" 3160 | } 3161 | }, 3162 | "node_modules/ms": { 3163 | "version": "2.1.3", 3164 | "dev": true, 3165 | "license": "MIT" 3166 | }, 3167 | "node_modules/nanoid": { 3168 | "version": "3.3.11", 3169 | "funding": [ 3170 | { 3171 | "type": "github", 3172 | "url": "https://github.com/sponsors/ai" 3173 | } 3174 | ], 3175 | "license": "MIT", 3176 | "bin": { 3177 | "nanoid": "bin/nanoid.cjs" 3178 | }, 3179 | "engines": { 3180 | "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" 3181 | } 3182 | }, 3183 | "node_modules/napi-postinstall": { 3184 | "version": "0.2.4", 3185 | "dev": true, 3186 | "license": "MIT", 3187 | "bin": { 3188 | "napi-postinstall": "lib/cli.js" 3189 | }, 3190 | "engines": { 3191 | "node": "^12.20.0 || ^14.18.0 || >=16.0.0" 3192 | }, 3193 | "funding": { 3194 | "url": "https://opencollective.com/napi-postinstall" 3195 | } 3196 | }, 3197 | "node_modules/natural-compare": { 3198 | "version": "1.4.0", 3199 | "dev": true, 3200 | "license": "MIT" 3201 | }, 3202 | "node_modules/next": { 3203 | "version": "15.3.3", 3204 | "license": "MIT", 3205 | "dependencies": { 3206 | "@next/env": "15.3.3", 3207 | "@swc/counter": "0.1.3", 3208 | "@swc/helpers": "0.5.15", 3209 | "busboy": "1.6.0", 3210 | "caniuse-lite": "^1.0.30001579", 3211 | "postcss": "8.4.31", 3212 | "styled-jsx": "5.1.6" 3213 | }, 3214 | "bin": { 3215 | "next": "dist/bin/next" 3216 | }, 3217 | "engines": { 3218 | "node": "^18.18.0 || ^19.8.0 || >= 20.0.0" 3219 | }, 3220 | "optionalDependencies": { 3221 | "@next/swc-darwin-arm64": "15.3.3", 3222 | "@next/swc-darwin-x64": "15.3.3", 3223 | "@next/swc-linux-arm64-gnu": "15.3.3", 3224 | "@next/swc-linux-arm64-musl": "15.3.3", 3225 | "@next/swc-linux-x64-gnu": "15.3.3", 3226 | "@next/swc-linux-x64-musl": "15.3.3", 3227 | "@next/swc-win32-arm64-msvc": "15.3.3", 3228 | "@next/swc-win32-x64-msvc": "15.3.3", 3229 | "sharp": "^0.34.1" 3230 | }, 3231 | "peerDependencies": { 3232 | "@opentelemetry/api": "^1.1.0", 3233 | "@playwright/test": "^1.41.2", 3234 | "babel-plugin-react-compiler": "*", 3235 | "react": "^18.2.0 || 19.0.0-rc-de68d2f4-20241204 || ^19.0.0", 3236 | "react-dom": "^18.2.0 || 19.0.0-rc-de68d2f4-20241204 || ^19.0.0", 3237 | "sass": "^1.3.0" 3238 | }, 3239 | "peerDependenciesMeta": { 3240 | "@opentelemetry/api": { 3241 | "optional": true 3242 | }, 3243 | "@playwright/test": { 3244 | "optional": true 3245 | }, 3246 | "babel-plugin-react-compiler": { 3247 | "optional": true 3248 | }, 3249 | "sass": { 3250 | "optional": true 3251 | } 3252 | } 3253 | }, 3254 | "node_modules/next-themes": { 3255 | "version": "0.4.6", 3256 | "license": "MIT", 3257 | "peerDependencies": { 3258 | "react": "^16.8 || ^17 || ^18 || ^19 || ^19.0.0-rc", 3259 | "react-dom": "^16.8 || ^17 || ^18 || ^19 || ^19.0.0-rc" 3260 | } 3261 | }, 3262 | "node_modules/next/node_modules/postcss": { 3263 | "version": "8.4.31", 3264 | "funding": [ 3265 | { 3266 | "type": "opencollective", 3267 | "url": "https://opencollective.com/postcss/" 3268 | }, 3269 | { 3270 | "type": "tidelift", 3271 | "url": "https://tidelift.com/funding/github/npm/postcss" 3272 | }, 3273 | { 3274 | "type": "github", 3275 | "url": "https://github.com/sponsors/ai" 3276 | } 3277 | ], 3278 | "license": "MIT", 3279 | "dependencies": { 3280 | "nanoid": "^3.3.6", 3281 | "picocolors": "^1.0.0", 3282 | "source-map-js": "^1.0.2" 3283 | }, 3284 | "engines": { 3285 | "node": "^10 || ^12 || >=14" 3286 | } 3287 | }, 3288 | "node_modules/object-assign": { 3289 | "version": "4.1.1", 3290 | "dev": true, 3291 | "license": "MIT", 3292 | "engines": { 3293 | "node": ">=0.10.0" 3294 | } 3295 | }, 3296 | "node_modules/object-inspect": { 3297 | "version": "1.13.4", 3298 | "dev": true, 3299 | "license": "MIT", 3300 | "engines": { 3301 | "node": ">= 0.4" 3302 | }, 3303 | "funding": { 3304 | "url": "https://github.com/sponsors/ljharb" 3305 | } 3306 | }, 3307 | "node_modules/object-keys": { 3308 | "version": "1.1.1", 3309 | "dev": true, 3310 | "license": "MIT", 3311 | "engines": { 3312 | "node": ">= 0.4" 3313 | } 3314 | }, 3315 | "node_modules/object.assign": { 3316 | "version": "4.1.7", 3317 | "dev": true, 3318 | "license": "MIT", 3319 | "dependencies": { 3320 | "call-bind": "^1.0.8", 3321 | "call-bound": "^1.0.3", 3322 | "define-properties": "^1.2.1", 3323 | "es-object-atoms": "^1.0.0", 3324 | "has-symbols": "^1.1.0", 3325 | "object-keys": "^1.1.1" 3326 | }, 3327 | "engines": { 3328 | "node": ">= 0.4" 3329 | }, 3330 | "funding": { 3331 | "url": "https://github.com/sponsors/ljharb" 3332 | } 3333 | }, 3334 | "node_modules/object.entries": { 3335 | "version": "1.1.9", 3336 | "dev": true, 3337 | "license": "MIT", 3338 | "dependencies": { 3339 | "call-bind": "^1.0.8", 3340 | "call-bound": "^1.0.4", 3341 | "define-properties": "^1.2.1", 3342 | "es-object-atoms": "^1.1.1" 3343 | }, 3344 | "engines": { 3345 | "node": ">= 0.4" 3346 | } 3347 | }, 3348 | "node_modules/object.fromentries": { 3349 | "version": "2.0.8", 3350 | "dev": true, 3351 | "license": "MIT", 3352 | "dependencies": { 3353 | "call-bind": "^1.0.7", 3354 | "define-properties": "^1.2.1", 3355 | "es-abstract": "^1.23.2", 3356 | "es-object-atoms": "^1.0.0" 3357 | }, 3358 | "engines": { 3359 | "node": ">= 0.4" 3360 | }, 3361 | "funding": { 3362 | "url": "https://github.com/sponsors/ljharb" 3363 | } 3364 | }, 3365 | "node_modules/object.groupby": { 3366 | "version": "1.0.3", 3367 | "dev": true, 3368 | "license": "MIT", 3369 | "dependencies": { 3370 | "call-bind": "^1.0.7", 3371 | "define-properties": "^1.2.1", 3372 | "es-abstract": "^1.23.2" 3373 | }, 3374 | "engines": { 3375 | "node": ">= 0.4" 3376 | } 3377 | }, 3378 | "node_modules/object.values": { 3379 | "version": "1.2.1", 3380 | "dev": true, 3381 | "license": "MIT", 3382 | "dependencies": { 3383 | "call-bind": "^1.0.8", 3384 | "call-bound": "^1.0.3", 3385 | "define-properties": "^1.2.1", 3386 | "es-object-atoms": "^1.0.0" 3387 | }, 3388 | "engines": { 3389 | "node": ">= 0.4" 3390 | }, 3391 | "funding": { 3392 | "url": "https://github.com/sponsors/ljharb" 3393 | } 3394 | }, 3395 | "node_modules/opener": { 3396 | "version": "1.5.2", 3397 | "dev": true, 3398 | "license": "(WTFPL OR MIT)", 3399 | "bin": { 3400 | "opener": "bin/opener-bin.js" 3401 | } 3402 | }, 3403 | "node_modules/optionator": { 3404 | "version": "0.9.4", 3405 | "dev": true, 3406 | "license": "MIT", 3407 | "dependencies": { 3408 | "deep-is": "^0.1.3", 3409 | "fast-levenshtein": "^2.0.6", 3410 | "levn": "^0.4.1", 3411 | "prelude-ls": "^1.2.1", 3412 | "type-check": "^0.4.0", 3413 | "word-wrap": "^1.2.5" 3414 | }, 3415 | "engines": { 3416 | "node": ">= 0.8.0" 3417 | } 3418 | }, 3419 | "node_modules/own-keys": { 3420 | "version": "1.0.1", 3421 | "dev": true, 3422 | "license": "MIT", 3423 | "dependencies": { 3424 | "get-intrinsic": "^1.2.6", 3425 | "object-keys": "^1.1.1", 3426 | "safe-push-apply": "^1.0.0" 3427 | }, 3428 | "engines": { 3429 | "node": ">= 0.4" 3430 | }, 3431 | "funding": { 3432 | "url": "https://github.com/sponsors/ljharb" 3433 | } 3434 | }, 3435 | "node_modules/p-limit": { 3436 | "version": "3.1.0", 3437 | "dev": true, 3438 | "license": "MIT", 3439 | "dependencies": { 3440 | "yocto-queue": "^0.1.0" 3441 | }, 3442 | "engines": { 3443 | "node": ">=10" 3444 | }, 3445 | "funding": { 3446 | "url": "https://github.com/sponsors/sindresorhus" 3447 | } 3448 | }, 3449 | "node_modules/p-locate": { 3450 | "version": "5.0.0", 3451 | "dev": true, 3452 | "license": "MIT", 3453 | "dependencies": { 3454 | "p-limit": "^3.0.2" 3455 | }, 3456 | "engines": { 3457 | "node": ">=10" 3458 | }, 3459 | "funding": { 3460 | "url": "https://github.com/sponsors/sindresorhus" 3461 | } 3462 | }, 3463 | "node_modules/parent-module": { 3464 | "version": "1.0.1", 3465 | "dev": true, 3466 | "license": "MIT", 3467 | "dependencies": { 3468 | "callsites": "^3.0.0" 3469 | }, 3470 | "engines": { 3471 | "node": ">=6" 3472 | } 3473 | }, 3474 | "node_modules/path-exists": { 3475 | "version": "4.0.0", 3476 | "dev": true, 3477 | "license": "MIT", 3478 | "engines": { 3479 | "node": ">=8" 3480 | } 3481 | }, 3482 | "node_modules/path-key": { 3483 | "version": "3.1.1", 3484 | "dev": true, 3485 | "license": "MIT", 3486 | "engines": { 3487 | "node": ">=8" 3488 | } 3489 | }, 3490 | "node_modules/path-parse": { 3491 | "version": "1.0.7", 3492 | "dev": true, 3493 | "license": "MIT" 3494 | }, 3495 | "node_modules/picocolors": { 3496 | "version": "1.1.1", 3497 | "license": "ISC" 3498 | }, 3499 | "node_modules/picomatch": { 3500 | "version": "2.3.1", 3501 | "dev": true, 3502 | "license": "MIT", 3503 | "engines": { 3504 | "node": ">=8.6" 3505 | }, 3506 | "funding": { 3507 | "url": "https://github.com/sponsors/jonschlinkert" 3508 | } 3509 | }, 3510 | "node_modules/possible-typed-array-names": { 3511 | "version": "1.1.0", 3512 | "dev": true, 3513 | "license": "MIT", 3514 | "engines": { 3515 | "node": ">= 0.4" 3516 | } 3517 | }, 3518 | "node_modules/postcss": { 3519 | "version": "8.5.4", 3520 | "dev": true, 3521 | "funding": [ 3522 | { 3523 | "type": "opencollective", 3524 | "url": "https://opencollective.com/postcss/" 3525 | }, 3526 | { 3527 | "type": "tidelift", 3528 | "url": "https://tidelift.com/funding/github/npm/postcss" 3529 | }, 3530 | { 3531 | "type": "github", 3532 | "url": "https://github.com/sponsors/ai" 3533 | } 3534 | ], 3535 | "license": "MIT", 3536 | "dependencies": { 3537 | "nanoid": "^3.3.11", 3538 | "picocolors": "^1.1.1", 3539 | "source-map-js": "^1.2.1" 3540 | }, 3541 | "engines": { 3542 | "node": "^10 || ^12 || >=14" 3543 | } 3544 | }, 3545 | "node_modules/prelude-ls": { 3546 | "version": "1.2.1", 3547 | "dev": true, 3548 | "license": "MIT", 3549 | "engines": { 3550 | "node": ">= 0.8.0" 3551 | } 3552 | }, 3553 | "node_modules/prettier": { 3554 | "version": "3.5.3", 3555 | "dev": true, 3556 | "license": "MIT", 3557 | "bin": { 3558 | "prettier": "bin/prettier.cjs" 3559 | }, 3560 | "engines": { 3561 | "node": ">=14" 3562 | }, 3563 | "funding": { 3564 | "url": "https://github.com/prettier/prettier?sponsor=1" 3565 | } 3566 | }, 3567 | "node_modules/prop-types": { 3568 | "version": "15.8.1", 3569 | "dev": true, 3570 | "license": "MIT", 3571 | "dependencies": { 3572 | "loose-envify": "^1.4.0", 3573 | "object-assign": "^4.1.1", 3574 | "react-is": "^16.13.1" 3575 | } 3576 | }, 3577 | "node_modules/punycode": { 3578 | "version": "2.3.1", 3579 | "dev": true, 3580 | "license": "MIT", 3581 | "engines": { 3582 | "node": ">=6" 3583 | } 3584 | }, 3585 | "node_modules/queue-microtask": { 3586 | "version": "1.2.3", 3587 | "dev": true, 3588 | "funding": [ 3589 | { 3590 | "type": "github", 3591 | "url": "https://github.com/sponsors/feross" 3592 | }, 3593 | { 3594 | "type": "patreon", 3595 | "url": "https://www.patreon.com/feross" 3596 | }, 3597 | { 3598 | "type": "consulting", 3599 | "url": "https://feross.org/support" 3600 | } 3601 | ], 3602 | "license": "MIT" 3603 | }, 3604 | "node_modules/react": { 3605 | "version": "19.1.0", 3606 | "license": "MIT", 3607 | "engines": { 3608 | "node": ">=0.10.0" 3609 | } 3610 | }, 3611 | "node_modules/react-dom": { 3612 | "version": "19.1.0", 3613 | "license": "MIT", 3614 | "dependencies": { 3615 | "scheduler": "^0.26.0" 3616 | }, 3617 | "peerDependencies": { 3618 | "react": "^19.1.0" 3619 | } 3620 | }, 3621 | "node_modules/react-is": { 3622 | "version": "16.13.1", 3623 | "dev": true, 3624 | "license": "MIT" 3625 | }, 3626 | "node_modules/reflect.getprototypeof": { 3627 | "version": "1.0.10", 3628 | "dev": true, 3629 | "license": "MIT", 3630 | "dependencies": { 3631 | "call-bind": "^1.0.8", 3632 | "define-properties": "^1.2.1", 3633 | "es-abstract": "^1.23.9", 3634 | "es-errors": "^1.3.0", 3635 | "es-object-atoms": "^1.0.0", 3636 | "get-intrinsic": "^1.2.7", 3637 | "get-proto": "^1.0.1", 3638 | "which-builtin-type": "^1.2.1" 3639 | }, 3640 | "engines": { 3641 | "node": ">= 0.4" 3642 | }, 3643 | "funding": { 3644 | "url": "https://github.com/sponsors/ljharb" 3645 | } 3646 | }, 3647 | "node_modules/regexp.prototype.flags": { 3648 | "version": "1.5.4", 3649 | "dev": true, 3650 | "license": "MIT", 3651 | "dependencies": { 3652 | "call-bind": "^1.0.8", 3653 | "define-properties": "^1.2.1", 3654 | "es-errors": "^1.3.0", 3655 | "get-proto": "^1.0.1", 3656 | "gopd": "^1.2.0", 3657 | "set-function-name": "^2.0.2" 3658 | }, 3659 | "engines": { 3660 | "node": ">= 0.4" 3661 | }, 3662 | "funding": { 3663 | "url": "https://github.com/sponsors/ljharb" 3664 | } 3665 | }, 3666 | "node_modules/resolve": { 3667 | "version": "2.0.0-next.5", 3668 | "dev": true, 3669 | "license": "MIT", 3670 | "dependencies": { 3671 | "is-core-module": "^2.13.0", 3672 | "path-parse": "^1.0.7", 3673 | "supports-preserve-symlinks-flag": "^1.0.0" 3674 | }, 3675 | "bin": { 3676 | "resolve": "bin/resolve" 3677 | }, 3678 | "funding": { 3679 | "url": "https://github.com/sponsors/ljharb" 3680 | } 3681 | }, 3682 | "node_modules/resolve-from": { 3683 | "version": "4.0.0", 3684 | "dev": true, 3685 | "license": "MIT", 3686 | "engines": { 3687 | "node": ">=4" 3688 | } 3689 | }, 3690 | "node_modules/resolve-pkg-maps": { 3691 | "version": "1.0.0", 3692 | "dev": true, 3693 | "license": "MIT", 3694 | "funding": { 3695 | "url": "https://github.com/privatenumber/resolve-pkg-maps?sponsor=1" 3696 | } 3697 | }, 3698 | "node_modules/reusify": { 3699 | "version": "1.1.0", 3700 | "dev": true, 3701 | "license": "MIT", 3702 | "engines": { 3703 | "iojs": ">=1.0.0", 3704 | "node": ">=0.10.0" 3705 | } 3706 | }, 3707 | "node_modules/run-parallel": { 3708 | "version": "1.2.0", 3709 | "dev": true, 3710 | "funding": [ 3711 | { 3712 | "type": "github", 3713 | "url": "https://github.com/sponsors/feross" 3714 | }, 3715 | { 3716 | "type": "patreon", 3717 | "url": "https://www.patreon.com/feross" 3718 | }, 3719 | { 3720 | "type": "consulting", 3721 | "url": "https://feross.org/support" 3722 | } 3723 | ], 3724 | "license": "MIT", 3725 | "dependencies": { 3726 | "queue-microtask": "^1.2.2" 3727 | } 3728 | }, 3729 | "node_modules/safe-array-concat": { 3730 | "version": "1.1.3", 3731 | "dev": true, 3732 | "license": "MIT", 3733 | "dependencies": { 3734 | "call-bind": "^1.0.8", 3735 | "call-bound": "^1.0.2", 3736 | "get-intrinsic": "^1.2.6", 3737 | "has-symbols": "^1.1.0", 3738 | "isarray": "^2.0.5" 3739 | }, 3740 | "engines": { 3741 | "node": ">=0.4" 3742 | }, 3743 | "funding": { 3744 | "url": "https://github.com/sponsors/ljharb" 3745 | } 3746 | }, 3747 | "node_modules/safe-push-apply": { 3748 | "version": "1.0.0", 3749 | "dev": true, 3750 | "license": "MIT", 3751 | "dependencies": { 3752 | "es-errors": "^1.3.0", 3753 | "isarray": "^2.0.5" 3754 | }, 3755 | "engines": { 3756 | "node": ">= 0.4" 3757 | }, 3758 | "funding": { 3759 | "url": "https://github.com/sponsors/ljharb" 3760 | } 3761 | }, 3762 | "node_modules/safe-regex-test": { 3763 | "version": "1.1.0", 3764 | "dev": true, 3765 | "license": "MIT", 3766 | "dependencies": { 3767 | "call-bound": "^1.0.2", 3768 | "es-errors": "^1.3.0", 3769 | "is-regex": "^1.2.1" 3770 | }, 3771 | "engines": { 3772 | "node": ">= 0.4" 3773 | }, 3774 | "funding": { 3775 | "url": "https://github.com/sponsors/ljharb" 3776 | } 3777 | }, 3778 | "node_modules/scheduler": { 3779 | "version": "0.26.0", 3780 | "license": "MIT" 3781 | }, 3782 | "node_modules/semver": { 3783 | "version": "6.3.1", 3784 | "dev": true, 3785 | "license": "ISC", 3786 | "bin": { 3787 | "semver": "bin/semver.js" 3788 | } 3789 | }, 3790 | "node_modules/set-function-length": { 3791 | "version": "1.2.2", 3792 | "dev": true, 3793 | "license": "MIT", 3794 | "dependencies": { 3795 | "define-data-property": "^1.1.4", 3796 | "es-errors": "^1.3.0", 3797 | "function-bind": "^1.1.2", 3798 | "get-intrinsic": "^1.2.4", 3799 | "gopd": "^1.0.1", 3800 | "has-property-descriptors": "^1.0.2" 3801 | }, 3802 | "engines": { 3803 | "node": ">= 0.4" 3804 | } 3805 | }, 3806 | "node_modules/set-function-name": { 3807 | "version": "2.0.2", 3808 | "dev": true, 3809 | "license": "MIT", 3810 | "dependencies": { 3811 | "define-data-property": "^1.1.4", 3812 | "es-errors": "^1.3.0", 3813 | "functions-have-names": "^1.2.3", 3814 | "has-property-descriptors": "^1.0.2" 3815 | }, 3816 | "engines": { 3817 | "node": ">= 0.4" 3818 | } 3819 | }, 3820 | "node_modules/set-proto": { 3821 | "version": "1.0.0", 3822 | "dev": true, 3823 | "license": "MIT", 3824 | "dependencies": { 3825 | "dunder-proto": "^1.0.1", 3826 | "es-errors": "^1.3.0", 3827 | "es-object-atoms": "^1.0.0" 3828 | }, 3829 | "engines": { 3830 | "node": ">= 0.4" 3831 | } 3832 | }, 3833 | "node_modules/sharp": { 3834 | "version": "0.34.2", 3835 | "hasInstallScript": true, 3836 | "license": "Apache-2.0", 3837 | "optional": true, 3838 | "dependencies": { 3839 | "color": "^4.2.3", 3840 | "detect-libc": "^2.0.4", 3841 | "semver": "^7.7.2" 3842 | }, 3843 | "engines": { 3844 | "node": "^18.17.0 || ^20.3.0 || >=21.0.0" 3845 | }, 3846 | "funding": { 3847 | "url": "https://opencollective.com/libvips" 3848 | }, 3849 | "optionalDependencies": { 3850 | "@img/sharp-darwin-arm64": "0.34.2", 3851 | "@img/sharp-darwin-x64": "0.34.2", 3852 | "@img/sharp-libvips-darwin-arm64": "1.1.0", 3853 | "@img/sharp-libvips-darwin-x64": "1.1.0", 3854 | "@img/sharp-libvips-linux-arm": "1.1.0", 3855 | "@img/sharp-libvips-linux-arm64": "1.1.0", 3856 | "@img/sharp-libvips-linux-ppc64": "1.1.0", 3857 | "@img/sharp-libvips-linux-s390x": "1.1.0", 3858 | "@img/sharp-libvips-linux-x64": "1.1.0", 3859 | "@img/sharp-libvips-linuxmusl-arm64": "1.1.0", 3860 | "@img/sharp-libvips-linuxmusl-x64": "1.1.0", 3861 | "@img/sharp-linux-arm": "0.34.2", 3862 | "@img/sharp-linux-arm64": "0.34.2", 3863 | "@img/sharp-linux-s390x": "0.34.2", 3864 | "@img/sharp-linux-x64": "0.34.2", 3865 | "@img/sharp-linuxmusl-arm64": "0.34.2", 3866 | "@img/sharp-linuxmusl-x64": "0.34.2", 3867 | "@img/sharp-wasm32": "0.34.2", 3868 | "@img/sharp-win32-arm64": "0.34.2", 3869 | "@img/sharp-win32-ia32": "0.34.2", 3870 | "@img/sharp-win32-x64": "0.34.2" 3871 | } 3872 | }, 3873 | "node_modules/sharp/node_modules/semver": { 3874 | "version": "7.7.2", 3875 | "license": "ISC", 3876 | "optional": true, 3877 | "bin": { 3878 | "semver": "bin/semver.js" 3879 | }, 3880 | "engines": { 3881 | "node": ">=10" 3882 | } 3883 | }, 3884 | "node_modules/shebang-command": { 3885 | "version": "2.0.0", 3886 | "dev": true, 3887 | "license": "MIT", 3888 | "dependencies": { 3889 | "shebang-regex": "^3.0.0" 3890 | }, 3891 | "engines": { 3892 | "node": ">=8" 3893 | } 3894 | }, 3895 | "node_modules/shebang-regex": { 3896 | "version": "3.0.0", 3897 | "dev": true, 3898 | "license": "MIT", 3899 | "engines": { 3900 | "node": ">=8" 3901 | } 3902 | }, 3903 | "node_modules/side-channel": { 3904 | "version": "1.1.0", 3905 | "dev": true, 3906 | "license": "MIT", 3907 | "dependencies": { 3908 | "es-errors": "^1.3.0", 3909 | "object-inspect": "^1.13.3", 3910 | "side-channel-list": "^1.0.0", 3911 | "side-channel-map": "^1.0.1", 3912 | "side-channel-weakmap": "^1.0.2" 3913 | }, 3914 | "engines": { 3915 | "node": ">= 0.4" 3916 | }, 3917 | "funding": { 3918 | "url": "https://github.com/sponsors/ljharb" 3919 | } 3920 | }, 3921 | "node_modules/side-channel-list": { 3922 | "version": "1.0.0", 3923 | "dev": true, 3924 | "license": "MIT", 3925 | "dependencies": { 3926 | "es-errors": "^1.3.0", 3927 | "object-inspect": "^1.13.3" 3928 | }, 3929 | "engines": { 3930 | "node": ">= 0.4" 3931 | }, 3932 | "funding": { 3933 | "url": "https://github.com/sponsors/ljharb" 3934 | } 3935 | }, 3936 | "node_modules/side-channel-map": { 3937 | "version": "1.0.1", 3938 | "dev": true, 3939 | "license": "MIT", 3940 | "dependencies": { 3941 | "call-bound": "^1.0.2", 3942 | "es-errors": "^1.3.0", 3943 | "get-intrinsic": "^1.2.5", 3944 | "object-inspect": "^1.13.3" 3945 | }, 3946 | "engines": { 3947 | "node": ">= 0.4" 3948 | }, 3949 | "funding": { 3950 | "url": "https://github.com/sponsors/ljharb" 3951 | } 3952 | }, 3953 | "node_modules/side-channel-weakmap": { 3954 | "version": "1.0.2", 3955 | "dev": true, 3956 | "license": "MIT", 3957 | "dependencies": { 3958 | "call-bound": "^1.0.2", 3959 | "es-errors": "^1.3.0", 3960 | "get-intrinsic": "^1.2.5", 3961 | "object-inspect": "^1.13.3", 3962 | "side-channel-map": "^1.0.1" 3963 | }, 3964 | "engines": { 3965 | "node": ">= 0.4" 3966 | }, 3967 | "funding": { 3968 | "url": "https://github.com/sponsors/ljharb" 3969 | } 3970 | }, 3971 | "node_modules/simple-swizzle": { 3972 | "version": "0.2.2", 3973 | "license": "MIT", 3974 | "optional": true, 3975 | "dependencies": { 3976 | "is-arrayish": "^0.3.1" 3977 | } 3978 | }, 3979 | "node_modules/sirv": { 3980 | "version": "2.0.4", 3981 | "dev": true, 3982 | "license": "MIT", 3983 | "dependencies": { 3984 | "@polka/url": "^1.0.0-next.24", 3985 | "mrmime": "^2.0.0", 3986 | "totalist": "^3.0.0" 3987 | }, 3988 | "engines": { 3989 | "node": ">= 10" 3990 | } 3991 | }, 3992 | "node_modules/source-map-js": { 3993 | "version": "1.2.1", 3994 | "license": "BSD-3-Clause", 3995 | "engines": { 3996 | "node": ">=0.10.0" 3997 | } 3998 | }, 3999 | "node_modules/stable-hash": { 4000 | "version": "0.0.5", 4001 | "dev": true, 4002 | "license": "MIT" 4003 | }, 4004 | "node_modules/stop-iteration-iterator": { 4005 | "version": "1.1.0", 4006 | "dev": true, 4007 | "license": "MIT", 4008 | "dependencies": { 4009 | "es-errors": "^1.3.0", 4010 | "internal-slot": "^1.1.0" 4011 | }, 4012 | "engines": { 4013 | "node": ">= 0.4" 4014 | } 4015 | }, 4016 | "node_modules/streamsearch": { 4017 | "version": "1.1.0", 4018 | "engines": { 4019 | "node": ">=10.0.0" 4020 | } 4021 | }, 4022 | "node_modules/string.prototype.includes": { 4023 | "version": "2.0.1", 4024 | "dev": true, 4025 | "license": "MIT", 4026 | "dependencies": { 4027 | "call-bind": "^1.0.7", 4028 | "define-properties": "^1.2.1", 4029 | "es-abstract": "^1.23.3" 4030 | }, 4031 | "engines": { 4032 | "node": ">= 0.4" 4033 | } 4034 | }, 4035 | "node_modules/string.prototype.matchall": { 4036 | "version": "4.0.12", 4037 | "dev": true, 4038 | "license": "MIT", 4039 | "dependencies": { 4040 | "call-bind": "^1.0.8", 4041 | "call-bound": "^1.0.3", 4042 | "define-properties": "^1.2.1", 4043 | "es-abstract": "^1.23.6", 4044 | "es-errors": "^1.3.0", 4045 | "es-object-atoms": "^1.0.0", 4046 | "get-intrinsic": "^1.2.6", 4047 | "gopd": "^1.2.0", 4048 | "has-symbols": "^1.1.0", 4049 | "internal-slot": "^1.1.0", 4050 | "regexp.prototype.flags": "^1.5.3", 4051 | "set-function-name": "^2.0.2", 4052 | "side-channel": "^1.1.0" 4053 | }, 4054 | "engines": { 4055 | "node": ">= 0.4" 4056 | }, 4057 | "funding": { 4058 | "url": "https://github.com/sponsors/ljharb" 4059 | } 4060 | }, 4061 | "node_modules/string.prototype.repeat": { 4062 | "version": "1.0.0", 4063 | "dev": true, 4064 | "license": "MIT", 4065 | "dependencies": { 4066 | "define-properties": "^1.1.3", 4067 | "es-abstract": "^1.17.5" 4068 | } 4069 | }, 4070 | "node_modules/string.prototype.trim": { 4071 | "version": "1.2.10", 4072 | "dev": true, 4073 | "license": "MIT", 4074 | "dependencies": { 4075 | "call-bind": "^1.0.8", 4076 | "call-bound": "^1.0.2", 4077 | "define-data-property": "^1.1.4", 4078 | "define-properties": "^1.2.1", 4079 | "es-abstract": "^1.23.5", 4080 | "es-object-atoms": "^1.0.0", 4081 | "has-property-descriptors": "^1.0.2" 4082 | }, 4083 | "engines": { 4084 | "node": ">= 0.4" 4085 | }, 4086 | "funding": { 4087 | "url": "https://github.com/sponsors/ljharb" 4088 | } 4089 | }, 4090 | "node_modules/string.prototype.trimend": { 4091 | "version": "1.0.9", 4092 | "dev": true, 4093 | "license": "MIT", 4094 | "dependencies": { 4095 | "call-bind": "^1.0.8", 4096 | "call-bound": "^1.0.2", 4097 | "define-properties": "^1.2.1", 4098 | "es-object-atoms": "^1.0.0" 4099 | }, 4100 | "engines": { 4101 | "node": ">= 0.4" 4102 | }, 4103 | "funding": { 4104 | "url": "https://github.com/sponsors/ljharb" 4105 | } 4106 | }, 4107 | "node_modules/string.prototype.trimstart": { 4108 | "version": "1.0.8", 4109 | "dev": true, 4110 | "license": "MIT", 4111 | "dependencies": { 4112 | "call-bind": "^1.0.7", 4113 | "define-properties": "^1.2.1", 4114 | "es-object-atoms": "^1.0.0" 4115 | }, 4116 | "engines": { 4117 | "node": ">= 0.4" 4118 | }, 4119 | "funding": { 4120 | "url": "https://github.com/sponsors/ljharb" 4121 | } 4122 | }, 4123 | "node_modules/strip-bom": { 4124 | "version": "3.0.0", 4125 | "dev": true, 4126 | "license": "MIT", 4127 | "engines": { 4128 | "node": ">=4" 4129 | } 4130 | }, 4131 | "node_modules/strip-json-comments": { 4132 | "version": "3.1.1", 4133 | "dev": true, 4134 | "license": "MIT", 4135 | "engines": { 4136 | "node": ">=8" 4137 | }, 4138 | "funding": { 4139 | "url": "https://github.com/sponsors/sindresorhus" 4140 | } 4141 | }, 4142 | "node_modules/styled-jsx": { 4143 | "version": "5.1.6", 4144 | "license": "MIT", 4145 | "dependencies": { 4146 | "client-only": "0.0.1" 4147 | }, 4148 | "engines": { 4149 | "node": ">= 12.0.0" 4150 | }, 4151 | "peerDependencies": { 4152 | "react": ">= 16.8.0 || 17.x.x || ^18.0.0-0 || ^19.0.0-0" 4153 | }, 4154 | "peerDependenciesMeta": { 4155 | "@babel/core": { 4156 | "optional": true 4157 | }, 4158 | "babel-plugin-macros": { 4159 | "optional": true 4160 | } 4161 | } 4162 | }, 4163 | "node_modules/supports-color": { 4164 | "version": "7.2.0", 4165 | "dev": true, 4166 | "license": "MIT", 4167 | "dependencies": { 4168 | "has-flag": "^4.0.0" 4169 | }, 4170 | "engines": { 4171 | "node": ">=8" 4172 | } 4173 | }, 4174 | "node_modules/supports-preserve-symlinks-flag": { 4175 | "version": "1.0.0", 4176 | "dev": true, 4177 | "license": "MIT", 4178 | "engines": { 4179 | "node": ">= 0.4" 4180 | }, 4181 | "funding": { 4182 | "url": "https://github.com/sponsors/ljharb" 4183 | } 4184 | }, 4185 | "node_modules/tinyglobby": { 4186 | "version": "0.2.14", 4187 | "dev": true, 4188 | "license": "MIT", 4189 | "dependencies": { 4190 | "fdir": "^6.4.4", 4191 | "picomatch": "^4.0.2" 4192 | }, 4193 | "engines": { 4194 | "node": ">=12.0.0" 4195 | }, 4196 | "funding": { 4197 | "url": "https://github.com/sponsors/SuperchupuDev" 4198 | } 4199 | }, 4200 | "node_modules/tinyglobby/node_modules/picomatch": { 4201 | "version": "4.0.2", 4202 | "dev": true, 4203 | "license": "MIT", 4204 | "engines": { 4205 | "node": ">=12" 4206 | }, 4207 | "funding": { 4208 | "url": "https://github.com/sponsors/jonschlinkert" 4209 | } 4210 | }, 4211 | "node_modules/to-regex-range": { 4212 | "version": "5.0.1", 4213 | "dev": true, 4214 | "license": "MIT", 4215 | "dependencies": { 4216 | "is-number": "^7.0.0" 4217 | }, 4218 | "engines": { 4219 | "node": ">=8.0" 4220 | } 4221 | }, 4222 | "node_modules/totalist": { 4223 | "version": "3.0.1", 4224 | "dev": true, 4225 | "license": "MIT", 4226 | "engines": { 4227 | "node": ">=6" 4228 | } 4229 | }, 4230 | "node_modules/ts-api-utils": { 4231 | "version": "2.1.0", 4232 | "dev": true, 4233 | "license": "MIT", 4234 | "engines": { 4235 | "node": ">=18.12" 4236 | }, 4237 | "peerDependencies": { 4238 | "typescript": ">=4.8.4" 4239 | } 4240 | }, 4241 | "node_modules/tsconfig-paths": { 4242 | "version": "3.15.0", 4243 | "dev": true, 4244 | "license": "MIT", 4245 | "dependencies": { 4246 | "@types/json5": "^0.0.29", 4247 | "json5": "^1.0.2", 4248 | "minimist": "^1.2.6", 4249 | "strip-bom": "^3.0.0" 4250 | } 4251 | }, 4252 | "node_modules/tslib": { 4253 | "version": "2.8.1", 4254 | "license": "0BSD" 4255 | }, 4256 | "node_modules/type-check": { 4257 | "version": "0.4.0", 4258 | "dev": true, 4259 | "license": "MIT", 4260 | "dependencies": { 4261 | "prelude-ls": "^1.2.1" 4262 | }, 4263 | "engines": { 4264 | "node": ">= 0.8.0" 4265 | } 4266 | }, 4267 | "node_modules/typed-array-buffer": { 4268 | "version": "1.0.3", 4269 | "dev": true, 4270 | "license": "MIT", 4271 | "dependencies": { 4272 | "call-bound": "^1.0.3", 4273 | "es-errors": "^1.3.0", 4274 | "is-typed-array": "^1.1.14" 4275 | }, 4276 | "engines": { 4277 | "node": ">= 0.4" 4278 | } 4279 | }, 4280 | "node_modules/typed-array-byte-length": { 4281 | "version": "1.0.3", 4282 | "dev": true, 4283 | "license": "MIT", 4284 | "dependencies": { 4285 | "call-bind": "^1.0.8", 4286 | "for-each": "^0.3.3", 4287 | "gopd": "^1.2.0", 4288 | "has-proto": "^1.2.0", 4289 | "is-typed-array": "^1.1.14" 4290 | }, 4291 | "engines": { 4292 | "node": ">= 0.4" 4293 | }, 4294 | "funding": { 4295 | "url": "https://github.com/sponsors/ljharb" 4296 | } 4297 | }, 4298 | "node_modules/typed-array-byte-offset": { 4299 | "version": "1.0.4", 4300 | "dev": true, 4301 | "license": "MIT", 4302 | "dependencies": { 4303 | "available-typed-arrays": "^1.0.7", 4304 | "call-bind": "^1.0.8", 4305 | "for-each": "^0.3.3", 4306 | "gopd": "^1.2.0", 4307 | "has-proto": "^1.2.0", 4308 | "is-typed-array": "^1.1.15", 4309 | "reflect.getprototypeof": "^1.0.9" 4310 | }, 4311 | "engines": { 4312 | "node": ">= 0.4" 4313 | }, 4314 | "funding": { 4315 | "url": "https://github.com/sponsors/ljharb" 4316 | } 4317 | }, 4318 | "node_modules/typed-array-length": { 4319 | "version": "1.0.7", 4320 | "dev": true, 4321 | "license": "MIT", 4322 | "dependencies": { 4323 | "call-bind": "^1.0.7", 4324 | "for-each": "^0.3.3", 4325 | "gopd": "^1.0.1", 4326 | "is-typed-array": "^1.1.13", 4327 | "possible-typed-array-names": "^1.0.0", 4328 | "reflect.getprototypeof": "^1.0.6" 4329 | }, 4330 | "engines": { 4331 | "node": ">= 0.4" 4332 | }, 4333 | "funding": { 4334 | "url": "https://github.com/sponsors/ljharb" 4335 | } 4336 | }, 4337 | "node_modules/typescript": { 4338 | "version": "5.8.3", 4339 | "dev": true, 4340 | "license": "Apache-2.0", 4341 | "bin": { 4342 | "tsc": "bin/tsc", 4343 | "tsserver": "bin/tsserver" 4344 | }, 4345 | "engines": { 4346 | "node": ">=14.17" 4347 | } 4348 | }, 4349 | "node_modules/typescript-eslint": { 4350 | "version": "8.33.1", 4351 | "resolved": "https://registry.npmjs.org/typescript-eslint/-/typescript-eslint-8.33.1.tgz", 4352 | "integrity": "sha512-AgRnV4sKkWOiZ0Kjbnf5ytTJXMUZQ0qhSVdQtDNYLPLnjsATEYhaO94GlRQwi4t4gO8FfjM6NnikHeKjUm8D7A==", 4353 | "dev": true, 4354 | "license": "MIT", 4355 | "dependencies": { 4356 | "@typescript-eslint/eslint-plugin": "8.33.1", 4357 | "@typescript-eslint/parser": "8.33.1", 4358 | "@typescript-eslint/utils": "8.33.1" 4359 | }, 4360 | "engines": { 4361 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 4362 | }, 4363 | "funding": { 4364 | "type": "opencollective", 4365 | "url": "https://opencollective.com/typescript-eslint" 4366 | }, 4367 | "peerDependencies": { 4368 | "eslint": "^8.57.0 || ^9.0.0", 4369 | "typescript": ">=4.8.4 <5.9.0" 4370 | } 4371 | }, 4372 | "node_modules/unbox-primitive": { 4373 | "version": "1.1.0", 4374 | "dev": true, 4375 | "license": "MIT", 4376 | "dependencies": { 4377 | "call-bound": "^1.0.3", 4378 | "has-bigints": "^1.0.2", 4379 | "has-symbols": "^1.1.0", 4380 | "which-boxed-primitive": "^1.1.1" 4381 | }, 4382 | "engines": { 4383 | "node": ">= 0.4" 4384 | }, 4385 | "funding": { 4386 | "url": "https://github.com/sponsors/ljharb" 4387 | } 4388 | }, 4389 | "node_modules/undici-types": { 4390 | "version": "6.21.0", 4391 | "dev": true, 4392 | "license": "MIT" 4393 | }, 4394 | "node_modules/unrs-resolver": { 4395 | "version": "1.7.8", 4396 | "dev": true, 4397 | "hasInstallScript": true, 4398 | "license": "MIT", 4399 | "dependencies": { 4400 | "napi-postinstall": "^0.2.2" 4401 | }, 4402 | "funding": { 4403 | "url": "https://opencollective.com/unrs-resolver" 4404 | }, 4405 | "optionalDependencies": { 4406 | "@unrs/resolver-binding-darwin-arm64": "1.7.8", 4407 | "@unrs/resolver-binding-darwin-x64": "1.7.8", 4408 | "@unrs/resolver-binding-freebsd-x64": "1.7.8", 4409 | "@unrs/resolver-binding-linux-arm-gnueabihf": "1.7.8", 4410 | "@unrs/resolver-binding-linux-arm-musleabihf": "1.7.8", 4411 | "@unrs/resolver-binding-linux-arm64-gnu": "1.7.8", 4412 | "@unrs/resolver-binding-linux-arm64-musl": "1.7.8", 4413 | "@unrs/resolver-binding-linux-ppc64-gnu": "1.7.8", 4414 | "@unrs/resolver-binding-linux-riscv64-gnu": "1.7.8", 4415 | "@unrs/resolver-binding-linux-riscv64-musl": "1.7.8", 4416 | "@unrs/resolver-binding-linux-s390x-gnu": "1.7.8", 4417 | "@unrs/resolver-binding-linux-x64-gnu": "1.7.8", 4418 | "@unrs/resolver-binding-linux-x64-musl": "1.7.8", 4419 | "@unrs/resolver-binding-wasm32-wasi": "1.7.8", 4420 | "@unrs/resolver-binding-win32-arm64-msvc": "1.7.8", 4421 | "@unrs/resolver-binding-win32-ia32-msvc": "1.7.8", 4422 | "@unrs/resolver-binding-win32-x64-msvc": "1.7.8" 4423 | } 4424 | }, 4425 | "node_modules/uri-js": { 4426 | "version": "4.4.1", 4427 | "dev": true, 4428 | "license": "BSD-2-Clause", 4429 | "dependencies": { 4430 | "punycode": "^2.1.0" 4431 | } 4432 | }, 4433 | "node_modules/webpack-bundle-analyzer": { 4434 | "version": "4.10.1", 4435 | "dev": true, 4436 | "license": "MIT", 4437 | "dependencies": { 4438 | "@discoveryjs/json-ext": "0.5.7", 4439 | "acorn": "^8.0.4", 4440 | "acorn-walk": "^8.0.0", 4441 | "commander": "^7.2.0", 4442 | "debounce": "^1.2.1", 4443 | "escape-string-regexp": "^4.0.0", 4444 | "gzip-size": "^6.0.0", 4445 | "html-escaper": "^2.0.2", 4446 | "is-plain-object": "^5.0.0", 4447 | "opener": "^1.5.2", 4448 | "picocolors": "^1.0.0", 4449 | "sirv": "^2.0.3", 4450 | "ws": "^7.3.1" 4451 | }, 4452 | "bin": { 4453 | "webpack-bundle-analyzer": "lib/bin/analyzer.js" 4454 | }, 4455 | "engines": { 4456 | "node": ">= 10.13.0" 4457 | } 4458 | }, 4459 | "node_modules/which": { 4460 | "version": "2.0.2", 4461 | "dev": true, 4462 | "license": "ISC", 4463 | "dependencies": { 4464 | "isexe": "^2.0.0" 4465 | }, 4466 | "bin": { 4467 | "node-which": "bin/node-which" 4468 | }, 4469 | "engines": { 4470 | "node": ">= 8" 4471 | } 4472 | }, 4473 | "node_modules/which-boxed-primitive": { 4474 | "version": "1.1.1", 4475 | "dev": true, 4476 | "license": "MIT", 4477 | "dependencies": { 4478 | "is-bigint": "^1.1.0", 4479 | "is-boolean-object": "^1.2.1", 4480 | "is-number-object": "^1.1.1", 4481 | "is-string": "^1.1.1", 4482 | "is-symbol": "^1.1.1" 4483 | }, 4484 | "engines": { 4485 | "node": ">= 0.4" 4486 | }, 4487 | "funding": { 4488 | "url": "https://github.com/sponsors/ljharb" 4489 | } 4490 | }, 4491 | "node_modules/which-builtin-type": { 4492 | "version": "1.2.1", 4493 | "dev": true, 4494 | "license": "MIT", 4495 | "dependencies": { 4496 | "call-bound": "^1.0.2", 4497 | "function.prototype.name": "^1.1.6", 4498 | "has-tostringtag": "^1.0.2", 4499 | "is-async-function": "^2.0.0", 4500 | "is-date-object": "^1.1.0", 4501 | "is-finalizationregistry": "^1.1.0", 4502 | "is-generator-function": "^1.0.10", 4503 | "is-regex": "^1.2.1", 4504 | "is-weakref": "^1.0.2", 4505 | "isarray": "^2.0.5", 4506 | "which-boxed-primitive": "^1.1.0", 4507 | "which-collection": "^1.0.2", 4508 | "which-typed-array": "^1.1.16" 4509 | }, 4510 | "engines": { 4511 | "node": ">= 0.4" 4512 | }, 4513 | "funding": { 4514 | "url": "https://github.com/sponsors/ljharb" 4515 | } 4516 | }, 4517 | "node_modules/which-collection": { 4518 | "version": "1.0.2", 4519 | "dev": true, 4520 | "license": "MIT", 4521 | "dependencies": { 4522 | "is-map": "^2.0.3", 4523 | "is-set": "^2.0.3", 4524 | "is-weakmap": "^2.0.2", 4525 | "is-weakset": "^2.0.3" 4526 | }, 4527 | "engines": { 4528 | "node": ">= 0.4" 4529 | }, 4530 | "funding": { 4531 | "url": "https://github.com/sponsors/ljharb" 4532 | } 4533 | }, 4534 | "node_modules/which-typed-array": { 4535 | "version": "1.1.19", 4536 | "dev": true, 4537 | "license": "MIT", 4538 | "dependencies": { 4539 | "available-typed-arrays": "^1.0.7", 4540 | "call-bind": "^1.0.8", 4541 | "call-bound": "^1.0.4", 4542 | "for-each": "^0.3.5", 4543 | "get-proto": "^1.0.1", 4544 | "gopd": "^1.2.0", 4545 | "has-tostringtag": "^1.0.2" 4546 | }, 4547 | "engines": { 4548 | "node": ">= 0.4" 4549 | }, 4550 | "funding": { 4551 | "url": "https://github.com/sponsors/ljharb" 4552 | } 4553 | }, 4554 | "node_modules/word-wrap": { 4555 | "version": "1.2.5", 4556 | "dev": true, 4557 | "license": "MIT", 4558 | "engines": { 4559 | "node": ">=0.10.0" 4560 | } 4561 | }, 4562 | "node_modules/ws": { 4563 | "version": "7.5.10", 4564 | "dev": true, 4565 | "license": "MIT", 4566 | "engines": { 4567 | "node": ">=8.3.0" 4568 | }, 4569 | "peerDependencies": { 4570 | "bufferutil": "^4.0.1", 4571 | "utf-8-validate": "^5.0.2" 4572 | }, 4573 | "peerDependenciesMeta": { 4574 | "bufferutil": { 4575 | "optional": true 4576 | }, 4577 | "utf-8-validate": { 4578 | "optional": true 4579 | } 4580 | } 4581 | }, 4582 | "node_modules/yocto-queue": { 4583 | "version": "0.1.0", 4584 | "dev": true, 4585 | "license": "MIT", 4586 | "engines": { 4587 | "node": ">=10" 4588 | }, 4589 | "funding": { 4590 | "url": "https://github.com/sponsors/sindresorhus" 4591 | } 4592 | } 4593 | } 4594 | } 4595 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "nextjs-15-starter-core", 3 | "version": "1.0.0", 4 | "private": false, 5 | "website": "https://nextjs-15-starter-core-core.vercel.app/", 6 | "license": "MIT", 7 | "scripts": { 8 | "dev": "next dev --turbopack", 9 | "build": "next build", 10 | "start": "next start", 11 | "lint": "next lint", 12 | "lint:fix": "eslint --fix \"src/**/*.{js,jsx,ts,tsx}\"", 13 | "format": "prettier --write \"src/**/*.{js,jsx,ts,tsx}\"" 14 | }, 15 | "dependencies": { 16 | "next": "^15.3.3", 17 | "next-themes": "^0.4.6", 18 | "react": "^19.1.0", 19 | "react-dom": "^19.1.0" 20 | }, 21 | "devDependencies": { 22 | "@eslint/js": "^9.28.0", 23 | "@next/bundle-analyzer": "^15.3.3", 24 | "@next/eslint-plugin-next": "^15.3.3", 25 | "@trivago/prettier-plugin-sort-imports": "^5.2.2", 26 | "@types/node": "^22.15.29", 27 | "@types/react": "^19.1.6", 28 | "@types/react-dom": "^19.1.6", 29 | "eslint": "^9.28.0", 30 | "eslint-config-next": "^15.3.3", 31 | "eslint-config-prettier": "^10.1.5", 32 | "eslint-plugin-import": "^2.31.0", 33 | "eslint-plugin-promise": "^7.2.1", 34 | "eslint-plugin-react": "^7.37.5", 35 | "globals": "^16.2.0", 36 | "postcss": "^8.5.4", 37 | "prettier": "^3.5.3", 38 | "typescript": "^5.8.3", 39 | "typescript-eslint": "^8.33.1" 40 | } 41 | } -------------------------------------------------------------------------------- /public/file.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/globe.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/images/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siddharthamaity/nextjs-15-starter-core/6d9314f3645c285ea48f1ae1e898e5c33588c66b/public/images/screenshot.png -------------------------------------------------------------------------------- /public/next copy.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/next.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/vercel.svg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /public/window.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/(delete-this-and-modify-page.tsx)/ExtensionDetails.css: -------------------------------------------------------------------------------- 1 | /* Container styling */ 2 | .extension-container { 3 | margin-left: auto; 4 | margin-right: auto; 5 | display: grid; 6 | max-width: 32rem; /* 2xl max width */ 7 | grid-template-columns: repeat(6, minmax(0, 1fr)); 8 | gap: 0.75rem; /* gap-y-3 */ 9 | } 10 | 11 | @media (min-width: 640px) { 12 | .extension-container { 13 | grid-template-columns: repeat(9, minmax(0, 1fr)); 14 | gap: 1.5rem; /* gap-y-6 */ 15 | } 16 | } 17 | 18 | /* Individual extension item styling */ 19 | .extension-item { 20 | position: relative; 21 | display: inline-flex; 22 | justify-content: center; 23 | } 24 | 25 | .extension-item img { 26 | width: 2.25rem; /* size-9 */ 27 | height: 2.25rem; /* size-9 */ 28 | cursor: pointer; 29 | } 30 | 31 | /* Tooltip styling */ 32 | .extension-tooltip { 33 | position: absolute; 34 | bottom: 100%; 35 | left: 50%; 36 | margin-bottom: 0.5rem; 37 | display: none; 38 | transform: translateX(-50%); 39 | white-space: nowrap; 40 | padding: 0.75rem; 41 | background-color: #e5e7eb; /* neutral-200 */ 42 | border-radius: 0.25rem; /* rounded */ 43 | color: #000; 44 | text-align: center; 45 | } 46 | 47 | .extension-tooltip h3 { 48 | font-size: 1.125rem; /* text-lg */ 49 | } 50 | 51 | .extension-item:hover .extension-tooltip { 52 | background-color: var(--background); 53 | color: var(--foreground); 54 | display: block; 55 | border: 1px solid var(--foreground); 56 | } 57 | -------------------------------------------------------------------------------- /src/app/(delete-this-and-modify-page.tsx)/ExtensionDetails.tsx: -------------------------------------------------------------------------------- 1 | import Link from 'next/link'; 2 | 3 | import './ExtensionDetails.css'; 4 | 5 | const RECOMMENDED_EXTENSIONS: string[] = [ 6 | 'PulkitGangwar.nextjs-snippets', 7 | 'formulahendry.auto-close-tag', 8 | 'aaron-bond.better-comments', 9 | 'mikestead.dotenv', 10 | 'EditorConfig.EditorConfig', 11 | 'dbaeumer.vscode-eslint', 12 | 'MikeBovenlander.formate', 13 | 'donjayamanne.githistory', 14 | 'wix.vscode-import-cost', 15 | 'sburg.vscode-javascript-booster', 16 | 'christian-kohler.npm-intellisense', 17 | 'esbenp.prettier-vscode', 18 | 'Gruntfuggly.todo-tree', 19 | 'ChakrounAnas.turbo-console-log', 20 | 'codeandstuff.package-json-upgrade', 21 | 'KnisterPeter.vscode-commitizen', 22 | 'yzhang.markdown-all-in-one' 23 | ]; 24 | 25 | interface ExtensionStatistics { 26 | statisticName: string; 27 | value: number; 28 | } 29 | 30 | interface ExtensionFile { 31 | assetType: string; 32 | source: string; 33 | } 34 | 35 | interface ExtensionData { 36 | displayName: string; 37 | statistics: ExtensionStatistics[]; 38 | versions: { files: ExtensionFile[] }[]; 39 | } 40 | 41 | interface ExtensionDetails { 42 | name: string; 43 | displayName: string; 44 | downloadCount: number; 45 | iconUri: string; 46 | } 47 | 48 | const fetchExtensionDetails = async (extension: string): Promise => { 49 | const response = await fetch('https://marketplace.visualstudio.com/_apis/public/gallery/extensionquery', { 50 | method: 'POST', 51 | headers: { 52 | 'Content-Type': 'application/json', 53 | Accept: 'application/json;api-version=3.0-preview.1' 54 | }, 55 | body: JSON.stringify({ 56 | filters: [ 57 | { 58 | criteria: [{ filterType: 7, value: extension }] 59 | } 60 | ], 61 | flags: 914 62 | }) 63 | }); 64 | 65 | const data = await response.json(); 66 | const extensionData: ExtensionData = data.results[0].extensions[0]; 67 | 68 | const downloadCount = extensionData.statistics.find((stat) => stat.statisticName === 'install')?.value ?? 0; 69 | const iconUri = 70 | extensionData.versions[0].files.find( 71 | (file) => file.assetType === 'Microsoft.VisualStudio.Services.Icons.Default' 72 | )?.source || ''; 73 | 74 | return { name: extension, displayName: extensionData.displayName, downloadCount, iconUri }; 75 | }; 76 | 77 | const ExtensionDetails: React.FC = async () => { 78 | const extensionDetails = await Promise.all(RECOMMENDED_EXTENSIONS.map(fetchExtensionDetails)); 79 | 80 | return ( 81 |
82 | {extensionDetails.map((extension) => ( 83 |
84 | 85 | {extension.name} 86 | 87 |
88 |

{extension.displayName}

89 |

Downloads: {extension.downloadCount.toLocaleString()}

90 |
91 |
92 | ))} 93 |
94 | ); 95 | }; 96 | 97 | export default ExtensionDetails; 98 | -------------------------------------------------------------------------------- /src/app/(delete-this-and-modify-page.tsx)/HomePage.css: -------------------------------------------------------------------------------- 1 | .page { 2 | display: grid; 3 | grid-template-rows: 20px 1fr 20px; 4 | align-items: center; 5 | justify-items: center; 6 | min-height: 100svh; 7 | padding: 80px; 8 | padding-top: 1rem; 9 | gap: 64px; 10 | } 11 | 12 | .main { 13 | display: flex; 14 | flex-direction: column; 15 | gap: 32px; 16 | grid-row-start: 2; 17 | align-items: center; 18 | } 19 | 20 | .main ol { 21 | padding-left: 0; 22 | margin: 0; 23 | font-size: 14px; 24 | line-height: 24px; 25 | letter-spacing: -0.01em; 26 | list-style-position: inside; 27 | } 28 | 29 | .main li:not(:last-of-type) { 30 | margin-bottom: 8px; 31 | } 32 | 33 | .main code { 34 | font-family: inherit; 35 | padding: 2px 4px; 36 | border-radius: 4px; 37 | font-weight: 600; 38 | } 39 | 40 | .ctas { 41 | display: flex; 42 | gap: 16px; 43 | } 44 | 45 | .ctas a { 46 | appearance: none; 47 | border-radius: 128px; 48 | height: 48px; 49 | padding: 0 20px; 50 | border: none; 51 | border: 1px solid transparent; 52 | transition: 53 | background 0.2s, 54 | color 0.2s, 55 | border-color 0.2s; 56 | cursor: pointer; 57 | display: flex; 58 | align-items: center; 59 | justify-content: center; 60 | font-size: 16px; 61 | line-height: 20px; 62 | font-weight: 500; 63 | } 64 | 65 | a.primary { 66 | background: var(--foreground); 67 | color: var(--background); 68 | gap: 8px; 69 | } 70 | 71 | a.secondary { 72 | min-width: 180px; 73 | } 74 | 75 | .footer { 76 | grid-row-start: 3; 77 | display: flex; 78 | gap: 24px; 79 | } 80 | 81 | .footer a { 82 | display: flex; 83 | align-items: center; 84 | gap: 8px; 85 | } 86 | 87 | .footer img { 88 | flex-shrink: 0; 89 | } 90 | 91 | /* Enable hover only on non-touch devices */ 92 | @media (hover: hover) and (pointer: fine) { 93 | a.primary:hover { 94 | border-color: transparent; 95 | } 96 | 97 | a.secondary:hover { 98 | border-color: transparent; 99 | } 100 | 101 | .footer a:hover { 102 | text-decoration: underline; 103 | text-underline-offset: 4px; 104 | } 105 | } 106 | 107 | @media (max-width: 600px) { 108 | .page { 109 | padding: 32px; 110 | padding-bottom: 80px; 111 | } 112 | 113 | .main { 114 | align-items: center; 115 | } 116 | 117 | .main ol { 118 | text-align: center; 119 | } 120 | 121 | .ctas { 122 | flex-direction: column; 123 | } 124 | 125 | .ctas a { 126 | font-size: 14px; 127 | height: 40px; 128 | padding: 0 16px; 129 | } 130 | 131 | a.secondary { 132 | min-width: auto; 133 | } 134 | 135 | .footer { 136 | flex-wrap: wrap; 137 | align-items: center; 138 | justify-content: center; 139 | } 140 | } 141 | 142 | [data-theme='dark'] .logo { 143 | filter: invert(); 144 | } 145 | -------------------------------------------------------------------------------- /src/app/(delete-this-and-modify-page.tsx)/HomePage.tsx: -------------------------------------------------------------------------------- 1 | import Image from 'next/image'; 2 | 3 | import ExtensionDetails from '@/app/(delete-this-and-modify-page.tsx)/ExtensionDetails'; 4 | import NavigationBar from '@/app/(delete-this-and-modify-page.tsx)/NavigationBar'; 5 | import SetupDetails from '@/app/(delete-this-and-modify-page.tsx)/SetupDetails'; 6 | 7 | import './HomePage.css'; 8 | 9 | export default function Home() { 10 | return ( 11 |
12 | 13 |
14 | Next.js logo 15 |
    16 |
  1. 17 | Get started by editing src/app/page.tsx. 18 |
  2. 19 |
  3. Save and see your changes instantly.
  4. 20 |
21 | 22 | 39 | 40 | 41 |
42 | 65 |
66 | ); 67 | } 68 | -------------------------------------------------------------------------------- /src/app/(delete-this-and-modify-page.tsx)/NavigationBar.css: -------------------------------------------------------------------------------- 1 | /* Container styling for the navigation bar */ 2 | .navigation-bar { 3 | /* position: fixed; 4 | left: 0; 5 | top: 0; */ 6 | display: flex; 7 | width: 100%; 8 | align-items: center; 9 | justify-content: space-between; 10 | gap: 1.5rem; /* 6 * 0.25rem */ 11 | } 12 | 13 | /* Styling for the GitHub link icon */ 14 | .github-icon { 15 | width: 2.25rem; 16 | height: 2.25rem; 17 | } 18 | 19 | @media (min-width: 640px) { 20 | .navigation-bar { 21 | padding-top: 2rem; 22 | justify-content: end; 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /src/app/(delete-this-and-modify-page.tsx)/NavigationBar.tsx: -------------------------------------------------------------------------------- 1 | import Link from 'next/link'; 2 | 3 | import ThemeSwitch from '@/app/(delete-this-and-modify-page.tsx)/ThemeSwitch'; 4 | 5 | import './NavigationBar.css'; 6 | 7 | const NavigationBar = () => { 8 | return ( 9 |
10 | 11 | 12 | 13 | 17 | 18 | 19 |
20 | ); 21 | }; 22 | 23 | export default NavigationBar; 24 | -------------------------------------------------------------------------------- /src/app/(delete-this-and-modify-page.tsx)/SetupDetails.css: -------------------------------------------------------------------------------- 1 | /* Container for feature list */ 2 | .features-list { 3 | display: flex; 4 | flex-wrap: wrap; 5 | justify-content: center; 6 | gap: 0.75rem; 7 | gap-y: 0.25rem; /* gap-y-1 */ 8 | list-style: none; 9 | } 10 | 11 | @media (min-width: 640px) { 12 | .features-list { 13 | gap-y: 0.75rem; /* gap-y-3 */ 14 | } 15 | } 16 | 17 | /* Styling for feature names */ 18 | .feature-name { 19 | font-size: 0.875rem; /* text-sm */ 20 | } 21 | 22 | @media (min-width: 640px) { 23 | .feature-name { 24 | font-size: 1.125rem; /* text-lg */ 25 | } 26 | } 27 | 28 | /* Separator dot between features */ 29 | .feature-separator { 30 | display: inline-block; 31 | margin: 0 0.25rem; 32 | } 33 | 34 | /* ESLint and Prettier plugin sections */ 35 | .plugin-section { 36 | margin-top: 2.25rem; /* mt-9 */ 37 | display: none; 38 | } 39 | 40 | @media (min-width: 640px) { 41 | .plugin-section { 42 | display: block; 43 | } 44 | } 45 | 46 | /* Plugin list styling */ 47 | .plugin-list { 48 | display: flex; 49 | flex-wrap: wrap; 50 | justify-content: center; 51 | gap: 0.75rem; /* gap-x-3 */ 52 | font-size: 0.75rem; /* text-xs */ 53 | list-style: none; 54 | } 55 | 56 | /* Link styling */ 57 | .plugin-link { 58 | white-space: nowrap; 59 | color: inherit; 60 | } 61 | 62 | .plugin-link .plugin-arrow { 63 | color: #3b82f6; /* text-blue-500 */ 64 | text-decoration: underline; 65 | } 66 | -------------------------------------------------------------------------------- /src/app/(delete-this-and-modify-page.tsx)/SetupDetails.tsx: -------------------------------------------------------------------------------- 1 | import { Fragment } from 'react'; 2 | 3 | import Link from 'next/link'; 4 | 5 | import './SetupDetails.css'; 6 | 7 | interface Feature { 8 | name: string; 9 | } 10 | 11 | interface Plugin { 12 | name: string; 13 | githubUrl: string; 14 | } 15 | 16 | const FEATURES: Feature[] = [ 17 | { name: 'Next.js 15' }, 18 | { name: 'React 19' }, 19 | { name: 'Typescript 5' }, 20 | { 21 | name: 'ESLint 9' 22 | }, 23 | { name: 'Prettier 3' }, 24 | { name: 'App Directory' }, 25 | { name: 'System, Light & Dark Mode' }, 26 | { name: 'Next Bundle Analyzer' }, 27 | { name: 'Dockerfile for Node.js 22.16.0 & Bun 1.2.15 (alpine)' } 28 | ]; 29 | 30 | const ESLINT_PLUGINS: Plugin[] = [ 31 | { name: '@eslint/js', githubUrl: 'https://github.com/eslint/eslint' }, 32 | { name: 'typescript-eslint', githubUrl: 'https://github.com/typescript-eslint/typescript-eslint' }, 33 | { name: 'eslint-plugin-react', githubUrl: 'https://github.com/jsx-eslint/eslint-plugin-react' }, 34 | { name: '@next/eslint-plugin-next', githubUrl: 'https://github.com/vercel/next.js' }, 35 | { name: 'eslint-config-prettier', githubUrl: 'https://github.com/prettier/eslint-config-prettier' }, 36 | { name: 'eslint-plugin-import', githubUrl: 'https://github.com/import-js/eslint-plugin-import' }, 37 | { name: 'eslint-plugin-promise', githubUrl: 'https://github.com/eslint-community/eslint-plugin-promise' } 38 | ]; 39 | 40 | const PRETTIER_PLUGINS: Plugin[] = [ 41 | { 42 | name: '@trivago/prettier-plugin-sort-imports', 43 | githubUrl: 'https://github.com/trivago/prettier-plugin-sort-imports' 44 | } 45 | ]; 46 | 47 | const SetupDetails: React.FC = () => { 48 | return ( 49 |
53 |
54 |
    55 | {FEATURES.map((feature, index) => ( 56 | 57 |
  1. 58 |

    {feature.name}

    59 |
  2. 60 | {index < FEATURES.length - 1 && } 61 |
    62 | ))} 63 |
64 |
65 |
66 |
    67 | {ESLINT_PLUGINS.map((setup) => ( 68 |
  • 69 | 70 | {setup.name} 71 | 72 |
  • 73 | ))} 74 |
75 |
76 |
77 |
    78 | {PRETTIER_PLUGINS.map((plugin) => ( 79 |
  • 80 | 81 | {plugin.name} 82 | 83 |
  • 84 | ))} 85 |
86 |
87 |
88 | ); 89 | }; 90 | 91 | export default SetupDetails; 92 | -------------------------------------------------------------------------------- /src/app/(delete-this-and-modify-page.tsx)/ThemeSwitch.css: -------------------------------------------------------------------------------- 1 | /* Container styling */ 2 | .theme-switch-container { 3 | width: fit-content; 4 | background-color: var(--background); 5 | color: var(--foreground); 6 | border-radius: 9999px; /* rounded-full */ 7 | } 8 | 9 | .theme-switch-container.dark { 10 | background-color: var(--background); 11 | } 12 | 13 | .theme-switch-inner-container { 14 | display: flex; 15 | width: auto; 16 | flex-direction: row; 17 | justify-content: center; 18 | border-radius: 1rem; 19 | overflow: hidden; 20 | border: 1px solid var(--foreground); 21 | } 22 | 23 | .theme-switch-inner-container.dark { 24 | background-color: var(--background); 25 | } 26 | 27 | @media (min-width: 640px) { 28 | .theme-switch-inner-container { 29 | flex-direction: row; 30 | } 31 | } 32 | 33 | /* Button styling */ 34 | .theme-switch-button { 35 | display: flex; 36 | align-items: center; 37 | gap: 0.5rem; /* gap-2 */ 38 | padding: 0.5rem 1rem; /* px-4 py-2 */ 39 | background-color: transparent; 40 | border: 0; 41 | } 42 | 43 | .theme-switch-button.active { 44 | background-color: var(--foreground); 45 | color: var(--background); 46 | } 47 | 48 | [data-theme='dark'] .theme-switch-button.active { 49 | background-color: var(--foreground); 50 | } 51 | 52 | /* Icon sizing */ 53 | .icon-size-4 { 54 | width: 1rem; /* size-4 */ 55 | height: 1rem; 56 | } 57 | 58 | .icon-size-5 { 59 | width: 1.25rem; /* size-5 */ 60 | height: 1.25rem; 61 | } 62 | 63 | /* Button label hidden on small screens */ 64 | .theme-switch-button h3 { 65 | display: none; 66 | } 67 | 68 | @media (min-width: 640px) { 69 | .theme-switch-button h3 { 70 | display: block; 71 | } 72 | } 73 | -------------------------------------------------------------------------------- /src/app/(delete-this-and-modify-page.tsx)/ThemeSwitch.tsx: -------------------------------------------------------------------------------- 1 | 'use client'; 2 | 3 | import { JSX, useEffect, useState } from 'react'; 4 | 5 | import { useTheme } from 'next-themes'; 6 | 7 | import './ThemeSwitch.css'; 8 | 9 | interface SwitchOption { 10 | name: string; 11 | value: string; 12 | iconSvg: JSX.Element; 13 | } 14 | 15 | const SWITCH_DATA: SwitchOption[] = [ 16 | { 17 | name: 'System', 18 | value: 'system', 19 | iconSvg: ( 20 | 21 | 22 | 25 | 26 | ) 27 | }, 28 | { 29 | name: 'Light', 30 | value: 'light', 31 | iconSvg: ( 32 | 33 | 40 | 41 | ) 42 | }, 43 | { 44 | name: 'Dark', 45 | value: 'dark', 46 | iconSvg: ( 47 | 48 | 55 | 56 | ) 57 | } 58 | ]; 59 | 60 | const ThemeSwitch: React.FC = () => { 61 | const { theme, setTheme } = useTheme(); 62 | const [mounted, setMounted] = useState(false); 63 | 64 | useEffect(() => setMounted(true), []); 65 | 66 | useEffect(() => { 67 | const darkThemeMediaQuery = 68 | typeof window !== 'undefined' ? window?.matchMedia('(prefers-color-scheme: dark)') : null; 69 | 70 | const isDarkMode = theme === 'system' ? darkThemeMediaQuery?.matches : theme === 'dark'; 71 | if (isDarkMode) document.documentElement.setAttribute('data-theme', 'dark'); 72 | else document.documentElement.setAttribute('data-theme', 'light'); 73 | }, [theme]); 74 | 75 | return ( 76 |
77 |
78 | {SWITCH_DATA.map((data) => ( 79 | 86 | ))} 87 |
88 |
89 | ); 90 | }; 91 | 92 | export default ThemeSwitch; 93 | -------------------------------------------------------------------------------- /src/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siddharthamaity/nextjs-15-starter-core/6d9314f3645c285ea48f1ae1e898e5c33588c66b/src/app/favicon.ico -------------------------------------------------------------------------------- /src/app/fonts/GeistMonoVF.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siddharthamaity/nextjs-15-starter-core/6d9314f3645c285ea48f1ae1e898e5c33588c66b/src/app/fonts/GeistMonoVF.woff -------------------------------------------------------------------------------- /src/app/fonts/GeistVF.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siddharthamaity/nextjs-15-starter-core/6d9314f3645c285ea48f1ae1e898e5c33588c66b/src/app/fonts/GeistVF.woff -------------------------------------------------------------------------------- /src/app/globals.css: -------------------------------------------------------------------------------- 1 | :root { 2 | --background: #ffffff; 3 | --foreground: #171717; 4 | } 5 | 6 | [data-theme='dark'] { 7 | --background: #0a0a0a; 8 | --foreground: #ededed; 9 | } 10 | 11 | html, 12 | body { 13 | max-width: 100vw; 14 | overflow-x: hidden; 15 | } 16 | 17 | body { 18 | color: var(--foreground); 19 | background-color: var(--background); 20 | font-family: Arial, Helvetica, sans-serif; 21 | -webkit-font-smoothing: antialiased; 22 | -moz-osx-font-smoothing: grayscale; 23 | } 24 | 25 | * { 26 | box-sizing: border-box; 27 | padding: 0; 28 | margin: 0; 29 | } 30 | 31 | a { 32 | color: inherit; 33 | text-decoration: none; 34 | } 35 | 36 | @media (prefers-color-scheme: dark) { 37 | html { 38 | color-scheme: dark; 39 | } 40 | } 41 | -------------------------------------------------------------------------------- /src/app/layout.tsx: -------------------------------------------------------------------------------- 1 | import type { ReactNode } from 'react'; 2 | 3 | import type { Metadata } from 'next'; 4 | import localFont from 'next/font/local'; 5 | 6 | import { ThemeProvider } from 'next-themes'; 7 | 8 | import '@/app/globals.css'; 9 | 10 | import './globals.css'; 11 | 12 | const geistSans = localFont({ 13 | src: './fonts/GeistVF.woff', 14 | variable: '--font-geist-sans', 15 | weight: '100 900' 16 | }); 17 | const geistMono = localFont({ 18 | src: './fonts/GeistMonoVF.woff', 19 | variable: '--font-geist-mono', 20 | weight: '100 900' 21 | }); 22 | 23 | export const metadata: Metadata = { 24 | title: 'Create Next App', 25 | description: 'Generated by create next app' 26 | }; 27 | 28 | const Layout = ({ children }: Readonly<{ children: ReactNode }>) => { 29 | return ( 30 | // ? https://github.com/pacocoursey/next-themes?tab=readme-ov-file#with-app 31 | // ? https://react.dev/reference/react-dom/client/hydrateRoot#suppressing-unavoidable-hydration-mismatch-errors 32 | 33 | 34 | {children} 35 | 36 | 37 | ); 38 | }; 39 | 40 | export default Layout; 41 | -------------------------------------------------------------------------------- /src/app/page.tsx: -------------------------------------------------------------------------------- 1 | import HomePage from '@/app/(delete-this-and-modify-page.tsx)/HomePage'; 2 | 3 | /** 4 | * The main page component that renders the HomePage component. 5 | * 6 | * @returns {JSX.Element} The rendered HomePage component. 7 | */ 8 | const Page = () => { 9 | return ; 10 | }; 11 | 12 | export default Page; 13 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "lib": [ 4 | "dom", 5 | "dom.iterable", 6 | "esnext" 7 | ], 8 | "allowJs": true, 9 | "skipLibCheck": true, 10 | "strict": true, 11 | "noEmit": true, 12 | "esModuleInterop": true, 13 | "module": "esnext", 14 | "moduleResolution": "bundler", 15 | "resolveJsonModule": true, 16 | "isolatedModules": true, 17 | "jsx": "preserve", 18 | "incremental": true, 19 | "plugins": [ 20 | { 21 | "name": "next" 22 | } 23 | ], 24 | "paths": { 25 | "@/*": [ 26 | "./src/*" 27 | ] 28 | }, 29 | "target": "ES2023" 30 | }, 31 | "include": [ 32 | "next-env.d.ts", 33 | "**/*.ts", 34 | "**/*.tsx", 35 | ".next/types/**/*.ts" 36 | ], 37 | "exclude": [ 38 | "node_modules" 39 | ] 40 | } --------------------------------------------------------------------------------