{ "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", "express": "^4.17.1", "nodemon": "^2.0.12" }, "devDependencies": { "@types/express": "^4.17.13", "@types/node": "^16.9.4", "tslint": "^6.1.3", "typescript": "^4.4.3" } }