package.json 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. {
  2. "name": "vpnserve",
  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-jwt": "^3.1.7",
  12. "egg-scripts": "^2.11.0",
  13. "egg-view-nunjucks": "^2.3.0",
  14. "uuid": "^8.3.2"
  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-Y",
  30. "stop": "egg-scripts stop --title=egg-server-Y",
  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. "update": "powershell -command \"rm app/public/* -r -fo\" && powershell -command \"cp ../VPNWeb/dist/* app/public/ -r\"",
  40. "dist": "tar cvzf admin-dist.tar.gz --exclude=.git * "
  41. },
  42. "ci": {
  43. "version": "10"
  44. },
  45. "repository": {
  46. "type": "git",
  47. "url": ""
  48. },
  49. "author": "",
  50. "license": "MIT"
  51. }