learning_ai_common_plat/services/platform-service/package.json
2026-03-02 09:07:33 -08:00

47 lines
1.4 KiB
JSON

{
"name": "@lysnrai/platform-service",
"version": "0.1.0",
"private": true,
"description": "Platform Service — consolidated: auth, audit, notifications, flags, blob, invitations, referrals, promos, subscriptions, usage, plans, licenses, stripe, items, comments, votes, public",
"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",
"@bytelyst/auth": "workspace:*",
"@bytelyst/blob": "workspace:*",
"@bytelyst/storage": "workspace:*",
"@bytelyst/config": "workspace:*",
"@bytelyst/cosmos": "workspace:*",
"@bytelyst/datastore": "workspace:*",
"@bytelyst/errors": "workspace:*",
"@bytelyst/events": "workspace:*",
"@bytelyst/fastify-core": "workspace:*",
"@fastify/cors": "^10.0.2",
"@fastify/rate-limit": "^10.3.0",
"@fastify/swagger": "^9.4.2",
"@fastify/swagger-ui": "^5.2.5",
"bcryptjs": "^2.4.3",
"fastify": "^5.2.1",
"fastify-metrics": "^10.3.0",
"fastify-zod-openapi": "^5.5.0",
"jose": "^6.0.8",
"stripe": "^17.5.0",
"zod": "^3.24.2",
"zod-openapi": "^5.4.6"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.6",
"@types/node": "^22.12.0",
"tsx": "^4.19.2",
"typescript": "^5.7.3",
"vitest": "^3.0.5"
}
}