package.json 2.0 KB

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