-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 2.18 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
53
54
55
56
57
{
"name": "testautomation_playwright",
"version": "1.0.0",
"description": "Playwright Framework with Typescript",
"main": "index.js",
"author": "Ismail Elshafeiy",
"license": "ISC",
"scripts": {
"inspector": "npx playwright codegen playwright.dev",
"stg": "npx cross-env ENV=stg",
"prod": "npx cross-env ENV=prod",
"test": "npx playwright test",
"test:stg": "npx cross-env ENV=stg playwright test",
"test:prod": "npx cross-env ENV=prod playwright test",
"clean": "rimraf reports/allure-results && rimraf test-results",
"test:login": "npx playwright test Login.test.ts --project=Chrome",
"test:smoke": "npx playwright test --grep @Smoke --workers=1 --project=Chrome",
"test:api": "npx playwright test --grep @API --workers=1 --project=Chrome",
"allure:report": "allure serve reports/allure-results",
"test:reporter": "npm run clean && playwright test --headed --reporter=allure-playwright,line,./reports/allure-results",
"lighthouse": "node tests/Lighthouse.js"
},
"dependencies": {
"@applitools/eyes-playwright": "^1.20.0",
"@faker-js/faker": "^7.6.0",
"@types/adm-zip": "^0.5.0",
"@types/crypto-js": "^4.1.1",
"@types/node": "^20.7.0",
"@typescript-eslint/eslint-plugin": "^5.59.0",
"@typescript-eslint/parser": "^5.59.0",
"@wdio/allure-reporter": "^8.32.4",
"adm-zip": "^0.5.10",
"allure-commandline": "^2.22.1",
"allure-playwright": "^2.4.0",
"cross-env": "^7.0.3",
"crypto-js": "^4.1.1",
"csv-parse": "^5.5.0",
"eslint": "^8.38.0",
"eslint-plugin-import": "^2.27.5",
"exceljs": "^4.3.0",
"i": "^0.3.7",
"lighthouse": "^12.2.2",
"monocart-reporter": "^1.0.7",
"npm": "^10.9.1",
"pdfjs-dist-es5": "^2.13.216",
"pg": "^8.10.0",
"playwright-lighthouse": "2.2.2",
"rimraf": "^5.0.1",
"winston": "^3.8.2"
},
"devDependencies": {
"@playwright/test": "^1.49.0",
"@wdio/cli": "^9.3.1",
"typescript": "^5.2.2"
},
"packageManager": "[email protected]"
}