mirror of
https://github.com/spacedriveapp/spacedrive.git
synced 2026-04-20 14:38:58 -04:00
* Attempt to fix Windows CI: - Ensure version 15 of LLVM is installed in Windows CI (due to` ffmpeg-sys-next`) - Use `GITHUB_TOKEN` in setup-system.ps1 to avoid rate-limiting by github api in Windows CI - Add `yaml` settings to `.editorconfig` - Create a symbolic link from `.prettierignore` to `.eslintignore` - Move `eslint` root to package root config - Enable `fileNesting` to reduce dotfile clutter in vscode - Pass `--strict` to apps/releases `lint` command to avoid making interactive queries and hanging `pnpm lint` - Format with `prettier` and `eslint` - Remove empty interface/hooks/useMediaQuery.ts * Replace unmaintained `actions-rs/toolchain` with `dtolnay/rust-toolchain` - Change setup-system.ps1 to avoid installing pnpm in CI - Change `pnpm/action-setup` to lock only o major versions of the action
25 lines
504 B
JSON
25 lines
504 B
JSON
{
|
|
"name": "releases",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"scripts": {
|
|
"dev": "next dev",
|
|
"build": "next build",
|
|
"start": "next start",
|
|
"lint": "next lint --strict"
|
|
},
|
|
"dependencies": {
|
|
"@types/node": "18.15.11",
|
|
"@types/react": "18.0.35",
|
|
"@types/react-dom": "18.0.11",
|
|
"@vercel/edge-config": "^0.1.7",
|
|
"eslint": "^8.38.0",
|
|
"eslint-config-next": "13.3.0",
|
|
"next": "13.3.0",
|
|
"octokit": "^2.0.14",
|
|
"react": "18.2.0",
|
|
"react-dom": "^18.2.0",
|
|
"typescript": "5.0.4"
|
|
}
|
|
}
|