- Added new dependencies: `luxon` and its type definitions to the e2e app - Introduced `cmdk` and `use-debounce` to the impress app for enhanced UI components and debouncing functionality.
29 lines
747 B
JSON
29 lines
747 B
JSON
{
|
|
"name": "app-e2e",
|
|
"version": "1.10.0",
|
|
"private": true,
|
|
"scripts": {
|
|
"lint": "eslint . --ext .ts",
|
|
"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.49.1",
|
|
"@types/node": "*",
|
|
"@types/pdf-parse": "1.1.4",
|
|
"eslint-config-impress": "*",
|
|
"typescript": "*",
|
|
"luxon": "3.5.0",
|
|
"@types/luxon": "3.4.2"
|
|
},
|
|
"dependencies": {
|
|
"convert-stream": "1.0.2",
|
|
"jsdom": "25.0.1",
|
|
"pdf-parse": "1.1.1"
|
|
}
|
|
}
|