package.json 2.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. {
  2. "name": "smart-admin",
  3. "version": "1.0.0",
  4. "author": "1024创新实验室<1024lab@sina.com>",
  5. "private": false,
  6. "scripts": {
  7. "dev": "vue-cli-service serve --open",
  8. "local": "vue-cli-service serve --open --mode local",
  9. "serve": "vue-cli-service serve",
  10. "build": "vue-cli-service build",
  11. "lint": "vue-cli-service lint",
  12. "test:unit": "vue-cli-service test:unit",
  13. "test:e2e": "vue-cli-service test:e2e",
  14. "development": "vue-cli-service build --mode development",
  15. "sit": "vue-cli-service build --mode sit",
  16. "prod": "vue-cli-service build --mode prod",
  17. "analyz": "use_analyzer=true npm run serve"
  18. },
  19. "dependencies": {
  20. "@antv/g2": "^3.5.8-beta.1",
  21. "@babel/polyfill": "^7.12.1",
  22. "axios": "^0.18.0",
  23. "better-scroll": "^2.4.2",
  24. "clipboard": "^2.0.0",
  25. "codemirror": "^5.38.0",
  26. "countup": "^1.8.2",
  27. "cropperjs": "^1.2.2",
  28. "dayjs": "^1.7.7",
  29. "decimal.js": "^10.1.1",
  30. "echarts": "^5.0.2",
  31. "element-ui": "^2.15.6",
  32. "flyio": "^0.6.14",
  33. "gq-plus": "^2.1.5",
  34. "html2canvas": "^1.0.0-alpha.12",
  35. "jquery": "^2.2.3",
  36. "js-cookie": "^2.2.0",
  37. "lodash": "^4.17.15",
  38. "mavon-editor": "^2.7.5",
  39. "moment": "^2.24.0",
  40. "simplemde": "^1.11.2",
  41. "sortablejs": "^1.7.0",
  42. "v-org-tree": "^1.0.6",
  43. "v-viewer": "^1.5.1",
  44. "vcrontab": "^0.3.5",
  45. "view-design": "^4.6.1",
  46. "vue": "^2.5.10",
  47. "vue-data-loading": "^0.2.4",
  48. "vue-enum": "1.0.5",
  49. "vue-i18n": "^7.8.0",
  50. "vue-infinite-loading": "^2.4.4",
  51. "vue-json-viewer": "^2.2.0",
  52. "vue-json-views": "^0.1.1",
  53. "vue-router": "^3.1.3",
  54. "vue-seamless-scroll": "^1.1.23",
  55. "vue-slick": "^1.1.15",
  56. "vuedraggable": "^2.16.0",
  57. "vuex": "^3.0.1",
  58. "wangeditor": "^3.1.1",
  59. "xlsx": "^0.13.3"
  60. },
  61. "devDependencies": {
  62. "@vue/cli-plugin-babel": "^3.0.1",
  63. "@vue/cli-plugin-eslint": "^3.0.1",
  64. "@vue/cli-plugin-unit-mocha": "^3.0.1",
  65. "@vue/cli-service": "^3.0.1",
  66. "@vue/eslint-config-standard": "^3.0.0-beta.10",
  67. "@vue/test-utils": "^1.0.0-beta.10",
  68. "babel-plugin-component": "^1.1.1",
  69. "chai": "^4.1.2",
  70. "compression-webpack-plugin": "^3.0.0",
  71. "eslint-plugin-cypress": "^2.0.1",
  72. "less": "^2.7.3",
  73. "less-loader": "^4.0.5",
  74. "lint-staged": "^6.0.0",
  75. "uglifyjs-webpack-plugin": "^1.2.4",
  76. "vue-template-compiler": "^2.5.13",
  77. "webpack-bundle-analyzer": "^4.4.0"
  78. },
  79. "browserslist": [
  80. "> 1%",
  81. "last 2 versions",
  82. "not ie <= 8"
  83. ],
  84. "gitHooks": {
  85. "pre-commit": "lint-staged"
  86. },
  87. "lint-staged": {
  88. "*.js": [
  89. "vue-cli-service lint",
  90. "git add"
  91. ],
  92. "*.vue": [
  93. "vue-cli-service lint",
  94. "git add"
  95. ]
  96. }
  97. }