package.json 2.0 KB

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