feat: scaffold Next.js 15 frontend app

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
consultoria-as
2026-02-22 03:50:57 +00:00
parent c6e271b26e
commit 6f342a065b
11 changed files with 5070 additions and 50 deletions

27
apps/web/package.json Normal file
View File

@@ -0,0 +1,27 @@
{
"name": "@afterlife/web",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
"next": "^15",
"react": "^19",
"react-dom": "^19",
"@afterlife/shared": "*"
},
"devDependencies": {
"typescript": "^5",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"tailwindcss": "^4",
"@tailwindcss/postcss": "^4",
"eslint": "^9",
"eslint-config-next": "^15"
}
}