With bun.sh, simple but extremely fast.
- Tailwind CSS - Utility-first CSS framework, you already know it.
- Shadcn/ui - Beautiful designed components - open source.
- ESLint - Find and fix problems in your code.
- Husky - Git hooks made easy.
-
Install bun.js locally:
# Linux & macOS curl -fsSL https://bun.sh/install | bash # Windows powershell -c "irm bun.sh/install.ps1 | iex"
-
Install dependencies.
bun install
-
Run the project.
bun run dev
- /src: Root source folder.
- /src/app/(routes): Contains the app routes.
- /src/core: Contains the layout and ui components, constants, types, lib, and the script to generate version from package.json.
"devDependencies": {
"typescript": "^5",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"postcss": "^8",
"tailwindcss": "^3.4.1",
"eslint": "^8",
"eslint-config-next": "15.0.0-rc.0"
}"dependencies": {
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"lucide-react": "^0.407.0",
"next": "15.0.0-rc.0",
"react": "19.0.0-rc-f994737d14-20240522",
"react-dom": "19.0.0-rc-f994737d14-20240522",
"tailwind-merge": "^2.4.0",
"tailwindcss-animate": "^1.0.7"
}