mirror of
https://github.com/better-auth/better-auth.git
synced 2026-05-23 07:18:56 -05:00
43 lines
632 B
JSON
43 lines
632 B
JSON
{
|
|
"$schema": "https://turborepo.org/schema.json",
|
|
"tasks": {
|
|
"dev": {
|
|
"cache": false,
|
|
"persistent": true
|
|
},
|
|
"build": {
|
|
"dependsOn": ["^build"],
|
|
"outputs": ["dist/**", ".next/*"],
|
|
"env": [
|
|
"TURSO_DATABASE_URL",
|
|
"TURSO_AUTH_TOKEN",
|
|
"RESEND_API_KEY",
|
|
"BETTER_AUTH_EMAIL"
|
|
]
|
|
},
|
|
"clean": {},
|
|
"format": {},
|
|
"lint": {},
|
|
"knip": {
|
|
"cache": true
|
|
},
|
|
"test": {
|
|
"dependsOn": ["build"],
|
|
"outputs": []
|
|
},
|
|
"typecheck": {
|
|
"outputs": [],
|
|
"cache": true
|
|
},
|
|
"deploy": {
|
|
"cache": false
|
|
},
|
|
"migrate": {
|
|
"cache": false
|
|
},
|
|
"generate": {
|
|
"cache": false
|
|
}
|
|
}
|
|
}
|