package.json 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. {
  2. "name": "moka_free_novel_front",
  3. "version": "0.1.0",
  4. "private": true,
  5. "scripts": {
  6. "dev": "vue-cli-service serve",
  7. "test": "vue-cli-service build --mode test",
  8. "build": "vue-cli-service build --mode prod",
  9. "lint": "vue-cli-service lint"
  10. },
  11. "dependencies": {
  12. "core-js": "^3.6.5",
  13. "element-ui": "^2.15.1",
  14. "vue": "^2.6.11",
  15. "vue-router": "^3.0.3",
  16. "vuex": "^3.6.2",
  17. "vue-video-player": "^5.0.2"
  18. },
  19. "devDependencies": {
  20. "@vue/cli-plugin-babel": "~4.5.0",
  21. "@vue/cli-plugin-eslint": "~4.5.0",
  22. "@vue/cli-service": "~4.5.0",
  23. "axios": "^0.21.1",
  24. "babel-eslint": "^10.1.0",
  25. "compression-webpack-plugin": "^6.1.1",
  26. "eslint": "^6.8.0",
  27. "eslint-plugin-vue": "^6.2.2",
  28. "node-sass": "^4.9.2",
  29. "sass": "^1.18.0",
  30. "sass-loader": "^7.1.0",
  31. "vue-template-compiler": "^2.6.11"
  32. },
  33. "eslintConfig": {
  34. "root": true,
  35. "env": {
  36. "node": true
  37. },
  38. "extends": [
  39. "plugin:vue/essential",
  40. "eslint:recommended"
  41. ],
  42. "parserOptions": {
  43. "parser": "babel-eslint"
  44. },
  45. "rules": {
  46. "vue/no-unused-components": 2,
  47. "indent": "off",
  48. "semi": "off",
  49. "no-trailing-spaces": "off",
  50. "comma-dangle": "off",
  51. "no-useless-return": "off",
  52. "eqeqeq": "error",
  53. "no-undef": "off",
  54. "new-cap": [
  55. "off"
  56. ],
  57. "generator-star-spacing": "off",
  58. "no-tabs": "off",
  59. "no-unused-vars": "off",
  60. "no-console": "off",
  61. "no-irregular-whitespace": "off",
  62. "no-debugger": "off"
  63. }
  64. },
  65. "browserslist": [
  66. "> 1%",
  67. "last 2 versions",
  68. "not dead"
  69. ]
  70. }