Files
the_order/services/legal-documents/package.json
defiQUG 6a8582e54d feat: comprehensive project structure improvements and Cloud for Sovereignty landing zone
- Add Cloud for Sovereignty landing zone architecture and deployment
- Implement complete legal document management system
- Reorganize documentation with improved navigation
- Add infrastructure improvements (Dockerfiles, K8s, monitoring)
- Add operational improvements (graceful shutdown, rate limiting, caching)
- Create comprehensive project structure documentation
- Add Azure deployment automation scripts
- Improve repository navigation and organization
2025-11-13 09:32:55 -08:00

33 lines
844 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"
},
"devDependencies": {
"@types/node": "^20.10.0",
"tsx": "^4.7.0",
"typescript": "^5.3.3",
"vitest": "^1.1.0"
}
}