{
  "name": "<%= appName %>",
  "version": "0.1.0",
  "private": true,
  "scripts": {
    "dev": "next dev",
    "build": "next build",
    "start": "next start",
    "lint": "next lint"
  },
  "dependencies": {
    "next": "14.0.0",
    "react": "^18",
    "react-dom": "^18"<% if (features.includes('auth')) { %>,
    "next-auth": "^4.24.0"<% } %><% if (features.includes('database')) { %>,
    "prisma": "^5.0.0"<% } %>
  },
  "devDependencies": {
    "eslint": "^8",
    "eslint-config-next": "14.0.0"<% if (features.includes('database')) { %>,
    "@prisma/client": "^5.0.0"<% } %>
  }
}
