2026-03-19 05:42:11 +00:00
|
|
|
{
|
|
|
|
|
"name": "labwise-server",
|
|
|
|
|
"version": "1.0.0",
|
|
|
|
|
"type": "commonjs",
|
|
|
|
|
"scripts": {
|
2026-03-19 13:48:19 -05:00
|
|
|
"dev": "tsx watch src/index.ts",
|
2026-03-19 05:42:11 +00:00
|
|
|
"build": "tsc",
|
|
|
|
|
"start": "node dist/index.js",
|
|
|
|
|
"db:migrate": "tsx src/db/migrate.ts"
|
|
|
|
|
},
|
|
|
|
|
"dependencies": {
|
2026-03-19 19:59:01 -05:00
|
|
|
"@aws-sdk/client-ses": "^3.1013.0",
|
2026-04-02 00:40:43 +00:00
|
|
|
"@better-auth/kysely-adapter": "^1.5.6",
|
2026-03-19 05:42:11 +00:00
|
|
|
"better-auth": "^1.5.5",
|
|
|
|
|
"cors": "^2.8.5",
|
2026-04-01 15:46:28 +00:00
|
|
|
"dotenv": "^17.3.1",
|
2026-03-19 05:42:11 +00:00
|
|
|
"express": "^4.21.2",
|
|
|
|
|
"express-rate-limit": "^7.5.0",
|
2026-04-02 00:40:43 +00:00
|
|
|
"kysely": "^0.28.15",
|
2026-04-01 15:46:28 +00:00
|
|
|
"multer": "^2.0.0",
|
2026-03-19 05:42:11 +00:00
|
|
|
"pg": "^8.13.3"
|
|
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
|
|
|
|
"@types/cors": "^2.8.17",
|
|
|
|
|
"@types/express": "^5.0.1",
|
2026-04-01 15:46:28 +00:00
|
|
|
"@types/multer": "^2.1.0",
|
2026-03-19 05:42:11 +00:00
|
|
|
"@types/node": "^22.13.10",
|
|
|
|
|
"@types/pg": "^8.11.11",
|
|
|
|
|
"tsx": "^4.19.3",
|
|
|
|
|
"typescript": "^5.7.3"
|
|
|
|
|
}
|
|
|
|
|
}
|