package.json 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. {
  2. "name": "seai",
  3. "private": true,
  4. "version": "0.0.0",
  5. "type": "module",
  6. "scripts": {
  7. "dev": "vite",
  8. "build": "run-p type-check build-only",
  9. "preview": "vite preview",
  10. "build-only": "vite build",
  11. "type-check": "vue-tsc --noEmit",
  12. "lint": "eslint .",
  13. "lint:fix": "eslint . --fix",
  14. "bootstrap": "pnpm install && pnpm run common:prepare",
  15. "common:cleanup": "rimraf node_modules && rimraf pnpm-lock.yaml",
  16. "common:prepare": "husky install"
  17. },
  18. "dependencies": {
  19. "@traptitech/markdown-it-katex": "^3.6.0",
  20. "@vueuse/core": "^9.13.0",
  21. "highlight.js": "^11.7.0",
  22. "html2canvas": "^1.4.1",
  23. "katex": "^0.16.4",
  24. "markdown-it": "^13.0.1",
  25. "naive-ui": "^2.34.3",
  26. "pinia": "^2.0.33",
  27. "vue": "^3.2.47",
  28. "vue-i18n": "^9.2.2",
  29. "vue-router": "^4.1.6"
  30. },
  31. "devDependencies": {
  32. "@antfu/eslint-config": "^0.35.3",
  33. "@commitlint/cli": "^17.4.4",
  34. "@commitlint/config-conventional": "^17.4.4",
  35. "@iconify/vue": "^4.1.0",
  36. "@types/crypto-js": "^4.1.1",
  37. "@types/katex": "^0.16.0",
  38. "@types/markdown-it": "^12.2.3",
  39. "@types/markdown-it-link-attributes": "^3.0.1",
  40. "@types/node": "^18.14.6",
  41. "@vitejs/plugin-vue": "^4.0.0",
  42. "autoprefixer": "^10.4.13",
  43. "axios": "^1.3.4",
  44. "crypto-js": "^4.1.1",
  45. "eslint": "^8.35.0",
  46. "husky": "^8.0.3",
  47. "less": "^4.1.3",
  48. "lint-staged": "^13.1.2",
  49. "markdown-it-link-attributes": "^4.0.1",
  50. "npm-run-all": "^4.1.5",
  51. "postcss": "^8.4.21",
  52. "rimraf": "^4.3.0",
  53. "tailwindcss": "^3.2.7",
  54. "typescript": "~4.9.5",
  55. "vite": "^4.2.0",
  56. "vite-plugin-pwa": "^0.14.4",
  57. "vue-tsc": "^1.2.0"
  58. },
  59. "lint-staged": {
  60. "*.{ts,tsx,vue}": [
  61. "pnpm lint:fix"
  62. ]
  63. }
  64. }