package.json 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  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",
  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. "@emotion/react": "^11.10.6",
  19. "@emotion/styled": "^11.10.6",
  20. "@mui/icons-material": "^5.11.11",
  21. "@mui/material": "^5.11.12",
  22. "@reduxjs/toolkit": "^1.9.2",
  23. "@slate-yjs/core": "^0.3.1",
  24. "@tanstack/react-virtual": "3.0.0-beta.54",
  25. "@tauri-apps/api": "^1.2.0",
  26. "events": "^3.3.0",
  27. "google-protobuf": "^3.21.2",
  28. "i18next": "^22.4.10",
  29. "i18next-browser-languagedetector": "^7.0.1",
  30. "is-hotkey": "^0.2.0",
  31. "jest": "^29.5.0",
  32. "nanoid": "^4.0.0",
  33. "protoc-gen-ts": "^0.8.5",
  34. "react": "^18.2.0",
  35. "react-dom": "^18.2.0",
  36. "react-error-boundary": "^3.1.4",
  37. "react-i18next": "^12.2.0",
  38. "react-redux": "^8.0.5",
  39. "react-router-dom": "^6.8.0",
  40. "react18-input-otp": "^1.1.2",
  41. "redux": "^4.2.1",
  42. "rxjs": "^7.8.0",
  43. "slate": "^0.91.4",
  44. "slate-react": "^0.91.9",
  45. "ts-results": "^3.3.0",
  46. "utf8": "^3.0.0",
  47. "yjs": "^13.5.51",
  48. "y-indexeddb": "^9.0.9"
  49. },
  50. "devDependencies": {
  51. "@tauri-apps/cli": "^1.2.2",
  52. "@types/google-protobuf": "^3.15.6",
  53. "@types/is-hotkey": "^0.1.7",
  54. "@types/node": "^18.7.10",
  55. "@types/react": "^18.0.15",
  56. "@types/react-dom": "^18.0.6",
  57. "@types/utf8": "^3.0.1",
  58. "@types/uuid": "^9.0.1",
  59. "@typescript-eslint/eslint-plugin": "^5.51.0",
  60. "@typescript-eslint/parser": "^5.51.0",
  61. "@vitejs/plugin-react": "^3.0.0",
  62. "autoprefixer": "^10.4.13",
  63. "eslint": "^8.34.0",
  64. "eslint-plugin-react": "^7.32.2",
  65. "postcss": "^8.4.21",
  66. "prettier": "2.8.4",
  67. "prettier-plugin-tailwindcss": "^0.2.2",
  68. "tailwindcss": "^3.2.7",
  69. "typescript": "^4.6.4",
  70. "uuid": "^9.0.0",
  71. "vite": "^4.0.0"
  72. }
  73. }