package.json 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. {
  2. "name": "service-student",
  3. "version": "1.0.0",
  4. "description": "student info service",
  5. "private": true,
  6. "egg": {
  7. "framework": "naf-framework-mongoose"
  8. },
  9. "dependencies": {
  10. "egg": "^2.23.0",
  11. "egg-naf-amqp": "0.0.13",
  12. "egg-scripts": "^2.11.0",
  13. "jsonwebtoken": "^8.5.1",
  14. "naf-framework-mongoose": "^0.6.11"
  15. },
  16. "devDependencies": {
  17. "autod": "^3.1.0",
  18. "autod-egg": "^1.1.0",
  19. "egg-bin": "^4.13.1",
  20. "egg-ci": "^1.13.0",
  21. "egg-mock": "^3.23.1",
  22. "eslint": "^6.1.0",
  23. "eslint-config-egg": "^7.4.1",
  24. "eslint-config-egg-naf": "0.0.3",
  25. "webstorm-disable-index": "^1.2.0"
  26. },
  27. "engines": {
  28. "node": ">=8.9.0"
  29. },
  30. "scripts": {
  31. "start": "egg-scripts start --daemon --title=egg-service-student",
  32. "stop": "egg-scripts stop --title=egg-service-student",
  33. "dev": "egg-bin dev",
  34. "debug": "egg-bin debug",
  35. "test": "npm run lint -- --fix && npm run test-local",
  36. "test-local": "egg-bin test",
  37. "cov": "egg-bin cov",
  38. "lint": "eslint .",
  39. "ci": "npm run lint && npm run cov",
  40. "autod": "autod",
  41. "pm2": "pm2 start",
  42. "restart": "pm2 restart service-student",
  43. "raml": "raml2html -i app/controller/api.raml -o app/public/api.html"
  44. },
  45. "ci": {
  46. "version": "8"
  47. },
  48. "repository": {
  49. "type": "git",
  50. "url": ""
  51. },
  52. "author": "dyg",
  53. "license": "MIT"
  54. }