xtablo-source/api/package.json

39 lines
949 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-09-29 19:38:20 +00:00
"start": "node dist/index.js",
"test": "mocha",
"test:watch": "mocha --watch"
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-10-05 08:45:39 +00:00
"googleapis": "^161.0.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": {
2025-09-29 19:38:20 +00:00
"@types/chai": "^4.3.0",
"@types/mocha": "^10.0.0",
2025-06-23 09:34:30 +00:00
"@types/node": "^20.11.17",
2025-07-01 20:28:49 +00:00
"@types/nodemailer": "^6.4.17",
2025-09-29 19:38:20 +00:00
"@types/sinon": "^17.0.0",
"chai": "^4.3.0",
"mocha": "^10.0.0",
"sinon": "^17.0.0",
2025-06-23 09:34:30 +00:00
"tsx": "^4.7.1",
"typescript": "^5.8.3"
}
}