forked from milos-pujic/playwright-e2e-tests
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.52 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
{
"name": "playwright-e2e-tests",
"version": "1.0.0",
"description": "Playwright E2E Test Framework",
"main": "index.js",
"scripts": {
"prepare": "husky install",
"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"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@faker-js/faker": "^8.4.1",
"@playwright/test": "^1.44.0",
"@typescript-eslint/eslint-plugin": "^7.8.0",
"@typescript-eslint/parser": "^7.8.0",
"allure-commandline": "^2.29.0",
"allure-playwright": "^2.15.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-playwright": "^1.6.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-promise": "^6.1.1",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"monocart-reporter": "^2.4.6",
"prettier": "^3.2.5",
"rimraf": "^5.0.7",
"tsx": "^4.10.1",
"typescript": "^5.4.5"
}
}