- Added workflow job actor to manage job application workflows. - Implemented agent catalog for various workflow agents. - Created service agents for interview, roleplay, and Q-Score functionalities. - Enhanced user authentication to automatically create users if they do not exist. - Updated configuration to support new LLM provider and API keys. - Introduced new routes for agent and workflow management. - Refactored Docker management to improve Gitea admin user creation and token generation. - Removed deprecated Anthropics SDK integration.
38 lines
977 B
JSON
38 lines
977 B
JSON
{
|
|
"name": "growqr-backend",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "tsx watch src/index.ts",
|
|
"build": "tsc -p tsconfig.json",
|
|
"start": "node dist/index.js",
|
|
"typecheck": "tsc -p tsconfig.json --noEmit",
|
|
"db:generate": "drizzle-kit generate",
|
|
"db:migrate": "tsx src/db/migrate.ts",
|
|
"db:studio": "drizzle-kit studio",
|
|
"compose:up": "docker compose up -d",
|
|
"compose:down": "docker compose down"
|
|
},
|
|
"dependencies": {
|
|
"@clerk/backend": "^1.21.0",
|
|
"@hono/node-server": "^1.13.7",
|
|
"dockerode": "^4.0.7",
|
|
"dotenv": "^16.4.7",
|
|
"drizzle-orm": "^0.36.4",
|
|
"hono": "^4.6.14",
|
|
"pino": "^9.5.0",
|
|
"pino-pretty": "^13.0.0",
|
|
"postgres": "^3.4.5",
|
|
"rivetkit": "^2.2.1",
|
|
"zod": "^3.24.1"
|
|
},
|
|
"devDependencies": {
|
|
"@types/dockerode": "^3.3.32",
|
|
"@types/node": "^22.10.5",
|
|
"drizzle-kit": "^0.31.2",
|
|
"tsx": "^4.19.2",
|
|
"typescript": "^5.7.2"
|
|
}
|
|
}
|