create-unstack
Version:
CLI tool to scaffold a modern Next.js app with TailwindCSS, HeroUI, and optional authentication & MongoDB
41 lines • 1.05 kB
JSON
{
"name": "test",
"version": "0.1.0",
"type": "module",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"build": "next build --turbopack",
"start": "next start",
"lint": "biome lint .",
"format": "biome format --write ."
},
"dependencies": {
"next": "^15.4.0",
"react": "18.3.1",
"tailwindcss-animate": "^1.0.7",
"react-dom": "18.3.1",
"@heroui/system": "2.4.19",
"@heroui/theme": "2.4.19",
"@heroui/toast": "^2.0.13",
"@heroui/button": "2.2.23",
"next-themes": "^0.4.6",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"lucide-react": "^0.292.0",
"tailwind-merge": "^2.0.0",
"ultracite": "^5.0.45",
"mongodb": "^6.15.0",
"better-auth": "^1.2.12",
"react-scan": "^0.3.4"
},
"devDependencies": {
"@types/react": "^18.3.1",
"@types/react-dom": "^18.2.15",
"@types/node": "^20.9.0",
"tailwindcss": "3.4.16",
"typescript": "^5.2.2",
"@tailwindcss/postcss": "^4.1.11",
"@biomejs/biome": "^2.0.6"
}
}