package.json 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  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. "style-resources-loader": "^1.5.0",
  39. "vue": "^3.2.13",
  40. "vue-class-component": "^8.0.0-0",
  41. "vue-countup-v3": "^1.4.0",
  42. "vue-hooks-plus": "^1.6.2",
  43. "vue-router": "^4.0.3",
  44. "w3c-keyname": "^2.2.8"
  45. },
  46. "devDependencies": {
  47. "@typescript-eslint/eslint-plugin": "^5.4.0",
  48. "@typescript-eslint/parser": "^5.4.0",
  49. "@vue/cli-plugin-babel": "~5.0.0",
  50. "@vue/cli-plugin-eslint": "~5.0.0",
  51. "@vue/cli-plugin-router": "~5.0.0",
  52. "@vue/cli-plugin-typescript": "~5.0.0",
  53. "@vue/cli-service": "~5.0.0",
  54. "@vue/eslint-config-standard": "^6.1.0",
  55. "@vue/eslint-config-typescript": "^9.1.0",
  56. "electron": "^25.2.0",
  57. "eslint": "^7.32.0",
  58. "eslint-plugin-import": "^2.25.3",
  59. "eslint-plugin-node": "^11.1.0",
  60. "eslint-plugin-promise": "^5.1.0",
  61. "eslint-plugin-vue": "^8.0.3",
  62. "less": "^4.0.0",
  63. "less-loader": "^8.0.0",
  64. "lint-staged": "^11.1.2",
  65. "typescript": "~4.5.5",
  66. "webpack-bundle-analyzer": "^4.9.0"
  67. },
  68. "eslintConfig": {
  69. "root": true,
  70. "env": {
  71. "node": true
  72. },
  73. "extends": [
  74. "plugin:vue/vue3-essential",
  75. "@vue/standard",
  76. "@vue/typescript/recommended"
  77. ],
  78. "parserOptions": {
  79. "ecmaVersion": 2020
  80. },
  81. "rules": {}
  82. },
  83. "browserslist": [
  84. "> 1%",
  85. "last 2 versions",
  86. "not dead",
  87. "not ie 11"
  88. ],
  89. "gitHooks": {
  90. "pre-commit": "lint-staged"
  91. },
  92. "lint-staged": {
  93. "*.{js,jsx,vue,ts,tsx}": "vue-cli-service lint"
  94. }
  95. }