2026-04-20 22:24:39 +09:00
|
|
|
{
|
|
|
|
|
"$schema": "https://turborepo.dev/schema.json",
|
2026-04-20 23:42:00 +09:00
|
|
|
"ui": "stream",
|
2026-08-04 01:02:04 +09:00
|
|
|
"globalEnv": ["NODE_ENV", "VERCEL", "VERCEL_URL", "LOGOS_CONTENT_ROOT"],
|
2026-04-20 22:24:39 +09:00
|
|
|
"tasks": {
|
|
|
|
|
"build": {
|
|
|
|
|
"dependsOn": ["^build"],
|
|
|
|
|
"inputs": ["$TURBO_DEFAULT$", ".env*"],
|
2026-08-25 00:19:01 +09:00
|
|
|
"outputs": [".next/**", "!.next/cache/**", "dist/**", "out/**"],
|
2026-04-28 02:35:45 +09:00
|
|
|
"env": [
|
|
|
|
|
"PAYLOAD_SECRET",
|
|
|
|
|
"DATABASE_URL",
|
|
|
|
|
"DATABASE_AUTH_TOKEN",
|
|
|
|
|
"PAYLOAD_DB_SCHEMA",
|
|
|
|
|
"PAYLOAD_DB_PUSH",
|
2026-07-02 21:57:04 +09:00
|
|
|
"PAYLOAD_DB_POOL_MAX",
|
|
|
|
|
"PAYLOAD_DB_CONNECTION_TIMEOUT_MS",
|
|
|
|
|
"PAYLOAD_DB_QUERY_TIMEOUT_MS",
|
|
|
|
|
"PAYLOAD_DB_IDLE_TIMEOUT_MS",
|
|
|
|
|
"PAYLOAD_HEALTH_TIMEOUT_MS",
|
|
|
|
|
"NEXT_SERVER_ACTIONS_ENCRYPTION_KEY",
|
2026-07-02 22:10:10 +09:00
|
|
|
"VERCEL_BRANCH_URL",
|
|
|
|
|
"VERCEL_ENV",
|
2026-04-28 02:35:45 +09:00
|
|
|
"NEXT_PUBLIC_SERVER_URL",
|
2026-08-13 22:44:23 +09:00
|
|
|
"NEXT_PUBLIC_WEB_URL"
|
2026-06-26 19:28:41 +09:00
|
|
|
],
|
|
|
|
|
"passThroughEnv": ["GITHUB_TOKEN"]
|
2026-04-20 22:24:39 +09:00
|
|
|
},
|
|
|
|
|
"lint": {
|
|
|
|
|
"dependsOn": ["^lint"]
|
|
|
|
|
},
|
|
|
|
|
"lint:fix": {
|
|
|
|
|
"cache": false
|
|
|
|
|
},
|
2026-05-07 12:54:29 +09:00
|
|
|
"test": {
|
|
|
|
|
"dependsOn": ["^build"],
|
|
|
|
|
"outputs": []
|
|
|
|
|
},
|
2026-05-18 14:24:33 +09:00
|
|
|
"test:static": {
|
|
|
|
|
"dependsOn": ["build"],
|
|
|
|
|
"outputs": []
|
|
|
|
|
},
|
|
|
|
|
"test:perf": {
|
|
|
|
|
"dependsOn": ["build"],
|
|
|
|
|
"outputs": []
|
|
|
|
|
},
|
2026-04-20 22:24:39 +09:00
|
|
|
"check-types": {
|
2026-05-21 20:55:04 +09:00
|
|
|
"dependsOn": ["^build", "^check-types"]
|
2026-04-20 22:24:39 +09:00
|
|
|
},
|
|
|
|
|
"generate-types": {
|
|
|
|
|
"cache": false,
|
|
|
|
|
"outputs": ["packages/types/src/payload.ts"]
|
|
|
|
|
},
|
|
|
|
|
"dev": {
|
2026-05-27 04:11:06 +09:00
|
|
|
"dependsOn": ["^build"],
|
2026-04-20 22:24:39 +09:00
|
|
|
"cache": false,
|
2026-08-04 01:02:04 +09:00
|
|
|
"persistent": true,
|
|
|
|
|
"env": ["DATABASE_URL"]
|
2026-05-28 19:28:28 +09:00
|
|
|
},
|
|
|
|
|
"@acid-info/logos-ui#dev": {
|
|
|
|
|
"dependsOn": ["build"],
|
|
|
|
|
"cache": false,
|
|
|
|
|
"persistent": true
|
2026-04-20 22:24:39 +09:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|