package.json 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  1. {
  2. "name": "onecloud",
  3. "version": "0.1.0",
  4. "private": true,
  5. "scripts": {
  6. "serve": "vue-cli-service serve",
  7. "build": "node --max_old_space_size=${MAX_OLD_SPACE_SIZE:-4096} node_modules/@vue/cli-service/bin/vue-cli-service.js build",
  8. "analyz": "analyzer_report=true node --max_old_space_size=${MAX_OLD_SPACE_SIZE:-4096} node_modules/@vue/cli-service/bin/vue-cli-service.js build --report-json",
  9. "lint": "vue-cli-service lint --fix",
  10. "test:unit": "vue-cli-service test:unit",
  11. "test:unit:dev": "vue-cli-service test:unit --watchAll",
  12. "i18n:generate": "node ./src/tools/i18n-generator generate",
  13. "deploy": "node ./upload/upload.js"
  14. },
  15. "dependencies": {
  16. "@wangeditor/editor": "^5.1.23",
  17. "@wangeditor/editor-for-vue": "^1.0.2",
  18. "ajv": "^6.12.3",
  19. "ajv-errors": "^1.0.1",
  20. "animejs": "^3.1.0",
  21. "ant-design-vue": "^1.6.4",
  22. "axios": "^0.19.0",
  23. "chalk": "^4.1.0",
  24. "clipboard": "^2.0.11",
  25. "codemirror": "^5.52.2",
  26. "compressing": "^1.5.1",
  27. "core-js": "^3.6.5",
  28. "crypto-js": "^4.0.0",
  29. "custom-protocol-detection": "^1.0.1",
  30. "echarts": "^4.4.0",
  31. "echarts-liquidfill": "^2.0.6",
  32. "extend": "^3.0.2",
  33. "fast-json-stable-stringify": "^2.1.0",
  34. "html2canvas": "^1.3.2",
  35. "i18n-iso-countries": "^7.14.0",
  36. "ipaddr.js": "^2.2.0",
  37. "js-base64": "^2.5.1",
  38. "js-cookie": "^3.0.4",
  39. "js-yaml": "^3.13.1",
  40. "jspdf": "^2.4.0",
  41. "jsrsasign": "^8.0.20",
  42. "lodash": "^4.17.21",
  43. "marked": "^1.1.0",
  44. "mockjs": "^1.1.0",
  45. "moment": "^2.24.0",
  46. "node-ssh": "^11.1.1",
  47. "numerify": "^1.2.9",
  48. "objectpath": "^2.0.0",
  49. "qs": "^6.8.0",
  50. "ramda": "^0.27.0",
  51. "resize-detector": "^0.2.1",
  52. "resize-observer-polyfill": "^1.5.1",
  53. "shelljs": "^0.8.4",
  54. "socket.io-client": "^2.3.0",
  55. "uplot": "1.5.2",
  56. "v-charts": "^1.19.0",
  57. "vue": "^2.7.14",
  58. "vue-cropperjs": "^4.0.1",
  59. "vue-grid-layout": "^2.3.7",
  60. "vue-i18n": "^8.14.0",
  61. "vue-json-excel": "^0.3.0",
  62. "vue-router": "^3.2.0",
  63. "vuedraggable": "^2.23.2",
  64. "vuex": "^3.4.0",
  65. "vxe-table": "2.9.22",
  66. "vxe-table-plugin-antd": "1.9.2",
  67. "xe-utils": "^2.7.12",
  68. "xlsx": "^0.16.9",
  69. "xterm": "3.7.0"
  70. },
  71. "devDependencies": {
  72. "@ant-design/colors": "^4.0.1",
  73. "@vue/cli-plugin-babel": "~4.5.18",
  74. "@vue/cli-plugin-eslint": "~4.5.18",
  75. "@vue/cli-plugin-router": "~4.5.18",
  76. "@vue/cli-plugin-unit-jest": "~4.5.18",
  77. "@vue/cli-plugin-vuex": "~4.5.18",
  78. "@vue/cli-service": "~4.5.18",
  79. "@vue/eslint-config-standard": "^5.1.2",
  80. "@vue/test-utils": "^1.0.3",
  81. "autodll-webpack-plugin": "^0.4.2",
  82. "babel-eslint": "^10.1.0",
  83. "colors": "^1.4.0",
  84. "eslint": "^6.7.2",
  85. "eslint-plugin-import": "^2.20.2",
  86. "eslint-plugin-node": "^11.1.0",
  87. "eslint-plugin-promise": "^4.2.1",
  88. "eslint-plugin-standard": "^4.0.0",
  89. "eslint-plugin-vue": "^6.2.2",
  90. "glob": "^7.1.6",
  91. "less": "^3.11.3",
  92. "less-loader": "^6.1.0",
  93. "lint-staged": "^9.5.0",
  94. "sass": "~1.32.0",
  95. "sass-loader": "^8.0.2",
  96. "svg-sprite-loader": "^5.0.0",
  97. "vue-template-compiler": "^2.6.11",
  98. "webpack-theme-color-replacer": "^1.3.13"
  99. },
  100. "resolutions": {
  101. "@achrinza/node-ipc": "^10.0.0"
  102. },
  103. "gitHooks": {
  104. "pre-commit": "lint-staged"
  105. },
  106. "lint-staged": {
  107. "*.{js,jsx,vue}": [
  108. "vue-cli-service lint --fix",
  109. "git add"
  110. ]
  111. }
  112. }