package.json 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  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. "sass-loader": "^12.6.0",
  33. "vue": "^3.2.13",
  34. "vue-cropper": "^1.0.3",
  35. "vue-router": "^4.0.14"
  36. },
  37. "devDependencies": {
  38. "@babel/core": "^7.12.16",
  39. "@vue/cli-plugin-babel": "~5.0.0",
  40. "@vue/cli-service": "~5.0.0",
  41. "babel-plugin-import": "^1.13.5",
  42. "copy-webpack-plugin": "^10.2.4",
  43. "node-sass": "^7.0.1",
  44. "sass-loader": "^12.6.0",
  45. "unplugin-auto-import": "^0.6.6",
  46. "unplugin-vue-components": "^0.18.3",
  47. "vue-cli-plugin-chrome-extension-cli": "~1.1.2"
  48. },
  49. "eslintConfig": {
  50. "root": true,
  51. "env": {
  52. "node": true,
  53. "webextensions": true
  54. },
  55. "extends": [
  56. "plugin:vue/vue3-essential",
  57. "eslint:recommended"
  58. ],
  59. "parserOptions": {
  60. "parser": "@babel/eslint-parser"
  61. },
  62. "rules": {}
  63. },
  64. "browserslist": [
  65. "> 1%",
  66. "last 2 versions",
  67. "not dead",
  68. "not ie 11"
  69. ]
  70. }