learning_ai_clock/backend/package.json
saravanakumardb1 ed3bc15a4a chore(deps): use wildcard (*) for @bytelyst/* internal packages
All @bytelyst/* packages are internal to the ByteLyst ecosystem and
published to the private Gitea registry. Using "*" eliminates version
bump noise — always resolves to latest available.
2026-04-13 01:05:40 -07:00

43 lines
1.1 KiB
JSON

{
"name": "@chronomind/backend",
"version": "0.1.0",
"private": true,
"packageManager": "pnpm@10.6.5",
"description": "ChronoMind product-specific backend — timers, routines, households, shared timers",
"type": "module",
"scripts": {
"dev": "tsx watch src/server.ts",
"build": "tsc",
"start": "node dist/server.js",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit",
"lint": "eslint src/"
},
"dependencies": {
"@bytelyst/auth": "*",
"@bytelyst/config": "*",
"@bytelyst/cosmos": "*",
"@bytelyst/datastore": "*",
"@bytelyst/backend-config": "*",
"@bytelyst/backend-flags": "*",
"@bytelyst/backend-telemetry": "*",
"@bytelyst/errors": "*",
"@bytelyst/field-encrypt": "*",
"@bytelyst/fastify-auth": "*",
"@bytelyst/fastify-core": "*",
"@azure/cosmos": "^4.2.0",
"fastify": "5.7.4",
"jose": "^6.0.8",
"zod": "^3.24.2"
},
"devDependencies": {
"@types/node": "^22.12.0",
"tsx": "^4.19.2",
"typescript": "^5.7.3",
"vitest": "^3.0.5",
"eslint": "^9.0.0",
"typescript-eslint": "^8.0.0"
}
}