web init nextjs

This commit is contained in:
2025-10-22 18:18:09 +02:00
parent 270f099c42
commit 67228adecc
16 changed files with 1889 additions and 0 deletions

23
web/package.json Normal file
View File

@@ -0,0 +1,23 @@
{
"name": "web",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start"
},
"dependencies": {
"react": "19.2.0",
"react-dom": "19.2.0",
"next": "16.0.0"
},
"devDependencies": {
"typescript": "^5",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"@tailwindcss/postcss": "^4",
"tailwindcss": "^4"
}
}