30 lines
633 B
JSON
30 lines
633 B
JSON
{
|
|
"name": "server",
|
|
"private": true,
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "tsx watch src/index.ts",
|
|
"build": "tsc",
|
|
"start": "node dist/index.js",
|
|
"test": "vitest run"
|
|
},
|
|
"dependencies": {
|
|
"@auth/core": "^0.37.0",
|
|
"@auth/pg-adapter": "^1.6.0",
|
|
"@hono/auth-js": "^1.0.15",
|
|
"@hono/node-server": "^1.13.0",
|
|
"dotenv": "^16.4.5",
|
|
"hono": "^4.6.0",
|
|
"pg": "^8.13.0",
|
|
"pino": "^9.5.0",
|
|
"pino-pretty": "^13.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^22.0.0",
|
|
"@types/pg": "^8.11.0",
|
|
"tsx": "^4.19.0",
|
|
"typescript": "^5.7.0",
|
|
"vitest": "^3.0.0"
|
|
}
|
|
}
|