package.json 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. {
  2. "name": "de-net",
  3. "version": "0.1.0",
  4. "private": true,
  5. "scripts": {
  6. "serve": "vue-cli-service serve",
  7. "build": "vue-cli-service build",
  8. "lint": "vue-cli-service lint",
  9. "build-watch": "vue-cli-service --env.NODE_ENV=development build-watch --mode development"
  10. },
  11. "dependencies": {
  12. "core-js": "^3.8.3",
  13. "element-plus": "^2.1.4",
  14. "postcss-import": "^14.0.2",
  15. "postcss-url": "^10.1.3",
  16. "vue": "^3.2.13"
  17. },
  18. "devDependencies": {
  19. "@babel/core": "^7.12.16",
  20. "@babel/eslint-parser": "^7.12.16",
  21. "@vue/cli-plugin-babel": "~5.0.0",
  22. "@vue/cli-plugin-eslint": "~5.0.0",
  23. "@vue/cli-service": "~5.0.0",
  24. "eslint": "^7.32.0",
  25. "eslint-plugin-vue": "^8.0.3",
  26. "unplugin-auto-import": "^0.6.6",
  27. "unplugin-vue-components": "^0.18.3",
  28. "vue-cli-plugin-chrome-extension-cli": "~1.1.2"
  29. },
  30. "eslintConfig": {
  31. "root": true,
  32. "env": {
  33. "node": true,
  34. "webextensions": true
  35. },
  36. "extends": [
  37. "plugin:vue/vue3-essential",
  38. "eslint:recommended"
  39. ],
  40. "parserOptions": {
  41. "parser": "@babel/eslint-parser"
  42. },
  43. "rules": {}
  44. },
  45. "browserslist": [
  46. "> 1%",
  47. "last 2 versions",
  48. "not dead",
  49. "not ie 11"
  50. ]
  51. }