package.json 1.0 KB

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