-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathturbo.json
73 lines (73 loc) · 1.5 KB
/
turbo.json
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
{
"$schema": "https://turborepo.org/schema.json",
"globalDependencies": ["**/.env.*local"],
"tasks": {
"build": {
"dependsOn": ["^build"],
"cache": true
},
"test": {
"outputs": ["coverage/**"],
"dependsOn": []
},
"lint": {
"dependsOn": ["^build"]
},
"dev": {
"dependsOn": ["^build"],
"cache": false,
"persistent": true
},
"typecheck": {
"dependsOn": ["^build"]
},
"clean": {
"cache": false
}
},
"ui": "stream",
"globalEnv": [
"__NEXT_PROCESSED_ENV",
"AUTH_TOKEN",
"BLOB_READ_WRITE_TOKEN",
"CI_ENV",
"COREPACK_ENABLE_STRICT",
"DATABASE_URL",
"DATABASE_URL_UNPOOLED",
"GA_MEASUREMENT_ID",
"GA_PROTOCOL_SECRET",
"GA_STREAM_ID",
"GITHUB_PAT",
"MY_GITHUB_PAT",
"NEXTAUTH_SECRET",
"NEXT_PUBLIC_GA_MEASUREMENT_ID",
"NEXT_PUBLIC_MEASUREMENT_PROTOCOL_SECRET",
"NEXT_PUBLIC_GA_PROTOCOL_SECRET",
"NEXT_PUBLIC_GA_STREAM_ID",
"NPM_RC",
"npm_config_user_agent",
"NO_COLOR",
"NODE_ENV",
"NPM_TOKEN",
"OPEN_AI_KEY",
"PGDATABASE",
"PGHOST",
"PGHOST_UNPOOLED",
"PGPASSWORD",
"PGUSER",
"PORT",
"POSTGRES_DATABASE",
"POSTGRES_HOST",
"POSTGRES_PASSWORD",
"POSTGRES_PRISMA_URL",
"POSTGRES_URL",
"POSTGRES_URL_NON_POOLING",
"POSTGRES_URL_NO_SSL",
"POSTGRES_USER",
"VERCEL_ENV",
"VERCEL_GIT_PROVIDER",
"VERCEL_GIT_REPO_OWNER",
"VERCEL_GIT_REPO_SLUG",
"VERCEL_URL"
]
}