mirror of
https://github.com/complexcaresolutions/frontend.blogwoman.de.git
synced 2026-03-17 15:04:01 +00:00
- Initialize Next.js 16 with React 19, TypeScript, and Tailwind CSS 4 - Add prompts/ directory for concept AI instructions - Add docs/ directory for project documentation - Include README files explaining workflow and conventions Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
26 lines
545 B
JSON
26 lines
545 B
JSON
{
|
|
"name": "frontend.blogwoman.de",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"scripts": {
|
|
"dev": "next dev",
|
|
"build": "next build",
|
|
"start": "next start",
|
|
"lint": "eslint"
|
|
},
|
|
"dependencies": {
|
|
"next": "16.0.10",
|
|
"react": "19.2.1",
|
|
"react-dom": "19.2.1"
|
|
},
|
|
"devDependencies": {
|
|
"@tailwindcss/postcss": "^4",
|
|
"@types/node": "^20",
|
|
"@types/react": "^19",
|
|
"@types/react-dom": "^19",
|
|
"eslint": "^9",
|
|
"eslint-config-next": "16.0.10",
|
|
"tailwindcss": "^4",
|
|
"typescript": "^5"
|
|
}
|
|
}
|