-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
45 lines (45 loc) · 1.66 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
{
"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",
"test:sanity": "playwright test --grep @sanity",
"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.14.0",
"@faker-js/faker": "^9.2.0",
"@playwright/test": "^1.48.2",
"@typescript-eslint/eslint-plugin": "^8.12.2",
"@typescript-eslint/parser": "^8.13.0",
"allure-commandline": "^2.32.0",
"allure-playwright": "^3.0.6",
"eslint": "^9.14.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-playwright": "^1.7.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-promise": "^7.1.0",
"globals": "^15.12.0",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"monocart-reporter": "^2.9.6",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"tsx": "^4.19.2",
"typescript": "^5.6.3"
}
}