generated from akshayp7/playwright-typescript-playwright-test
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.56 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
{
"name": "playwright-typescipt-playwright-test",
"version": "1.0.0",
"description": "Playwright Framework with Typescript",
"main": "index.js",
"scripts": {
"test": "npx playwright test",
"test:single": "npx playwright test FollowUsMultipleWindow.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: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 Lighthouse.js"
},
"repository": {
"type": "git",
"url": "https://github.com/akshayp7/playwright-typescipt-playwright-test.git"
},
"author": "Akshay Pai",
"license": "MIT",
"dependencies": {
"@playwright/test": "^1.22.1",
"@types/adm-zip": "^0.5.0",
"@types/crypto-js": "^4.1.1",
"@typescript-eslint/eslint-plugin": "^5.25.0",
"@typescript-eslint/parser": "^5.25.0",
"adm-zip": "^0.5.9",
"cross-env": "^7.0.3",
"crypto-js": "^4.1.1",
"eslint": "^8.15.0",
"eslint-plugin-import": "^2.26.0",
"exceljs": "^4.3.0",
"experimental-allure-playwright": "0.0.3",
"lighthouse": "^9.6.1",
"pg": "^8.7.3",
"playwright": "^1.22.1",
"typescript": "^4.6.4"
}
}