top-tran/backend/package.json

38 lines
844 B
JSON
Raw Normal View History

2026-04-27 17:26:53 -03:00
{
"name": "backend",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "tsx watch src/server.ts",
"build": "tsc",
"start": "node dist/server.js",
"typecheck": "tsc --noEmit"
},
"keywords": [],
"author": "Rayan",
"license": "ISC",
"type": "module",
"devDependencies": {
"@types/bcryptjs": "^2.4.6",
2026-04-27 17:26:53 -03:00
"@types/cors": "^2.8.19",
"@types/express": "^5.0.6",
"@types/jsonwebtoken": "^9.0.10",
2026-04-27 19:19:33 -03:00
"@types/node": "^25.6.0",
"prisma": "^7.8.0",
2026-04-27 17:26:53 -03:00
"ts-node-dev": "^2.0.0",
"tsx": "^4.21.0"
},
"dependencies": {
"@prisma/adapter-pg": "^7.8.0",
2026-04-27 19:19:33 -03:00
"@prisma/client": "^7.8.0",
"@types/pg": "^8.20.0",
"bcryptjs": "^3.0.3",
2026-04-27 17:26:53 -03:00
"cors": "^2.8.6",
"express": "^5.2.1",
"jsonwebtoken": "^9.0.3",
"pg": "^8.20.0",
"zod": "^4.3.6"
2026-04-27 17:26:53 -03:00
}
}