Express TS project
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

1234567891011121314151617181920212223242526272829303132333435
  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. "start": "nodemon src/index.ts && tsc && node dist/src/index.js"
  8. },
  9. "author": "",
  10. "license": "ISC",
  11. "dependencies": {
  12. "@sendgrid/mail": "^7.4.7",
  13. "axios": "^0.21.4",
  14. "bcrypt": "^5.0.1",
  15. "body-parser": "^1.19.0",
  16. "cors": "^2.8.5",
  17. "express": "^4.17.1",
  18. "jsonwebtoken": "^8.5.1",
  19. "mongodb": "^4.1.2",
  20. "nodemon": "^2.0.12",
  21. "passport": "^0.5.0",
  22. "passport-jwt": "^4.0.0"
  23. },
  24. "devDependencies": {
  25. "@types/bcrypt": "^5.0.0",
  26. "@types/cors": "^2.8.12",
  27. "@types/express": "^4.17.13",
  28. "@types/jsonwebtoken": "^8.5.5",
  29. "@types/node": "^16.9.4",
  30. "@types/passport": "^1.0.7",
  31. "@types/passport-jwt": "^3.0.6",
  32. "tslint": "^6.1.3",
  33. "typescript": "^4.4.3"
  34. }
  35. }