package.json 2.4 KB

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