xtablo-source/apps/api/package.json
2025-11-25 08:48:26 +01:00

56 lines
1.5 KiB
JSON

{
"name": "@xtablo/api",
"private": true,
"version": "1.0.0",
"type": "module",
"scripts": {
"dev": "NODE_ENV=development tsx watch src/index.ts",
"build": "tsc",
"typecheck": "tsc --noEmit",
"start": "node dist/index.js",
"test": "NODE_ENV=test vitest run",
"test:watch": "NODE_ENV=test vitest",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"format": "biome format --write .",
"clean": "rm -rf dist node_modules/.cache"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.850.0",
"@google-cloud/secret-manager": "^6.1.1",
"@hono/node-server": "^1.14.4",
"@supabase/stripe-sync-engine": "^0.45.0",
"@supabase/supabase-js": "^2.49.4",
"@xtablo/shared-types": "workspace:*",
"cors": "^2.8.5",
"dd-trace": "^5.74.0",
"dotenv": "^16.5.0",
"glob": "^11.0.3",
"googleapis": "^161.0.0",
"hono": "^4.7.7",
"hono-sessions": "^0.7.2",
"luxon": "^3.7.2",
"multer": "^2.0.2",
"nodemailer": "^7.0.4",
"stream-chat": "^9.8.0",
"stripe": "^20.0.0",
"ts-node": "^10.9.2"
},
"devDependencies": {
"@biomejs/biome": "2.2.5",
"@datadog/datadog-ci-base": "^4.0.2",
"@datadog/datadog-ci-plugin-cloud-run": "^4.0.2",
"@smithy/util-stream": "^4.5.6",
"@types/node": "^20.11.17",
"@types/nodemailer": "^6.4.17",
"@vitest/ui": "^4.0.8",
"aws-sdk-client-mock": "^4.1.0",
"pino": "^10.1.0",
"tsx": "^4.7.1",
"typescript": "^5.8.3",
"vitest": "^4.0.8"
},
"overrides": {
"linkifyjs": "^4.3.2"
}
}