package.json 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  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. "@tweenjs/tween.js": "^17.3.0",
  12. "axios": "^0.18.0",
  13. "element-ui": "^2.4.11",
  14. "eosjs": "^16.0.9",
  15. "eslint-plugin-html": "^5.0.0",
  16. "js-base64": "^2.5.1",
  17. "number-precision": "^1.2.1",
  18. "qs": "^6.5.2",
  19. "register-service-worker": "^1.5.2",
  20. "scatter-js": "^2.5.2",
  21. "scatterjs-core": "^2.5.0",
  22. "scatterjs-plugin-eosjs": "^1.4.0",
  23. "vue": "^2.5.17",
  24. "vue-clipboard2": "^0.2.1",
  25. "vue-i18n": "^8.1.0",
  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-plugin-pwa": "^3.3.0",
  33. "@vue/cli-service": "^3.2.0",
  34. "@vue/eslint-config-standard": "^4.0.0",
  35. "babel-eslint": "^10.0.1",
  36. "babel-plugin-component": "^1.1.1",
  37. "dayjs": "^1.7.8",
  38. "eslint": "^5.8.0",
  39. "eslint-plugin-vue": "^5.0.0",
  40. "lint-staged": "^8.1.0",
  41. "node-sass": "^4.10.0",
  42. "sass-loader": "^7.1.0",
  43. "vue-template-compiler": "^2.5.17"
  44. },
  45. "eslintConfig": {
  46. "root": true,
  47. "env": {
  48. "node": true
  49. },
  50. "extends": [
  51. "plugin:vue/essential",
  52. "eslint:recommended",
  53. "@vue/standard"
  54. ],
  55. "rules": {},
  56. "parserOptions": {
  57. "parser": "babel-eslint"
  58. }
  59. },
  60. "postcss": {
  61. "plugins": {
  62. "autoprefixer": {}
  63. }
  64. },
  65. "browserslist": [
  66. "last 2 versions"
  67. ],
  68. "eslintIgnore": [
  69. "protected/**",
  70. "dist/**",
  71. "public/**"
  72. ],
  73. "gitHooks": {
  74. "pre-commit": "lint-staged"
  75. },
  76. "lint-staged": {
  77. "*.js": [
  78. "vue-cli-service lint",
  79. "git add"
  80. ],
  81. "*.vue": [
  82. "vue-cli-service lint",
  83. "git add"
  84. ]
  85. }
  86. }