package.json 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. {
  2. "name": "jiaolongyun",
  3. "version": "0.1.0",
  4. "private": true,
  5. "scripts": {
  6. "serve": "vue-cli-service serve",
  7. "build": "vue-cli-service build",
  8. "start": "yarn run serve",
  9. "lint": "vue-cli-service lint"
  10. },
  11. "dependencies": {
  12. "@ant-design/icons-vue": "^6.1.0",
  13. "@codemirror/lang-javascript": "^6.1.7",
  14. "@codemirror/lang-vue": "^0.1.1",
  15. "@codemirror/theme-one-dark": "^6.1.2",
  16. "@codemirror/view": "^6.10.1",
  17. "@ssthouse/vue3-tree-chart": "^0.2.6",
  18. "@vueuse/core": "^9.13.0",
  19. "ant-design-vue": "^3.3.0-beta.4",
  20. "axios": "^1.3.5",
  21. "babel-plugin-import": "^1.13.6",
  22. "codemirror": "^6.0.1",
  23. "core-js": "^3.8.3",
  24. "dayjs": "^1.11.7",
  25. "html2canvas": "^1.4.1",
  26. "mitt": "^3.0.0",
  27. "path-browserify": "^1.0.1",
  28. "pinia": "^2.0.33",
  29. "style-resources-loader": "^1.5.0",
  30. "vue": "^3.2.13",
  31. "vue-class-component": "^8.0.0-0",
  32. "vue-hooks-plus": "^1.6.2",
  33. "vue-router": "^4.0.3"
  34. },
  35. "devDependencies": {
  36. "@typescript-eslint/eslint-plugin": "^5.4.0",
  37. "@typescript-eslint/parser": "^5.4.0",
  38. "@vue/cli-plugin-babel": "~5.0.0",
  39. "@vue/cli-plugin-eslint": "~5.0.0",
  40. "@vue/cli-plugin-router": "~5.0.0",
  41. "@vue/cli-plugin-typescript": "~5.0.0",
  42. "@vue/cli-service": "~5.0.0",
  43. "@vue/eslint-config-standard": "^6.1.0",
  44. "@vue/eslint-config-typescript": "^9.1.0",
  45. "eslint": "^7.32.0",
  46. "eslint-plugin-import": "^2.25.3",
  47. "eslint-plugin-node": "^11.1.0",
  48. "eslint-plugin-promise": "^5.1.0",
  49. "eslint-plugin-vue": "^8.0.3",
  50. "less": "^4.0.0",
  51. "less-loader": "^8.0.0",
  52. "lint-staged": "^11.1.2",
  53. "typescript": "~4.5.5"
  54. },
  55. "eslintConfig": {
  56. "root": true,
  57. "env": {
  58. "node": true
  59. },
  60. "extends": [
  61. "plugin:vue/vue3-essential",
  62. "@vue/standard",
  63. "@vue/typescript/recommended"
  64. ],
  65. "parserOptions": {
  66. "ecmaVersion": 2020
  67. },
  68. "rules": {}
  69. },
  70. "browserslist": [
  71. "> 1%",
  72. "last 2 versions",
  73. "not dead",
  74. "not ie 11"
  75. ],
  76. "gitHooks": {
  77. "pre-commit": "lint-staged"
  78. },
  79. "lint-staged": {
  80. "*.{js,jsx,vue,ts,tsx}": "vue-cli-service lint"
  81. }
  82. }