package.json 1002 B

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