forked from crbnos/carbon
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·112 lines (112 loc) · 4.33 KB
/
package.json
File metadata and controls
executable file
·112 lines (112 loc) · 4.33 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
{
"name": "carbon",
"devDependencies": {
"@biomejs/biome": "2.3.8",
"@lingui/cli": "^5.9.4",
"@react-router/dev": "7.12.0",
"@types/aws-lambda": "8.10.152",
"@typescript/native-preview": "^7.0.0-dev.20260330.1",
"csv-parse": "^5.5.0",
"husky": "^8.0.3",
"lint-staged": "^16.4.0",
"npm-run-all": "^4.1.5",
"patch-package": "^8.0.1",
"postcss-nesting": "12.1.5",
"prettier": "^2.8.0",
"rimraf": "^5.0.5",
"supabase": "^2.84.5",
"ts-morph": "^22.0.0",
"tsx": "^4.13.2",
"turbo": "^2.6.3",
"typescript": "5.8",
"vite-plugin-babel-macros": "^1.0.6"
},
"lint-staged": {
"(apps|packages)/**/*.{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:app": "turbo run build --filter=!www",
"build:packages": "turbo run build --filter=./packages/*",
"ci:migrations": "npm run -w ci ci:migrations",
"ci:deploy": "npm run -w ci ci:deploy",
"clean": "turbo run clean && rimraf ./node_modules && rimraf ./package-lock.json",
"db:build": "run-s db:kill db:start setup",
"db:function:new": "npm run db:function:new -w @carbon/database",
"db:kill": "npm run db:kill -w @carbon/database",
"db:kill:redis": "npm run db:kill -w @carbon/kv",
"db:migrate": "npm run db:migrate -w @carbon/database",
"db:migrate:force": "turbo run db:migrate:force --no-cache",
"db:migrate:new": "npm run db:migrate:new -w @carbon/database",
"db:pull": "turbo run db:pull",
"db:push": "turbo run db:push",
"db:restart": "run-s db:stop db:start",
"db:seed": "turbo run db:seed --no-cache",
"db:seed:dev": "npm run db:seed:dev -w @carbon/database --",
"db:start": "npm run db:start -w @carbon/database",
"db:start:redis": "npm run db:start -w @carbon/kv",
"db:stop": "npm run db:stop -w @carbon/database",
"db:types": "npm run db:types -w @carbon/database",
"deploy": "turbo run deploy",
"dev": "run-p dev:docker dev:jobs dev:jobs-wait",
"dev:docker": "docker-compose up -d redis",
"dev:jobs-wait": "npx wait-on tcp:8288 && run-p dev:erp dev:stripe",
"dev:academy": "turbo run dev --filter=./apps/academy --filter=./packages/",
"dev:erp": "turbo run dev --filter=./apps/erp --filter=./packages/ ",
"dev:jobs": "npm run -w @carbon/jobs dev:jobs",
"dev:mes": "turbo run dev --filter=./apps/mes",
"dev:packages": "turbo run dev --filter=./packages/*",
"dev:starter": "turbo run dev --filter=./apps/starter --filter=./packages/",
"dev:stripe": "npm run -w @carbon/stripe dev:stripe",
"format": "biome format --write",
"generate:mcp": "tsx scripts/generate-mcp.ts",
"generate:swagger": "tsx scripts/generate-swagger-docs.ts && npx prettier --write ./packages/database/src/swagger-docs-schema.ts ",
"generate:types": "tsx scripts/generate-db-types.ts",
"lint": "turbo run lint",
"lingui:check": "npm run lingui:extract && npm run lingui:compile",
"lingui:compile": "lingui compile --namespace es",
"lingui:extract": "lingui extract --clean",
"novu:sync": "npx novu@latest sync --bridge-url https://app.carbon.ms/api/novu --secret-key $NOVU_SECRET_KEY --api-url https://api.novu.co",
"postdb:build": "run-s generate:types generate:swagger",
"postinstall": "patch-package",
"predb:build": "tsx scripts/setup-env-files.ts",
"prepare": "npx husky install",
"setup": "turbo run setup",
"test": "turbo run test",
"tool:new": "tsx scripts/create-tool.ts",
"translate": "npx linguito translate --llm",
"agent:new": "tsx scripts/create-agent.ts",
"types": "turbo run types",
"typecheck": "turbo run typecheck --filter='*'",
"typegen": "turbo run typegen"
},
"workspaces": [
"apps/*",
"ci",
"examples/*",
"packages/*"
],
"packageManager": "npm@10.8.2",
"dependencies": {
"@opentelemetry/semantic-conventions": "^1.38.0",
"@react-router/remix-routes-option-adapter": "7.12.0",
"cookie": "1.1.1",
"dompurify": "3.3.3",
"fast-uri": "^3.1.0",
"fdir": "^6.5.0",
"nanoid": "5.1.7",
"react-pdf": "10.4.1",
"remix-flat-routes": "^0.8.5",
"sst": "^4.6.9",
"tsup": "8.5.1"
},
"optionalDependencies": {
"@rollup/rollup-linux-x64-gnu": "^4.0.0"
}
}