javascript-template/templates/nextjs/package.json
jasmine 99b5fa33e8
Remove eslint binary from package.json - provided by Nix devshell
Nix provides the eslint binary while package.json provides framework-specific
plugins (eslint-config-next). This separates tooling binaries from config packages.
2025-11-23 20:16:02 +08:00

27 lines
594 B
JSON

{
"name": "{{package-name}}",
"type": "module",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
"next": "^15.0.0",
"react": "^19.0.0",
"react-dom": "^19.0.0"
},
"devDependencies": {
"@tailwindcss/postcss": "^4.0.0",
"@types/node": "^22.0.0",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"eslint-config-next": "^15.0.0",
"postcss": "^8.4.0",
"tailwindcss": "^4.0.0",
"typescript": "^5.6.0"
}
}