forked from akshayp7/playwright-typescript-playwright-test
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.74 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": "playwright-typescript-playwright-test",
"version": "1.0.0",
"description": "Playwright Framework with Typescript",
"main": "index.js",
"scripts": {
"test": "npx playwright test",
"test:single": "npx playwright test Login.test.ts --project=Chrome",
"test:parallel": "npx playwright test --grep @Smoke --project=Chrome",
"test:serial": "npx playwright test --grep @Smoke --workers=1 --project=Chrome",
"test:ui": "npx playwright test --grep @Smoke --ui",
"test:api": "npx playwright test --grep @API --workers=1 --project=Chrome",
"test:db": "npx playwright test DB.test.ts --project=DB",
"test:record": "npx playwright codegen",
"test:visual": "npx playwright test visualComparision.test.ts --project=Chrome",
"test:device": "npx playwright test Emulation.test.ts --project=Device",
"allureReport": "allure serve",
"lighthouse": "node tests/lighthouse/Lighthouse.js",
"test:accessibility": "npx playwright test Axe.test.ts --project=Chrome"
},
"repository": {
"type": "git",
"url": "https://github.com/akshayp7/playwright-typescipt-playwright-test.git"
},
"author": "Akshay Pai",
"license": "MIT",
"dependencies": {
"@axe-core/playwright": "^4.9.0",
"@playwright/test": "^1.44.0",
"@types/adm-zip": "^0.5.5",
"@types/crypto-js": "^4.2.2",
"@typescript-eslint/eslint-plugin": "^7.8.0",
"@typescript-eslint/parser": "^7.8.0",
"adm-zip": "^0.5.12",
"allure-playwright": "^2.15.1",
"crypto-js": "^4.2.0",
"eslint": "^8.57.0",
"eslint-plugin-import": "^2.29.1",
"exceljs": "^4.4.0",
"lighthouse": "^9.6.8",
"npm": "^10.7.0",
"pdfjs-dist-es5": "^2.13.216",
"pg": "^8.11.5",
"typescript": "^5.4.5",
"winston": "^3.13.0"
}
}