mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-14 21:21:10 +02:00
Dependency updates: - Manacore mobile: Expo SDK 52 → 54, expo-router 4.x → 6.x - Supabase: Aligned to ^2.81.1 across all projects - TypeScript: Aligned to ~5.9.3 across all projects - React/React Native: Updated to 19.1.0/0.81.5 in Manacore Fixes: - Added @types/node to shared-utils for timer types - Updated shared package tsconfig for DOM/Node types All shared packages now pass type-check. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
43 lines
1.2 KiB
JSON
43 lines
1.2 KiB
JSON
{
|
|
"name": "manacore-web",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"scripts": {
|
|
"dev": "vite dev",
|
|
"build": "vite build",
|
|
"preview": "vite preview",
|
|
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
|
|
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
|
|
"format": "prettier --write .",
|
|
"lint": "prettier --check . && eslint .",
|
|
"test": "vitest",
|
|
"test:ui": "vitest --ui",
|
|
"test:e2e": "playwright test"
|
|
},
|
|
"devDependencies": {
|
|
"@playwright/test": "^1.51.0",
|
|
"@sveltejs/adapter-auto": "^7.0.0",
|
|
"@sveltejs/adapter-netlify": "^5.2.4",
|
|
"@sveltejs/kit": "^2.15.7",
|
|
"@sveltejs/vite-plugin-svelte": "^5.0.4",
|
|
"@types/node": "^22.10.5",
|
|
"@vitest/ui": "^3.2.4",
|
|
"autoprefixer": "^10.4.20",
|
|
"postcss": "^8.4.49",
|
|
"prettier": "^3.4.2",
|
|
"prettier-plugin-svelte": "^3.3.2",
|
|
"prettier-plugin-tailwindcss": "^0.6.10",
|
|
"svelte": "^5.18.3",
|
|
"svelte-check": "^4.1.3",
|
|
"tailwindcss": "^3.4.17",
|
|
"tslib": "^2.8.1",
|
|
"typescript": "^5.9.3",
|
|
"vite": "^6.0.7",
|
|
"vitest": "^3.2.4"
|
|
},
|
|
"dependencies": {
|
|
"@supabase/ssr": "^0.5.2",
|
|
"@supabase/supabase-js": "^2.81.1"
|
|
},
|
|
"type": "module"
|
|
}
|