2
0
Files
bot/package.json

48 lines
1021 B
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,
2021-12-23 09:44:47 +01:00
"license": "AGPL-3.0-or-later",
2021-11-29 15:19:07 +01:00
"workspaces": [
"packages/*",
"apps/*"
],
2021-11-19 10:15:13 +01:00
"scripts": {
2021-12-17 07:54:12 +01:00
"docker:up": "docker-compose up -d",
2021-11-29 15:19:07 +01:00
"db:nuke": "docker-compose down --volumes --remove-orphans",
2021-12-17 07:54:12 +01:00
"dev": "dotenv -e .env yarn docker:up && dotenv -e .env turbo run dev --parallel",
2021-12-16 15:19:05 +01:00
"build": "dotenv -e .env turbo run build",
2021-12-22 15:19:55 +01:00
"build:builder": "yarn build --scope=builder --includeDependencies",
2021-12-17 07:54:12 +01:00
"test": "dotenv -e .env turbo run dev test",
2021-12-16 15:19:05 +01:00
"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-22 15:19:55 +01:00
"turbo": "^1.0.19"
2021-12-16 15:19:05 +01:00
},
"turbo": {
"baseBranch": "origin/main",
"pipeline": {
"build": {
"dependsOn": [
"^build"
],
"outputs": [
".next/**"
]
},
"test": {
"dependsOn": [
2021-12-17 07:54:12 +01:00
"^dev"
2021-12-16 15:19:05 +01:00
],
"outputs": []
},
"lint": {
"outputs": []
},
"dev": {
"cache": false
}
}
2021-11-19 10:15:13 +01:00
}
}