mirror of
https://github.com/vercel/next.js.git
synced 2026-09-20 02:25:18 +08:00
33720a3be2
Add a Next.js example configured with Biome toolchain.
22 lines
434 B
JSON
22 lines
434 B
JSON
{
|
|
"private": true,
|
|
"scripts": {
|
|
"dev": "next dev --turbopack",
|
|
"build": "biome check && next build",
|
|
"start": "next start",
|
|
"check": "biome check"
|
|
},
|
|
"dependencies": {
|
|
"next": "latest",
|
|
"react": "^19.0.0",
|
|
"react-dom": "^19.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@biomejs/biome": "^2",
|
|
"@types/node": "^20",
|
|
"@types/react": "^19",
|
|
"@types/react-dom": "^19",
|
|
"typescript": "^5"
|
|
}
|
|
}
|