learning_ai_notes/backend/package.json

51 lines
1.4 KiB
JSON

{
"name": "@notelett/backend",
"version": "0.1.0",
"private": true,
"packageManager": "pnpm@10.6.5",
"description": "NoteLett product backend — notes, workspaces, relationships, tasks, artifacts, agent actions",
"type": "module",
"scripts": {
"dev": "tsx watch src/server.ts",
"bootstrap:seed": "tsx src/scripts/bootstrap-seed.ts",
"build": "tsc",
"start": "node dist/server.js",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit",
"lint": "eslint src/"
},
"dependencies": {
"@azure/cosmos": "^4.2.0",
"@bytelyst/auth": "*",
"@bytelyst/backend-config": "*",
"@bytelyst/backend-flags": "*",
"@bytelyst/backend-telemetry": "*",
"@bytelyst/config": "*",
"@bytelyst/cosmos": "*",
"@bytelyst/datastore": "*",
"@bytelyst/errors": "*",
"@bytelyst/fastify-auth": "*",
"@bytelyst/fastify-core": "*",
"@bytelyst/field-encrypt": "*",
"@bytelyst/llm": "*",
"@bytelyst/logger": "*",
"@bytelyst/monitoring": "*",
"@bytelyst/palace": "*",
"@bytelyst/webhook-dispatch": "*",
"fastify": "5.7.4",
"jose": "^6.0.8",
"zod": "^3.24.2"
},
"devDependencies": {
"@bytelyst/testing": "*",
"@eslint/js": "^9.39.4",
"@types/node": "^22.12.0",
"eslint": "^9.0.0",
"tsx": "^4.19.2",
"typescript": "^5.7.3",
"typescript-eslint": "^8.0.0",
"vitest": "^3.0.5"
}
}