44 lines
831 B
JSON
44 lines
831 B
JSON
{
|
|
"$schema": "https://turbo.build/schema.json",
|
|
"ui": "tui",
|
|
"globalDependencies": ["**/.env.*local"],
|
|
"tasks": {
|
|
"build": {
|
|
"dependsOn": ["^build"],
|
|
"outputs": ["dist/**", ".next/**", "!.next/cache/**"]
|
|
},
|
|
"build:libs": {
|
|
"dependsOn": [],
|
|
"outputs": ["dist/**"]
|
|
},
|
|
"dev": {
|
|
"cache": false,
|
|
"persistent": true
|
|
},
|
|
"test": {
|
|
"dependsOn": ["build"],
|
|
"outputs": []
|
|
},
|
|
"lint": {
|
|
"dependsOn": ["^lint"]
|
|
},
|
|
"clean": {
|
|
"cache": false
|
|
},
|
|
"start": {
|
|
"dependsOn": ["build"],
|
|
"cache": false,
|
|
"persistent": true
|
|
},
|
|
"backtest": {
|
|
"dependsOn": ["build"],
|
|
"cache": false
|
|
}
|
|
},
|
|
"globalEnv": [
|
|
"NODE_ENV",
|
|
"DATA_SERVICE_PORT",
|
|
"DRAGONFLY_HOST",
|
|
"DRAGONFLY_PORT"
|
|
]
|
|
}
|