package.json 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. {
  2. "name": "service-file",
  3. "version": "1.0.0",
  4. "description": "",
  5. "private": true,
  6. "egg": {
  7. "declarations": true
  8. },
  9. "dependencies": {
  10. "await-stream-ready": "^1.0.1",
  11. "egg": "^2.15.1",
  12. "egg-scripts": "^2.11.0",
  13. "fluent-ffmpeg": "2.1.2",
  14. "moment": "^2.24.0",
  15. "mongodb": "^3.1.13",
  16. "naf-core": "0.1.2",
  17. "stream-wormhole": "^1.1.0"
  18. },
  19. "devDependencies": {
  20. "autod": "^3.0.1",
  21. "autod-egg": "^1.1.0",
  22. "egg-bin": "^4.11.0",
  23. "egg-ci": "^1.11.0",
  24. "egg-mock": "^3.21.0",
  25. "eslint": "^5.13.0",
  26. "eslint-config-egg": "^7.1.0",
  27. "webstorm-disable-index": "^1.2.0"
  28. },
  29. "engines": {
  30. "node": ">=10.0.0"
  31. },
  32. "scripts": {
  33. "start": "egg-scripts start --daemon --title=egg-server-service-file",
  34. "stop": "egg-scripts stop --title=egg-server-service-file",
  35. "dev": "egg-bin dev",
  36. "debug": "egg-bin debug",
  37. "test": "npm run lint -- --fix && npm run test-local",
  38. "test-local": "egg-bin test",
  39. "cov": "egg-bin cov",
  40. "lint": "eslint .",
  41. "ci": "npm run lint && npm run cov",
  42. "autod": "autod",
  43. "pm2": "pm2 start",
  44. "restart": "pm2 restart service-file"
  45. },
  46. "ci": {
  47. "version": "10"
  48. },
  49. "repository": {
  50. "type": "git",
  51. "url": ""
  52. },
  53. "author": "ly",
  54. "license": "MIT"
  55. }