forked from baptisteArno/typebot.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2.64 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 2.64 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "root",
"version": "3.15.2",
"private": true,
"workspaces": [
"packages/*",
"packages/deprecated/*",
"packages/embeds/*",
"packages/forge/*",
"packages/forge/blocks/*",
"packages/blocks/*",
"apps/*"
],
"scripts": {
"postinstall": "turbo run db:generate",
"prepare": "husky && effect-language-service patch",
"pre-commit": "turbo run format-and-lint lint-repo check-broken-links test",
"format-and-lint": "biome check .",
"format-and-lint:fix": "biome check . --write --unsafe",
"lint-repo": "sherif -r unordered-dependencies -r packages-without-package-json --ignore-package @typebot.io/legacy --ignore-package bot-engine",
"lint-repo:fix": "bun lint-repo --fix",
"patch-embed-libs": "bun packages/scripts/src/patchEmbedLibs.ts && bun install",
"start-docker-compose-dev": "docker compose -f docker-compose.dev.yml up",
"build-docker-compose-prod": "docker compose -f docker-compose.build.yml build",
"start-docker-compose-prod": "docker compose -f docker-compose.yml up",
"check-types": "turbo run check-types",
"build": "turbo run build --filter=builder... --filter=viewer... --filter=landing-page... --filter=docs...",
"dev": "turbo dev --filter=builder... --filter=viewer... --filter=@typebot.io/partykit... --filter=workflows... --concurrency=11",
"test": "turbo run test",
"sync-locales": "dotenv -e .env -- tolgee sync --continue-on-warning --remove-unused --no-strict-namespace --patterns './apps/builder/src/**/*.ts?(x)' --backup './.tolgee/backup'",
"pull-locales": "dotenv -e .env -- tolgee pull && bun format-and-lint:fix",
"push-locales": "dotenv -e .env -- tolgee push",
"create-new-block": "cd packages/forge/cli && bun start",
"check-unused-dependencies": "bun packages/scripts/src/checkDependencies.ts",
"restore": "echo 'Cleaning...' && bunx rimraf --glob '**/{node_modules,dist,.next,.turbo}'",
"deploy-workflows": "fly deploy --config apps/workflows/fly.toml",
"check": "turbo run check-types test format-and-lint:fix lint-repo check-broken-links"
},
"devDependencies": {
"@biomejs/biome": "^2.3.14",
"@tolgee/cli": "^2.15.1",
"husky": "^9.1.7",
"sherif": "^1.10.0",
"turbo": "^2.8.7",
"typescript": "^5.9.3",
"rimraf": "^6.1.2",
"@effect/language-service": "^0.65.0",
"effect-solutions": "^0.4.13"
},
"packageManager": "bun@1.3.9",
"engines": {
"node": "22.x"
},
"trustedDependencies": [
"@biomejs/biome",
"@prisma/client",
"@prisma/engines",
"@sentry/cli",
"@swc/core",
"core-js",
"esbuild",
"isolated-vm",
"prisma",
"sharp",
"inngest-cli"
]
}