-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathturbo.json
More file actions
113 lines (113 loc) · 2.75 KB
/
turbo.json
File metadata and controls
113 lines (113 loc) · 2.75 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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"$schema": "https://turbo.build/schema.json",
"tasks": {
"@anticapture/indexer#db:*": {
"cache": false,
"passThroughEnv": ["*"]
},
"@anticapture/graphql-client#codegen": {
"inputs": ["documents/**/*", "codegen.ts"],
"outputs": ["generated/**"],
"env": ["ANTICAPTURE_GRAPHQL_ENDPOINT"]
},
"@anticapture/client#codegen": {
"inputs": ["kubb.config.ts", "src/**", "../../apps/gateful/openapi/gateful.json"],
"outputs": ["generated/**"]
},
"@anticapture/client#build": {
"dependsOn": ["codegen"],
"outputs": ["generated/**"]
},
"@anticapture/graphql-client#build": {
"dependsOn": ["codegen"],
"outputs": ["generated/**"],
"env": ["ANTICAPTURE_GRAPHQL_ENDPOINT"]
},
"@anticapture/dashboard#build": {
"dependsOn": ["^codegen", "^build"],
"outputs": ["dist/**", ".next/**"],
"env": ["RESEND_API_KEY", "RESEND_FROM_EMAIL", "CONTACT_EMAIL"]
},
"build": {
"dependsOn": ["^build", "^codegen"],
"outputs": ["dist/**"]
},
"storybook": {
"dependsOn": ["^codegen"],
"persistent": true,
"cache": false
},
"build-storybook": {
"dependsOn": ["^codegen"],
"outputs": ["storybook-static/**"]
},
"start": {
"dependsOn": ["^build"],
"persistent": true,
"cache": false,
"passThroughEnv": ["*"]
},
"clean": {
"cache": false
},
"lint": {
"inputs": [
"**/*.ts",
"**/*.tsx",
"**/*.js",
"**/*.jsx",
"eslint.config.*"
]
},
"lint:fix": {
"cache": false,
"inputs": [
"**/*.ts",
"**/*.tsx",
"**/*.js",
"**/*.jsx",
"eslint.config.*"
]
},
"typecheck": {
"dependsOn": ["^build", "@anticapture/observability#build"],
"inputs": ["**/*.ts", "**/*.tsx", "tsconfig.json", "tsconfig.*.json"]
},
"test": {
"dependsOn": ["^build"],
"inputs": ["**/*.ts", "**/*.tsx", "**/*.test.*"]
},
"test:unit": {
"dependsOn": ["^build"],
"inputs": ["**/*.ts", "**/*.tsx", "**/*.test.*"]
},
"codegen": {
"outputs": ["generated/**"]
},
"db:generate": {
"inputs": ["src/**/*.ts"],
"outputs": ["drizzle/**"]
},
"@anticapture/api#dev": {
"dependsOn": ["@anticapture/observability#build"],
"passThroughEnv": ["*"]
},
"@anticapture/indexer": {
"env": ["DAO_ID"]
},
"@anticapture/api": {
"env": [
"DAO_ID",
"CHAIN_ID",
"TREASURY_DATA_PROVIDER_API_URL",
"TREASURY_DATA_PROVIDER_ID"
]
},
"dev": {
"persistent": true,
"cache": false,
"passThroughEnv": ["*"],
"dependsOn": ["^codegen"]
}
}
}