package.json 2.7 KB

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