express TS backend
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

41 lignes
1.2 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. "@sendgrid/mail": "^7.4.7",
  18. "axios": "^0.21.4",
  19. "bcrypt": "^5.0.1",
  20. "body-parser": "^1.19.0",
  21. "cors": "^2.8.5",
  22. "express": "^4.17.1",
  23. "jsonwebtoken": "^8.5.1",
  24. "mongodb": "^4.1.2",
  25. "nodemon": "^2.0.12",
  26. "passport": "^0.5.0",
  27. "passport-jwt": "^4.0.0"
  28. },
  29. "devDependencies": {
  30. "@types/bcrypt": "^5.0.0",
  31. "@types/cors": "^2.8.12",
  32. "@types/express": "^4.17.13",
  33. "@types/jsonwebtoken": "^8.5.5",
  34. "@types/node": "^16.9.4",
  35. "@types/passport": "^1.0.7",
  36. "@types/passport-jwt": "^3.0.6",
  37. "tslint": "^6.1.3",
  38. "typescript": "^4.4.3"
  39. }
  40. }