mirror of
https://github.com/velocitatem/cvfs.git
synced 2026-05-31 08:43:37 +00:00
45 lines
933 B
JSON
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"
|
|
}
|
|
}
|
|
}
|
|
}
|