mirror of
https://github.com/eliasstepanik/core.git
synced 2026-01-11 00:08:27 +00:00
36 lines
649 B
JSON
36 lines
649 B
JSON
{
|
|
"$schema": "https://turborepo.com/schema.json",
|
|
"ui": "tui",
|
|
"tasks": {
|
|
"build": {
|
|
"dependsOn": [ "^build" ],
|
|
"inputs": [ "$TURBO_DEFAULT$", ".env*" ],
|
|
"outputs": [ ".next/**", "!.next/cache/**" ]
|
|
},
|
|
"lint": {
|
|
"dependsOn": [ "^lint" ]
|
|
},
|
|
"check-types": {
|
|
"dependsOn": [ "^check-types" ]
|
|
},
|
|
"dev": {
|
|
"cache": false,
|
|
"persistent": true
|
|
},
|
|
"db:generate": {
|
|
"cache": false
|
|
},
|
|
"db:migrate:deploy": {
|
|
"cache": false
|
|
},
|
|
"db:studio": {
|
|
"cache": false
|
|
},
|
|
"generate": {
|
|
"dependsOn": [
|
|
"^generate"
|
|
]
|
|
}
|
|
}
|
|
}
|