Express TS project
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

package.json 1.1 KiB

123456789101112131415161718192021222324252627282930313233343536373839
  1. {
  2. "name": "anamnesis",
  3. "version": "1.0.0",
  4. "description": "anamnesis backend ExpressTS app",
  5. "main": "dist/index.js",
  6. "scripts": {
  7. "start": "nodemon src/index.ts && tsc && node dist/src/index.js",
  8. "load-library": "node dist/management-scripts/compile-library.js"
  9. },
  10. "author": "",
  11. "license": "ISC",
  12. "dependencies": {
  13. "@sendgrid/mail": "^7.4.7",
  14. "axios": "^0.21.4",
  15. "bcrypt": "^5.0.1",
  16. "body-parser": "^1.19.0",
  17. "cors": "^2.8.5",
  18. "express": "^4.17.1",
  19. "jsonwebtoken": "^8.5.1",
  20. "mongodb": "^4.1.2",
  21. "nodemon": "^2.0.12",
  22. "passport": "^0.5.0",
  23. "passport-jwt": "^4.0.0",
  24. "ts-node": "^10.3.0",
  25. "uuid": "^8.3.2"
  26. },
  27. "devDependencies": {
  28. "@types/bcrypt": "^5.0.0",
  29. "@types/cors": "^2.8.12",
  30. "@types/express": "^4.17.13",
  31. "@types/jsonwebtoken": "^8.5.5",
  32. "@types/node": "^16.9.4",
  33. "@types/passport": "^1.0.7",
  34. "@types/passport-jwt": "^3.0.6",
  35. "@types/uuid": "^8.3.1",
  36. "tslint": "^6.1.3",
  37. "typescript": "^4.4.3"
  38. }
  39. }