-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathturbo.json
More file actions
88 lines (88 loc) · 1.96 KB
/
Copy pathturbo.json
File metadata and controls
88 lines (88 loc) · 1.96 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
{
"$schema": "https://turborepo.org/schema.json",
"ui": "stream",
"tasks": {
"test": {
"dependsOn": ["^build"],
"outputs": [],
"inputs": ["src/**/*.ts", "src/**/*.tsx", "test/**/*.ts", "test/**/*.tsx"]
},
"topo": {
"dependsOn": ["^topo"]
},
"build": {
"dependsOn": ["^build"],
"outputs": [".cache/tsbuildinfo.json", "dist/**"]
},
"start": {
"dependsOn": ["^start"],
"cache": false,
"persistent": true
},
"dev": {
"dependsOn": ["^dev"],
"cache": false,
"persistent": false
},
"format": {
"outputs": [".cache/.prettiercache"],
"outputLogs": "new-only"
},
"lint": {
"dependsOn": ["^topo", "^build"],
"outputs": []
},
"typecheck": {
"dependsOn": ["^topo", "^build"],
"outputs": [".cache/tsbuildinfo.json"]
},
"clean": {
"cache": false
},
"push": {
"cache": false,
"interactive": true
},
"studio": {
"cache": false,
"persistent": true
},
"ui-add": {
"cache": false,
"interactive": true
}
},
"globalEnv": [
"PORT",
"DATABASE_URL",
"NEXTAUTH_SECRET",
"NEXT_PUBLIC_STRIPE_PUBLISHABLE_KEY",
"STRIPE_SECRET_KEY",
"GOOGLE_CLIENT_ID",
"GOOGLE_CLIENT_SECRET",
"GITHUB_CLIENT_ID",
"GITHUB_CLIENT_SECRET",
"EMAIL_SERVER_HOST",
"EMAIL_SERVER_PORT",
"EMAIL_SERVER_USER",
"EMAIL_SERVER_PASSWORD",
"EMAIL_FROM",
"EMAIL_MAX_CONNECTIONS",
"EMAIL_MAX_MESSAGES",
"METRICS_TOKEN",
"DB_POOL_MAX",
"DB_CONNECTION_TIMEOUT_MS",
"AUTH_URL",
"NEXTAUTH_URL",
"STRIPE_WEBHOOK_SECRET",
"TRUSTED_PROXY_HOPS",
"STRIPE_MOCK_MODE",
"DDOS_MAX_REQUESTS_PER_MINUTE",
"DDOS_SUSPICIOUS_THRESHOLD",
"DDOS_BLOCK_DURATION_MS",
"DDOS_BURST_THRESHOLD",
"DDOS_BURST_WINDOW_MS",
"DDOS_CLEANUP_INTERVAL_MS"
],
"globalPassThroughEnv": ["NODE_ENV", "CI", "npm_lifecycle_event"]
}