Files

37 lines
937 B
JSON

{
"name": "ar-pm-backend",
"version": "1.0.0",
"description": "AR Project Management - Backend API",
"main": "src/index.js",
"scripts": {
"dev": "nodemon src/index.js",
"start": "node src/index.js",
"prisma:migrate": "npx prisma migrate dev",
"prisma:studio": "npx prisma studio",
"seed": "node prisma/seed.js",
"test": "jest --coverage"
},
"dependencies": {
"@prisma/client": "^5.14.0",
"bcryptjs": "^2.4.3",
"compression": "^1.7.4",
"cors": "^2.8.5",
"express": "^4.19.2",
"express-rate-limit": "^7.3.1",
"express-validator": "^7.1.0",
"helmet": "^7.1.0",
"jsonwebtoken": "^9.0.2",
"morgan": "^1.10.0",
"speakeasy": "^2.0.0",
"uuid": "^10.0.0",
"winston": "^3.13.0",
"winston-daily-rotate-file": "^5.0.0"
},
"devDependencies": {
"nodemon": "^3.1.3",
"prisma": "^5.14.0",
"jest": "^29.7.0",
"supertest": "^7.0.0"
}
}