43 lines
1.1 KiB
JSON
43 lines
1.1 KiB
JSON
{
|
|
"name": "server",
|
|
"version": "1.0.0",
|
|
"description": "",
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"dev": "tsx --watch --env-file .env src/server.ts",
|
|
"watch": "tsx watch src/server.ts",
|
|
"check": "tsc --noEmit",
|
|
"build": "tsc",
|
|
"test": "echo \"Error: no test specified\" && exit 1",
|
|
"migrate": "tsx --env-file .env migrations/runMigrations.ts",
|
|
"generate-types": "npx openapicmd typegen --backend ./openapi.yaml > src/types/openapi.d.ts"
|
|
},
|
|
"keywords": [],
|
|
"author": "",
|
|
"license": "ISC",
|
|
"packageManager": "pnpm@10.16.0",
|
|
"devDependencies": {
|
|
"@biomejs/biome": "2.2.3",
|
|
"@tsconfig/strictest": "^2.0.5",
|
|
"@types/express": "^5.0.3",
|
|
"@types/express-session": "^1.18.0",
|
|
"@types/jest": "^30.0.0",
|
|
"@types/node": "^24.3.0",
|
|
"@types/pg": "^8.15.5",
|
|
"jest": "^30.0.5",
|
|
"ts-jest": "^29.4.1",
|
|
"tsx": "^4.20.4",
|
|
"typescript": "^5.9.2"
|
|
},
|
|
"dependencies": {
|
|
"arctic": "^3.7.0",
|
|
"axios": "^1.7.9",
|
|
"express": "^5.1.0",
|
|
"express-session": "^1.18.0",
|
|
"openapi-backend": "^5.15.0",
|
|
"pg": "^8.16.3",
|
|
"postgres-migrations": "^5.3.0",
|
|
"valibot": "^1.1.0"
|
|
}
|
|
}
|