-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.12 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.12 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
33
34
35
36
37
{
"name": "playwright-typescript-automation",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"pretest": "tsc --noEmit",
"check-style": "npx prettier . --check",
"lint": "npx eslint .",
"allChecks": "npm audit && tsc --noEmit && npx prettier . --check && npx eslint .",
"test": "npx playwright test",
"allureReport": "npx allure generate ./allure-results --clean && npx allure open ./allure-report"
},
"keywords": [],
"author": "fifernandez",
"license": "ISC",
"description": "",
"devDependencies": {
"@eslint/js": "^9.39.2",
"@faker-js/faker": "^9.9.0",
"@playwright/test": "^1.57.0",
"@types/node": "^25.0.9",
"@typescript-eslint/eslint-plugin": "^8.53.1",
"@typescript-eslint/parser": "^8.53.1",
"ajv": "^8.17.1",
"allure-commandline": "^2.36.0",
"allure-playwright": "^3.4.5",
"cross-env": "^10.1.0",
"dotenv": "^17.2.3",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-playwright": "^2.5.0",
"globals": "^17.0.0",
"prettier": "^3.8.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.53.1"
}
}