45 lines
917 B
JSON
45 lines
917 B
JSON
{
|
|
"name": "typebot-os",
|
|
"private": true,
|
|
"license": "AGPL-3.0-or-later",
|
|
"workspaces": [
|
|
"packages/*",
|
|
"apps/*"
|
|
],
|
|
"scripts": {
|
|
"docker:up": "docker-compose up -d",
|
|
"db:nuke": "docker-compose down --volumes --remove-orphans",
|
|
"dev": "dotenv -e .env yarn docker:up && dotenv -e .env turbo run dev --parallel",
|
|
"build": "dotenv -e .env turbo run build",
|
|
"test": "dotenv -e .env turbo run test",
|
|
"lint": "turbo run lint"
|
|
},
|
|
"devDependencies": {
|
|
"dotenv-cli": "^4.1.1",
|
|
"turbo": "^1.1.1"
|
|
},
|
|
"turbo": {
|
|
"baseBranch": "origin/main",
|
|
"pipeline": {
|
|
"build": {
|
|
"dependsOn": [
|
|
"^build"
|
|
],
|
|
"outputs": [
|
|
".next/**"
|
|
]
|
|
},
|
|
"test": {
|
|
"dependsOn": [],
|
|
"outputs": []
|
|
},
|
|
"lint": {
|
|
"outputs": []
|
|
},
|
|
"dev": {
|
|
"cache": false
|
|
}
|
|
}
|
|
}
|
|
}
|