package.json 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. {
  2. "name": "eos-chat",
  3. "version": "1.0.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. },
  10. "dependencies": {
  11. "axios": "^0.18.0",
  12. "element-ui": "^2.4.11",
  13. "eosjs": "^16.0.9",
  14. "eslint-plugin-html": "^5.0.0",
  15. "js-base64": "^2.5.1",
  16. "number-precision": "^1.2.1",
  17. "qs": "^6.5.2",
  18. "scatter-js": "^2.5.2",
  19. "scatterjs-core": "^2.5.0",
  20. "scatterjs-plugin-eosjs": "^1.4.0",
  21. "scroll-into-view-if-needed": "^2.2.20",
  22. "vue": "^2.5.17",
  23. "vue-clipboard2": "^0.2.1",
  24. "vue-i18n": "^8.1.0",
  25. "vuebar": "0.0.20",
  26. "vuex": "^3.0.1",
  27. "yorkie": "^2.0.0"
  28. },
  29. "devDependencies": {
  30. "@vue/cli-plugin-babel": "^3.2.0",
  31. "@vue/cli-plugin-eslint": "^3.2.2",
  32. "@vue/cli-service": "^3.2.0",
  33. "@vue/eslint-config-standard": "^4.0.0",
  34. "babel-eslint": "^10.0.1",
  35. "babel-plugin-component": "^1.1.1",
  36. "dayjs": "^1.7.8",
  37. "eslint": "^5.8.0",
  38. "eslint-plugin-vue": "^5.0.0",
  39. "lint-staged": "^8.1.0",
  40. "node-sass": "^4.10.0",
  41. "sass-loader": "^7.1.0",
  42. "vue-template-compiler": "^2.5.17"
  43. },
  44. "eslintConfig": {
  45. "root": true,
  46. "env": {
  47. "node": true
  48. },
  49. "extends": [
  50. "plugin:vue/essential",
  51. "eslint:recommended",
  52. "@vue/standard"
  53. ],
  54. "rules": {},
  55. "parserOptions": {
  56. "parser": "babel-eslint"
  57. }
  58. },
  59. "eslintIgnore": [
  60. "protected/**",
  61. "dist/**"
  62. ],
  63. "postcss": {
  64. "plugins": {
  65. "autoprefixer": {}
  66. }
  67. },
  68. "browserslist": [
  69. "last 2 versions"
  70. ],
  71. "gitHooks": {
  72. "pre-commit": "lint-staged"
  73. },
  74. "lint-staged": {
  75. "*.js": [
  76. "vue-cli-service lint",
  77. "git add"
  78. ],
  79. "*.vue": [
  80. "vue-cli-service lint",
  81. "git add"
  82. ]
  83. }
  84. }