-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Expand file tree
/
Copy pathturbo.json
More file actions
99 lines (99 loc) · 2.37 KB
/
Copy pathturbo.json
File metadata and controls
99 lines (99 loc) · 2.37 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"$schema": "https://turborepo.org/schema.json",
"globalDependencies": ["**/.env"],
"ui": "stream",
"tasks": {
"topo": {
"dependsOn": ["^topo"]
},
"build": {
"inputs": ["$TURBO_DEFAULT$", ".env"],
"dependsOn": ["^build"],
"outputs": [
".next/**",
"!.next/cache/**",
"next-env.d.ts",
".expo/**",
"dist/**",
"build/**",
"lib/**"
],
"passThroughEnv": [
"SUPABASE_SECRET_KEY",
"RESEND_API_KEY",
"RESEND_AUDIENCE_ID",
"GOCARDLESS_SECRET_ID",
"GOCARDLESS_SECRET_KEY",
"POLAR_WEBHOOK_SECRET",
"POLAR_ACCESS_TOKEN",
"POLAR_ENVIRONMENT",
"FILE_KEY_SECRET",
"TELLER_CERTIFICATE",
"TELLER_CERTIFICATE_PRIVATE_KEY",
"PLAID_CLIENT_ID",
"PLAID_SECRET",
"GITHUB_TOKEN",
"PLAIN_API_KEY",
"OPENAI_API_KEY",
"OPENPANEL_SECRET_KEY",
"SLACK_CLIENT_SECRET",
"SLACK_CLIENT_ID",
"SLACK_SIGNING_SECRET",
"WHATSAPP_PHONE_NUMBER_ID",
"WHATSAPP_BUSINESS_ACCOUNT_ID",
"WHATSAPP_ACCESS_TOKEN",
"WHATSAPP_VERIFY_TOKEN",
"WHATSAPP_APP_SECRET",
"SENDBLUE_API_KEY",
"SENDBLUE_API_SECRET",
"SENDBLUE_FROM_NUMBER",
"SENDBLUE_WEBHOOK_SECRET",
"SENDBLUE_STATUS_CALLBACK_URL",
"GMAIL_CLIENT_ID",
"GMAIL_CLIENT_SECRET",
"GMAIL_REDIRECT_URI",
"OUTLOOK_CLIENT_ID",
"OUTLOOK_CLIENT_SECRET",
"OUTLOOK_REDIRECT_URI",
"MIDDAY_ENCRYPTION_KEY",
"NEXT_PUBLIC_URL",
"SENTRY_AUTH_TOKEN",
"SENTRY_ORG",
"SENTRY_PROJECT",
"SENTRY_RELEASE",
"NEXT_PUBLIC_SENTRY_DSN",
"GIT_COMMIT_SHA",
"NEXT_PUBLIC_WHATSAPP_NUMBER",
"NEXT_PUBLIC_TELEGRAM_BOT_USERNAME",
"NEXT_PUBLIC_SENDBLUE_NUMBER"
]
},
"start": {
"cache": false
},
"test": {
"cache": false,
"env": ["TEST_DATABASE_URL"]
},
"dev": {
"inputs": ["$TURBO_DEFAULT$", ".env"],
"persistent": true,
"cache": false
},
"jobs": {
"persistent": true,
"cache": false
},
"format": {},
"lint": {
"dependsOn": ["^topo"]
},
"lint:fix": {
"dependsOn": ["^topo"],
"cache": false
},
"typecheck": {
"outputs": []
}
}
}