package.json 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. {
  2. "name": "service-serve",
  3. "version": "1.0.0",
  4. "description": "",
  5. "private": true,
  6. "egg": {
  7. "framework": "naf-framework-mongoose"
  8. },
  9. "dependencies": {
  10. "egg": "^2.15.1",
  11. "egg-scripts": "^2.11.0",
  12. "lodash": "^4.17.15",
  13. "silly-datetime": "^0.1.2",
  14. "naf-framework-mongoose": "^0.6.11"
  15. },
  16. "devDependencies": {
  17. "autod": "^3.0.1",
  18. "autod-egg": "^1.1.0",
  19. "egg-bin": "^4.11.0",
  20. "egg-ci": "^1.11.0",
  21. "egg-mock": "^3.21.0",
  22. "eslint": "^5.13.0",
  23. "eslint-config-egg": "^7.1.0"
  24. },
  25. "engines": {
  26. "node": ">=10.0.0"
  27. },
  28. "scripts": {
  29. "start": "egg-scripts start --daemon --title=egg-server-service-serve",
  30. "stop": "egg-scripts stop --title=egg-server-service-serve",
  31. "dev": "egg-bin dev",
  32. "debug": "egg-bin debug",
  33. "test": "npm run lint -- --fix && npm run test-local",
  34. "test-local": "egg-bin test",
  35. "cov": "egg-bin cov",
  36. "lint": "eslint .",
  37. "ci": "npm run lint && npm run cov",
  38. "autod": "autod"
  39. },
  40. "ci": {
  41. "version": "10"
  42. },
  43. "repository": {
  44. "type": "git",
  45. "url": ""
  46. },
  47. "author": "",
  48. "license": "MIT"
  49. }