This is a Next.js project bootstrapped with create-next-app.
This project has been upgraded to Next.js 16.0.10 with the following changes:
- Next.js 16.0.10: Updated from 15.5.3 to leverage Turbopack by default and latest features
- Turbopack as Default: Removed explicit
--turbopackflags from scripts; now uses Turbopack by default in dev and build - ESLint Config Modernized: Simplified ESLint configuration to work with ESLint 9 flat config
- Test Suite Cleanup: Removed redundant test files to maintain a leaner, more maintainable test suite
- Removed duplicate storage tests (kept
storage.test.tsas the main test) - Removed placeholder integration tests
- Removed placeholder-only repository contract tests
- Kept meaningful contract tests with real HTTP assertions
- Removed duplicate storage tests (kept
- Security: Upgraded to address CVE-2025-66478
- Jest Coverage: Adjusted coverage thresholds to 60% for better balance
All route handlers already use the async params pattern required by Next.js 16.
First, run the development server:
npm run dev
# or
yarn dev
# or
pnpm dev
# or
bun devOpen http://localhost:3000 with your browser to see the result.
You can start editing the page by modifying app/page.tsx. The page auto-updates as you edit the file.
This project uses next/font to automatically optimize and load Geist, a new font family for Vercel.
npm run dev- Start development server with Turbopack (default)npm run build- Create production build with Turbopack (default)npm start- Start production servernpm run lint- Run ESLintnpm run lint:fix- Run ESLint with auto-fixnpm test- Run Jest testsnpm run test:coverage- Run tests with coverage report
To learn more about Next.js, take a look at the following resources:
- Next.js Documentation - learn about Next.js features and API.
- Learn Next.js - an interactive Next.js tutorial.
You can check out the Next.js GitHub repository - your feedback and contributions are welcome!
The easiest way to deploy your Next.js app is to use the Vercel Platform from the creators of Next.js.
Check out our Next.js deployment documentation for more details.