Files
cecilia/package.json
tuna2134 dcf4255535 feat: initialize project with Tailwind CSS, TypeScript, and basic layout
- Add globals.css to import Tailwind CSS styles
- Create layout.tsx for the root layout with metadata and font integration
- Implement Header component with title and subtitle
- Set up tsconfig.json for TypeScript configuration
2026-05-26 08:41:56 +09:00

28 lines
673 B
JSON

{
"name": "cecilia",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "biome check",
"format": "biome format --write"
},
"dependencies": {
"next": "16.2.6",
"react": "19.2.4",
"react-dom": "19.2.4"
},
"devDependencies": {
"@biomejs/biome": "2.2.0",
"@tailwindcss/postcss": "^4",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"babel-plugin-react-compiler": "1.0.0",
"tailwindcss": "^4",
"typescript": "^5"
}
}