express TS backend
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

36 regels
1.0 KiB

  1. {
  2. "name": "job-portal",
  3. "version": "1.0.0",
  4. "description": "job portal backend node app",
  5. "main": "dist/index.js",
  6. "scripts": {
  7. "prebuild": "tslint -c tslint.json -p tsconfig.json --fix",
  8. "build": "tsc",
  9. "prestart": "npm run build",
  10. "start": "node .",
  11. "watch": "nodemon src/index.ts & tslint -c tslint.json -p tsconfig.json --fix & npm run build & node .",
  12. "test": "echo \"Error: no test specified\" && exit 1"
  13. },
  14. "author": "",
  15. "license": "ISC",
  16. "dependencies": {
  17. "axios": "^0.21.4",
  18. "bcrypt": "^5.0.1",
  19. "body-parser": "^1.19.0",
  20. "cors": "^2.8.5",
  21. "express": "^4.17.1",
  22. "mongodb": "^4.1.2",
  23. "nodemon": "^2.0.12",
  24. "passport": "^0.5.0"
  25. },
  26. "devDependencies": {
  27. "@types/bcrypt": "^5.0.0",
  28. "@types/cors": "^2.8.12",
  29. "@types/express": "^4.17.13",
  30. "@types/node": "^16.9.4",
  31. "@types/passport": "^1.0.7",
  32. "tslint": "^6.1.3",
  33. "typescript": "^4.4.3"
  34. }
  35. }