chore: scaffold web, worker, and compose stack

Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
This commit is contained in:
Jonathan
2026-07-10 16:33:22 +02:00
parent d939f83ce3
commit 599cc76404
13 changed files with 2543 additions and 0 deletions
+25
View File
@@ -0,0 +1,25 @@
{
"name": "lyra-web",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"test": "vitest run"
},
"dependencies": {
"next": "15.1.0",
"react": "19.0.0",
"react-dom": "19.0.0",
"@prisma/client": "6.1.0"
},
"devDependencies": {
"typescript": "5.7.2",
"@types/node": "22.10.2",
"@types/react": "19.0.1",
"@types/react-dom": "19.0.1",
"prisma": "6.1.0",
"vitest": "2.1.8"
}
}