package.json 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  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": "^3.3.0-beta.4",
  21. "axios": "^1.3.5",
  22. "babel-plugin-import": "^1.13.6",
  23. "codemirror": "^6.0.1",
  24. "core-js": "^3.8.3",
  25. "dayjs": "^1.11.7",
  26. "html2canvas": "^1.4.1",
  27. "mitt": "^3.0.0",
  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. },
  36. "devDependencies": {
  37. "@typescript-eslint/eslint-plugin": "^5.4.0",
  38. "@typescript-eslint/parser": "^5.4.0",
  39. "@vue/cli-plugin-babel": "~5.0.0",
  40. "@vue/cli-plugin-eslint": "~5.0.0",
  41. "@vue/cli-plugin-router": "~5.0.0",
  42. "@vue/cli-plugin-typescript": "~5.0.0",
  43. "@vue/cli-service": "~5.0.0",
  44. "@vue/eslint-config-standard": "^6.1.0",
  45. "@vue/eslint-config-typescript": "^9.1.0",
  46. "eslint": "^7.32.0",
  47. "eslint-plugin-import": "^2.25.3",
  48. "eslint-plugin-node": "^11.1.0",
  49. "eslint-plugin-promise": "^5.1.0",
  50. "eslint-plugin-vue": "^8.0.3",
  51. "less": "^4.0.0",
  52. "less-loader": "^8.0.0",
  53. "lint-staged": "^11.1.2",
  54. "typescript": "~4.5.5"
  55. },
  56. "eslintConfig": {
  57. "root": true,
  58. "env": {
  59. "node": true
  60. },
  61. "extends": [
  62. "plugin:vue/vue3-essential",
  63. "@vue/standard",
  64. "@vue/typescript/recommended"
  65. ],
  66. "parserOptions": {
  67. "ecmaVersion": 2020
  68. },
  69. "rules": {}
  70. },
  71. "browserslist": [
  72. "> 1%",
  73. "last 2 versions",
  74. "not dead",
  75. "not ie 11"
  76. ],
  77. "gitHooks": {
  78. "pre-commit": "lint-staged"
  79. },
  80. "lint-staged": {
  81. "*.{js,jsx,vue,ts,tsx}": "vue-cli-service lint"
  82. }
  83. }