package.json 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. {
  2. "name": "service",
  3. "version": "1.0.0",
  4. "description": "",
  5. "private": true,
  6. "egg": {
  7. "framework": "naf-framework-mongoose"
  8. },
  9. "dependencies": {
  10. "egg": "^2.15.1",
  11. "egg-naf-amqp": "0.0.13",
  12. "egg-redis": "^2.4.0",
  13. "egg-scripts": "^2.11.0",
  14. "jsonwebtoken": "^8.5.1",
  15. "lodash": "^4.17.21",
  16. "moment": "^2.29.1",
  17. "naf-framework-mongoose": "^0.6.11",
  18. "string-random": "^0.1.3"
  19. },
  20. "devDependencies": {
  21. "autod": "^3.0.1",
  22. "autod-egg": "^1.1.0",
  23. "egg-bin": "^4.11.0",
  24. "egg-ci": "^1.11.0",
  25. "egg-mock": "^3.21.0",
  26. "eslint": "^5.13.0",
  27. "eslint-config-egg": "^7.1.0"
  28. },
  29. "engines": {
  30. "node": ">=10.0.0"
  31. },
  32. "scripts": {
  33. "start": "egg-scripts start --daemon --title=egg-server-service",
  34. "stop": "egg-scripts stop --title=egg-server-service",
  35. "dev": "egg-bin dev",
  36. "debug": "egg-bin debug",
  37. "test": "npm run lint -- --fix && npm run test-local",
  38. "test-local": "egg-bin test",
  39. "cov": "egg-bin cov",
  40. "lint": "eslint .",
  41. "ci": "npm run lint && npm run cov",
  42. "autod": "autod"
  43. },
  44. "ci": {
  45. "version": "10"
  46. },
  47. "repository": {
  48. "type": "git",
  49. "url": ""
  50. },
  51. "author": "",
  52. "license": "MIT"
  53. }