package.json 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  1. {
  2. "name": "vue-element-plus-admin-webpack",
  3. "version": "0.1.0",
  4. "private": true,
  5. "scripts": {
  6. "serve": "vue-cli-service serve",
  7. "ls-lint": "npx ls-lint",
  8. "lint": "vue-cli-service lint",
  9. "build-dev:index": "cross-env PROJECT_NAME=index vue-cli-service build --mode development",
  10. "build-pro:index": "cross-env PROJECT_NAME=index vue-cli-service build",
  11. "build-test:index": "cross-env PROJECT_NAME=index vue-cli-service build --mode test",
  12. "build:all": "npm run build:dev && npm run build:pro && npm run build:test",
  13. "build:dev": "vue-cli-service build --mode development",
  14. "build:pro": "vue-cli-service build",
  15. "build:test": "vue-cli-service build --mode test",
  16. "serve:index": "cross-env PROJECT_NAME=index vue-cli-service serve",
  17. "clean": "npx rimraf node_modules"
  18. },
  19. "dependencies": {
  20. "axios": "^0.20.0",
  21. "clipboard": "^2.0.6",
  22. "core-js": "^3.6.5",
  23. "echarts": "^4.9.0",
  24. "element-plus": "1.0.1-beta.14",
  25. "highlight.js": "^10.4.0",
  26. "lodash-es": "^4.17.15",
  27. "mitt": "^2.1.0",
  28. "mockjs": "^1.1.0",
  29. "normalize.css": "^8.0.1",
  30. "nprogress": "^0.2.0",
  31. "path-to-regexp": "^6.2.0",
  32. "qs": "^6.9.4",
  33. "screenfull": "^5.0.2",
  34. "vditor": "^3.7.0",
  35. "vue": "3.0.4",
  36. "vue-router": "4.0.0-rc.6",
  37. "vuex": "4.0.0-rc.2",
  38. "wangeditor": "4.5.4",
  39. "web-storage-cache": "^1.1.1"
  40. },
  41. "devDependencies": {
  42. "@commitlint/cli": "^11.0.0",
  43. "@commitlint/config-conventional": "^11.0.0",
  44. "@ls-lint/ls-lint": "^1.9.2",
  45. "@types/clipboard": "^2.0.1",
  46. "@types/echarts": "^4.9.1",
  47. "@types/lodash-es": "^4.17.3",
  48. "@types/mockjs": "^1.0.3",
  49. "@types/nprogress": "^0.2.0",
  50. "@typescript-eslint/eslint-plugin": "^4.5.0",
  51. "@typescript-eslint/parser": "^4.5.0",
  52. "@vue/cli-plugin-babel": "^4.5.9",
  53. "@vue/cli-plugin-eslint": "~4.5.0",
  54. "@vue/cli-plugin-router": "~4.5.0",
  55. "@vue/cli-plugin-typescript": "~4.5.0",
  56. "@vue/cli-plugin-vuex": "~4.5.0",
  57. "@vue/cli-service": "~4.5.0",
  58. "@vue/compiler-sfc": "^3.0.3",
  59. "@vue/eslint-config-typescript": "^5.0.2",
  60. "babel-eslint": "^10.1.0",
  61. "babel-plugin-component": "^1.1.1",
  62. "babel-plugin-import": "^1.13.1",
  63. "body-parser": "^1.19.0",
  64. "chalk": "^4.1.0",
  65. "chokidar": "^3.4.3",
  66. "compression-webpack-plugin": "^6.0.3",
  67. "cross-env": "^7.0.2",
  68. "eslint": "^6.7.2",
  69. "eslint-config-prettier": "^6.14.0",
  70. "eslint-plugin-prettier": "^3.1.4",
  71. "eslint-plugin-vue": "^7.0.0-0",
  72. "husky": "^1.3.1",
  73. "less": "^3.0.4",
  74. "less-loader": "^5.0.0",
  75. "path": "^0.12.7",
  76. "prettier": "^2.1.2",
  77. "script-ext-html-webpack-plugin": "^2.1.4",
  78. "style-resources-loader": "^1.3.3",
  79. "svg-sprite-loader": "^5.0.0",
  80. "terser-webpack-plugin": "4.1.0",
  81. "typescript": "~3.9.3",
  82. "uglifyjs-webpack-plugin": "^2.2.0",
  83. "vue-cli-plugin-element-plus": "^0.0.8",
  84. "vuex-module-decorators": "^1.0.1"
  85. },
  86. "keywords": [
  87. "vue",
  88. "typescript",
  89. "admin",
  90. "template",
  91. "element-plus"
  92. ],
  93. "husky": {
  94. "hooks": {
  95. "pre-commit": "lint-staged",
  96. "commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
  97. }
  98. }
  99. }