mirror of
https://github.com/spacedriveapp/spacedrive.git
synced 2026-03-09 10:06:18 -04:00
* move Rust backend to rspc * move server to Axum + remove parts of old bridge * move frontend over to @rspc/client * move core to rspc + update deps * fix Typescript errors + upgrade deps * document invalidate_query! macro * general cleanup + upgrade to PCR 0.6.0 * prisma error handling * upgrade to rspc 0.0.4 * update vite-plugin-ssr * fix typescript * fix builds * put landing page app name back * hardcode ffmpeg version on Windows * rename 'command' to 'mutation' to line up with react-query terminology * upgrade rspc to v0.0.5 + fix types * use shared ffmpeg binaries * general Typescript cleanup * fix clippy workflow failing due to tauri proc-macro Co-authored-by: Brendan Allan <brendonovich@outlook.com>
34 lines
762 B
JSON
34 lines
762 B
JSON
{
|
|
"name": "@sd/web",
|
|
"private": true,
|
|
"version": "0.0.0",
|
|
"scripts": {
|
|
"dev": "vite",
|
|
"build": "vite build",
|
|
"preview": "vite preview"
|
|
},
|
|
"dependencies": {
|
|
"@fontsource/inter": "^4.5.11",
|
|
"@rspc/client": "^0.0.5",
|
|
"@sd/client": "workspace:*",
|
|
"@sd/core": "workspace:*",
|
|
"@sd/interface": "workspace:*",
|
|
"@sd/ui": "workspace:*",
|
|
"@tanstack/react-query": "^4.0.10",
|
|
"react": "^18.2.0",
|
|
"react-dom": "^18.2.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/react": "^18.0.15",
|
|
"@types/react-dom": "^18.0.6",
|
|
"@vitejs/plugin-react": "^2.0.0",
|
|
"autoprefixer": "^10.4.7",
|
|
"postcss": "^8.4.14",
|
|
"tailwind": "^4.0.0",
|
|
"typescript": "^4.7.4",
|
|
"vite": "^3.0.3",
|
|
"vite-plugin-svgr": "^2.2.1",
|
|
"vite-plugin-tsconfig-paths": "^1.1.0"
|
|
}
|
|
}
|