-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 2.4 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 2.4 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "playwright-typescript-framework",
"version": "1.0.0",
"description": "Enterprise-grade Playwright + TypeScript automation framework",
"scripts": {
"test": "npx playwright test",
"test:ui": "npx playwright test tests/ui",
"test:api": "npx playwright test tests/api",
"test:headed": "npx playwright test --headed",
"lint": "eslint .",
"format": "prettier --write \"**/*.ts\"",
"format:check": "prettier --check \"**/*.ts\"",
"allure:generate": "allure generate allure-results -o allure-report --clean",
"allure:open": "allure open allure-report",
"docker:test": "docker compose up --build --abort-on-container-exit",
"docker:bash": "docker compose run --rm playwright-tests bash",
"sonar:scan": "sonar-scanner",
"sonar:scan:dry": "sonar-scanner -Dsonar.analysis.mode=preview -Dsonar.issuesReport.html.enable=true",
"mcp": "npx ts-node mcp/mcp-server.ts",
"mcp:debug": "MCP_MODE=http MCP_HEADLESS=false npx ts-node mcp/mcp-server.ts",
"mcp:local": "MCP_MODE=http MCP_PORT=3100 npx ts-node mcp/mcp-server.ts",
"mcp:example:login": "npx ts-node mcp/examples/login-automation.ts",
"mcp:example:locator": "npx ts-node mcp/examples/locator-inspection.ts",
"mcp:example:trace": "npx ts-node mcp/examples/trace-debugging.ts",
"snyk:auth": "snyk auth",
"snyk:test": "snyk test",
"snyk:monitor": "snyk monitor"
},
"keywords": [
"playwright",
"typescript",
"testing",
"automation"
],
"author": "",
"license": "ISC",
"type": "commonjs",
"repository": {
"type": "git",
"url": "git+https://github.com/yhAutomationQA/playwright-typescript-framework.git"
},
"bugs": {
"url": "https://github.com/yhAutomationQA/playwright-typescript-framework/issues"
},
"homepage": "https://github.com/yhAutomationQA/playwright-typescript-framework#readme",
"devDependencies": {
"@playwright/test": "^1.52.0",
"@types/node": "^22.15.3",
"@typescript-eslint/eslint-plugin": "^8.31.1",
"@typescript-eslint/parser": "^8.31.1",
"allure-playwright": "^3.7.2",
"dotenv": "^16.5.0",
"eslint": "^9.26.0",
"eslint-config-prettier": "^10.1.2",
"eslint-plugin-playwright": "^2.2.0",
"pino": "^10.3.1",
"prettier": "^3.5.3",
"snyk": "^1.1304.2",
"sonarqube-scanner": "^4.3.6",
"ts-node": "^10.9.2",
"typescript": "^5.8.3"
},
"dependencies": {
"@playwright/mcp": "^0.0.75"
}
}