-
Notifications
You must be signed in to change notification settings - Fork 339
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·121 lines (121 loc) · 4.39 KB
/
Copy pathpackage.json
File metadata and controls
executable file
·121 lines (121 loc) · 4.39 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"name": "carbon",
"devDependencies": {
"@biomejs/biome": "2.3.8",
"@lingui/cli": "catalog:",
"@react-router/dev": "catalog:",
"@types/aws-lambda": "8.10.152",
"@types/node": "catalog:",
"@typescript/native-preview": "catalog:",
"cli-table3": "^0.6.5",
"csv-parse": "5.6.0",
"execa": "^8.0.1",
"husky": "8.0.3",
"linguito": "^0.5.2",
"lint-staged": "16.4.0",
"npm-run-all": "catalog:",
"rimraf": "catalog:",
"supabase": "catalog:",
"ts-morph": "22.0.0",
"tsx": "catalog:",
"turbo": "2.9.6",
"typescript": "catalog:",
"vite-plugin-babel-macros": "catalog:"
},
"lint-staged": {
"(apps|packages|docs)/**/*.{js,ts,jsx,tsx}": [
"biome check --write --no-errors-on-unmatched"
],
"*.json": [
"biome check --write --no-errors-on-unmatched"
]
},
"private": true,
"scripts": {
"build": "turbo run build",
"build:erp": "turbo run build --filter=erp",
"build:mes": "turbo run build --filter=mes",
"build:docs": "turbo run build --filter=docs",
"check:workflow-catalog": "tsx scripts/check-workflow-catalog.ts",
"ci:migrations": "pnpm --filter ci ci:migrations",
"ci:deploy": "pnpm --filter ci ci:deploy",
"clean": "turbo run clean && rimraf ./node_modules && rimraf ./pnpm-lock.yaml",
"db:check:datasets": "pnpm --filter @carbon/database db:check:datasets --",
"db:function:new": "pnpm --filter @carbon/database db:function:new",
"db:migrate": "crbn migrate",
"db:migrate:new": "pnpm --filter @carbon/database db:migrate:new",
"db:seed": "turbo run db:seed --no-cache",
"db:seed:dev": "pnpm --filter @carbon/database db:seed:dev --",
"db:types": "tsx scripts/generate-db-types.ts",
"deploy": "turbo run deploy",
"dev": "crbn up --no-portless",
"dev:academy": "turbo run dev --filter=./apps/academy --filter=./packages/",
"dev:packages": "turbo run dev --filter=./packages/*",
"dev:starter": "turbo run dev --filter=./apps/starter --filter=./packages/",
"format": "biome format --write",
"generate:agent-kb": "tsx scripts/generate-agent-kb.ts",
"generate:mcp": "tsx scripts/generate-mcp.ts",
"generate:swagger": "tsx scripts/generate-swagger-docs.ts && pnpm exec biome format ./packages/database/src/swagger-docs-schema.ts --write --files-max-size=20000000",
"generate:types": "tsx scripts/generate-db-types.ts",
"generate:workflow-catalog": "tsx scripts/generate-workflow-catalog.ts && pnpm exec biome check --write packages/workflows/src/catalog/",
"lint": "turbo run lint",
"lingui:check": "pnpm run lingui:extract && pnpm run lingui:compile",
"lingui:compile": "lingui compile --namespace es",
"lingui:extract": "lingui extract --clean",
"lingui:clean": "node ./scripts/strip-po-headers.mjs",
"postinstall": "pnpm --filter @carbon/documents build",
"install-skills": "bash .ai/scripts/install-skills.sh",
"prepare": "pnpm exec husky install; if [ -f .ai/scripts/install-skills.sh ]; then bash .ai/scripts/install-skills.sh; fi",
"test": "turbo run test",
"translate": "pnpm run lingui:extract && pnpm exec linguito translate --llm && pnpm lingui:clean",
"typecheck": "turbo run typecheck --filter='*'",
"typegen": "turbo run typegen"
},
"workspaces": [
"apps/*",
"ci",
"docs",
"contrib/building/examples/*",
"packages/*"
],
"packageManager": "pnpm@10.33.4",
"dependencies": {
"@opentelemetry/semantic-conventions": "1.40.0",
"@react-router/remix-routes-option-adapter": "catalog:",
"cookie": "catalog:",
"dompurify": "catalog:",
"fast-uri": "3.1.0",
"fdir": "6.5.0",
"nanoid": "catalog:",
"react-pdf": "catalog:",
"remix-flat-routes": "catalog:",
"sst": "catalog:",
"tsup": "catalog:"
},
"optionalDependencies": {
"@rollup/rollup-linux-x64-gnu": "4.60.1"
},
"crbn": {
"copy": [
".env"
]
},
"pnpm": {
"onlyBuiltDependencies": [
"@biomejs/biome",
"@swc/core",
"@tailwindcss/oxide",
"core-js",
"esbuild",
"protobufjs",
"sharp",
"supabase"
],
"patchedDependencies": {
"@ai-sdk-tools/store@1.2.0": "patches/@ai-sdk-tools__store@1.2.0.patch",
"@react-router/dev@7.15.1": "patches/@react-router__dev@7.15.1.patch",
"@vercel/react-router@1.2.6": "patches/@vercel__react-router@1.2.6.patch",
"supabase@2.89.0": "patches/supabase@2.89.0.patch"
}
}
}