Files
lumina-nextjs-template/package.json
Asan Stefanski 5e2c9ee478 fix: Auto-build before start to prevent missing .next errors
Changed `start` script to run `next build && next start` so that
cloned projects work immediately without manual build step.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2025-12-26 23:56:50 +01:00

43 lines
1.1 KiB
JSON

{
"name": "lumina-nextjs-template",
"version": "0.2.0",
"description": "Next.js 15 starter template for Lumina VibeCoder projects",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next build && next start",
"lint": "next lint",
"format": "prettier --write \"**/*.{ts,tsx,js,jsx,json,css,md}\""
},
"dependencies": {
"next": "^15.1.4",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"@spartan-ng/ui-core": "^0.0.1-alpha.361",
"@supabase/supabase-js": "^2.47.10",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"lucide-react": "^0.460.0",
"tailwind-merge": "^2.6.0",
"tailwindcss-animate": "^1.0.7"
},
"devDependencies": {
"@types/node": "^22.10.2",
"@types/react": "^19.0.1",
"@types/react-dom": "^19.0.2",
"typescript": "^5.7.2",
"eslint": "^9.16.0",
"eslint-config-next": "^15.1.4",
"prettier": "^3.4.2",
"prettier-plugin-tailwindcss": "^0.6.9",
"tailwindcss": "^3.4.17",
"postcss": "^8.4.49",
"autoprefixer": "^10.4.20"
},
"engines": {
"node": ">=20.0.0",
"pnpm": ">=8.0.0"
}
}