package.json 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  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. "dayjs": "^1.11.7",
  27. "events": "^3.3.0",
  28. "google-protobuf": "^3.21.2",
  29. "i18next": "^22.4.10",
  30. "i18next-browser-languagedetector": "^7.0.1",
  31. "is-hotkey": "^0.2.0",
  32. "jest": "^29.5.0",
  33. "nanoid": "^4.0.0",
  34. "protoc-gen-ts": "^0.8.5",
  35. "react": "^18.2.0",
  36. "react-beautiful-dnd": "^13.1.1",
  37. "react-calendar": "^4.1.0",
  38. "react-dom": "^18.2.0",
  39. "react-error-boundary": "^3.1.4",
  40. "react-i18next": "^12.2.0",
  41. "react-redux": "^8.0.5",
  42. "react-router-dom": "^6.8.0",
  43. "react18-input-otp": "^1.1.2",
  44. "redux": "^4.2.1",
  45. "rxjs": "^7.8.0",
  46. "slate": "^0.91.4",
  47. "slate-react": "^0.91.9",
  48. "ts-results": "^3.3.0",
  49. "utf8": "^3.0.0",
  50. "y-indexeddb": "^9.0.9",
  51. "yjs": "^13.5.51"
  52. },
  53. "devDependencies": {
  54. "@tauri-apps/cli": "^1.2.2",
  55. "@types/google-protobuf": "^3.15.6",
  56. "@types/is-hotkey": "^0.1.7",
  57. "@types/node": "^18.7.10",
  58. "@types/react": "^18.0.15",
  59. "@types/react-beautiful-dnd": "^13.1.3",
  60. "@types/react-dom": "^18.0.6",
  61. "@types/utf8": "^3.0.1",
  62. "@types/uuid": "^9.0.1",
  63. "@typescript-eslint/eslint-plugin": "^5.51.0",
  64. "@typescript-eslint/parser": "^5.51.0",
  65. "@vitejs/plugin-react": "^3.0.0",
  66. "autoprefixer": "^10.4.13",
  67. "eslint": "^8.34.0",
  68. "eslint-plugin-react": "^7.32.2",
  69. "postcss": "^8.4.21",
  70. "prettier": "2.8.4",
  71. "prettier-plugin-tailwindcss": "^0.2.2",
  72. "tailwindcss": "^3.2.7",
  73. "typescript": "^4.6.4",
  74. "uuid": "^9.0.0",
  75. "vite": "^4.0.0"
  76. }
  77. }