-
Notifications
You must be signed in to change notification settings - Fork 32
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 932 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 932 Bytes
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
{
"name": "playwrighttypescripttutorialfullcourse",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"build": "tsc",
"DataDrivenTesting": "npx playwright test --grep @DataDrivenTesting",
"Suite": "npx playwright test --grep \"@SmokeTesting|@RegressionTesting\"",
"SmokeTesting": "npx playwright test --grep @SmokeTesting",
"RegressionTesting": "npx playwright test --grep @RegressionTesting",
"test": "playwright test"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"devDependencies": {
"@playwright/test": "^1.49.0",
"@types/node": "^22.9.3",
"allure-playwright": "^3.0.7"
},
"dependencies": {
"@faker-js/faker": "^9.4.0",
"axios": "^1.7.9",
"csv-parse": "^5.6.0",
"dotenv": "^16.4.7",
"exceljs": "^4.4.0",
"fast-xml-parser": "^5.3.3",
"mammoth": "^1.11.0",
"pdfjs-dist": "^5.4.530",
"xlsx": "^0.18.5"
}
}