Files
elegalsoftware/apps/api/package.json
T

50 lines
1.3 KiB
JSON
Raw Normal View History

2026-04-26 02:42:42 -04:00
{
"name": "@lawdesk/api",
"version": "0.1.0",
"private": true,
"type": "module",
"main": "./src/server.ts",
"scripts": {
"dev": "tsx watch src/server.ts",
"build": "tsc -p tsconfig.json --noEmit",
"start": "tsx src/server.ts",
"test": "vitest run",
"test:watch": "vitest",
"test:e2e": "vitest run -c vitest.e2e.config.ts",
2026-04-26 02:42:42 -04:00
"typecheck": "tsc -p tsconfig.json --noEmit"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.111.0",
"@aws-sdk/client-s3": "^3.1088.0",
"@aws-sdk/s3-request-presigner": "^3.1088.0",
2026-04-26 02:42:42 -04:00
"@fastify/cookie": "^11.0.1",
"@fastify/cors": "^10.0.1",
"@fastify/helmet": "^12.0.1",
"@fastify/multipart": "^9.0.1",
"@fastify/rate-limit": "^10.2.1",
"@fastify/static": "^8.0.3",
2026-04-26 03:32:17 -04:00
"@lawdesk/db": "*",
2026-04-26 02:42:42 -04:00
"@sentry/node": "^8.45.0",
"argon2": "^0.41.1",
"dotenv": "^16.4.5",
"drizzle-orm": "^0.45.2",
2026-04-26 02:42:42 -04:00
"fastify": "^5.1.0",
"fastify-plugin": "^5.0.1",
"fastify-type-provider-zod": "^4.0.2",
"pdfkit": "^0.15.0",
"pg": "^8.13.1",
2026-04-26 02:42:42 -04:00
"pino": "^9.5.0",
"stripe": "^17.4.0",
"tsx": "^4.19.2",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/node": "^22.9.1",
"@types/pdfkit": "^0.13.5",
"@types/pg": "^8.11.10",
"pino-pretty": "^11.3.0",
"typescript": "^5.6.3",
"vitest": "^3.2.7"
2026-04-26 02:42:42 -04:00
}
}