Integrate Anthropic AI for agent capabilities, introduce database schemas for jobs and invoices, and set up LNbits for payment processing. Replit-Commit-Author: Agent Replit-Commit-Session-Id: 418bf6f8-212b-4bb0-a7a5-8231a061da4e Replit-Commit-Checkpoint-Type: full_checkpoint Replit-Commit-Event-Id: cce28acc-aeac-46ff-80ec-af4ade39e30f Replit-Helium-Checkpoint-Created: true
29 lines
722 B
JSON
29 lines
722 B
JSON
{
|
|
"name": "@workspace/api-server",
|
|
"version": "0.0.0",
|
|
"private": true,
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "NODE_ENV=development tsx ./src/index.ts",
|
|
"build": "tsx ./build.ts",
|
|
"typecheck": "tsc -p tsconfig.json --noEmit"
|
|
},
|
|
"dependencies": {
|
|
"@workspace/db": "workspace:*",
|
|
"@workspace/api-zod": "workspace:*",
|
|
"@workspace/integrations-anthropic-ai": "workspace:*",
|
|
"drizzle-orm": "catalog:",
|
|
"express": "^5",
|
|
"cookie-parser": "^1.4.7",
|
|
"cors": "^2"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "catalog:",
|
|
"@types/express": "^5.0.6",
|
|
"@types/cors": "^2.8.19",
|
|
"@types/cookie-parser": "^1.4.10",
|
|
"esbuild": "^0.27.3",
|
|
"tsx": "catalog:"
|
|
}
|
|
}
|