package.json 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. {
  2. "name": "appflowy_tauri",
  3. "private": true,
  4. "version": "0.0.0",
  5. "type": "module",
  6. "scripts": {
  7. "dev": "vite",
  8. "build": "pnpm sync:i18n && tsc && vite build",
  9. "preview": "vite preview",
  10. "format": "prettier --write .",
  11. "test:code": "eslint --max-warnings=0 --ext .js,.ts,.tsx .",
  12. "test:errors": "pnpm sync:i18n && tsc --noEmit && eslint --quiet --ext .js,.ts,.tsx .",
  13. "test:prettier": "pnpm prettier --list-different src",
  14. "tauri:clean": "cargo make --cwd .. tauri_clean",
  15. "tauri:dev": "pnpm sync:i18n && tauri dev",
  16. "sync:i18n": "node scripts/i18n/index.cjs",
  17. "css:variables": "node style-dictionary/config.cjs"
  18. },
  19. "dependencies": {
  20. "@emoji-mart/data": "^1.1.2",
  21. "@emoji-mart/react": "^1.1.1",
  22. "@emotion/react": "^11.10.6",
  23. "@emotion/styled": "^11.10.6",
  24. "@mui/icons-material": "^5.11.11",
  25. "@mui/material": "^5.11.12",
  26. "@reduxjs/toolkit": "^1.9.2",
  27. "@slate-yjs/core": "^1.0.0",
  28. "@tanstack/react-virtual": "3.0.0-beta.54",
  29. "@tauri-apps/api": "^1.2.0",
  30. "dayjs": "^1.11.9",
  31. "emoji-mart": "^5.5.2",
  32. "emoji-regex": "^10.2.1",
  33. "events": "^3.3.0",
  34. "google-protobuf": "^3.21.2",
  35. "i18next": "^22.4.10",
  36. "i18next-browser-languagedetector": "^7.0.1",
  37. "i18next-resources-to-backend": "^1.1.4",
  38. "is-hotkey": "^0.2.0",
  39. "jest": "^29.5.0",
  40. "katex": "^0.16.7",
  41. "nanoid": "^4.0.0",
  42. "prismjs": "^1.29.0",
  43. "protoc-gen-ts": "^0.8.5",
  44. "quill": "^1.3.7",
  45. "quill-delta": "^5.1.0",
  46. "react": "^18.2.0",
  47. "react-beautiful-dnd": "^13.1.1",
  48. "react-calendar": "^4.1.0",
  49. "react-dom": "^18.2.0",
  50. "react-error-boundary": "^3.1.4",
  51. "react-i18next": "^12.2.0",
  52. "react-katex": "^3.0.1",
  53. "react-redux": "^8.0.5",
  54. "react-router-dom": "^6.8.0",
  55. "react-transition-group": "^4.4.5",
  56. "react18-input-otp": "^1.1.2",
  57. "redux": "^4.2.1",
  58. "rxjs": "^7.8.0",
  59. "slate": "^0.94.1",
  60. "slate-react": "^0.94.2",
  61. "ts-results": "^3.3.0",
  62. "utf8": "^3.0.0",
  63. "yjs": "^13.5.51"
  64. },
  65. "devDependencies": {
  66. "@tauri-apps/cli": "^1.2.2",
  67. "@types/google-protobuf": "^3.15.6",
  68. "@types/is-hotkey": "^0.1.7",
  69. "@types/katex": "^0.16.0",
  70. "@types/node": "^18.7.10",
  71. "@types/prismjs": "^1.26.0",
  72. "@types/quill": "^2.0.10",
  73. "@types/react": "^18.0.15",
  74. "@types/react-beautiful-dnd": "^13.1.3",
  75. "@types/react-dom": "^18.0.6",
  76. "@types/react-katex": "^3.0.0",
  77. "@types/react-transition-group": "^4.4.6",
  78. "@types/utf8": "^3.0.1",
  79. "@types/uuid": "^9.0.1",
  80. "@typescript-eslint/eslint-plugin": "^5.51.0",
  81. "@typescript-eslint/parser": "^5.51.0",
  82. "@vitejs/plugin-react": "^3.0.0",
  83. "autoprefixer": "^10.4.13",
  84. "eslint": "^8.34.0",
  85. "eslint-plugin-react": "^7.32.2",
  86. "eslint-plugin-react-hooks": "^4.6.0",
  87. "postcss": "^8.4.21",
  88. "prettier": "2.8.4",
  89. "prettier-plugin-tailwindcss": "^0.2.2",
  90. "style-dictionary": "^3.8.0",
  91. "tailwindcss": "^3.2.7",
  92. "typescript": "^4.6.4",
  93. "uuid": "^9.0.0",
  94. "vite": "^4.0.0"
  95. }
  96. }