-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathturbo.json
73 lines (73 loc) · 1.64 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", "tsconfig.json"],
"globalEnv": [
"SORCEL_PROJECT_ROOT",
"DOTENV_KEY",
"APP_ID",
"CI",
"GITHUB_ACTIONS",
"MONTHLY_PRO_PLAN_CHECKOUT_LINK",
"NETWORK",
"NODE_ENV",
"PAPER_CLIENT_ID",
"PAPER_KEY_MANAGER_TOKEN",
"POSTHOG_KEY",
"PUBLIC_FUNCTIONS_URL",
"PUBLIC_HASURA_API_URL",
"PUBLIC_MAGIC_PUBLISHABLE_KEY",
"PUBLIC_STRIPE_PUBLISHABLE_KEY",
"SECRET_AIRTABLE",
"SECRET_ALCHEMY",
"SECRET_BREVO",
"SECRET_CENTER",
"SECRET_HASURA",
"SECRET_JWT",
"SECRET_MAGIC",
"SECRET_PAPER",
"SECRET_POAP",
"SECRET_RUDDERSTACK",
"SECRET_STRIPE",
"SECRET_SUPABASE",
"SECRET_XAMAN",
"XAMAN_API_KEY",
"SERVERLESS_API_KEY",
"SORCEL_PRODUCT_ID",
"STRIPE_SECRET_KEY",
"WALLET_CONNECT_PROJECT_ID",
"YEARLY_PRO_PLAN_CHECKOUT_LINK",
"BACKEND_BASEURL",
"SORCEL_DEV_BACKEND_PORT",
"PORT",
"HEIRLOOM_CORS"
],
"pipeline": {
"build": {
"dependsOn": ["^build"],
"outputs": ["dist/**", "storybook-static/**"]
},
"build:ci": {
"dependsOn": ["^build:ci"],
"outputs": ["dist/**", "storybook-static/**"]
},
"dev": {
"dependsOn": [],
"cache": false
},
"test:e2e": {
"cache": false,
"env": ["PUBLIC_HASURA_API_URL", "SECRET_JWT", "APP_ID", "PLAYWRIGHT_TEST_BASE_URL"]
},
"generate:graphql": {
"cache": false,
"env": ["PUBLIC_HASURA_API_URL", "SECRET_HASURA"]
},
"migrate": {
"cache": false
},
"lint": {},
"test": {
"dependsOn": ["^build"]
}
}
}