2025-07-02 10:04:19 +02:00
|
|
|
{
|
|
|
|
"$schema": "https://turbo.build/schema.json",
|
|
|
|
"ui": "tui",
|
2025-07-24 01:59:16 +02:00
|
|
|
"globalDependencies": [
|
|
|
|
"**/.env.*local"
|
|
|
|
],
|
2025-07-02 10:04:19 +02:00
|
|
|
"globalEnv": [
|
|
|
|
"DEBUG",
|
|
|
|
"VERCEL_URL",
|
|
|
|
"EMAIL_VERIFICATION",
|
|
|
|
"AUDIENCE",
|
|
|
|
"SYSTEM_USER_ID",
|
|
|
|
"SYSTEM_USER_PRIVATE_KEY",
|
|
|
|
"ZITADEL_API_URL",
|
|
|
|
"ZITADEL_SERVICE_USER_TOKEN",
|
|
|
|
"NEXT_PUBLIC_BASE_PATH",
|
|
|
|
"CUSTOM_REQUEST_HEADERS",
|
2025-07-16 09:10:19 +02:00
|
|
|
"NODE_ENV",
|
2025-07-22 16:56:13 +02:00
|
|
|
"PORT",
|
2025-07-18 15:26:04 +02:00
|
|
|
"INKEEP_API_KEY",
|
|
|
|
"DISPLAY",
|
|
|
|
"CYPRESS_DISPLAY"
|
2025-07-02 10:04:19 +02:00
|
|
|
],
|
|
|
|
"tasks": {
|
|
|
|
"generate": {
|
|
|
|
"cache": true
|
|
|
|
},
|
|
|
|
"build": {},
|
2025-07-23 04:06:17 +02:00
|
|
|
"build:login:standalone": {},
|
2025-07-18 01:10:35 +02:00
|
|
|
"quality": {
|
|
|
|
"with": [
|
|
|
|
"lint",
|
2025-07-18 15:26:04 +02:00
|
|
|
"test:unit",
|
2025-07-22 16:56:13 +02:00
|
|
|
"test:integration:login",
|
2025-07-18 15:26:04 +02:00
|
|
|
"test:acceptance",
|
|
|
|
"test:e2e"
|
2025-07-18 01:10:35 +02:00
|
|
|
]
|
|
|
|
},
|
2025-07-02 10:04:19 +02:00
|
|
|
"start": {},
|
|
|
|
"test:unit": {},
|
2025-07-24 01:59:16 +02:00
|
|
|
"test:integration:login": {},
|
2025-07-18 15:26:04 +02:00
|
|
|
"test:acceptance": {},
|
|
|
|
"test:e2e": {},
|
2025-07-02 10:04:19 +02:00
|
|
|
"lint": {},
|
|
|
|
"lint:fix": {},
|
|
|
|
"dev": {
|
|
|
|
"cache": false,
|
|
|
|
"persistent": true
|
|
|
|
},
|
|
|
|
"clean": {
|
|
|
|
"cache": false
|
|
|
|
}
|
|
|
|
}
|
2025-07-24 01:59:16 +02:00
|
|
|
}
|