package.json 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. {
  2. "name": "boxim",
  3. "version": "3.0.0",
  4. "private": true,
  5. "main": "main.js",
  6. "scripts": {
  7. "serve": "vue-cli-service serve",
  8. "build": "vue-cli-service build",
  9. "lint": "vue-cli-service lint",
  10. "start": "electron ."
  11. },
  12. "dependencies": {
  13. "axios": "1.7.7",
  14. "core-js": "3.38.1",
  15. "element-ui": "2.15.14",
  16. "js-audio-recorder": "1.0.7",
  17. "localforage": "1.10.0",
  18. "pinia": "^2.1.7",
  19. "pinyin-pro": "^3.26.0",
  20. "sass": "1.32.12",
  21. "sass-loader": "10.1.1",
  22. "vue": "2.7.16",
  23. "vue-axios": "3.5.2",
  24. "vue-router": "3.6.5"
  25. },
  26. "devDependencies": {
  27. "@vue/cli-plugin-babel": "~4.5.12",
  28. "@vue/cli-plugin-eslint": "~4.5.12",
  29. "@vue/cli-service": "~4.5.12",
  30. "babel-eslint": "^10.1.0",
  31. "electron": "^40.6.1",
  32. "eslint": "^6.7.2",
  33. "eslint-plugin-vue": "^6.2.2",
  34. "vue-template-compiler": "^2.6.11"
  35. },
  36. "eslintConfig": {
  37. "root": true,
  38. "env": {
  39. "node": true
  40. },
  41. "extends": [
  42. "plugin:vue/essential",
  43. "eslint:recommended"
  44. ],
  45. "parserOptions": {
  46. "parser": "babel-eslint"
  47. },
  48. "rules": {
  49. "no-mixed-spaces-and-tabs": 0,
  50. "generator-star-spacing": "off",
  51. "no-tabs": "off",
  52. "no-unused-vars": "off",
  53. "no-unused-labels": "off",
  54. "no-console": "off",
  55. "vue/no-unused-components": "off",
  56. "no-irregular-whitespace": "off",
  57. "no-debugger": "off",
  58. "no-useless-escape": "off"
  59. }
  60. },
  61. "browserslist": [
  62. "> 1%",
  63. "last 2 versions",
  64. "not dead"
  65. ]
  66. }