package.json 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. {
  2. "name": "naf-service",
  3. "version": "1.0.0",
  4. "description": "naf common service",
  5. "private": true,
  6. "egg": {
  7. "framework": "naf-framework-mongoose"
  8. },
  9. "dependencies": {
  10. "@peculiar/x509": "^1.4.1",
  11. "egg-naf-amqp": "0.0.13",
  12. "egg-redis": "^2.3.0",
  13. "egg-view-nunjucks": "^2.3.0",
  14. "jsonwebtoken": "^8.5.1",
  15. "jsrsasign": "^10.4.1",
  16. "lodash": "^4.17.11",
  17. "naf-framework-mongoose": "^0.6.1",
  18. "uuid": "^3.3.2"
  19. },
  20. "devDependencies": {
  21. "autod": "^3.0.1",
  22. "autod-egg": "^1.1.0",
  23. "egg-bin": "^4.12.0",
  24. "egg-ci": "^1.11.0",
  25. "egg-mock": "^3.22.1",
  26. "eslint": "^5.15.3",
  27. "eslint-config-egg": "^7.2.0"
  28. },
  29. "engines": {
  30. "node": ">=8.9.0"
  31. },
  32. "scripts": {
  33. "start": "egg-scripts start --daemon --title=naf-user",
  34. "stop": "egg-scripts stop --title=naf-user",
  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. "pm2": "pm2 start",
  44. "restart": "pm2 restart naf-user"
  45. },
  46. "ci": {
  47. "version": "8"
  48. },
  49. "repository": {
  50. "type": "git",
  51. "url": "https://github.com/jilinjobs/naf-service"
  52. },
  53. "author": "dyg",
  54. "license": "MIT"
  55. }