package.json 2.0 KB

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