- Copied as-is from learning_voice_ai_agent/services/growth-service - 33 tests passing (vitest) - Fastify 5 + Cosmos DB + Stripe + Zod - Modules: invitations, referrals, promos - Port 4001
31 lines
729 B
JSON
31 lines
729 B
JSON
{
|
|
"name": "@lysnrai/growth-service",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"description": "Growth Service — invitations, referrals, promo codes",
|
|
"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"
|
|
}
|
|
}
|