Files
the_order/services/legal-documents/package.json
2026-03-02 12:14:10 -08:00

36 lines
917 B
JSON

{
"name": "@the-order/legal-documents",
"version": "0.1.0",
"description": "Legal document management service for law firms and courts",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"dev": "tsx watch src/index.ts",
"build": "tsc",
"start": "node dist/index.js",
"test": "vitest",
"lint": "eslint src --ext .ts",
"type-check": "tsc --noEmit"
},
"dependencies": {
"@the-order/database": "workspace:*",
"@the-order/shared": "workspace:*",
"@the-order/schemas": "workspace:*",
"@the-order/storage": "workspace:*",
"fastify": "^4.24.3",
"@fastify/swagger": "^8.12.0",
"@fastify/swagger-ui": "^1.9.3",
"zod": "^3.22.4",
"pdfkit": "^0.15.0",
"docx": "^8.5.0",
"pdf-lib": "^1.17.1"
},
"devDependencies": {
"@types/node": "^20.10.0",
"tsx": "^4.7.0",
"typescript": "^5.3.3",
"vitest": "^1.1.0"
}
}