xtablo-source/api/package.json

30 lines
702 B
JSON
Raw Normal View History

2025-06-23 09:34:30 +00:00
{
"type": "module",
"name": "xtablo-api",
"scripts": {
2025-07-03 19:42:49 +00:00
"dev": "NODE_ENV=development tsx watch src/index.ts",
2025-06-23 09:34:30 +00:00
"build": "tsc",
2025-07-13 16:42:15 +00:00
"start": "node dist/index.js"
2025-06-23 09:34:30 +00:00
},
"dependencies": {
2025-07-29 19:24:12 +00:00
"@aws-sdk/client-s3": "^3.850.0",
2025-06-23 09:34:30 +00:00
"@hono/node-server": "^1.14.4",
"@supabase/supabase-js": "^2.49.4",
2025-07-29 19:24:12 +00:00
"cors": "^2.8.5",
2025-06-23 09:34:30 +00:00
"dotenv": "^16.5.0",
2025-07-29 19:24:12 +00:00
"graphile-worker": "^0.16.6",
2025-06-23 09:34:30 +00:00
"hono": "^4.7.7",
"hono-sessions": "^0.7.2",
2025-07-29 19:24:12 +00:00
"multer": "^2.0.2",
2025-07-01 20:28:49 +00:00
"nodemailer": "^7.0.4",
2025-07-29 19:24:12 +00:00
"stream-chat": "^9.8.0",
"ts-node": "^10.9.2"
2025-06-23 09:34:30 +00:00
},
"devDependencies": {
"@types/node": "^20.11.17",
2025-07-01 20:28:49 +00:00
"@types/nodemailer": "^6.4.17",
2025-06-23 09:34:30 +00:00
"tsx": "^4.7.1",
"typescript": "^5.8.3"
}
}