25 lines
896 B
JSON
25 lines
896 B
JSON
{
|
|
"name": "typebot-os",
|
|
"private": true,
|
|
"license": "AGPL-3.0-or-later",
|
|
"workspaces": [
|
|
"packages/*",
|
|
"apps/*"
|
|
],
|
|
"scripts": {
|
|
"docker:up": "docker compose -f docker-compose.dev.yml up -d",
|
|
"docker:nuke": "docker compose -f docker-compose.dev.yml down --volumes --remove-orphans",
|
|
"dev:prepare": "turbo run build --scope=bot-engine --no-deps --include-dependencies && turbo run build --scope=typebot-js --no-deps",
|
|
"dev": "yarn docker:up && yarn dev:prepare && turbo run dx --parallel",
|
|
"dev:mocking": "yarn docker:up && NEXT_PUBLIC_E2E_TEST=enabled turbo run dx --parallel",
|
|
"build": "yarn docker:up && turbo run build",
|
|
"test:builder": "cd apps/builder && yarn test",
|
|
"lint": "turbo run lint",
|
|
"db:migrate": "yarn workspace db migration:deploy"
|
|
},
|
|
"devDependencies": {
|
|
"turbo": "^1.2.9"
|
|
},
|
|
"packageManager": "yarn@1.22.17"
|
|
}
|