Initial commit

This commit is contained in:
Daniel Alves Rösel
2026-04-02 18:47:14 +02:00
committed by GitHub
commit 90ad5e0260
94 changed files with 7797 additions and 0 deletions

44
apps/webapp/project.json Normal file
View File

@@ -0,0 +1,44 @@
{
"name": "webapp",
"root": "apps/webapp",
"sourceRoot": "apps/webapp/src",
"projectType": "application",
"targets": {
"dev": {
"executor": "nx:run-commands",
"options": {
"cwd": "apps/webapp",
"command": "bun run dev"
}
},
"build": {
"executor": "nx:run-commands",
"options": {
"cwd": "apps/webapp",
"command": "bun run build"
},
"outputs": ["{projectRoot}/.next"]
},
"start": {
"executor": "nx:run-commands",
"options": {
"cwd": "apps/webapp",
"command": "bun run start"
}
},
"lint": {
"executor": "nx:run-commands",
"options": {
"cwd": "apps/webapp",
"command": "bun run lint"
}
},
"typecheck": {
"executor": "nx:run-commands",
"options": {
"cwd": "apps/webapp",
"command": "bun run typecheck"
}
}
}
}