-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.46 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.46 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
{
"name": "printfriendly-ui-automation",
"version": "1.0.0",
"private": true,
"description": "Production UI automation framework (Playwright, TypeScript, POM)",
"engines": {
"node": ">=20"
},
"scripts": {
"test": "playwright test",
"test:smoke": "playwright test --grep @smoke",
"test:ci": "cross-env CI=true playwright test",
"test:headed": "playwright test --headed",
"test:ui": "playwright test --ui",
"test:debug": "playwright test --debug",
"test:chromium": "playwright test --project=chromium",
"test:firefox": "playwright test --project=firefox",
"test:webkit": "playwright test --project=webkit",
"test:login": "playwright test tests/login.spec.ts",
"test:signup": "playwright test tests/signup.spec.ts",
"report": "playwright show-report",
"trace": "playwright show-trace",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"browsers:install": "playwright install",
"browsers:install:ci": "playwright install --with-deps chromium firefox webkit"
},
"devDependencies": {
"@eslint/js": "^9.17.0",
"@playwright/test": "^1.49.1",
"@types/node": "^22.10.2",
"cross-env": "^7.0.3",
"dotenv": "^16.4.7",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-playwright": "^2.1.0",
"prettier": "^3.4.2",
"typescript": "^5.7.2",
"typescript-eslint": "^8.18.2"
}
}