xtablo-source/api/package.json

50 lines
1.3 KiB
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",
2025-10-11 10:32:52 +00:00
"test:watch": "mocha --watch",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"format": "biome format --write ."
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-10-28 21:23:50 +00:00
"dd-trace": "^5.74.0",
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",
"luxon": "^3.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-10-10 06:54:55 +00:00
"@biomejs/biome": "2.2.5",
2025-10-28 21:23:50 +00:00
"@datadog/datadog-ci-base": "^4.0.2",
"@datadog/datadog-ci-plugin-cloud-run": "^4.0.2",
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"
2025-10-11 12:26:36 +00:00
},
"overrides": {
"linkifyjs": "^4.3.2"
}
2025-06-23 09:34:30 +00:00
}