package.json 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. {
  2. "name": "seec-helper-frontend",
  3. "version": "3.1.0",
  4. "private": true,
  5. "scripts": {
  6. "serve": "vue-cli-service serve",
  7. "build": "vue-cli-service build",
  8. "test:unit": "vue-cli-service test:unit",
  9. "lint": "vue-cli-service lint"
  10. },
  11. "dependencies": {
  12. "@riophae/vue-treeselect": "^0.4.0",
  13. "core-js": "^3.4.3",
  14. "highlight.js": "^9.17.1",
  15. "laue": "^0.2.1",
  16. "marked": "^0.8.0",
  17. "moment": "^2.24.0",
  18. "register-service-worker": "^1.6.2",
  19. "tiptap": "^1.26.6",
  20. "tiptap-extensions": "^1.28.6",
  21. "uuid": "^3.3.3",
  22. "vue": "^2.6.10",
  23. "vue-router": "^3.1.3",
  24. "vuex": "^3.1.2"
  25. },
  26. "resolutions": {
  27. "prosemirror-model": "1.8.2"
  28. },
  29. "devDependencies": {
  30. "@babel/plugin-proposal-nullish-coalescing-operator": "^7.8.3",
  31. "@babel/plugin-proposal-optional-chaining": "^7.8.3",
  32. "@koa/cors": "^3.0.0",
  33. "@vue/cli-plugin-babel": "^4.1.0",
  34. "@vue/cli-plugin-eslint": "^4.1.0",
  35. "@vue/cli-plugin-pwa": "^4.1.0",
  36. "@vue/cli-plugin-router": "^4.1.0",
  37. "@vue/cli-plugin-unit-jest": "^4.1.0",
  38. "@vue/cli-plugin-vuex": "^4.1.2",
  39. "@vue/cli-service": "^4.1.0",
  40. "@vue/eslint-config-standard": "^4.0.0",
  41. "@vue/test-utils": "1.0.0-beta.29",
  42. "axios": "^0.18.0",
  43. "babel-eslint": "^10.0.3",
  44. "cz-conventional-changelog": "^3.0.2",
  45. "eslint": "^5.16.0",
  46. "eslint-plugin-vue": "^5.0.0",
  47. "koa": "^2.11.0",
  48. "koa-logger": "^3.2.1",
  49. "lint-staged": "^9.4.3",
  50. "lodash": "^4.17.15",
  51. "mkdirp": "^1.0.3",
  52. "mockjs": "^1.1.0",
  53. "node-sass": "^4.12.0",
  54. "path-to-regexp": "^6.1.0",
  55. "randexp": "^0.5.3",
  56. "rimraf": "^3.0.2",
  57. "sass-loader": "^8.0.0",
  58. "svgo": "^1.3.2",
  59. "vue-cli-plugin-axios": "^0.0.4",
  60. "vue-template-compiler": "^2.6.10",
  61. "webpack": "latest"
  62. },
  63. "config": {
  64. "commitizen": {
  65. "path": "./node_modules/cz-conventional-changelog"
  66. }
  67. },
  68. "gitHooks": {
  69. "pre-commit": "lint-staged"
  70. },
  71. "lint-staged": {
  72. "*.{js,vue}": [
  73. "vue-cli-service lint",
  74. "git add"
  75. ]
  76. }
  77. }