-
Notifications
You must be signed in to change notification settings - Fork 147
Expand file tree
/
Copy pathturbo.json
More file actions
50 lines (50 loc) · 1.14 KB
/
Copy pathturbo.json
File metadata and controls
50 lines (50 loc) · 1.14 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"$schema": "https://turborepo.com/schema.json",
"concurrency": "32",
"globalPassThroughEnv": [
"BIRD_API_KEY",
"BIRD_SMS_CHANNEL_ID",
"BIRD_WORKSPACE_ID",
"EDGE_CONFIG",
"ENABLE_EXPERIMENTAL_COREPACK",
"GG_REPLICATE_API_TOKEN",
"GG_VERCEL_AI_GATEWAY_API_KEY",
"GRIDA_S2S_PRIVATE_API_KEY",
"INTEGRATIONS_TEST_TOSSPAYMENTS_CUSTOMER_KEY",
"INTEGRATIONS_TEST_TOSSPAYMENTS_SECRET_KEY",
"IPINFO_ACCESS_TOKEN",
"OPENAI_API_KEY",
"REDIS_URL",
"RESEND_API_KEY",
"SENTRY_AUTH_TOKEN",
"SENTRY_HOST",
"SENTRY_ORG",
"SENTRY_PROJECT",
"SENTRY_PROJECT_ID",
"STRIPE_SECRET_KEY",
"SUPABASE_PUBLISHABLE_KEY",
"SUPABASE_SECRET_KEY",
"UNSPLASH_API_KEY",
"UPSTASH_REDIS_REST_TOKEN",
"UPSTASH_REDIS_REST_URL"
],
"tasks": {
"generate": {
"outputs": []
},
"test": {
"dependsOn": ["^build"]
},
"build": {
"dependsOn": ["^build"],
"outputs": [".next/**", "!.next/cache/**", "build/**", "dist/**"]
},
"typecheck": {
"dependsOn": ["^typecheck"]
},
"dev": {
"persistent": true,
"cache": false
}
}
}