81 lines
1.7 KiB
JSON
81 lines
1.7 KiB
JSON
{
|
|
"$schema": "https://turborepo.org/schema.json",
|
|
"ui": "tui",
|
|
"tasks": {
|
|
"topo": {
|
|
"dependsOn": ["^topo"]
|
|
},
|
|
"build": {
|
|
"dependsOn": ["^build"],
|
|
"outputs": [
|
|
".cache/tsbuildinfo.json",
|
|
"dist/**",
|
|
".next/**",
|
|
"!.next/cache/**",
|
|
"next-env.d.ts"
|
|
]
|
|
},
|
|
"dev": {
|
|
"dependsOn": ["^dev"],
|
|
"cache": false,
|
|
"persistent": false
|
|
},
|
|
"format": {
|
|
"outputs": [".cache/.prettiercache"],
|
|
"outputLogs": "new-only"
|
|
},
|
|
"lint": {
|
|
"dependsOn": ["^topo", "^build"],
|
|
"outputs": [".cache/.eslintcache"]
|
|
},
|
|
"typecheck": {
|
|
"dependsOn": ["^topo", "^build"],
|
|
"outputs": [".cache/tsbuildinfo.json"]
|
|
},
|
|
"test": {
|
|
"dependsOn": ["^topo", "^build"]
|
|
},
|
|
"clean": {
|
|
"cache": false
|
|
},
|
|
"//#clean": {
|
|
"cache": false
|
|
}
|
|
},
|
|
"globalDependencies": ["**/.env"],
|
|
"globalEnv": [
|
|
"NODE_ENV",
|
|
"NEXT_PUBLIC_API_BASE_URL",
|
|
"OPENSEARCH_USE",
|
|
"OPENSEARCH_NODE",
|
|
"OPENSEARCH_USERNAME",
|
|
"OPENSEARCH_PASSWORD",
|
|
"APP_PORT",
|
|
"APP_ADDRESS",
|
|
"JWT_SECRET",
|
|
"MYSQL_PRIMARY_URL",
|
|
"MYSQL_SECONDARY_URLS",
|
|
"SMTP_HOST",
|
|
"SMTP_PORT",
|
|
"SMTP_USERNAME",
|
|
"SMTP_PASSWORD",
|
|
"SMTP_SENDER",
|
|
"SMTP_TLS",
|
|
"SMTP_CIPHER_SPEC",
|
|
"SMTP_OPPORTUNISTIC_TLS",
|
|
"AUTO_MIGRATION",
|
|
"MASTER_API_KEY",
|
|
"SKIP_ENV_VALIDATION",
|
|
"PORT",
|
|
"AUTO_FEEDBACK_DELETION_ENABLED",
|
|
"AUTO_FEEDBACK_DELETION_PERIOD_DAYS",
|
|
"REFESH_TOKEN_EXPIRED_TIME",
|
|
"ENABLE_AUTO_FEEDBACK_DELETION",
|
|
"BASE_URL",
|
|
"SMTP_BASE_URL",
|
|
"OTEL_EXPORTER_OTLP_LOGS_ENDPOINT",
|
|
"OTEL_RESOURCE_ATTRIBUTES"
|
|
],
|
|
"globalPassThroughEnv": ["NODE_ENV", "CI", "npm_lifecycle_event"]
|
|
}
|