mirror of
https://github.com/spacedriveapp/spacedrive.git
synced 2026-04-23 16:07:15 -04:00
* Update rspc, prisma-client-rust, axum and tanstack-query - Deleted some unused examples and fully commented out frontend code - Implement many changes required due to the updates - Update most rust dependencies * Re-enable p2p * Fix server * Auto format * Fix injected script format - Update some github actions - Update pnpm lock file * Fix devtools showing up when app opens - Fix million complaining about Sparkles component * Fix sd-server * Fix and improve thumbnails rendering - Fix core always saying a new thumbnail was generated even for files that it skiped thumbnail generation - Rewrite FileThumb and improve related components * Ignore tmp files when running prettier * Improve FileThumb component performance - Rework useExplorerDraggable and useExplorerItemData hooks due to reduce unecessary re-renders * More fixes for thumb component - A couple of minor performance improvements to frontend code * auto format * Fix Thumbnail and QuickPreview * Fix logic for when to show 'fail to load original' error message in QuickPreview - Updated prisma-client-rust, libp2p, tauri, tauri-specta, rspc and hyper * Fix type checking - Format scripts * Add script prettier config * Fix serde missing feature - Use rust-libp2p spacedrive fork again - Update rspc * Autoformat + fix pnpm lock * Fix thumbnail first load again * Autoformat * autoformat * Fix rust-libp2p fork url again? * Remove usePathsInfiniteQuery hook * Update tauri 2.0.6
48 lines
1.6 KiB
JSON
48 lines
1.6 KiB
JSON
{
|
|
"name": "@sd/web",
|
|
"private": true,
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev:api": "env E2E_TEST=1 cargo run -p sd-server",
|
|
"dev:web": "env WAIT_ON_TIMEOUT=1800000 start-test dev:api http://localhost:8080 dev",
|
|
"dev": "vite",
|
|
"build": "vite build",
|
|
"preview": "vite preview",
|
|
"test": "VITE_SD_DEMO_MODE=true playwright test",
|
|
"test:e2e": "env WAIT_ON_TIMEOUT=1800000 start-test dev:api http://localhost:8080 dev http://localhost:8002 cy:run",
|
|
"test:interactive": "env WAIT_ON_TIMEOUT=1800000 start-test dev:api http://localhost:8080 dev http://localhost:8002 cy:open",
|
|
"cy:run": "cypress run --browser webkit",
|
|
"cy:open": "env ELECTRON_EXTRA_LAUNCH_ARGS=--lang=en cypress open --e2e",
|
|
"typecheck": "tsc -b",
|
|
"lint": "eslint src --cache"
|
|
},
|
|
"dependencies": {
|
|
"@spacedrive/rspc-client": "github:spacedriveapp/rspc#path:packages/client&6a77167495",
|
|
"@sd/client": "workspace:*",
|
|
"@sd/interface": "workspace:*",
|
|
"@tanstack/react-query": "^5.59",
|
|
"html-to-image": "^1.11.11",
|
|
"html2canvas": "^1.4.1",
|
|
"react": "^18.2.0",
|
|
"react-dom": "^18.2.0",
|
|
"react-router-dom": "=6.20.1"
|
|
},
|
|
"devDependencies": {
|
|
"@playwright/test": "^1.42.1",
|
|
"@sd/config": "workspace:*",
|
|
"@sd/ui": "workspace:*",
|
|
"@types/react": "^18.2.67",
|
|
"@types/react-dom": "^18.2.22",
|
|
"autoprefixer": "^10.4.18",
|
|
"cypress": "^13.7.0",
|
|
"eslint-plugin-cypress": "^2.15.1",
|
|
"playwright-webkit": "^1.42.1",
|
|
"postcss": "^8.4.36",
|
|
"rollup-plugin-visualizer": "^5.12.0",
|
|
"start-server-and-test": "^2.0.3",
|
|
"typescript": "^5.6.2",
|
|
"vite": "^5.2.0",
|
|
"vite-tsconfig-paths": "^4.3.2"
|
|
}
|
|
}
|