Files
fisio-backend/package.json
T
2026-08-25 18:12:23 +03:00

33 lines
849 B
JSON

{
"name": "fislio-backend",
"version": "1.0.0",
"description": "Fislio Node.js Backend API with PostgreSQL, BunnyCDN, and Pluggable OCR",
"main": "dist/index.js",
"scripts": {
"dev": "ts-node-dev --respawn --transpile-only src/index.ts",
"build": "tsc",
"start": "node dist/index.js"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"dotenv": "^16.4.7",
"express": "^4.21.2",
"jsonwebtoken": "^9.0.2",
"multer": "^1.4.5-lts.1",
"pg": "^8.13.3",
"zod": "^3.24.2"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.6",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/jsonwebtoken": "^9.0.8",
"@types/multer": "^1.4.12",
"@types/node": "^20.17.19",
"@types/pg": "^8.11.11",
"ts-node-dev": "^2.0.0",
"typescript": "^5.7.3"
}
}