🚀 Init Turbo Repo

This commit is contained in:
Baptiste Arnaud
2021-12-16 15:19:05 +01:00
parent da9459edf3
commit 772b16c6ce
17 changed files with 6150 additions and 11730 deletions

View File

@@ -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
}
}
}
}