package.json 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. {
  2. "name": "eos-superstar-dice",
  3. "version": "0.1.0",
  4. "private": true,
  5. "scripts": {
  6. "serve": "vue-cli-service serve",
  7. "build": "vue-cli-service build --mode test",
  8. "build:new": "vue-cli-service build --mode new",
  9. "build:form": "vue-cli-service build --mode production",
  10. "lint": "vue-cli-service lint"
  11. },
  12. "dependencies": {
  13. "@eosget/eosget-components": "git+http://svn.ouj.com:3000/eos_sicbo/components.git#1.0.1",
  14. "axios": "^0.18.0",
  15. "chart.js": "^2.7.3",
  16. "element-ui": "^2.4.11",
  17. "eosjs": "^16.0.9",
  18. "eslint-plugin-html": "^5.0.0",
  19. "jquery": "^3.3.1",
  20. "normalize.css": "^8.0.0",
  21. "number-precision": "^1.2.0",
  22. "qs": "^6.5.2",
  23. "scatter-js": "^2.5.2",
  24. "scatterjs-core": "^2.5.0",
  25. "scatterjs-plugin-eosjs": "^1.4.0",
  26. "throttle-debounce": "^2.0.1",
  27. "vue": "^2.5.17",
  28. "vue-awesome-swiper": "^3.1.3",
  29. "vue-chartjs": "^3.4.0",
  30. "vue-i18n": "^8.1.0",
  31. "vuex": "^3.0.1",
  32. "yorkie": "^2.0.0"
  33. },
  34. "devDependencies": {
  35. "@vue/cli-plugin-babel": "^3.2.0",
  36. "@vue/cli-plugin-eslint": "^3.2.2",
  37. "@vue/cli-service": "^3.2.0",
  38. "@vue/eslint-config-standard": "^4.0.0",
  39. "babel-eslint": "^10.0.1",
  40. "babel-plugin-component": "^1.1.1",
  41. "dayjs": "^1.7.8",
  42. "eslint": "^5.8.0",
  43. "eslint-plugin-vue": "^5.0.0",
  44. "lint-staged": "^8.1.0",
  45. "node-sass": "^4.10.0",
  46. "pixi-spine": "^1.5.20",
  47. "pixi.js": "^4.8.6",
  48. "sass-loader": "^7.1.0",
  49. "vue-template-compiler": "^2.5.17"
  50. },
  51. "eslintConfig": {
  52. "root": true,
  53. "env": {
  54. "node": true
  55. },
  56. "extends": [
  57. "plugin:vue/essential",
  58. "eslint:recommended",
  59. "@vue/standard"
  60. ],
  61. "rules": {},
  62. "parserOptions": {
  63. "parser": "babel-eslint"
  64. }
  65. },
  66. "eslintIgnore": [
  67. "protected/**",
  68. "public/**",
  69. "dist/**"
  70. ],
  71. "postcss": {
  72. "plugins": {
  73. "autoprefixer": {}
  74. }
  75. },
  76. "browserslist": [
  77. "last 2 versions"
  78. ],
  79. "gitHooks": {
  80. "pre-commit": "lint-staged"
  81. },
  82. "lint-staged": {
  83. "*.js": [
  84. "vue-cli-service lint",
  85. "git add"
  86. ],
  87. "*.vue": [
  88. "vue-cli-service lint",
  89. "git add"
  90. ]
  91. }
  92. }