Template Generator
Generate production-ready project templates with your preferred stack. Customize features, styling, and configuration.
Configuration
Customize your project template
App Router
API Routes
Auth (NextAuth)
Prisma
tRPC
Generated Files
9 files
package.json
{
"name": "my-project",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint . --ext .ts,.tsx",
"test": "vitest"
},
"dependencies": {
"next": "^14.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"typescript": "^5.3.2",
"@types/node": "^20.10.0",
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.0",
"tailwindcss": "^3.3.6",
"postcss": "^8.4.32",
"autoprefixer": "^10.4.16",
"eslint": "^8.55.0",
"eslint-config-next": "^14.0.0"
}
}