mirror of
https://github.com/LukeHagar/better-auth.git
synced 2025-12-06 04:19:20 +00:00
51 lines
916 B
JSON
51 lines
916 B
JSON
{
|
|
"$schema": "https://turborepo.org/schema.json",
|
|
"globalDependencies": [
|
|
"package.json",
|
|
"tsconfig.json",
|
|
"pnpm-lock.yaml",
|
|
"pnpm-workspace.yaml"
|
|
],
|
|
"tasks": {
|
|
"dev": {
|
|
"cache": false,
|
|
"persistent": true
|
|
},
|
|
"build": {
|
|
"dependsOn": ["^build"],
|
|
"inputs": ["$TURBO_DEFAULT$", ".env*"],
|
|
"outputs": [".next/**", "!.next/cache/**", "dist/**"]
|
|
},
|
|
"clean": {},
|
|
"format": {
|
|
"dependsOn": ["//#format"]
|
|
},
|
|
"//#format": {},
|
|
"lint": {},
|
|
"knip": {
|
|
"cache": true
|
|
},
|
|
"test": {
|
|
"dependsOn": ["build"],
|
|
"outputs": []
|
|
},
|
|
"e2e:smoke": {
|
|
"dependsOn": ["build"],
|
|
"outputs": []
|
|
},
|
|
"typecheck": {
|
|
"outputs": [],
|
|
"cache": true
|
|
},
|
|
"deploy": {
|
|
"cache": false
|
|
},
|
|
"migrate": {
|
|
"cache": false
|
|
},
|
|
"generate": {
|
|
"cache": false
|
|
}
|
|
}
|
|
}
|