package.json 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. {
  2. "name": "server",
  3. "version": "1.0.0",
  4. "description": "",
  5. "private": true,
  6. "egg": {
  7. "framework": "naf-framework-mongoose-free"
  8. },
  9. "dependencies": {
  10. "decimal.js": "^10.4.1",
  11. "egg": "^2",
  12. "egg-naf-amqp": "^0.0.13",
  13. "egg-redis": "^2.4.0",
  14. "egg-scripts": "^2",
  15. "jsonwebtoken": "^8.5.1",
  16. "lodash": "^4.17.21",
  17. "moment": "^2.29.4",
  18. "mongoose-transactions": "^1.1.4",
  19. "naf-framework-mongoose-free": "^0.0.37"
  20. },
  21. "devDependencies": {
  22. "autod": "^3",
  23. "autod-egg": "^1",
  24. "egg-bin": "^4",
  25. "egg-ci": "^2",
  26. "egg-mock": "^4",
  27. "eslint": "^8",
  28. "eslint-config-egg": "^12"
  29. },
  30. "engines": {
  31. "node": ">=16.0.0"
  32. },
  33. "scripts": {
  34. "start": "egg-scripts start --daemon --title=egg-server-server",
  35. "stop": "egg-scripts stop --title=egg-server-server",
  36. "dev": "egg-bin dev",
  37. "dev-prod": "egg-bin dev --env=prod",
  38. "debug": "egg-bin debug",
  39. "test": "npm run lint -- --fix && npm run test-local",
  40. "test-local": "egg-bin test",
  41. "cov": "egg-bin cov",
  42. "lint": "eslint .",
  43. "ci": "npm run lint && npm run cov",
  44. "autod": "autod"
  45. },
  46. "ci": {
  47. "version": "16",
  48. "type": "github"
  49. },
  50. "repository": {
  51. "type": "git",
  52. "url": ""
  53. },
  54. "author": "",
  55. "license": "MIT"
  56. }