lilith-platform.live/codebase/@features/api/package.json

44 lines
1.3 KiB
JSON
Raw Normal View History

{
"name": "@quinn/api",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "bun run --watch src/app/server.ts",
"start": "bun run src/app/server.ts",
"typecheck": "tsc --noEmit",
"lint:boundaries": "depcruise src --config .dependency-cruiser.cjs",
"test": "bun test --parallel=1 --timeout=60000",
"scaffold:entity": "bun run scripts/scaffold-entity.ts",
"migrate": "bun run scripts/migrate.ts",
"backfill": "bun run src/scripts/backfill-processors.ts",
"backfill:contacts": "bun run src/scripts/backfill-contacts.ts"
},
"dependencies": {
"@hono/node-server": "^1.19.14",
"@lilith/mac-sync-client": "0.1.0",
"@lilith/mail-sync-client": "0.1.1",
"@lilith/mailer": "^1.0.1",
"@lilith/mailer-multi": "workspace:*",
"@lilith/messenger-model-boss": "^1.1.0",
"@lilith/qr-device-login-client": "^0.1.2",
"@simplewebauthn/server": "^13.3.0",
"hono": "^4.6.0",
"imapflow": "^1.2.18",
"liquidjs": "^10.16.0",
"marked": "^18.0.0",
"minio": "^8.0.7",
"otplib": "^13.4.0",
"postgres": "^3.4.9",
"web-push": "^3.6.7",
"yaml": "^2.8.3",
"zod": "^3.23.0"
},
"devDependencies": {
"@types/bun": "latest",
"@types/web-push": "^3.6.4",
"dependency-cruiser": "^16.4.0",
"typescript": "^5.6.0"
}
}