package.json 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. {
  2. "name": "jiaolongcloud",
  3. "version": "0.1.0",
  4. "private": true,
  5. "main": "plugins/electron.js",
  6. "description": "jiaolongcloud",
  7. "scripts": {
  8. "serve": "vue-cli-service serve",
  9. "build": "vue-cli-service build",
  10. "build:package": "node plugins/build.js",
  11. "start": "yarn run serve",
  12. "start:win": "electron . win",
  13. "start:mac": "electron . mac",
  14. "lint": "vue-cli-service lint"
  15. },
  16. "dependencies": {
  17. "@ant-design/icons-vue": "^6.1.0",
  18. "@codemirror/lang-javascript": "^6.1.7",
  19. "@codemirror/lang-sql": "^6.5.4",
  20. "@codemirror/lang-vue": "^0.1.1",
  21. "@codemirror/theme-one-dark": "^6.1.2",
  22. "@codemirror/view": "^6.10.1",
  23. "@ssthouse/vue3-tree-chart": "^0.2.6",
  24. "@vue-js-cron/ant": "^1.1.2",
  25. "@vueuse/core": "^9.13.0",
  26. "ant-design-vue": "^4.0.0-rc.3",
  27. "axios": "^1.3.5",
  28. "codemirror": "^6.0.1",
  29. "core-js": "^3.8.3",
  30. "dayjs": "^1.11.7",
  31. "echarts": "^5.4.2",
  32. "flicker-vue-hooks": "^1.0.16",
  33. "html2canvas": "^1.4.1",
  34. "mitt": "^3.0.0",
  35. "normalize.css": "^8.0.1",
  36. "path-browserify": "^1.0.1",
  37. "pinia": "^2.0.33",
  38. "pinia-plugin-persistedstate": "^3.2.0",
  39. "style-resources-loader": "^1.5.0",
  40. "vue": "^3.3.4",
  41. "vue-class-component": "^8.0.0-0",
  42. "vue-countup-v3": "^1.4.0",
  43. "vue-hooks-plus": "^1.6.2",
  44. "vue-router": "^4.0.3",
  45. "w3c-keyname": "^2.2.8"
  46. },
  47. "devDependencies": {
  48. "@typescript-eslint/eslint-plugin": "^5.4.0",
  49. "@typescript-eslint/parser": "^5.4.0",
  50. "@vue/cli-plugin-babel": "~5.0.0",
  51. "@vue/cli-plugin-eslint": "~5.0.0",
  52. "@vue/cli-plugin-router": "~5.0.0",
  53. "@vue/cli-plugin-typescript": "~5.0.0",
  54. "@vue/cli-service": "~5.0.0",
  55. "@vue/eslint-config-standard": "^6.1.0",
  56. "@vue/eslint-config-typescript": "^9.1.0",
  57. "electron": "^25.2.0",
  58. "eslint": "^7.32.0",
  59. "eslint-plugin-import": "^2.25.3",
  60. "eslint-plugin-node": "^11.1.0",
  61. "eslint-plugin-promise": "^5.1.0",
  62. "eslint-plugin-vue": "^8.0.3",
  63. "less": "^4.0.0",
  64. "less-loader": "^8.0.0",
  65. "lint-staged": "^11.1.2",
  66. "typescript": "~4.5.5",
  67. "webpack-bundle-analyzer": "^4.9.0"
  68. },
  69. "eslintConfig": {
  70. "root": true,
  71. "env": {
  72. "node": true
  73. },
  74. "extends": [
  75. "plugin:vue/vue3-essential",
  76. "@vue/standard",
  77. "@vue/typescript/recommended"
  78. ],
  79. "parserOptions": {
  80. "ecmaVersion": 2020
  81. },
  82. "rules": {}
  83. },
  84. "browserslist": [
  85. "> 1%",
  86. "last 2 versions",
  87. "not dead",
  88. "not ie 11"
  89. ],
  90. "gitHooks": {
  91. "pre-commit": "lint-staged"
  92. },
  93. "lint-staged": {
  94. "*.{js,jsx,vue,ts,tsx}": "vue-cli-service lint"
  95. }
  96. }