package.json 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. {
  2. "name": "service-student",
  3. "version": "1.0.0",
  4. "description": "student info service",
  5. "private": true,
  6. "egg": {
  7. "framework": "naf-framework-mongoose"
  8. },
  9. "dependencies": {
  10. "egg": "^2.23.0",
  11. "egg-scripts": "^2.11.0",
  12. "jsonwebtoken": "^8.5.1",
  13. "naf-framework-mongoose": "^0.6.11"
  14. },
  15. "devDependencies": {
  16. "autod": "^3.1.0",
  17. "autod-egg": "^1.1.0",
  18. "egg-bin": "^4.13.1",
  19. "egg-ci": "^1.13.0",
  20. "egg-mock": "^3.23.1",
  21. "eslint": "^6.1.0",
  22. "eslint-config-egg": "^7.4.1",
  23. "eslint-config-egg-naf": "0.0.3",
  24. "webstorm-disable-index": "^1.2.0"
  25. },
  26. "engines": {
  27. "node": ">=8.9.0"
  28. },
  29. "scripts": {
  30. "start": "egg-scripts start --daemon --title=egg-service-student",
  31. "stop": "egg-scripts stop --title=egg-service-student",
  32. "dev": "egg-bin dev",
  33. "debug": "egg-bin debug",
  34. "test": "npm run lint -- --fix && npm run test-local",
  35. "test-local": "egg-bin test",
  36. "cov": "egg-bin cov",
  37. "lint": "eslint .",
  38. "ci": "npm run lint && npm run cov",
  39. "autod": "autod",
  40. "pm2": "pm2 start",
  41. "restart": "pm2 restart service-student",
  42. "raml": "raml2html -i app/controller/api.raml -o app/public/api.html"
  43. },
  44. "ci": {
  45. "version": "8"
  46. },
  47. "repository": {
  48. "type": "git",
  49. "url": ""
  50. },
  51. "author": "dyg",
  52. "license": "MIT"
  53. }