package.json 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. {
  2. "name": "de-net-hotload",
  3. "version": "0.1.0",
  4. "denet_app_version_code": 17,
  5. "private": true,
  6. "scripts": {
  7. "serve": "vue-cli-service serve",
  8. "build-test": "vue-cli-service build --mode development",
  9. "build-pre": "vue-cli-service build --mode pre",
  10. "build-prod": "vue-cli-service build --mode production",
  11. "lint": "vue-cli-service lint"
  12. },
  13. "dependencies": {
  14. "@sentry/tracing": "^7.12.0",
  15. "@sentry/vue": "^7.12.0",
  16. "@vue/composition-api": "^1.7.0",
  17. "ant-design-vue": "^3.2.11",
  18. "axios": "^0.27.2",
  19. "clipboard": "^2.0.11",
  20. "core-js": "^3.8.3",
  21. "element-plus": "2.1.10",
  22. "moment": "^2.29.4",
  23. "postcss-import": "^15.0.0",
  24. "postcss-url": "^10.1.3",
  25. "qrcode": "^1.5.1",
  26. "vue": "^3.2.13",
  27. "vue-router": "^4.1.2"
  28. },
  29. "devDependencies": {
  30. "@babel/core": "^7.12.16",
  31. "@babel/eslint-parser": "^7.12.16",
  32. "@vue/cli-plugin-babel": "~5.0.0",
  33. "@vue/cli-plugin-eslint": "~5.0.0",
  34. "@vue/cli-service": "~5.0.0",
  35. "eslint": "^7.32.0",
  36. "eslint-plugin-vue": "^8.0.3",
  37. "sass": "^1.54.0",
  38. "sass-loader": "^13.0.2"
  39. },
  40. "eslintConfig": {
  41. "root": true,
  42. "env": {
  43. "node": true
  44. },
  45. "extends": [
  46. "plugin:vue/vue3-essential",
  47. "eslint:recommended"
  48. ],
  49. "parserOptions": {
  50. "parser": "@babel/eslint-parser"
  51. },
  52. "rules": {
  53. "no-undef": 0,
  54. "no-unused-vars": 0,
  55. "no-prototype-builtins": 0,
  56. "no-unreachable": 0,
  57. "no-case-declarations": 0,
  58. "no-extra-semi": 0,
  59. "vue/multi-word-component-names": "off",
  60. "vue/require-v-for-key": "off",
  61. "vue/no-use-v-if-with-v-for": "off"
  62. }
  63. },
  64. "browserslist": [
  65. "> 1%",
  66. "last 2 versions",
  67. "not dead",
  68. "not ie 11"
  69. ]
  70. }