-
Notifications
You must be signed in to change notification settings - Fork 138
Expand file tree
/
Copy pathpackage.json
More file actions
428 lines (428 loc) · 28.2 KB
/
Copy pathpackage.json
File metadata and controls
428 lines (428 loc) · 28.2 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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
{
"name": "kodus-orchestrator",
"version": "2.1.8",
"description": "",
"author": "",
"license": "UNLICENSED",
"packageManager": "pnpm@11.9.0",
"scripts": {
"preinstall": "node -e \"const ua = process.env.npm_config_user_agent || ''; if (!ua.startsWith('pnpm')) { console.error('\\nEste repo migrou para pnpm. Use: pnpm install\\n'); process.exit(1); }\"",
"analyze-pr": "ts-node scripts/analyze-pr-performance.cli.ts",
"check-pr-errors": "ts-node scripts/check-pr-errors.cli.ts",
"pr-report": "ts-node scripts/pr-performance-report.cli.ts",
"featured-review:promote": "ts-node scripts/featured-review-promote.ts",
"featured-review:seed": "ts-node scripts/featured-review-seed.ts",
"setup": "./scripts/dev/setup.sh",
"env:doctor": "./scripts/dev/env-doctor.sh --scope full",
"env:doctor:backend": "./scripts/dev/env-doctor.sh --scope backend",
"env:doctor:web": "./scripts/dev/env-doctor.sh --scope web",
"env:generate": "ts-node scripts/env/generate.ts",
"env:apply": "ts-node scripts/env/generate.ts --apply",
"env:pull": "./scripts/env/pull.sh",
"env:pull:check": "./scripts/env/pull.sh --check",
"env:reconcile": "ts-node scripts/env/reconcile.ts",
"env:check": "ts-node scripts/env/check-drift.ts && ts-node scripts/env/check-coverage.ts",
"env:check:drift": "ts-node scripts/env/check-drift.ts",
"env:check:coverage": "ts-node scripts/env/check-coverage.ts",
"env:audit": "ts-node scripts/env/build-slim-csv.ts",
"feature-gate:snapshot": "ts-node scripts/feature-gate/generate-snapshot.ts",
"feature-gate:snapshot:check": "ts-node scripts/feature-gate/generate-snapshot.ts --check",
"feature-gate:changelog": "ts-node scripts/feature-gate/publish-changelog.ts",
"feature-gate:changelog:dry": "ts-node scripts/feature-gate/publish-changelog.ts --dry-run",
"feature-gate:set-track": "ts-node scripts/feature-gate/set-release-track.ts",
"feature-gate:check": "ts-node scripts/feature-gate/check-gate.ts",
"docs:dev": "cd docs && mintlify dev",
"docs:install": "cd docs && mintlify install",
"docs:check": "cd docs && mintlify broken-links",
"dev:health-check": "./scripts/docker/health-check.sh",
"dev:first-run": "pnpm run setup",
"dev:stop": "pnpm run docker:down",
"dev:restart": "pnpm run docker:down && pnpm run docker:start",
"dev:logs": "pnpm run docker:logs",
"dev:clean": "pnpm run docker:down && docker system prune -f && pnpm run docker:start",
"dev:clean:cache": "rm -rf node_modules/.cache dist .next .cache",
"dev:clean:full": "pnpm run dev:clean:cache && pnpm run docker:down && docker system prune -af && pnpm run docker:start",
"selfhosted:setup": "scripts/selfhosted/setup.sh",
"selfhosted:provision": "scripts/selfhosted/provision.sh",
"selfhosted:deploy": "scripts/selfhosted/deploy.sh",
"selfhosted:deploy-all": "scripts/selfhosted/deploy-all.sh",
"selfhosted:destroy": "scripts/selfhosted/destroy.sh",
"selfhosted:destroy-all": "scripts/selfhosted/destroy-all.sh",
"selfhosted:reap": "scripts/selfhosted/reap.sh",
"selfhosted:status": "scripts/selfhosted/status.sh",
"selfhosted:ssh": "scripts/selfhosted/ssh.sh",
"selfhosted:logs": "scripts/selfhosted/logs.sh",
"selfhosted:clean": "scripts/selfhosted/clean.sh",
"selfhosted:diag": "scripts/selfhosted/diag.sh",
"selfhosted:dns-setup": "scripts/selfhosted/dns-setup.sh",
"selfhosted:dns-setup-named": "scripts/selfhosted/dns-setup-named.sh",
"sso-e2e:droplet:provision": "scripts/sso-e2e/droplet/provision.sh",
"sso-e2e:droplet:run": "scripts/sso-e2e/droplet/run.sh",
"sso-e2e:droplet:multi-user": "scripts/sso-e2e/droplet/run-multi-user.sh",
"sso-e2e:droplet:destroy": "scripts/sso-e2e/droplet/destroy.sh",
"e2e:dry-run": "scripts/e2e/run.sh dry-run",
"e2e:smoke": "scripts/e2e/run.sh smoke",
"e2e:matrix": "scripts/e2e/run.sh matrix",
"cloud:setup-tenants": "scripts/e2e/cloud-setup-tenants.sh",
"cloud:stripe": "node tests/e2e/playwright/stripe-billing.mjs",
"build": "nest build",
"build:production": "nest build",
"build:fast": "NODE_OPTIONS='--max-old-space-size=8192' nest build --webpack",
"build:incremental": "tsc --build --incremental",
"build:webhooks": "nest build webhooks",
"build:api": "nest build api",
"build:worker": "nest build worker",
"build:mcp-manager": "nest build mcp-manager",
"build:apps": "nest build webhooks & nest build api & nest build worker & nest build analytics-cli & nest build ast-cli & nest build mcp-manager & wait",
"build:analytics-cli": "nest build analytics-cli",
"build:ast-cli": "nest build ast-cli",
"build:migrations": "tsc -p tsconfig.migrations.json && tsc-alias -p tsconfig.migrations.json",
"format": "pnpm run format:server && pnpm run format:web",
"format:server": "prettier --write \"{apps/api,apps/worker,apps/webhooks,libs,core,shared,test}/**/*.ts\"",
"format:web": "cd apps/web && pnpm format",
"lint": "eslint \"{apps,libs,core,shared,test}/**/*.ts\" --fix --cache",
"start": "nest start --debug 0.0.0.0:9229",
"start:dev:all": "npx concurrently -n \"API,WH,WK\" -c \"cyan,magenta,yellow\" \"pnpm run start:dev:api\" \"pnpm run start:dev:webhooks\" \"pnpm run start:dev:worker\"",
"start:dev:api": "nest build api --watch",
"start:dev:webhooks": "nest build webhooks --watch",
"start:dev:worker": "cross-env NODE_OPTIONS='--max-old-space-size=2048' nest build worker --watch",
"start:infra": "pnpm run docker:up:infra",
"start:debug": "nest start --debug --watch",
"start:prod": "node dist/main",
"start:prod:api": "node dist/apps/api/main.js",
"start:prod:worker": "node dist/apps/worker/main.js",
"start:prod:mcp-manager": "node dist/apps/mcp-manager/main.js",
"start:dev:mcp-manager": "cross-env NEST_CLI_START=true nest start mcp-manager --watch --debug 0.0.0.0:9230",
"start:prod:webhooks": "node dist/apps/webhooks/main.js",
"start:local:webhooks": "cd apps/webhooks && node dist/main.js",
"start:local:api": "cd apps/api && node dist/main.js",
"start:local:worker": "cd apps/worker && node dist/main.js",
"test": "API_NODE_ENV=test NODE_OPTIONS=--max-old-space-size=4096 jest --forceExit --runInBand --detectOpenHandles --config jest.config.ts",
"test:rbac": "API_NODE_ENV=test NODE_OPTIONS=--max-old-space-size=4096 jest --config jest.config.ts --no-coverage --testPathPatterns=\"permissionsAbility|role-policies|route-coverage|endpoint-authorization|authorization\"",
"permissions:matrix": "ts-node scripts/permissions/generate-matrix.ts",
"permissions:matrix:check": "ts-node scripts/permissions/generate-matrix.ts --check",
"test:dev": "cross-env API_NODE_ENV=development jest --detectOpenHandles",
"test:watch": "jest --watch",
"test:cov": "jest --coverage",
"test:debug": "TS_NODE_PROJECT=tsconfig.json node --inspect-brk -r tsconfig-paths/register -r ts-node/register node_modules/.bin/jest --runInBand",
"test:e2e": "jest --config ./test/jest-e2e.json",
"test:commit": "pnpm run docker:start -d && pnpm run test && pnpm run docker:down",
"eval:kody-rules": "node evals/kody-rules/real-agent.js --dataset=github-cases",
"eval:kody-rules:gate": "node evals/kody-rules/real-agent.js --dataset=github-cases --gate",
"eval:kody-rules:bench": "node evals/kody-rules/build-bench-cases.js && node evals/kody-rules/real-agent.js --dataset=bench-cases",
"eval:kody-rules:harvest": "node evals/kody-rules/harvest-github-cases.js",
"eval:kody-rules:atoms": "node evals/kody-rules/run-full-pipeline.js --dataset=rails-convention-cases-all --only=digest --atoms --model=gpt-5.4-mini",
"eval:anchoring": "node evals/anchoring/anchor-eval.js --limit=25",
"eval:anchoring:gate": "node evals/anchoring/anchor-eval.js --limit=25 --gate",
"eval:pr-summary": "node evals/pr-summary/run.js --model=gpt-5.4-mini --gate",
"eval:pr-summary:mock": "node evals/pr-summary/run.js --mock --gate",
"eval:suite": "node evals/run-suite.js",
"eval:engine:preflight": "node evals/engine-gate.js --profile=harness",
"eval:engine:local": "node evals/engine-gate.js --profile=local",
"eval:engine:branch": "node evals/engine-gate.js --profile=branch",
"eval:engine:ci": "node evals/engine-gate.js --profile=ci",
"eval:finder:recall": "node evals/investigation/run-recall.js --set=pr",
"eval:finder:recall:smoke": "node evals/investigation/run-recall.js --set=smoke",
"eval:finder:recall:pr": "node evals/investigation/run-recall.js --set=pr",
"eval:finder:recall:all": "node evals/investigation/run-recall.js --all",
"eval:investigation": "node evals/investigation/run-eval.js",
"eval:investigation:all": "node evals/investigation/run-eval.js --all",
"eval:investigation:no-cache": "node evals/investigation/run-eval.js --no-cache",
"eval:investigation:all:no-cache": "node evals/investigation/run-eval.js --all --no-cache",
"eval:investigation:extract": "node evals/investigation/extract-benchmark-case.js",
"eval:investigation:candidates": "node evals/investigation/select-benchmark-cases.js",
"eval:investigation:extract:candidates": "node evals/investigation/extract-benchmark-candidates.js",
"eval:trace-context": "node evals/investigation/run-eval.js --dataset trace-context-ab.json --no-cache",
"eval:promotion": "node evals/promotion/run-eval.js",
"eval:promotion:all": "node evals/promotion/run-eval.js --all",
"eval:promotion:no-cache": "node evals/promotion/run-eval.js --no-cache",
"eval:promotion:all:no-cache": "node evals/promotion/run-eval.js --all --no-cache",
"eval:promotion:extract": "node evals/promotion/extract-benchmark-verification-case.js",
"eval:dedup": "node evals/dedup/run.js --model=gpt-5.4-mini --guard=content --contentthresh=0.3",
"eval:dedup:gate": "node evals/dedup/run.js --model=gpt-5.4-mini --guard=content --contentthresh=0.3 --gate",
"eval:dedup:mock": "node evals/dedup/run.js --mock=identity",
"repro:structured-outputs": "ts-node -r tsconfig-paths/register evals/structured-outputs/repro.ts",
"typeorm": "TS_NODE_PROJECT=tsconfig.json ts-node -r tsconfig-paths/register ./node_modules/typeorm/cli",
"migration:generate": "f() { API_PG_DB_HOST=localhost pnpm run typeorm migration:generate -p -d libs/core/infrastructure/database/typeorm/ormconfig.ts \"libs/core/infrastructure/database/typeorm/migrations/$@\"; }; f",
"migration:run": "API_PG_DB_HOST=localhost pnpm run typeorm migration:run -d libs/core/infrastructure/database/typeorm/ormconfig.ts",
"migration:revert": "API_PG_DB_HOST=localhost pnpm run typeorm migration:revert -d libs/core/infrastructure/database/typeorm/ormconfig.ts",
"migration:run:internal": "pnpm run typeorm migration:run -d libs/core/infrastructure/database/typeorm/ormconfig.ts",
"migration:revert:internal": "pnpm run typeorm migration:revert -d libs/core/infrastructure/database/typeorm/ormconfig.ts",
"migration:run:prod": "node -r ./tsconfig-paths-bootstrap.js ./node_modules/typeorm/cli.js migration:run -d dist/libs/core/infrastructure/database/typeorm/ormconfig.js",
"migration:revert:prod": "node -r ./tsconfig-paths-bootstrap.js ./node_modules/typeorm/cli.js migration:revert -d dist/libs/core/infrastructure/database/typeorm/ormconfig.js",
"analytics:migration:generate": "f() { API_PG_DB_HOST=localhost pnpm run typeorm migration:generate -p -d libs/ee/analytics-warehouse/infrastructure/ormconfig.ts \"libs/ee/analytics-warehouse/migrations/$@\"; }; f",
"analytics:migration:run": "API_PG_DB_HOST=localhost pnpm run typeorm migration:run -d libs/ee/analytics-warehouse/infrastructure/ormconfig.ts",
"analytics:migration:revert": "API_PG_DB_HOST=localhost pnpm run typeorm migration:revert -d libs/ee/analytics-warehouse/infrastructure/ormconfig.ts",
"analytics:ensure-schema": "TS_NODE_PROJECT=tsconfig.json ts-node -r tsconfig-paths/register scripts/analytics/ensure-schema.cli.ts",
"analytics:ensure-schema:prod": "node -r ./tsconfig-paths-bootstrap.js dist/scripts/analytics/ensure-schema.cli.js",
"mongo:migrate": "TS_NODE_PROJECT=tsconfig.json ts-node -r tsconfig-paths/register scripts/mongo-migrate.ts",
"mongo:migrate:prod": "node -r ./tsconfig-paths-bootstrap.js dist/scripts/mongo-migrate.js",
"analytics:migration:run:internal": "pnpm run typeorm migration:run -d libs/ee/analytics-warehouse/infrastructure/ormconfig.ts",
"analytics:migration:revert:internal": "pnpm run typeorm migration:revert -d libs/ee/analytics-warehouse/infrastructure/ormconfig.ts",
"analytics:migration:run:prod": "node -r ./tsconfig-paths-bootstrap.js ./node_modules/typeorm/cli.js migration:run -d dist/libs/ee/analytics-warehouse/infrastructure/ormconfig.js",
"mcp-manager:migration:generate": "f() { API_PG_DB_HOST=localhost pnpm run typeorm migration:generate -p -d apps/mcp-manager/src/config/typeorm.config.ts \"apps/mcp-manager/src/database/migrations/$@\"; }; f",
"mcp-manager:migration:run": "API_PG_DB_HOST=localhost pnpm run typeorm migration:run -d apps/mcp-manager/src/config/typeorm.config.ts",
"mcp-manager:migration:revert": "API_PG_DB_HOST=localhost pnpm run typeorm migration:revert -d apps/mcp-manager/src/config/typeorm.config.ts",
"mcp-manager:migration:run:internal": "pnpm run typeorm migration:run -d apps/mcp-manager/src/config/typeorm.config.ts",
"mcp-manager:migration:revert:internal": "pnpm run typeorm migration:revert -d apps/mcp-manager/src/config/typeorm.config.ts",
"mcp-manager:ensure-schema": "TS_NODE_PROJECT=tsconfig.json ts-node -r tsconfig-paths/register scripts/mcp-manager/ensure-schema.cli.ts",
"mcp-manager:ensure-schema:prod": "node -r ./tsconfig-paths-bootstrap.js dist/scripts/mcp-manager/ensure-schema.cli.js",
"mcp-manager:migration:run:prod": "node -r ./tsconfig-paths-bootstrap.js ./node_modules/typeorm/cli.js migration:run -d dist/apps/mcp-manager/src/config/typeorm.config.js",
"analytics:feedback-backfill": "TS_NODE_PROJECT=tsconfig.json ts-node -r tsconfig-paths/register scripts/analytics/feedback-backfill.cli.ts",
"analytics:backfill": "TS_NODE_PROJECT=tsconfig.json ts-node -r tsconfig-paths/register scripts/analytics/backfill.cli.ts",
"analytics:backfill:prod": "node dist/apps/analytics-cli/main.js",
"ast:backfill": "TS_NODE_PROJECT=tsconfig.json ts-node -r tsconfig-paths/register apps/ast-cli/src/main.ts",
"ast:backfill:prod": "node dist/apps/ast-cli/main.js",
"analytics:parity-check": "TS_NODE_PROJECT=tsconfig.json ts-node -r tsconfig-paths/register scripts/analytics/parity-check.ts",
"analytics:parity-vs-bq": "TS_NODE_PROJECT=tsconfig.json ts-node -r tsconfig-paths/register scripts/analytics/parity-vs-bq.ts",
"analytics:seed-test": "TS_NODE_PROJECT=tsconfig.json ts-node -r tsconfig-paths/register scripts/analytics/seed-test-data.cli.ts",
"analytics:clone-from-prod": "TS_NODE_PROJECT=tsconfig.json ts-node -r tsconfig-paths/register scripts/analytics/clone-org-from-prod.cli.ts",
"analytics:mint-dev-jwt": "TS_NODE_PROJECT=tsconfig.json ts-node -r tsconfig-paths/register scripts/analytics/mint-dev-jwt.cli.ts",
"analytics:test-suite": "bash scripts/analytics/test-suite.sh",
"docker:logs:analytics-worker": "docker compose -f docker-compose.dev.yml logs -f worker-analytics",
"seed": "API_PG_DB_HOST=localhost TS_NODE_PROJECT=tsconfig.json ts-node -r tsconfig-paths/register libs/core/infrastructure/database/typeorm/seed/seed.ts",
"seed:internal": "TS_NODE_PROJECT=tsconfig.json ts-node -r tsconfig-paths/register libs/core/infrastructure/database/typeorm/seed/seed.ts",
"seed:enriched-prs": "ts-node -r tsconfig-paths/register scripts/seed/seed-enriched-pull-requests.ts",
"seed:prod": "node -r ./tsconfig-paths-bootstrap.js dist/libs/core/infrastructure/database/typeorm/seed/seed.js",
"docker:build": "docker compose -f docker-compose.dev.yml build kodus-api && docker compose -f docker-compose.dev.yml build web && docker compose -f docker-compose.dev.yml build rabbitmq",
"docker:build:no-cache": "docker compose -f docker-compose.dev.yml build --no-cache kodus-api && docker compose -f docker-compose.dev.yml build --no-cache web && docker compose -f docker-compose.dev.yml build --no-cache rabbitmq",
"docker:build:clean": "pnpm run docker:clean && pnpm run docker:build",
"docker:build:webhooks": "docker compose -f docker-compose.dev.yml build webhooks",
"docker:build:api": "docker compose -f docker-compose.dev.yml build kodus-api",
"docker:build:worker": "docker compose -f docker-compose.dev.yml build worker",
"docker:build:mcp-manager": "docker compose -f docker-compose.dev.yml build mcp-manager",
"docker:up": "pnpm run docker:build && docker compose -f docker-compose.dev.yml --profile local-db up -d",
"docker:up:infra": "docker compose -f docker-compose.dev.yml --profile infra up -d",
"docker:up:watch": "docker compose -f docker-compose.dev.yml --profile local-db up --watch",
"docker:down": "docker compose -f docker-compose.dev.yml down",
"docker:start": "bash ./scripts/docker/docker-start-env.sh local up -d",
"docker:start:fg": "bash ./scripts/docker/docker-start-env.sh local up",
"docker:start:build": "bash ./scripts/docker/docker-start-env.sh local up -d --build",
"docker:start:fg:build": "bash ./scripts/docker/docker-start-env.sh local up --build",
"docker:start:full": "KODUS_DEV_EXTRAS=extras bash ./scripts/docker/docker-start-env.sh local up -d",
"docker:start:fg:full": "KODUS_DEV_EXTRAS=extras bash ./scripts/docker/docker-start-env.sh local up",
"docker:start:full:build": "KODUS_DEV_EXTRAS=extras bash ./scripts/docker/docker-start-env.sh local up -d --build",
"docker:start:profiling": "ENABLE_PROFILING=true bash ./scripts/docker/docker-start-env.sh local up -d",
"docker:watch": "pnpm run docker:down && pnpm run docker:up -d",
"docker:logs": "docker logs -f kodus_api kodus_worker kodus_webhooks",
"docker:logs:all": "docker compose -f docker-compose.dev.yml logs -f",
"docker:logs:api": "docker compose -f docker-compose.dev.yml logs -f kodus-api",
"docker:logs:worker": "docker compose -f docker-compose.dev.yml logs -f worker",
"docker:logs:webhooks": "docker compose -f docker-compose.dev.yml logs -f webhooks",
"docker:logs:mcp-manager": "docker compose -f docker-compose.dev.yml logs -f mcp-manager",
"docker:logs:rabbitmq": "docker compose -f docker-compose.dev.yml logs -f rabbitmq",
"docker:logs:pyroscope": "docker compose -f docker-compose.dev.yml logs -f pyroscope",
"docker:clean": "docker compose -f docker-compose.dev.yml down && docker volume rm kodus-ai_node_modules_cache || true",
"docker:start:webhooks": "docker compose -f docker-compose.dev.yml --profile local-db up webhooks db_postgres db_mongodb",
"docker:start:api": "docker compose -f docker-compose.dev.yml --profile local-db up kodus-api db_postgres db_mongodb",
"docker:start:worker": "docker compose -f docker-compose.dev.yml --profile local-db up worker db_postgres db_mongodb",
"docker:start:env": "bash ./scripts/docker/docker-start-env.sh",
"docker:prod:sim": "bash ./scripts/docker/simulate-prod.sh",
"sentry:sourcemaps": "sentry-cli sourcemaps inject --org kodus --project kodus-orchestrator ./dist && sentry-cli sourcemaps upload --org kodus --project kodus-orchestrator ./dist",
"typecheck": "node --max-old-space-size=8192 ./node_modules/.bin/tsc --noEmit --skipLibCheck",
"typecheck:libs-gate": "bash scripts/typecheck-libs-gate.sh",
"ci:validate-di-graph": "TS_NODE_PROJECT=tsconfig.json node -r ts-node/register/transpile-only -r tsconfig-paths/register scripts/ci/validate-di-graph.ts",
"prepare": "husky || true",
"tunnel": "node scripts/dev/tunnel.js",
"tunnel:start": "pnpm run tunnel",
"dev:with-tunnel": "pnpm run tunnel & pnpm run docker:start",
"dev:with-tunnel:watch": "pnpm run tunnel & pnpm run docker:start && pnpm run docker:logs",
"openapi:export": "ts-node -r tsconfig-paths/register scripts/openapi/export-openapi.ts",
"openapi:lint": "spectral lint docs-internal/openapi.json",
"openapi:lint:local": "spectral lint http://localhost:3001/openapi.json",
"openapi:postman": "scripts/openapi/generate-postman.sh",
"openapi:newman": "scripts/openapi/run-newman.sh",
"web:dev": "cd apps/web && pnpm start:dev",
"web:build": "cd apps/web && pnpm build",
"web:install": "cd apps/web && pnpm install",
"cli:dev": "cd apps/cli && pnpm dev",
"cli:build": "cd apps/cli && pnpm build",
"cli:install": "cd apps/cli && pnpm install",
"cli:start": "cd apps/cli && pnpm start",
"cli:start:local": "cd apps/cli && pnpm start:local",
"cli:start:qa": "cd apps/cli && pnpm start:qa",
"cli:test": "cd apps/cli && pnpm test",
"email:preview": "email dev --dir libs/common/email/templates --port 3737",
"email:export": "email export --dir libs/common/email/templates --outDir .react-email/out",
"email:test": "ts-node --transpile-only -r tsconfig-paths/register scripts/dev/test-emails.ts",
"telemetry:preview": "ts-node --transpile-only -r tsconfig-paths/register scripts/dev/telemetry-cli.ts",
"telemetry:send": "ts-node --transpile-only -r tsconfig-paths/register scripts/dev/telemetry-cli.ts --send",
"docker:start:web": "docker compose -f docker-compose.dev.yml up web",
"docker:start:all": "docker compose -f docker-compose.dev.yml up"
},
"dependencies": {
"@ai-sdk/amazon-bedrock": "^5.0.60",
"@ai-sdk/anthropic": "^4.0.40",
"@ai-sdk/azure": "^4.0.46",
"@ai-sdk/google": "^4.0.49",
"@ai-sdk/google-vertex": "^5.0.60",
"@ai-sdk/openai": "^4.0.45",
"@ai-sdk/openai-compatible": "^3.0.34",
"@casl/ability": "^7.0.1",
"@fastify/cors": "^11.3.0",
"@gitbeaker/rest": "^43.8.0",
"@golevelup/nestjs-rabbitmq": "^9.0.2",
"@google/generative-ai": "^0.24.1",
"@langfuse/client": "^5.10.1",
"@langfuse/core": "^5.10.1",
"@langfuse/otel": "^5.10.1",
"@langfuse/tracing": "^5.10.1",
"@langfuse/vercel-ai-sdk": "^5.10.1",
"@llamaduck/forgejo-ts": "15.0.7",
"@modelcontextprotocol/sdk": "^1.29.0",
"@morphllm/morphsdk": "^0.2.194",
"@nestjs/axios": "^4.0.1",
"@nestjs/cache-manager": "^3.1.3",
"@nestjs/common": "11.1.19",
"@nestjs/config": "^4.0.4",
"@nestjs/core": "11.1.19",
"@nestjs/event-emitter": "^3.1.0",
"@nestjs/jwt": "^11.0.2",
"@nestjs/mongoose": "^11.0.4",
"@nestjs/passport": "^11.0.5",
"@nestjs/platform-express": "11.1.27",
"@nestjs/platform-fastify": "11.1.27",
"@nestjs/schedule": "^6.1.3",
"@nestjs/swagger": "^11.4.5",
"@nestjs/terminus": "^11.1.1",
"@nestjs/typeorm": "^11.0.3",
"@node-saml/passport-saml": "^5.1.0",
"@octokit/auth-app": "^8.2.0",
"@octokit/auth-oauth-app": "^9.0.3",
"@octokit/plugin-enterprise-server": "^20.0.0",
"@octokit/rest": "^22.0.1",
"@opentelemetry/api": "^1.9.1",
"@opentelemetry/sdk-trace-node": "^2.10.0",
"@pyroscope/nodejs": "^0.4.13",
"@react-email/render": "^2.1.0",
"@sentry/nestjs": "^10.70.0",
"@sentry/node": "^10.70.0",
"@sentry/opentelemetry": "^10.70.0",
"@types/archiver": "^8.0.0",
"@types/nodemailer": "^8.0.1",
"ai": "^7.0.73",
"ajv": "^8.20.0",
"amqp-connection-manager": "^5.0.0",
"amqplib": "^2.0.1",
"archiver": "^8.0.0",
"axios": "^1.19.0",
"azure-devops-node-api": "^15.1.2",
"bcryptjs": "^3.0.3",
"bitbucket": "^2.12.0",
"body-parser": "^2.3.0",
"cache-manager": "^7.2.9",
"class-transformer": "^0.5.1",
"class-validator": "^0.15.1",
"compression": "^1.8.1",
"connection-string": "^5.0.0",
"cross-env": "^10.1.0",
"date-fns": "^4.4.0",
"diff": "^9.0.0",
"dotenv": "^17.4.2",
"e2b": "^2.45.0",
"exa-js": "^2.18.1",
"express-rate-limit": "^8.6.2",
"fast-xml-parser": "^5.11.0",
"helmet": "^8.3.0",
"http-status-codes": "^2.3.0",
"immer": "^11.1.18",
"joi": "^18.2.5",
"js-yaml": "^5.3.0",
"json5": "^2.2.3",
"keyv": "^5.6.0",
"ml-kmeans": "^6.0.0",
"moment": "^2.30.1",
"moment-timezone": "^0.6.3",
"mongodb": "^7.5.0",
"mongoose": "^9.9.3",
"mongoose-paginate": "^5.0.3",
"nanoid": "^6.0.1",
"nodemailer": "^9.0.5",
"octokit": "^5.0.5",
"openai": "^7.5.0",
"p-limit": "^7.3.1",
"passport": "^0.7.0",
"passport-jwt": "^4.0.1",
"passport-saml-metadata": "^5.0.0",
"pg": "^8.23.0",
"pgvector": "^0.3.0",
"picomatch": "^4.0.5",
"pino": "^10.3.1",
"pino-pretty": "^13.1.3",
"posthog-node": "^5.50.0",
"ramda": "^0.32.0",
"react": "^19.2.8",
"react-dom": "^19.2.8",
"react-email": "^6.9.2",
"reflect-metadata": "^0.2.2",
"resend": "^6.21.0",
"rxjs": "^7.8.2",
"smol-toml": "^1.8.0",
"source-map-support": "^0.5.21",
"tiktoken": "^1.0.22",
"tslib": "^2.8.1",
"typeorm": "^0.3.31",
"typeorm-extension": "^3.9.0",
"undici": "^8.10.0",
"uuid": "^14.0.2",
"volleyball": "^1.5.1",
"zod": "^4.4.3",
"zod-to-json-schema": "^3.25.2"
},
"devDependencies": {
"@anthropic-ai/sdk": "^0.120.0",
"@eslint/js": "^10.0.1",
"@nestjs/cli": "^11.0.24",
"@nestjs/schematics": "^11.1.0",
"@nestjs/testing": "^11.1.27",
"@octokit/types": "^17.0.0",
"@react-email/ui": "^6.9.2",
"@sentry/cli": "^3.6.2",
"@stoplight/spectral-cli": "^6.16.3",
"@swc/cli": "^0.8.1",
"@swc/core": "^1.16.1",
"@swc/jest": "^0.2.39",
"@testing-library/jest-dom": "^7.0.1",
"@testing-library/react": "^16.3.2",
"@types/amqplib": "^0.10.8",
"@types/express": "^5.0.6",
"@types/jest": "^30.0.0",
"@types/js-yaml": "^4.0.9",
"@types/node": "^26.2.0",
"@types/passport-jwt": "^4.0.1",
"@types/ramda": "^0.32.0",
"@types/react": "^19.2.18",
"@types/react-dom": "^19.2.4",
"@types/supertest": "^7.2.1",
"@typescript-eslint/eslint-plugin": "^8.67.0",
"@typescript-eslint/parser": "^8.67.0",
"esbuild": "^0.28.2",
"eslint": "^10.9.0",
"eslint-config-prettier": "^10.1.8",
"eslint-import-resolver-typescript": "^4.4.5",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-prettier": "^5.5.6",
"eslint-plugin-unused-imports": "^4.4.1",
"husky": "^9.1.7",
"jest": "^30.4.2",
"jest-environment-jsdom": "^30.4.1",
"localtunnel": "^2.0.2",
"nock": "^14.0.17",
"nodemon": "^3.1.14",
"prettier": "^3.9.6",
"run-script-webpack-plugin": "^0.2.3",
"supertest": "^7.2.2",
"swc-loader": "^0.2.7",
"tiny-invariant": "^1.3.3",
"ts-jest": "^29.4.12",
"ts-loader": "^9.6.2",
"ts-node": "^10.9.2",
"tsc-alias": "^1.9.2",
"tsconfig-paths": "^4.2.0",
"tsconfig-paths-webpack-plugin": "^4.2.0",
"typescript": "^6.0.3",
"typescript-eslint": "^8.67.0",
"webpack": "^5.109.2",
"webpack-node-externals": "^3.0.0"
}
}