lilith-platform.live/codebase/@features/my/backend-api/package.json
2026-04-17 20:44:11 -07:00

32 lines
925 B
JSON

{
"name": "@lilith/my-api",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"start": "node dist/server.js",
"dev": "NODE_NO_WARNINGS=1 tsx watch --env-file=.env.development src/server.ts",
"seed-financials": "bun run src/seed-financials.ts",
"typecheck": "tsc --noEmit",
"build:prod": "bun build src/server.ts --target=node --outfile=dist/server.js --external=imapflow --external=mailparser",
"test": "vitest run"
},
"dependencies": {
"imapflow": "^1.2.18",
"mailparser": "^3.9.6",
"otplib": "^13.4.0",
"qrcode": "^1.5.4",
"tsdav": "^2.1.8"
},
"devDependencies": {
"@lilith/mailer": "^1.0.1",
"@lilith/qr-device-login-client": "^0.1.2",
"@types/mailparser": "^3.4.6",
"@types/node": "^22.0.0",
"@types/qrcode": "^1.5.6",
"tsdav": "^2.1.8",
"tsx": "^4.19.0",
"typescript": "^5.6.0",
"vitest": "^3.0.0"
}
}