-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.64 KB
/
package.json
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
44
45
46
47
{
"name": "sauce-demo-let-s-test-it",
"version": "1.0.0",
"description": "[E2E] Automation tests for Sauce Labs shop - 🎭Playwright.",
"main": "index.js",
"scripts": {
"format": "npx prettier --write .",
"format:check": "npx prettier . --check \"!**.ts\"",
"lint": "npx eslint . --max-warnings 0",
"tsc:check": "npx tsc --noEmit --pretty --strict",
"prepare": "husky || true",
"test": "npx playwright test",
"test:ui": "npm run test -- --ui",
"test:failed": "npm run test -- --last-failed",
"test:changed": "npm run test -- --only-changed",
"test:tags": "npx playwright test --grep \"@smoke|@reg\"",
"test:reg": "npx playwright test --grep \"@reg\"",
"show-report": "npx playwright show-report src/output/test-reports",
"generate-report": "npx allure generate src/output/allure-results -o src/output/allure-reports --clean",
"allure-report": "npx allure open ./src/output/allure-reports"
},
"keywords": [],
"author": "Marcin P.",
"license": "ISC",
"devDependencies": {
"@axe-core/playwright": "^4.10.1",
"@eslint/js": "^9.14.0",
"@faker-js/faker": "^8.4.1",
"@playwright/test": "^1.49.0",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/node": "^20.17.6",
"allure-commandline": "^2.32.0",
"allure-playwright": "^3.0.0-beta.10",
"dotenv": "^16.4.5",
"eslint": "^9.15.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-playwright": "^2.1.0",
"eslint-plugin-prettier": "^5.2.1",
"globals": "^15.12.0",
"husky": "^9.1.7",
"prettier": "3.3.3",
"typescript-eslint": "^8.15.0"
},
"dependencies": {
"npm": "^10.9.0"
}
}