-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 1.05 KB
/
package.json
File metadata and controls
32 lines (32 loc) · 1.05 KB
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
{
"name": "playwright-complete-framework",
"version": "1.0.0",
"main": "",
"type": "module",
"scripts": {
"static-checks": "npm run clean-reports && npx eslint . && npx tsc --noEmit",
"regression": "npm run static-checks && npx playwright test --grep @regression",
"runAll": "npm run clean-reports && npm run static-checks && npx playwright test",
"allure-report-single": "npx allure generate --single-file --clean",
"clean-reports": "node utils/reportsCleanup.js"
},
"keywords": [],
"author": "Adrian Maciuc",
"license": "MIT",
"description": "A modular and scalable Playwright framework example.",
"devDependencies": {
"typescript": "5.6.3",
"@faker-js/faker": "^9.0.1",
"@playwright/test": "1.50.1",
"@types/node": "^22.5.4",
"@typescript-eslint/eslint-plugin": "^8.11.0",
"@typescript-eslint/parser": "^8.11.0",
"eslint-plugin-playwright": "^2.0.0",
"eslint": "^9.20.1"
},
"dependencies": {
"allure-commandline": "^2.32.0",
"allure-playwright": "^3.0.6",
"dotenv": "^16.4.5"
}
}