mirror of
https://github.com/suitenumerique/docs
synced 2026-04-21 21:47:35 +00:00
We upgraded ESLint to version 9 in the e2e app, which includes several improvements and fixes. This change also involves updating the ESLint configuration files to the new format and ensuring compatibility with the latest ESLint features.
25 lines
657 B
JSON
25 lines
657 B
JSON
{
|
|
"name": "app-e2e",
|
|
"version": "3.6.0",
|
|
"private": true,
|
|
"scripts": {
|
|
"lint": "eslint",
|
|
"install-playwright": "playwright install --with-deps",
|
|
"test": "playwright test",
|
|
"test:ui": "yarn test --ui",
|
|
"test:ui::firefox": "yarn test:ui --project=firefox",
|
|
"test:ui::webkit": "yarn test:ui --project=webkit",
|
|
"test:ui::chromium": "yarn test:ui --project=chromium"
|
|
},
|
|
"devDependencies": {
|
|
"@playwright/test": "1.55.0",
|
|
"@types/node": "*",
|
|
"@types/pdf-parse": "1.1.5",
|
|
"eslint-plugin-docs": "*",
|
|
"typescript": "*"
|
|
},
|
|
"dependencies": {
|
|
"convert-stream": "1.0.2",
|
|
"pdf-parse": "1.1.1"
|
|
}
|
|
}
|