-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.83 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.83 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
{
"name": "gad-mcp-copilot",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "playwright test",
"test:functional": "npx playwright test --project=functional",
"test:nonfunctional": "npx playwright test --project=nonfunctional",
"report:playwright:open": "npx playwright show-report",
"report:allure:generate": "allure generate allure-results --clean -o allure-report",
"report:allure:open": "allure open allure-report",
"report:lighthouse:generate": "node scripts/generate-lighthouse-report.js",
"report:lighthouse:open": "start lighthouse-reports\\consolidated-report.html",
"report:accessibility:generate": "node scripts/generate-accessibility-report.js",
"report:accessibility:open": "start accessibility-reports\\consolidated-report.html",
"format:prettier:fix": "prettier --write .",
"format:prettier:check": "prettier --check .",
"format:lint:check": "eslint . --ext .ts,.js",
"format:lint:fix": "eslint . --ext .ts,.js --fix",
"prepare": "husky"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "commonjs",
"devDependencies": {
"@faker-js/faker": "^9.9.0",
"@playwright/test": "^1.56.1",
"@trivago/prettier-plugin-sort-imports": "^5.2.2",
"@types/node": "^24.7.2",
"@typescript-eslint/eslint-plugin": "^8.46.1",
"@typescript-eslint/parser": "^8.46.1",
"allure-commandline": "^2.34.1",
"allure-playwright": "^3.4.1",
"axe-html-reporter": "^2.2.11",
"eslint": "^9.38.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-playwright": "^2.2.2",
"eslint-plugin-prettier": "^5.5.4",
"globals": "^16.4.0",
"husky": "^9.1.7",
"lighthouse": "^12.8.2",
"playwright-lighthouse": "^4.0.0",
"prettier": "^3.6.2"
},
"dependencies": {
"@axe-core/playwright": "^4.10.2"
}
}