2025-10-09 17:18:09 -04:00
|
|
|
{
|
|
|
|
|
"$schema": "https://turborepo.com/schema.json",
|
|
|
|
|
"ui": "tui",
|
|
|
|
|
"tasks": {
|
|
|
|
|
"build": {
|
|
|
|
|
"dependsOn": ["^build"],
|
|
|
|
|
"inputs": ["$TURBO_DEFAULT$", ".env*"],
|
2025-10-10 21:17:32 -04:00
|
|
|
"outputs": [".next/**", "!.next/cache/**"],
|
|
|
|
|
"env": ["DATABASE_URL"]
|
2025-10-09 17:18:09 -04:00
|
|
|
},
|
2025-10-10 21:17:32 -04:00
|
|
|
"//#format-and-lint": {},
|
|
|
|
|
"//#format-and-lint:fix": {
|
|
|
|
|
"cache": false
|
2025-10-09 17:18:09 -04:00
|
|
|
},
|
|
|
|
|
"check-types": {
|
|
|
|
|
"dependsOn": ["^check-types"]
|
|
|
|
|
},
|
|
|
|
|
"dev": {
|
|
|
|
|
"cache": false,
|
|
|
|
|
"persistent": true
|
2025-10-10 21:17:32 -04:00
|
|
|
},
|
|
|
|
|
"db:generate": {
|
|
|
|
|
"cache": false
|
|
|
|
|
},
|
|
|
|
|
"db:migrate": {
|
|
|
|
|
"cache": false,
|
|
|
|
|
"persistent": true
|
|
|
|
|
},
|
|
|
|
|
"db:deploy": {
|
|
|
|
|
"cache": false
|
2025-10-09 17:18:09 -04:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|