package.json 1.9 KB

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