package.json 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. {
  2. "name": "happyjob-dk",
  3. "version": "1.0.0",
  4. "description": "Collection of happyjob-dk.",
  5. "author": "neverland <chenjiahan@neverl.com>",
  6. "license": "MIT",
  7. "scripts": {
  8. "serve": "vue-cli-service serve",
  9. "build": "vue-cli-service build",
  10. "lint": "vue-cli-service lint"
  11. },
  12. "dependencies": {
  13. "axios": "^0.18.0",
  14. "core-js": "^3.4.3",
  15. "vant": "^2.2.0",
  16. "vue": "^2.6.10",
  17. "vue-router": "^3.0.5",
  18. "vuex": "^3.0.1",
  19. "vuex-class": "^0.3.1",
  20. "weixin-jsapi": "^1.1.0"
  21. },
  22. "devDependencies": {
  23. "@vue/cli-plugin-babel": "^4.1.1",
  24. "@vue/cli-plugin-eslint": "^3.3.0",
  25. "@vue/cli-service": "^4.1.1",
  26. "@vue/eslint-config-standard": "^4.0.0",
  27. "babel-eslint": "^10.0.1",
  28. "babel-plugin-import": "^1.12.0",
  29. "eslint": "^5.16.0",
  30. "eslint-plugin-vue": "^5.1.0",
  31. "less": "^3.8.1",
  32. "less-loader": "^5.0.0",
  33. "vue-template-compiler": "^2.6.10"
  34. },
  35. "eslintConfig": {
  36. "root": true,
  37. "env": {
  38. "node": true
  39. },
  40. "extends": [
  41. "plugin:vue/essential",
  42. "eslint:recommended"
  43. ],
  44. "parserOptions": {
  45. "parser": "babel-eslint"
  46. },
  47. "rules": {
  48. "generator-star-spacing": "off",
  49. "no-mixed-operators": 0,
  50. "linebreak-style": [
  51. 0,
  52. "error",
  53. "windows"
  54. ],
  55. "vue/max-attributes-per-line": [
  56. 2,
  57. {
  58. "singleline": 5,
  59. "multiline": {
  60. "max": 1,
  61. "allowFirstLine": false
  62. }
  63. }
  64. ],
  65. "vue/attribute-hyphenation": 0,
  66. "vue/html-self-closing": 0,
  67. "vue/component-name-in-template-casing": 0,
  68. "vue/html-closing-bracket-spacing": 0,
  69. "vue/singleline-html-element-content-newline": 0,
  70. "vue/no-unused-components": 0,
  71. "vue/multiline-html-element-content-newline": 0,
  72. "vue/no-use-v-if-with-v-for": 0,
  73. "vue/html-closing-bracket-newline": 0,
  74. "vue/no-parsing-error": 0,
  75. "no-console": 0
  76. }
  77. },
  78. "postcss": {
  79. "plugins": {
  80. "autoprefixer": {}
  81. }
  82. },
  83. "browserslist": [
  84. "Android >= 4.0",
  85. "iOS >= 7"
  86. ]
  87. }