forked from weareinreach/InReach
-
Notifications
You must be signed in to change notification settings - Fork 0
/
turbo.json
78 lines (78 loc) · 1.66 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
74
75
76
77
78
{
"$schema": "https://turborepo.org/schema.json",
"globalDependencies": ["./packages/config/tsconfig/base.json"],
"globalDotEnv": [".env"],
"globalEnv": ["NODE_ENV"],
"pipeline": {
"//#clean": {
"cache": false
},
"//#lint:pkg": {
"cache": false
},
"build": {
"dependsOn": ["^build", "^build:icons"],
"env": [
"NODE_ENV",
"DATABASE_URL",
"DB_DIRECT_URL",
"KV_URL",
"KV_REST_API_URL",
"KV_REST_API_TOKEN",
"KV_REST_API_READ_ONLY_TOKEN",
"NEXTAUTH_SECRET",
"NEXTAUTH_URL",
"COGNITO_ACCESS_KEY",
"COGNITO_SECRET",
"COGNITO_CLIENT_ID",
"COGNITO_CLIENT_SECRET",
"GOOGLE_PLACES_API_KEY",
"NEXT_PUBLIC_GOOGLE_MAPS_API",
"CACHE_ACCESS_KEY",
"CACHE_SECRET",
"CACHE_READ_URL",
"CACHE_WRITE_URL",
"CROWDIN_TOKEN",
"NEXT_PUBLIC_GA_MEASUREMENT_ID"
]
},
"build:aws": {},
"build:icons": {},
"build:prebuild": {},
"chromatic": {},
"clean": {
"cache": false
},
"clean:node": {
"cache": false
},
"db:dataMigrate": {},
"db:deploy": {},
"db:generate": {},
"db:generate:kysely": {},
"deploy:aws": {},
"dev": {
"cache": false,
"dependsOn": ["^db:generate", "^db:deploy", "^db:dataMigrate"],
"persistent": true
},
"format": {
"dependsOn": ["^db:generate"],
"inputs": ["**/*.{cjs,mjs,js,jsx,ts,tsx,json,prisma,html,css,scss,yml,yaml,md}"]
},
"generate:data": {},
"lint": {
"inputs": ["**/*.{cjs,mjs,js,jsx,ts,tsx}"]
},
"lint:fix": {
"inputs": ["**/*.{cjs,mjs,js,jsx,ts,tsx}"]
},
"post-install": {
"dependsOn": ["^generate:data", "^build:icons", "//#lint:pkg"]
},
"sb:build": {},
"type-check": {
"cache": false
}
}
}