package.json 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. {
  2. "name": "cms-service",
  3. "version": "1.0.0",
  4. "description": "",
  5. "private": true,
  6. "egg": {
  7. "declarations": true
  8. },
  9. "dependencies": {
  10. "egg": "^2.15.1",
  11. "egg-cors": "^2.2.3",
  12. "egg-jwt": "^3.1.7",
  13. "egg-mongoose": "^3.3.1",
  14. "egg-scripts": "^2.11.0",
  15. "egg-session": "^3.3.0",
  16. "lodash": "^4.17.21",
  17. "moment": "^2.29.1",
  18. "sm3": "^1.0.3",
  19. "svg-captcha": "^1.4.0",
  20. "uuid": "^8.3.2"
  21. },
  22. "devDependencies": {
  23. "autod": "^3.0.1",
  24. "autod-egg": "^1.1.0",
  25. "egg-bin": "^4.11.0",
  26. "egg-ci": "^1.11.0",
  27. "egg-mock": "^3.21.0",
  28. "eslint": "^5.13.0",
  29. "eslint-config-egg": "^7.1.0"
  30. },
  31. "engines": {
  32. "node": ">=10.0.0"
  33. },
  34. "scripts": {
  35. "start": "egg-scripts start --daemon --title=egg-server-cms-service",
  36. "stop": "egg-scripts stop --title=egg-server-cms-service",
  37. "dev": "egg-bin dev",
  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": "10"
  48. },
  49. "repository": {
  50. "type": "git",
  51. "url": ""
  52. },
  53. "author": "",
  54. "license": "MIT"
  55. }