2025-11-07 22:34:54 -08:00
|
|
|
{
|
|
|
|
|
"name": "@the-order/intake",
|
|
|
|
|
"version": "0.1.0",
|
|
|
|
|
"private": true,
|
|
|
|
|
"description": "Intake service: ingestion → OCR → classify → route",
|
|
|
|
|
"main": "./src/index.ts",
|
|
|
|
|
"scripts": {
|
|
|
|
|
"dev": "tsx watch src/index.ts",
|
|
|
|
|
"build": "tsc",
|
|
|
|
|
"start": "node dist/index.js",
|
|
|
|
|
"lint": "eslint src --ext .ts",
|
|
|
|
|
"type-check": "tsc --noEmit"
|
|
|
|
|
},
|
|
|
|
|
"dependencies": {
|
2025-11-10 19:43:02 -08:00
|
|
|
"@fastify/swagger": "^8.15.0",
|
|
|
|
|
"@fastify/swagger-ui": "^2.1.0",
|
|
|
|
|
"@the-order/ocr": "workspace:^",
|
2025-11-07 22:34:54 -08:00
|
|
|
"@the-order/schemas": "workspace:*",
|
2025-11-10 19:43:02 -08:00
|
|
|
"@the-order/shared": "workspace:*",
|
2025-11-07 22:34:54 -08:00
|
|
|
"@the-order/storage": "workspace:*",
|
2025-11-10 19:43:02 -08:00
|
|
|
"@the-order/workflows": "workspace:*",
|
|
|
|
|
"fastify": "^4.25.2"
|
2025-11-07 22:34:54 -08:00
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
|
|
|
|
"@types/node": "^20.10.6",
|
2025-11-10 19:43:02 -08:00
|
|
|
"eslint": "^9.17.0",
|
2025-11-07 22:34:54 -08:00
|
|
|
"tsx": "^4.7.0",
|
2025-11-10 19:43:02 -08:00
|
|
|
"typescript": "^5.3.3"
|
2025-11-07 22:34:54 -08:00
|
|
|
}
|
|
|
|
|
}
|