package.json 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. {
  2. "name": "calculation",
  3. "version": "1.0.0",
  4. "description": "calculation paying frontend",
  5. "private": true,
  6. "dependencies": {
  7. "egg": "^1.13.0",
  8. "egg-js-validator": "^1.0.2",
  9. "egg-mysql": "^3.0.0",
  10. "egg-redis": "^1.0.2",
  11. "egg-scripts": "^1.0.0",
  12. "egg-session-redis": "^1.0.0",
  13. "egg-validate": "^1.0.0",
  14. "egg-view": "^1.1.2",
  15. "egg-view-ejs": "^1.1.0",
  16. "gt3-sdk": "^2.0.0",
  17. "moment": "^2.20.1",
  18. "node-uuid": "^1.4.8",
  19. "node-xlsx": "^0.12.0",
  20. "stream-to-array": "^2.3.0",
  21. "ueditor": "^1.2.3",
  22. "uglify-es": "^3.3.9",
  23. "uglify-js": "^3.3.27",
  24. "xmlreader": "^0.2.3"
  25. },
  26. "devDependencies": {
  27. "autod": "^2.9.0",
  28. "autod-egg": "^1.1.0",
  29. "egg-bin": "^4.3.7",
  30. "egg-ci": "^1.8.0",
  31. "egg-mock": "^3.14.0",
  32. "eslint": "^4.17.0",
  33. "eslint-config-egg": "^5.0.0",
  34. "webstorm-disable-index": "^1.2.0"
  35. },
  36. "engines": {
  37. "node": ">=6.0.0"
  38. },
  39. "scripts": {
  40. "start": "egg-scripts start --daemon --port 7002",
  41. "stop": "egg-scripts stop",
  42. "dev": "egg-bin dev --port 7002",
  43. "dev-local": "set EGG_SERVER_ENV=qa&&egg-bin dev --port 7002",
  44. "dev-qa": "set EGG_SERVER_ENV=qa&&egg-bin dev --port 7002",
  45. "test": "npm run lint -- --fix&&npm run test-local",
  46. "test-local": "set EGG_SERVER_ENV=local&& egg-bin test",
  47. "test-qa": "set EGG_SERVER_ENV=qa&&egg-bin test",
  48. "cov": "egg-bin cov",
  49. "lint": "eslint .",
  50. "ci": "npm run lint && npm run cov",
  51. "autod": "autod",
  52. "qa": "set EGG_SERVER_ENV=qa&npm run dev",
  53. "local": "set EGG_SERVER_ENV=local&npm run dev"
  54. },
  55. "ci": {
  56. "version": "6, 8"
  57. },
  58. "repository": {
  59. "type": "git",
  60. "url": ""
  61. },
  62. "author": "olym",
  63. "license": "MIT"
  64. }