package.json 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. {
  2. "name": "iview-admin",
  3. "version": "2.0.0",
  4. "author": "Lison<lison16new@163.com>",
  5. "private": false,
  6. "scripts": {
  7. "dev": "vue-cli-service serve --mode dev",
  8. "build_test": "vue-cli-service build --mode test",
  9. "build_test_worksop": "vue-cli-service build --mode test_worksop",
  10. "build_uat": "vue-cli-service build --mode uat",
  11. "build_pro": "vue-cli-service build --mode pro",
  12. "build_lib": "vue-cli-service build --target dk --name dk dk/index.js",
  13. "lint": "vue-cli-service lint",
  14. "test:unit": "vue-cli-service test:unit",
  15. "test:e2e": "vue-cli-service test:e2e"
  16. },
  17. "dependencies": {
  18. "@antv/x6": "2.2.1",
  19. "@antv/x6-plugin-clipboard": "^2.1.3",
  20. "@antv/x6-plugin-dnd": "^2.0.3",
  21. "@antv/x6-plugin-export": "^2.1.5",
  22. "@antv/x6-plugin-history": "^2.1.2",
  23. "@antv/x6-plugin-keyboard": "^2.1.4",
  24. "@antv/x6-plugin-selection": "^2.1.5",
  25. "@antv/x6-plugin-snapline": "^2.1.6",
  26. "@antv/x6-plugin-stencil": "^2.0.2",
  27. "@antv/x6-plugin-transform": "^2.1.5",
  28. "@babel/plugin-proposal-optional-chaining": "^7.18.9",
  29. "@tinymce/tinymce-vue": "^3.2.8",
  30. "axios": "^0.18.0",
  31. "element-ui": "^2.15.12",
  32. "js-md5": "^0.7.3",
  33. "sortablejs": "^1.14.0",
  34. "tinymce": "^5.10.7",
  35. "view-design": "^4.7.0",
  36. "vue": "^2.7.14",
  37. "vue-i18n": "^7.8.0",
  38. "vue-router": "3.0.0",
  39. "vuex": "^3.0.1",
  40. "vuex-persistedstate": "^2.5.4",
  41. "vxe-table": "3.5.9",
  42. "iview-area": "^1.6.0",
  43. "insert-css": "^2.0.0",
  44. "xe-utils": "^3.5.7",
  45. "js-cookie": "^2.2.0",
  46. "simple-keyboard": "^3.4.32",
  47. "simple-keyboard-layouts": "^3.1.34"
  48. },
  49. "devDependencies": {
  50. "@vue/cli-plugin-babel": "^3.0.1",
  51. "@vue/cli-plugin-eslint": "^3.0.1",
  52. "@vue/cli-plugin-unit-mocha": "^3.0.1",
  53. "@vue/cli-service": "^3.0.1",
  54. "@vue/eslint-config-standard": "^3.0.0-beta.10",
  55. "babel-plugin-component": "^1.1.1",
  56. "babel-plugin-import": "^1.13.0",
  57. "eslint-plugin-cypress": "^2.0.1",
  58. "flag-icon-css": "^3.4.6",
  59. "friendly-errors-webpack-plugin": "^1.7.0",
  60. "uuid": "^3.3.2",
  61. "vue-template-compiler": "^2.7.14",
  62. "less": "^2.7.3",
  63. "less-loader": "^4.0.5",
  64. "lint-staged": "^6.0.0",
  65. "node-sass": "4.14.1",
  66. "sass-loader": "8.0.0"
  67. },
  68. "browserslist": [
  69. "> 1%",
  70. "last 2 versions",
  71. "not ie <= 8"
  72. ],
  73. "gitHooks": {
  74. "pre-commit": "lint-staged"
  75. },
  76. "app-plus": {
  77. "softinputMode": "adjustPan"
  78. },
  79. "lint-staged": {
  80. "*.js": [
  81. "vue-cli-service lint",
  82. "git add"
  83. ],
  84. "*.vue": [
  85. "vue-cli-service lint",
  86. "git add"
  87. ]
  88. }
  89. }