package.json 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. {
  2. "name": "service-gateway",
  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-scripts": "^2.11.0",
  12. "formstream": "^1.1.1",
  13. "jsonwebtoken": "^8.5.1"
  14. },
  15. "devDependencies": {
  16. "autod": "^3.0.1",
  17. "autod-egg": "^1.1.0",
  18. "egg-bin": "^4.11.0",
  19. "egg-ci": "^1.11.0",
  20. "egg-mock": "^3.21.0",
  21. "eslint": "^5.13.0",
  22. "eslint-config-egg": "^7.1.0"
  23. },
  24. "engines": {
  25. "node": ">=10.0.0"
  26. },
  27. "scripts": {
  28. "start": "egg-scripts start --daemon --title=egg-server-service-gateway",
  29. "stop": "egg-scripts stop --title=egg-server-service-gateway",
  30. "dev": "egg-bin dev",
  31. "debug": "egg-bin debug",
  32. "test": "npm run lint -- --fix && npm run test-local",
  33. "test-local": "egg-bin test",
  34. "cov": "egg-bin cov",
  35. "lint": "eslint .",
  36. "ci": "npm run lint && npm run cov",
  37. "autod": "autod"
  38. },
  39. "ci": {
  40. "version": "10"
  41. },
  42. "repository": {
  43. "type": "git",
  44. "url": ""
  45. },
  46. "author": "",
  47. "license": "MIT"
  48. }