package.json 1.9 KB

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