-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 3.42 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 3.42 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
{
"name": "taskrun",
"version": "0.0.1",
"description": "AI Task Orchestration Platform",
"author": "Filipe Labs LTDA",
"private": true,
"license": "Apache-2.0",
"scripts": {
"build": "nest build && cd credential-proxy && npm run build",
"heroku-postbuild": "npx prisma migrate deploy && nest build && cd packages/sdk && NPM_CONFIG_PRODUCTION=false npm install && npm run build && cd ../../credential-proxy && NPM_CONFIG_PRODUCTION=false npm install && npm run build && cd ../web && NPM_CONFIG_PRODUCTION=false npm install && npm run build",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"start": "node dist/main",
"start:dev": "nest start --watch",
"start:debug": "nest start --debug --watch",
"start:prod": "node dist/main",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
"test": "node --experimental-vm-modules node_modules/.bin/jest --config=./jest.config.mjs",
"test:watch": "node --experimental-vm-modules node_modules/.bin/jest --config=./jest.config.mjs --watch",
"test:cov": "node --experimental-vm-modules node_modules/.bin/jest --config=./jest.config.mjs --coverage",
"test:debug": "node --inspect-brk --experimental-vm-modules -r tsconfig-paths/register -r ts-node/register node_modules/.bin/jest --config=./jest.config.mjs --runInBand",
"test:e2e": "jest --config ./test/jest-e2e.json",
"test:gemini:mcp": "ts-node --transpile-only scripts/check-gemini-mcp.ts",
"generate": "npx aiyard generate",
"generate:build": "npm run generate && cd packages/sdk && npm install && npm run build && cd ../cli && npm install && npm run build"
},
"dependencies": {
"@anthropic-ai/claude-agent-sdk": "^0.1.15",
"@google/gemini-cli-core": "^0.9.0",
"@google/genai": "^1.25.0",
"@google/generative-ai": "^0.24.1",
"@modelcontextprotocol/sdk": "^1.20.2",
"@nestjs/bullmq": "^11.0.4",
"@nestjs/common": "^11.0.1",
"@nestjs/config": "^4.0.2",
"@nestjs/core": "^11.0.1",
"@nestjs/event-emitter": "^3.0.1",
"@nestjs/platform-express": "^11.0.1",
"@nestjs/schedule": "^6.0.1",
"@nestjs/serve-static": "^5.0.4",
"@prisma/client": "^6.17.1",
"@sentry/nestjs": "^10.19.0",
"aiyard": "^0.3.9",
"bullmq": "^5.61.0",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.2",
"cron-parser": "^5.4.0",
"ioredis": "^5.8.1",
"json-logic-js": "^2.0.5",
"jsonwebtoken": "^9.0.2",
"multer": "^2.0.2",
"prisma": "^6.17.1",
"reflect-metadata": "^0.2.2",
"rxjs": "^7.8.1",
"uuid": "^13.0.0"
},
"devDependencies": {
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.18.0",
"@nestjs/cli": "^11.0.0",
"@nestjs/schematics": "^11.0.0",
"@nestjs/testing": "^11.0.1",
"@types/express": "^5.0.0",
"@types/jest": "^30.0.0",
"@types/json-logic-js": "^2.0.8",
"@types/jsonwebtoken": "^9.0.10",
"@types/multer": "^2.0.0",
"@types/node": "^22.18.10",
"@types/supertest": "^6.0.2",
"@types/uuid": "^10.0.0",
"eslint": "^9.18.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-prettier": "^5.2.2",
"globals": "^16.0.0",
"jest": "^30.0.0",
"prettier": "^3.4.2",
"source-map-support": "^0.5.21",
"supertest": "^7.0.0",
"ts-jest": "^29.2.5",
"ts-loader": "^9.5.2",
"ts-morph": "^27.0.2",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.7.3",
"typescript-eslint": "^8.20.0"
}
}