-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.16 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.16 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
38
39
40
{
"name": "playwright-test-ui-api",
"type": "module",
"scripts": {
"test": "npx playwright test",
"test:ui": "npx playwright test --ui",
"test:headed": "npx playwright test --headed",
"test:chromium": "npx playwright test --project=chromium",
"test:webkit": "npx playwright test --project=webkit",
"test:api:rest": "npx playwright test --project=restApi",
"test:api:graphql": "npx playwright test --project=graphqlApi",
"lint": "tsc --noEmit && eslint .",
"lint:fix": "eslint . --fix",
"prepare": "husky"
},
"keywords": [
"playwright",
"mocha",
"typescript"
],
"author": "MD SADAB SAQIB",
"license": "ISC",
"description": "demo playwright project",
"devDependencies": {
"@eslint/js": "^10.0.1",
"@faker-js/faker": "^10.3.0",
"@playwright/test": "^1.58.2",
"@stylistic/eslint-plugin": "^5.10.0",
"@types/node": "^25.5.0",
"dotenv": "^17.3.1",
"eslint": "^10.0.3",
"eslint-plugin-playwright": "^2.10.0",
"globals": "^17.4.0",
"husky": "^9.1.7",
"npm-check-updates": "^19.6.3",
"ortoni-report": "^4.0.8",
"typescript-eslint": "^8.57.0",
"zod": "^4.3.6"
}
}