48 lines
1023 B
JSON
48 lines
1023 B
JSON
{
|
|
"$schema": "https://turbo.build/schema.json",
|
|
"ui": "tui",
|
|
"tasks": {
|
|
"build": {
|
|
"dependsOn": ["^build", "^db:generate"],
|
|
"outputs": [".next/**", "!.next/cache/**", "dist/**", "generated/**"]
|
|
},
|
|
"dev": {
|
|
"cache": false,
|
|
"persistent": true
|
|
},
|
|
"lint": {
|
|
"dependsOn": ["^lint"],
|
|
"outputs": []
|
|
},
|
|
"lint:fix": {
|
|
"cache": false
|
|
},
|
|
"typecheck": {
|
|
"dependsOn": ["^typecheck"],
|
|
"outputs": []
|
|
},
|
|
"test": {
|
|
"dependsOn": ["^db:generate"],
|
|
"outputs": ["coverage/**"],
|
|
"env": ["NODE_ENV", "DATABASE_URL", "BETTER_AUTH_SECRET"]
|
|
},
|
|
"test:e2e": {
|
|
"dependsOn": ["^build"],
|
|
"cache": false,
|
|
"env": ["NODE_ENV", "PLAYWRIGHT_BASE_URL"]
|
|
},
|
|
"storybook": {
|
|
"cache": false,
|
|
"persistent": true
|
|
},
|
|
"storybook:build": {
|
|
"dependsOn": ["^build"],
|
|
"outputs": ["storybook-static/**"]
|
|
},
|
|
"db:generate": {
|
|
"cache": false,
|
|
"outputs": []
|
|
}
|
|
}
|
|
}
|