2026-04-18 02:00:09 +00:00
|
|
|
{
|
|
|
|
|
"name": "@workspace/api-server",
|
|
|
|
|
"version": "0.0.0",
|
|
|
|
|
"private": true,
|
|
|
|
|
"type": "module",
|
|
|
|
|
"scripts": {
|
|
|
|
|
"dev": "export NODE_ENV=development && pnpm run build && pnpm run start",
|
|
|
|
|
"build": "node ./build.mjs",
|
|
|
|
|
"start": "node --enable-source-maps ./dist/index.mjs",
|
2026-04-21 06:38:55 +00:00
|
|
|
"typecheck": "tsc -p tsconfig.json --noEmit",
|
2026-04-29 19:28:14 +00:00
|
|
|
"test:wait": "node ./scripts/wait-for-server.mjs",
|
2026-05-16 15:39:41 +00:00
|
|
|
"test:run": "node --test 'tests/*.test.mjs' && node --import tsx --test --experimental-test-module-mocks 'tests/*.test.ts' && node --test --test-concurrency=1 'tests/serial/**/*.test.mjs'",
|
2026-05-15 10:48:48 +00:00
|
|
|
"test": "node ./scripts/with-server.mjs -- pnpm run test:run",
|
2026-05-13 14:26:39 +00:00
|
|
|
"migrate": "pnpm --filter @workspace/db run push && pnpm --filter scripts run seed"
|
2026-04-18 02:00:09 +00:00
|
|
|
},
|
|
|
|
|
"dependencies": {
|
2026-05-13 14:08:11 +00:00
|
|
|
"@aws-sdk/client-s3": "^3.658.0",
|
|
|
|
|
"@aws-sdk/s3-request-presigner": "^3.658.0",
|
2026-04-29 18:01:19 +00:00
|
|
|
"@swc/helpers": "^0.5.21",
|
2026-04-18 02:00:09 +00:00
|
|
|
"@workspace/api-zod": "workspace:*",
|
|
|
|
|
"@workspace/db": "workspace:*",
|
2026-05-03 15:26:38 +00:00
|
|
|
"arabic-persian-reshaper": "1.0.1",
|
2026-04-20 09:20:50 +00:00
|
|
|
"bcryptjs": "^3.0.3",
|
2026-04-29 18:01:19 +00:00
|
|
|
"bidi-js": "^1.0.3",
|
2026-04-20 09:20:50 +00:00
|
|
|
"connect-pg-simple": "^10.0.0",
|
2026-04-18 02:00:09 +00:00
|
|
|
"cookie-parser": "^1.4.7",
|
|
|
|
|
"cors": "^2",
|
|
|
|
|
"drizzle-orm": "catalog:",
|
|
|
|
|
"express": "^5",
|
2026-05-13 11:47:52 +00:00
|
|
|
"express-rate-limit": "^8.5.1",
|
2026-04-20 09:20:50 +00:00
|
|
|
"express-session": "^1.19.0",
|
2026-04-30 18:29:43 +00:00
|
|
|
"nodemailer": "^8.0.7",
|
2026-04-29 18:01:19 +00:00
|
|
|
"pdfkit": "^0.18.0",
|
2026-04-18 02:00:09 +00:00
|
|
|
"pino": "^9",
|
2026-04-20 09:20:50 +00:00
|
|
|
"pino-http": "^10",
|
2026-05-04 10:24:08 +00:00
|
|
|
"playwright-core": "^1.59.1",
|
2026-04-29 07:39:24 +00:00
|
|
|
"sanitize-html": "^2.17.3",
|
2026-04-28 07:19:07 +00:00
|
|
|
"socket.io": "^4.8.3",
|
2026-05-16 15:26:18 +00:00
|
|
|
"web-push": "^3.6.7",
|
2026-04-28 07:19:07 +00:00
|
|
|
"zod": "catalog:"
|
2026-04-18 02:00:09 +00:00
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
2026-04-20 09:20:50 +00:00
|
|
|
"@types/bcryptjs": "^3.0.0",
|
|
|
|
|
"@types/connect-pg-simple": "^7.0.3",
|
2026-04-18 02:00:09 +00:00
|
|
|
"@types/cookie-parser": "^1.4.10",
|
|
|
|
|
"@types/cors": "^2.8.19",
|
|
|
|
|
"@types/express": "^5.0.6",
|
2026-04-20 09:20:50 +00:00
|
|
|
"@types/express-session": "^1.19.0",
|
2026-04-18 02:00:09 +00:00
|
|
|
"@types/node": "catalog:",
|
2026-04-30 18:29:43 +00:00
|
|
|
"@types/nodemailer": "^8.0.0",
|
2026-04-29 18:01:19 +00:00
|
|
|
"@types/pdfkit": "^0.17.6",
|
2026-04-29 07:39:24 +00:00
|
|
|
"@types/sanitize-html": "^2.16.1",
|
2026-05-16 15:26:18 +00:00
|
|
|
"@types/web-push": "^3.6.4",
|
2026-04-18 02:00:09 +00:00
|
|
|
"esbuild": "^0.27.3",
|
|
|
|
|
"esbuild-plugin-pino": "^2.3.3",
|
2026-04-21 06:38:55 +00:00
|
|
|
"pg": "^8.20.0",
|
2026-04-18 02:00:09 +00:00
|
|
|
"pino-pretty": "^13",
|
2026-04-30 12:48:17 +00:00
|
|
|
"socket.io-client": "^4.8.3",
|
2026-05-16 15:39:41 +00:00
|
|
|
"thread-stream": "3.1.0",
|
|
|
|
|
"tsx": "catalog:"
|
2026-04-18 02:00:09 +00:00
|
|
|
}
|
|
|
|
|
}
|