Files
cvfs/apps/webapp/project.json
Daniel Alves Rösel 90ad5e0260 Initial commit
2026-04-02 18:47:14 +02:00

45 lines
933 B
JSON

{
"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"
}
}
}
}