package.json 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  1. {
  2. "name": "vue-element-admin",
  3. "version": "4.4.0",
  4. "description": "A magical vue admin. An out-of-box UI solution for enterprise applications. Newest development stack of vue. Lots of awesome features",
  5. "author": "Pan <panfree23@gmail.com>",
  6. "scripts": {
  7. "dev": "vue-cli-service serve",
  8. "lint": "eslint --ext .js,.vue src",
  9. "build:prod": "vue-cli-service build",
  10. "build:stage": "vue-cli-service build --mode staging",
  11. "preview": "node build/index.js --preview",
  12. "new": "plop",
  13. "svgo": "svgo -f src/icons/svg --config=src/icons/svgo.yml",
  14. "test:unit": "jest --clearCache && vue-cli-service test:unit",
  15. "test:ci": "npm run lint && npm run test:unit"
  16. },
  17. "dependencies": {
  18. "axios": "0.18.1",
  19. "clipboard": "2.0.4",
  20. "cnpm": "^6.1.1",
  21. "codemirror": "5.45.0",
  22. "core-js": "3.6.5",
  23. "driver.js": "0.9.5",
  24. "dropzone": "5.5.1",
  25. "echarts": "^4.9.0",
  26. "element-ui": "2.13.2",
  27. "file-saver": "2.0.1",
  28. "fuse.js": "3.4.4",
  29. "js-cookie": "2.2.0",
  30. "jsonlint": "1.6.3",
  31. "jszip": "3.2.1",
  32. "normalize.css": "7.0.0",
  33. "nprogress": "0.2.0",
  34. "path-to-regexp": "2.4.0",
  35. "screenfull": "4.2.0",
  36. "script-loader": "0.7.2",
  37. "sortablejs": "1.8.4",
  38. "tui-editor": "1.3.3",
  39. "vue": "2.6.10",
  40. "vue-count-to": "1.0.13",
  41. "vue-cute-timeline": "^1.2.8",
  42. "vue-horizontal-timeline": "^0.7.0",
  43. "vue-router": "3.0.2",
  44. "vue-splitpane": "1.0.4",
  45. "vuedraggable": "2.20.0",
  46. "vuex": "3.1.0",
  47. "xlsx": "0.14.1"
  48. },
  49. "devDependencies": {
  50. "@vue/cli-plugin-babel": "4.4.4",
  51. "@vue/cli-plugin-eslint": "4.4.4",
  52. "@vue/cli-plugin-unit-jest": "4.4.4",
  53. "@vue/cli-service": "4.4.4",
  54. "@vue/test-utils": "1.0.0-beta.29",
  55. "autoprefixer": "9.5.1",
  56. "babel-eslint": "10.1.0",
  57. "babel-jest": "23.6.0",
  58. "babel-plugin-dynamic-import-node": "2.3.3",
  59. "chalk": "2.4.2",
  60. "chokidar": "2.1.5",
  61. "connect": "3.6.6",
  62. "eslint": "6.7.2",
  63. "eslint-plugin-vue": "6.2.2",
  64. "html-webpack-plugin": "3.2.0",
  65. "husky": "1.3.1",
  66. "less": "^3.12.2",
  67. "less-loader": "^7.0.2",
  68. "lint-staged": "8.1.5",
  69. "mockjs": "1.0.1-beta3",
  70. "plop": "2.3.0",
  71. "runjs": "4.3.2",
  72. "sass": "1.26.2",
  73. "sass-loader": "8.0.2",
  74. "script-ext-html-webpack-plugin": "2.1.3",
  75. "serve-static": "1.13.2",
  76. "svg-sprite-loader": "4.1.3",
  77. "svgo": "1.2.0",
  78. "vue-template-compiler": "2.6.10"
  79. },
  80. "browserslist": [
  81. "> 1%",
  82. "last 2 versions"
  83. ],
  84. "bugs": {
  85. "url": "https://github.com/PanJiaChen/vue-element-admin/issues"
  86. },
  87. "engines": {
  88. "node": ">=8.9",
  89. "npm": ">= 3.0.0"
  90. },
  91. "keywords": [
  92. "vue",
  93. "admin",
  94. "dashboard",
  95. "element-ui",
  96. "boilerplate",
  97. "admin-template",
  98. "management-system"
  99. ],
  100. "license": "MIT",
  101. "lint-staged": {
  102. "src/**/*.{js,vue}": [
  103. "eslint --fix",
  104. "git add"
  105. ]
  106. },
  107. "husky": {
  108. "hooks": {
  109. "pre-commit": "lint-staged"
  110. }
  111. },
  112. "repository": {
  113. "type": "git",
  114. "url": "git+https://github.com/PanJiaChen/vue-element-admin.git"
  115. }
  116. }