package.json 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  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. "core-js": "^3.8.3",
  20. "element-plus": "2.1.10",
  21. "moment": "^2.29.4",
  22. "postcss-import": "^15.0.0",
  23. "postcss-url": "^10.1.3",
  24. "vue": "^3.2.13",
  25. "vue-router": "^4.1.2"
  26. },
  27. "devDependencies": {
  28. "@babel/core": "^7.12.16",
  29. "@babel/eslint-parser": "^7.12.16",
  30. "@vue/cli-plugin-babel": "~5.0.0",
  31. "@vue/cli-plugin-eslint": "~5.0.0",
  32. "@vue/cli-service": "~5.0.0",
  33. "eslint": "^7.32.0",
  34. "eslint-plugin-vue": "^8.0.3",
  35. "sass": "^1.54.0",
  36. "sass-loader": "^13.0.2"
  37. },
  38. "eslintConfig": {
  39. "root": true,
  40. "env": {
  41. "node": true
  42. },
  43. "extends": [
  44. "plugin:vue/vue3-essential",
  45. "eslint:recommended"
  46. ],
  47. "parserOptions": {
  48. "parser": "@babel/eslint-parser"
  49. },
  50. "rules": {
  51. "no-undef": 0,
  52. "no-unused-vars": 0,
  53. "no-prototype-builtins": 0,
  54. "no-unreachable": 0,
  55. "no-case-declarations": 0,
  56. "no-extra-semi": 0,
  57. "vue/multi-word-component-names": "off",
  58. "vue/require-v-for-key": "off",
  59. "vue/no-use-v-if-with-v-for": "off"
  60. }
  61. },
  62. "browserslist": [
  63. "> 1%",
  64. "last 2 versions",
  65. "not dead",
  66. "not ie 11"
  67. ]
  68. }