learning_ai_common_plat/services/billing-service/package.json
saravanakumardb1 fc5f2bf296 feat(services): add billing-service (subscriptions, Stripe, usage, licenses, plans)
- Copied as-is from learning_voice_ai_agent/services/billing-service
- 32 tests passing (vitest)
- Fastify 5 + Cosmos DB + Stripe + Zod
- Modules: subscriptions, licenses, plans, usage, stripe
- Port 4002
2026-02-12 11:39:05 -08:00

31 lines
757 B
JSON

{
"name": "@lysnrai/billing-service",
"version": "0.1.0",
"private": true,
"description": "Billing & Entitlement Service — subscriptions, payments, usage, licenses, plans",
"type": "module",
"scripts": {
"dev": "tsx watch src/server.ts",
"build": "tsc",
"start": "node dist/server.js",
"test": "vitest run",
"test:watch": "vitest",
"lint": "eslint src/"
},
"dependencies": {
"@azure/cosmos": "^4.2.0",
"fastify": "^5.2.1",
"@fastify/cors": "^10.0.2",
"@fastify/swagger": "^9.4.2",
"fastify-metrics": "^10.3.0",
"stripe": "^17.5.0",
"zod": "^3.24.2"
},
"devDependencies": {
"@types/node": "^22.12.0",
"tsx": "^4.19.2",
"typescript": "^5.7.3",
"vitest": "^3.0.5"
}
}