- Upgraded Next.js to version 16.0.1 and React to version 19.2.0. - Updated various packages including @supabase/supabase-js to 2.78.0, lucide-react to 0.548.0, and react-i18next to 16.2.3. - Adjusted @types/node version to 24.9.2 and other related dependencies. - Refactored package.json files to use PNPM catalogs for better dependency management. - Updated ESLint configurations and related plugins to the latest versions.
22 lines
583 B
JSON
22 lines
583 B
JSON
{
|
|
"name": "web-e2e",
|
|
"version": "1.0.0",
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"report": "playwright show-report",
|
|
"test": "playwright test --max-failures=1",
|
|
"test:fast": "playwright test --max-failures=1 --workers=16",
|
|
"test:setup": "playwright test tests/auth.setup.ts",
|
|
"test:ui": "playwright test --ui"
|
|
},
|
|
"author": "Makerkit",
|
|
"devDependencies": {
|
|
"@playwright/test": "^1.56.1",
|
|
"@supabase/supabase-js": "2.78.0",
|
|
"@types/node": "catalog:",
|
|
"dotenv": "17.2.3",
|
|
"node-html-parser": "^7.0.1",
|
|
"totp-generator": "^2.0.0"
|
|
}
|
|
}
|