-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 961 Bytes
/
package.json
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
{
"name": "task",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "npx playwright test",
"test:ui": "npx playwright test --ui",
"report:allure": "allure serve allure-results",
"report:playwright": "npx playwright show-report",
"lint": "npx eslint",
"lint:fix": "npx eslint --fix",
"lint:report": "npx eslint -f html -o ./lint-report.html"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@playwright/test": "^1.50.1",
"@types/node": "^22.13.0",
"allure-commandline": "^2.32.2",
"allure-playwright": "^3.1.0",
"eslint": "^8.56.0",
"eslint-plugin-playwright": "^2.2.0",
"typescript": "^5.7.3",
"typescript-eslint": "^8.23.0",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0"
},
"dependencies": {
"dotenv": "^16.4.7",
"mammoth": "^1.9.0",
"playwright": "^1.50.1"
}
}