package.json 2.0 KB

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