forked from EugenePetrik/playwright-project
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 2.01 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
{
"name": "playwright-project",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"postinstall": "npx playwright install",
"prepare": "husky install",
"format": "prettier --write .",
"check-format": "prettier --check .",
"check-lint": "eslint . --ext ts",
"check-all": "npm run format && npm run check-lint",
"test:e2e": "npx playwright test --config src/configs/playwright.config.e2e.ts --project chromium",
"test:visual": "npx playwright test --config src/configs/playwright.config.snapshots.ts --project chromium",
"visual:update:snapshots": "npm run test:visual --update-snapshots",
"test:a11y": "npx playwright test --config src/configs/playwright.config.accessibility.ts --project chromium",
"test:api": "npx playwright test --config src/configs/playwright.config.api.ts",
"test:lighthouse": "npx playwright test --config src/configs/playwright.config.lighthouse.ts",
"test:debug": "PWDEBUG=1 npx playwright test --config src/configs/playwright.config.e2e.ts --project chromium",
"test:debug:api": "DEBUG=pw:api npx playwright test --config src/configs/playwright.config.e2e.ts --project chromium",
"html:report": "npx playwright show-report reports/html-report"
},
"keywords": [],
"author": "Yevhen Petryk",
"license": "ISC",
"devDependencies": {
"@types/lodash": "^4.14.202",
"@typescript-eslint/eslint-plugin": "^6.15.0",
"eslint": "^8.56.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-playwright": "^0.20.0",
"eslint-plugin-prettier": "^5.1.1",
"lodash": "^4.14.197",
"prettier": "^3.1.1",
"typescript": "^5.3.2",
"winston": "^3.11.0"
},
"dependencies": {
"@axe-core/playwright": "^4.8.2",
"@faker-js/faker": "^8.3.1",
"@playwright/test": "^1.40.1",
"ajv": "^8.12.0",
"date-fns": "^3.0.6",
"dayjs": "^1.11.10",
"dotenv": "^16.3.1",
"husky": "^8.0.3",
"lighthouse": "^9.6.8",
"playwright-lighthouse": "^2.2.2"
}
}