37 lines
1009 B
JSON
37 lines
1009 B
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"
|
|
},
|
|
"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": "^1.4.5-lts.1",
|
|
"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"
|
|
},
|
|
"keywords": ["recruiter", "saas", "workflow", "hiring"],
|
|
"author": "MerchantsOfHope-SupplyANdDemandPortal",
|
|
"license": "MIT"
|
|
}
|