package.json 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. {
  2. "name": "de-net",
  3. "version": "0.1.0",
  4. "private": true,
  5. "scripts": {
  6. "serve": "vue-cli-service serve",
  7. "build-test": "vue-cli-service build --mode development",
  8. "build-pre": "vue-cli-service build --mode pre",
  9. "build-prod": "vue-cli-service build --mode production",
  10. "lint": "vue-cli-service lint",
  11. "build-watch": "vue-cli-service --env.NODE_ENV=development build-watch --mode development"
  12. },
  13. "dependencies": {
  14. "@sentry/tracing": "^7.5.1",
  15. "@sentry/vue": "^7.5.1",
  16. "ant-design-vue": "^2.2.8",
  17. "axios": "^0.26.1",
  18. "clipboard": "^2.0.10",
  19. "core-js": "^3.8.3",
  20. "element-plus": "^2.1.10",
  21. "eslint": "^8.13.0",
  22. "eslint-plugin-vue": "^8.7.0",
  23. "mathjs": "^10.5.0",
  24. "moment": "^2.29.1",
  25. "node-sass": "^7.0.1",
  26. "postcss-import": "^14.0.2",
  27. "postcss-url": "^10.1.3",
  28. "qrcode": "^1.5.0",
  29. "sass-loader": "^12.6.0",
  30. "vue": "^3.2.13",
  31. "vue-cropper": "^1.0.3",
  32. "vue-router": "^4.0.14"
  33. },
  34. "devDependencies": {
  35. "@babel/core": "^7.12.16",
  36. "@vue/cli-plugin-babel": "~5.0.0",
  37. "@vue/cli-service": "~5.0.0",
  38. "babel-plugin-import": "^1.13.5",
  39. "copy-webpack-plugin": "^10.2.4",
  40. "node-sass": "^7.0.1",
  41. "sass-loader": "^12.6.0",
  42. "unplugin-auto-import": "^0.6.6",
  43. "unplugin-vue-components": "^0.18.3",
  44. "vue-cli-plugin-chrome-extension-cli": "~1.1.2"
  45. },
  46. "eslintConfig": {
  47. "root": true,
  48. "env": {
  49. "node": true,
  50. "webextensions": true
  51. },
  52. "extends": [
  53. "plugin:vue/vue3-essential",
  54. "eslint:recommended"
  55. ],
  56. "parserOptions": {
  57. "parser": "@babel/eslint-parser"
  58. },
  59. "rules": {}
  60. },
  61. "browserslist": [
  62. "> 1%",
  63. "last 2 versions",
  64. "not dead",
  65. "not ie 11"
  66. ]
  67. }