30 lines
667 B
JSON
30 lines
667 B
JSON
{
|
|
"name": "@fedeo/push-api",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "tsx watch src/index.ts",
|
|
"build": "tsc",
|
|
"start": "node dist/index.js",
|
|
"typecheck": "tsc --noEmit"
|
|
},
|
|
"dependencies": {
|
|
"@fastify/cors": "^11.1.0",
|
|
"@fedeo/push-db": "file:../../packages/db",
|
|
"dotenv": "^17.2.3",
|
|
"drizzle-orm": "^0.45.0",
|
|
"fastify": "^5.5.0",
|
|
"jsonwebtoken": "^9.0.2",
|
|
"pg": "^8.16.3",
|
|
"zod": "^4.1.12"
|
|
},
|
|
"devDependencies": {
|
|
"@types/jsonwebtoken": "^9.0.10",
|
|
"@types/node": "^24.3.0",
|
|
"@types/pg": "^8.15.5",
|
|
"tsx": "^4.20.5",
|
|
"typescript": "^5.9.2"
|
|
}
|
|
}
|