package.json 2.0 KB

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