mirror of
https://github.com/spacedriveapp/spacedrive.git
synced 2026-02-20 07:37:26 -05:00
* Ensure prisma generation works before continuing CI - Add script that list all dependencies with multiple version in Cargo.lock * Ensure CI runs when custom actions are modified * Rever windows change in hopes that it fixes prisma generation * Fix prisma generation check in CI * Update deps * Replace prisma-client-rust-cli with oficial prisma cli to fix windows model generation - Revert back to windows-rs implementation of get_inode in file-path-helper - Adjust Github CI to use oficial prisma cli - Update scripts dependencies - Fix some new rust warnings due to it trying to compile OS specific code on all plataforms * Fix windows-rs impl for get_inode_windows in file-path-helper * More fixes to windows-rs impl for get_inode_windows in file-path-helper * More fixes to windows-rs impl for get_inode_windows in file-path-helper * More fixes to windows-rs impl for get_inode_windows in file-path-helper * More fixes to windows-rs impl for get_inode_windows in file-path-helper * More fixes to windows-rs impl for get_inode_windows in file-path-helper * Import windows constant intead of hardcoding its value * Fix check for prisma files in setup-rust * Autoformat * Fix iOS and Android targets in watcher --------- Co-authored-by: Arnab Chakraborty <11457760+Rocky43007@users.noreply.github.com>
78 lines
2.8 KiB
JSON
78 lines
2.8 KiB
JSON
{
|
|
"name": "@sd/monorepo",
|
|
"private": true,
|
|
"scripts": {
|
|
"preprep": "pnpm --filter @sd/scripts -- prep",
|
|
"prep": "pnpm gen:prisma",
|
|
"postprep": "pnpm codegen",
|
|
"build": "turbo run build",
|
|
"landing-web": "turbo run dev --parallel --filter=@sd/landing --filter=@sd/web",
|
|
"gen:migrations": "pnpm prisma migrate dev --schema core/prisma/schema.prisma",
|
|
"gen:prisma": "pnpm prisma generate --schema core/prisma/schema.prisma",
|
|
"format": "prettier --write .",
|
|
"desktop": "pnpm --filter @sd/desktop --",
|
|
"tauri": "pnpm desktop tauri",
|
|
"web": "pnpm --filter @sd/web -- ",
|
|
"mobile": "pnpm --filter @sd/mobile --",
|
|
"core": "pnpm --filter @sd/server -- ",
|
|
"landing": "pnpm --filter @sd/landing -- ",
|
|
"ui": "pnpm --filter @sd/ui -- ",
|
|
"interface": "pnpm --filter @sd/interface -- ",
|
|
"assets": "pnpm --filter @sd/assets -- ",
|
|
"client": "pnpm --filter @sd/client -- ",
|
|
"storybook": "pnpm --filter @sd/storybook -- ",
|
|
"dev:web": "pnpm --filter @sd/web dev:web",
|
|
"dev:desktop": "pnpm run --filter @sd/desktop tauri dev",
|
|
"bootstrap:desktop": "cargo clean && ./scripts/setup.sh && pnpm i && pnpm prep && pnpm tauri dev",
|
|
"codegen": "cargo test -p sd-core api::tests::test_and_export_rspc_bindings -- --exact",
|
|
"typecheck": "pnpm -r typecheck",
|
|
"lint": "turbo run lint",
|
|
"lint:fix": "turbo run lint -- --fix",
|
|
"clean": "cargo clean; git clean -qfX .",
|
|
"test-data": "./scripts/test-data.sh",
|
|
"i18n:sync": "npx i18next-locales-sync -p en -s $(find ./interface/locales -wholename '*/common.json' | awk -F'/' '$4 != \"en\" { ORS=\" \"; print $4 }') -l ./interface/locales",
|
|
"autoformat": "./scripts/autoformat.sh"
|
|
},
|
|
"pnpm": {
|
|
"patchedDependencies": {
|
|
"@remix-run/router@1.13.1": "patches/@remix-run__router@1.13.1.patch",
|
|
"@contentlayer/cli@0.3.4": "patches/@contentlayer__cli@0.3.4.patch",
|
|
"@oscartbeaumont-sd/rspc-tauri@0.0.0-main-dc31e5b2": "patches/@oscartbeaumont-sd__rspc-tauri@0.0.0-main-dc31e5b2.patch",
|
|
"tailwindcss-animate@1.0.7": "patches/tailwindcss-animate@1.0.7.patch"
|
|
},
|
|
"overrides": {
|
|
"@types/node": ">18.18.x",
|
|
"react-router": "=6.20.1",
|
|
"react-router-dom": "=6.20.1",
|
|
"@remix-run/router": "=1.13.1",
|
|
"@contentlayer/cli": "=0.3.4",
|
|
"tailwindcss-animate": "=1.0.7"
|
|
}
|
|
},
|
|
"devDependencies": {
|
|
"@babel/plugin-syntax-import-assertions": "^7.24.1",
|
|
"@cspell/dict-rust": "^4.0.2",
|
|
"@cspell/dict-typescript": "^3.1.2",
|
|
"@ianvs/prettier-plugin-sort-imports": "^4.3.1",
|
|
"@taplo/cli": "^0.7.0",
|
|
"cspell": "^8.6.0",
|
|
"prettier": "^3.3.3",
|
|
"prettier-plugin-tailwindcss": "^0.6.6",
|
|
"prisma": "^5.18.0",
|
|
"turbo": "^1.12.5",
|
|
"turbo-ignore": "^1.12.5",
|
|
"typescript": "^5.4.2",
|
|
"vite": "^5.2.0"
|
|
},
|
|
"engines": {
|
|
"pnpm": ">=9.0.0",
|
|
"npm": "pnpm",
|
|
"yarn": "pnpm",
|
|
"node": ">=18.18 <19 || >=20.1"
|
|
},
|
|
"eslintConfig": {
|
|
"root": true
|
|
},
|
|
"packageManager": "pnpm@9.7.0"
|
|
}
|