package.json 2.3 KB

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