package.json 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  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. "exceljs": "^4.3.0",
  16. "jsonwebtoken": "^8.5.1",
  17. "lodash": "^4.17.21",
  18. "moment": "^2.29.4",
  19. "mongoose-transactions": "^1.1.4",
  20. "naf-framework-mongoose-free": "^0.0.37",
  21. "nodemailer": "^6.8.0"
  22. },
  23. "devDependencies": {
  24. "autod": "^3",
  25. "autod-egg": "^1",
  26. "egg-bin": "^4",
  27. "egg-ci": "^2",
  28. "egg-mock": "^4",
  29. "eslint": "^8",
  30. "eslint-config-egg": "^12"
  31. },
  32. "engines": {
  33. "node": ">=16.0.0"
  34. },
  35. "scripts": {
  36. "start": "egg-scripts start --daemon --title=egg-server-server",
  37. "stop": "egg-scripts stop --title=egg-server-server",
  38. "dev": "egg-bin dev",
  39. "dev-prod": "egg-bin dev --env=prod",
  40. "debug": "egg-bin debug",
  41. "test": "npm run lint -- --fix && npm run test-local",
  42. "test-local": "egg-bin test",
  43. "cov": "egg-bin cov",
  44. "lint": "eslint .",
  45. "ci": "npm run lint && npm run cov",
  46. "autod": "autod"
  47. },
  48. "ci": {
  49. "version": "16",
  50. "type": "github"
  51. },
  52. "repository": {
  53. "type": "git",
  54. "url": ""
  55. },
  56. "author": "",
  57. "license": "MIT"
  58. }