7b2f75e6ae
The root devDependencies still pinned an older Playwright (1.48.2) plus a stray `dotenv` that nothing in the e2e suite or root scripts actually requires (verified via grep across tests/). Updates the Playwright version to match the current upstream stable and removes the unused dotenv to keep the root install lean. Originated from a local stash that picked up these changes; landing them as a small dedicated commit so they don't blend into the auth fix that follows.
20 lines
335 B
JSON
20 lines
335 B
JSON
{
|
|
"scripts": {
|
|
"test:e2e": "playwright test"
|
|
},
|
|
"dependencies": {
|
|
"better-sqlite3": "^12.2.0",
|
|
"canvas": "^3.2.0",
|
|
"node-fetch": "^2.7.0"
|
|
},
|
|
"devDependencies": {
|
|
"@playwright/test": "^1.57.0",
|
|
"puppeteer": "^24.17.0"
|
|
},
|
|
"overrides": {
|
|
"prebuild-install": {
|
|
"tar-fs": "2.1.4"
|
|
}
|
|
}
|
|
}
|