package.json 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  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. "silly-datetime": "^0.1.2"
  16. },
  17. "devDependencies": {
  18. "autod": "^3.1.0",
  19. "autod-egg": "^1.1.0",
  20. "egg-bin": "^4.13.1",
  21. "egg-ci": "^1.13.0",
  22. "egg-mock": "^3.23.1",
  23. "eslint": "^6.1.0",
  24. "eslint-config-egg": "^7.4.1",
  25. "eslint-config-egg-naf": "0.0.3",
  26. "webstorm-disable-index": "^1.2.0"
  27. },
  28. "engines": {
  29. "node": ">=8.9.0"
  30. },
  31. "scripts": {
  32. "start": "egg-scripts start --daemon --title=egg-service-student",
  33. "stop": "egg-scripts stop --title=egg-service-student",
  34. "dev": "egg-bin dev",
  35. "debug": "egg-bin debug",
  36. "test": "npm run lint -- --fix && npm run test-local",
  37. "test-local": "egg-bin test",
  38. "cov": "egg-bin cov",
  39. "lint": "eslint .",
  40. "ci": "npm run lint && npm run cov",
  41. "autod": "autod",
  42. "pm2": "pm2 start",
  43. "restart": "pm2 restart service-student",
  44. "raml": "raml2html -i app/controller/api.raml -o app/public/api.html"
  45. },
  46. "ci": {
  47. "version": "8"
  48. },
  49. "repository": {
  50. "type": "git",
  51. "url": ""
  52. },
  53. "author": "dyg",
  54. "license": "MIT"
  55. }