Files
MOHPortal/backend/package.json
ReachableCEO 252775faf3
Some checks failed
CI / Backend Tests (push) Failing after 2m41s
CI / Frontend Tests (push) Successful in 2m14s
CI / Build Docker Images (push) Has been skipped
chore: sync infra docs and coverage
2025-10-16 22:41:22 -05:00

42 lines
1.1 KiB
JSON

{
"name": "merchantsofhope-supplyanddemandportal-backend",
"version": "1.0.0",
"description": "Backend for MerchantsOfHope-SupplyANdDemandPortal recruiter workflow SAAS",
"main": "src/server.js",
"scripts": {
"start": "node src/index.js",
"dev": "nodemon src/index.js",
"test": "jest",
"test:watch": "jest --watch",
"migrate": "node src/database/migrate.js",
"seed": "node src/database/seed.js",
"lint": "eslint --ext js src"
},
"dependencies": {
"express": "^4.18.2",
"cors": "^2.8.5",
"helmet": "^7.1.0",
"bcryptjs": "^2.4.3",
"jsonwebtoken": "^9.0.2",
"pg": "^8.11.3",
"multer": "^2.0.0",
"express-rate-limit": "^6.10.0",
"sanitize-filename": "^1.6.3",
"express-validator": "^7.0.1",
"dotenv": "^16.3.1",
"uuid": "^9.0.1",
"morgan": "^1.10.0"
},
"devDependencies": {
"nodemon": "^3.0.2",
"jest": "^29.7.0",
"supertest": "^6.3.3",
"@types/jest": "^29.5.8",
"eslint": "^8.57.0",
"eslint-plugin-jest": "^27.9.0"
},
"keywords": ["recruiter", "saas", "workflow", "hiring"],
"author": "MerchantsOfHope-SupplyANdDemandPortal",
"license": "MIT"
}