package.json 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. {
  2. "name": "jiaolongcloud",
  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. "@vue-js-cron/ant": "^1.1.2",
  19. "@vueuse/core": "^9.13.0",
  20. "ant-design-vue": "^4.0.0-rc.3",
  21. "axios": "^1.3.5",
  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. "normalize.css": "^8.0.1",
  28. "path-browserify": "^1.0.1",
  29. "pinia": "^2.0.33",
  30. "style-resources-loader": "^1.5.0",
  31. "vue": "^3.2.13",
  32. "vue-class-component": "^8.0.0-0",
  33. "vue-hooks-plus": "^1.6.2",
  34. "vue-router": "^4.0.3",
  35. "w3c-keyname": "^2.2.8"
  36. },
  37. "devDependencies": {
  38. "@typescript-eslint/eslint-plugin": "^5.4.0",
  39. "@typescript-eslint/parser": "^5.4.0",
  40. "@vue/cli-plugin-babel": "~5.0.0",
  41. "@vue/cli-plugin-eslint": "~5.0.0",
  42. "@vue/cli-plugin-router": "~5.0.0",
  43. "@vue/cli-plugin-typescript": "~5.0.0",
  44. "@vue/cli-service": "~5.0.0",
  45. "@vue/eslint-config-standard": "^6.1.0",
  46. "@vue/eslint-config-typescript": "^9.1.0",
  47. "eslint": "^7.32.0",
  48. "eslint-plugin-import": "^2.25.3",
  49. "eslint-plugin-node": "^11.1.0",
  50. "eslint-plugin-promise": "^5.1.0",
  51. "eslint-plugin-vue": "^8.0.3",
  52. "less": "^4.0.0",
  53. "less-loader": "^8.0.0",
  54. "lint-staged": "^11.1.2",
  55. "typescript": "~4.5.5"
  56. },
  57. "eslintConfig": {
  58. "root": true,
  59. "env": {
  60. "node": true
  61. },
  62. "extends": [
  63. "plugin:vue/vue3-essential",
  64. "@vue/standard",
  65. "@vue/typescript/recommended"
  66. ],
  67. "parserOptions": {
  68. "ecmaVersion": 2020
  69. },
  70. "rules": {}
  71. },
  72. "browserslist": [
  73. "> 1%",
  74. "last 2 versions",
  75. "not dead",
  76. "not ie 11"
  77. ],
  78. "gitHooks": {
  79. "pre-commit": "lint-staged"
  80. },
  81. "lint-staged": {
  82. "*.{js,jsx,vue,ts,tsx}": "vue-cli-service lint"
  83. }
  84. }