|
- {
- "name": "job-portal",
- "version": "1.0.0",
- "description": "job portal backend node app",
- "main": "dist/index.js",
- "scripts": {
- "prebuild": "tslint -c tslint.json -p tsconfig.json --fix",
- "build": "tsc",
- "prestart": "npm run build",
- "start": "node .",
- "watch": "nodemon src/index.ts & tslint -c tslint.json -p tsconfig.json --fix & npm run build & node .",
- "test": "echo \"Error: no test specified\" && exit 1"
- },
- "author": "",
- "license": "ISC",
- "dependencies": {
- "axios": "^0.21.4",
- "bcrypt": "^5.0.1",
- "body-parser": "^1.19.0",
- "cors": "^2.8.5",
- "express": "^4.17.1",
- "mongodb": "^4.1.2",
- "nodemon": "^2.0.12",
- "passport": "^0.5.0"
- },
- "devDependencies": {
- "@types/bcrypt": "^5.0.0",
- "@types/cors": "^2.8.12",
- "@types/express": "^4.17.13",
- "@types/node": "^16.9.4",
- "@types/passport": "^1.0.7",
- "tslint": "^6.1.3",
- "typescript": "^4.4.3"
- }
- }
|