-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
52 lines (52 loc) · 1.98 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
48
49
50
51
52
{
"name": "playwright-e2e-tests",
"version": "1.0.0",
"description": "Playwright E2E Test Framework",
"main": "index.js",
"scripts": {
"prepare": "husky",
"clean": "npm run clean:results && npm run clean:modules",
"clean:modules": "rimraf ./node_modules",
"clean:results": "rimraf ./playwright-report ./playwright-blob-report ./playwright-monocart-report ./playwright-allure-results ./playwright-allure-reports ./test-results",
"types-check": "tsc -p tsconfig.json --noEmit",
"types-check:watch": "tsc -p tsconfig.json --noEmit -w",
"pw:install": "playwright install",
"pw:ui": "playwright test --ui",
"test:sanity": "playwright test --grep @sanity",
"test:changed": "playwright test --only-changed=main",
"test:failed": "playwright test --last-failed",
"docker:build": "docker build . -t e2e-playwright",
"allure:generate": "allure generate playwright-allure-results -o playwright-allure-report --clean",
"allure:open": "allure open playwright-allure-report",
"merge:report:playwright": "tsx merge-playwright-reports.ts",
"merge:report:monocart": "tsx merge-monocart-reports.ts",
"update:playwright": "playwright install --with-deps"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.16.0",
"@faker-js/faker": "^9.3.0",
"@playwright/test": "^1.49.1",
"@types/node": "^22.10.5",
"@typescript-eslint/eslint-plugin": "^8.19.0",
"@typescript-eslint/parser": "^8.19.0",
"allure-commandline": "^2.32.0",
"allure-playwright": "^3.0.7",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-playwright": "^2.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-promise": "^7.2.1",
"globals": "^15.14.0",
"husky": "^9.1.7",
"lint-staged": "^15.3.0",
"monocart-reporter": "^2.9.12",
"prettier": "^3.4.2",
"rimraf": "^6.0.1",
"tsx": "^4.19.2",
"typescript": "^5.7.2"
}
}