mirror of
https://github.com/OpenCut-app/OpenCut.git
synced 2025-08-08 00:36:24 +03:00
37 lines
748 B
JSON
37 lines
748 B
JSON
{
|
|
"$schema": "https://turborepo.com/schema.json",
|
|
"tasks": {
|
|
"build": {
|
|
"dependsOn": ["^build"],
|
|
"outputs": [".next/**", "!.next/cache/**"],
|
|
"env": [
|
|
"DATABASE_URL",
|
|
"BETTER_AUTH_SECRET",
|
|
"UPSTASH_REDIS_REST_URL",
|
|
"UPSTASH_REDIS_REST_TOKEN",
|
|
"MARBLE_WORKSPACE_KEY",
|
|
"FREESOUND_CLIENT_ID",
|
|
"FREESOUND_API_KEY"
|
|
]
|
|
},
|
|
"check-types": {
|
|
"dependsOn": ["^check-types"]
|
|
},
|
|
"dev": {
|
|
"persistent": true,
|
|
"cache": false
|
|
},
|
|
"lint": {
|
|
"dependsOn": ["^lint"],
|
|
"cache": false
|
|
},
|
|
"lint:fix": {
|
|
"dependsOn": ["^lint:fix"],
|
|
"cache": false
|
|
},
|
|
"format": {
|
|
"dependsOn": ["^format"]
|
|
}
|
|
}
|
|
}
|