2
0
Files
bot/package.json

49 lines
1.0 KiB
JSON
Raw Normal View History

2021-11-19 10:15:13 +01:00
{
2021-11-29 15:19:07 +01:00
"name": "typebot-os",
"private": true,
"workspaces": [
"packages/*",
"apps/*"
],
2021-11-19 10:15:13 +01:00
"scripts": {
2021-12-08 07:08:13 +01:00
"builder": "yarn workspace builder",
"viewer": "yarn workspace viewer",
"db": "yarn workspace db",
2021-12-08 09:33:25 +01:00
"bot-engine": "yarn workspace bot-engine",
2021-12-08 07:08:13 +01:00
"db:up": "docker-compose up -d && yarn db prisma db push",
2021-11-29 15:19:07 +01:00
"db:nuke": "docker-compose down --volumes --remove-orphans",
2021-12-16 15:19:05 +01:00
"build": "dotenv -e .env turbo run build",
"dev": "dotenv -e .env yarn db:up && turbo run dev --parallel",
"lint": "turbo run lint"
2021-11-19 10:15:13 +01:00
},
"devDependencies": {
2021-11-29 15:19:07 +01:00
"dotenv-cli": "^4.1.0",
2021-12-16 15:19:05 +01:00
"turbo": "^1.0.13"
},
"turbo": {
"baseBranch": "origin/main",
"pipeline": {
"build": {
"dependsOn": [
"^build"
],
"outputs": [
".next/**"
]
},
"test": {
"dependsOn": [
"^build"
],
"outputs": []
},
"lint": {
"outputs": []
},
"dev": {
"cache": false
}
}
2021-11-19 10:15:13 +01:00
}
}