cents/services/api/package.json

30 lines
709 B
JSON

{
"name": "@cents/api",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "tsx watch src/server.ts",
"start": "tsx src/server.ts",
"bootstrap": "tsx src/bootstrap.ts",
"password:reset": "tsx src/reset-password.ts",
"build": "tsc --noEmit",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@cents/domain": "0.1.0",
"@fastify/cookie": "^11.1.2",
"@fastify/helmet": "^13.1.0",
"@fastify/rate-limit": "^11.1.0",
"@node-rs/argon2": "^2.0.2",
"fastify": "^5.4.0",
"pg": "^8.22.0"
},
"devDependencies": {
"@types/node": "^22.13.14",
"@types/pg": "^8.20.0",
"tsx": "^4.20.3",
"typescript": "^5.8.3"
}
}