package.json 3.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. {
  2. "name": "xklr",
  3. "version": "1.0.1",
  4. "private": false,
  5. "scripts": {
  6. "start": "vue-cli-service electron:serve",
  7. "test:unit": "vue-cli-service test:unit",
  8. "test:e2e": "vue-cli-service test:e2e",
  9. "cz": "npm run log && git add . && git cz",
  10. "log": "conventional-changelog --config ./node_modules/vue-cli-plugin-commitlint/lib/log -i CHANGELOG.md -s -r 0",
  11. "electron:build": "vue-cli-service electron:build",
  12. "electron:serve": "vue-cli-service electron:serve",
  13. "postinstall": "electron-builder install-app-deps",
  14. "postuninstall": "electron-builder install-app-deps",
  15. "patch": "npm version patch && git push origin master && git push origin --tags",
  16. "minor": "npm version minor && git push origin master && git push origin --tags",
  17. "major": "npm version major && git push origin master && git push origin --tags",
  18. "release": "vue-cli-service electron:build --publish always",
  19. "lint": "vue-cli-service lint",
  20. "prettier": "npx prettier --write ./src ./test",
  21. "doc": "docsify serve docs"
  22. },
  23. "appId": "xklr",
  24. "main": "background.js",
  25. "dependencies": {
  26. "@vue/reactivity": "^3.2.47",
  27. "axios": "^1.4.0",
  28. "core-js": "^3.6.5",
  29. "deepmerge": "^4.2.2",
  30. "draggabilly": "^2.3.0",
  31. "echarts": "^5.4.2",
  32. "electron-dl": "^3.2.0",
  33. "element-ui": "^2.15.13",
  34. "js-cookie": "^3.0.5",
  35. "lodash": "^4.17.21",
  36. "moment": "^2.29.4",
  37. "nedb": "^1.8.0",
  38. "qs": "^6.11.1",
  39. "request": "^2.88.2",
  40. "request-progress": "^3.0.0",
  41. "require": "^2.4.20",
  42. "right-pad": "^1.0.1",
  43. "semver": "^7.3.4",
  44. "showdown": "^1.9.1",
  45. "store": "^2.0.12",
  46. "unused-filename": "^4.0.1",
  47. "url": "^0.11.0",
  48. "uuid": "^3.3.2",
  49. "vue": "^2.6.12",
  50. "vue-demi": "^0.14.0",
  51. "vue-electron": "^1.0.6",
  52. "vue-infinite-loading": "^2.4.5",
  53. "vue-lazyload": "^1.3.3",
  54. "vue-router": "^3.5.1",
  55. "vuex": "^3.6.2"
  56. },
  57. "devDependencies": {
  58. "@vue/cli-plugin-babel": "~4.5.0",
  59. "@vue/cli-plugin-e2e-cypress": "~4.5.0",
  60. "@vue/cli-plugin-eslint": "~4.5.0",
  61. "@vue/cli-plugin-router": "~4.5.0",
  62. "@vue/cli-plugin-unit-jest": "~4.5.0",
  63. "@vue/cli-plugin-vuex": "~4.5.0",
  64. "@vue/cli-service": "~4.5.0",
  65. "@vue/eslint-config-prettier": "^6.0.0",
  66. "@vue/test-utils": "^1.0.3",
  67. "babel-eslint": "^10.1.0",
  68. "babel-plugin-import": "^1.13.3",
  69. "commitizen": "^4.0.3",
  70. "commitlint": "^8.2.0",
  71. "conventional-changelog-cli": "^2.0.28",
  72. "electron": "^12.0.0",
  73. "electron-devtools-installer": "^3.1.0",
  74. "eslint": "^6.7.2",
  75. "eslint-plugin-prettier": "^3.3.1",
  76. "eslint-plugin-vue": "^6.2.2",
  77. "husky": "^3.0.9",
  78. "less": "^3.13.1",
  79. "less-loader": "^5.0.0",
  80. "prettier": "^2.2.1",
  81. "spectron": "13.0.0",
  82. "vue-cli-plugin-commitlint": "~1.0.12",
  83. "vue-cli-plugin-electron-builder": "~2.0.0-rc.6",
  84. "vue-template-compiler": "^2.6.12"
  85. },
  86. "config": {
  87. "commitizen": {
  88. "path": "./node_modules/vue-cli-plugin-commitlint/lib/cz"
  89. }
  90. },
  91. "husky": {
  92. "hooks": {
  93. "commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
  94. }
  95. }
  96. }