🚀 Init Turbo Repo
This commit is contained in:
34
package.json
34
package.json
@@ -1,6 +1,5 @@
|
||||
{
|
||||
"name": "typebot-os",
|
||||
"packageManager": "yarn@3.1.0",
|
||||
"private": true,
|
||||
"workspaces": [
|
||||
"packages/*",
|
||||
@@ -13,12 +12,37 @@
|
||||
"bot-engine": "yarn workspace bot-engine",
|
||||
"db:up": "docker-compose up -d && yarn db prisma db push",
|
||||
"db:nuke": "docker-compose down --volumes --remove-orphans",
|
||||
"dev": "concurrently -n builder,viewer \"yarn builder dev\" \"yarn viewer dev\"",
|
||||
"dx": "run-s db:up dev"
|
||||
"build": "dotenv -e .env turbo run build",
|
||||
"dev": "dotenv -e .env yarn db:up && turbo run dev --parallel",
|
||||
"lint": "turbo run lint"
|
||||
},
|
||||
"devDependencies": {
|
||||
"concurrently": "^6.4.0",
|
||||
"dotenv-cli": "^4.1.0",
|
||||
"npm-run-all": "^4.1.5"
|
||||
"turbo": "^1.0.13"
|
||||
},
|
||||
"turbo": {
|
||||
"baseBranch": "origin/main",
|
||||
"pipeline": {
|
||||
"build": {
|
||||
"dependsOn": [
|
||||
"^build"
|
||||
],
|
||||
"outputs": [
|
||||
".next/**"
|
||||
]
|
||||
},
|
||||
"test": {
|
||||
"dependsOn": [
|
||||
"^build"
|
||||
],
|
||||
"outputs": []
|
||||
},
|
||||
"lint": {
|
||||
"outputs": []
|
||||
},
|
||||
"dev": {
|
||||
"cache": false
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user