-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.09 KB
/
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
36
37
38
{
"name": "playwright-template",
"version": "1.0.0",
"description": "Example of a project with Playwright, Typescript and some integrations.",
"main": "index.js",
"scripts": {
"open": "npx playwright open",
"test": "npx playwright test",
"ui": "npx playwright test --ui",
"debug": "npx playwright test --debug",
"test:api": "npx playwright test --project=api",
"test:web": "npx playwright test --project=web",
"report": "npx playwright show-report"
},
"repository": {
"type": "git",
"url": "git+https://github.com/estefafdez/playwright-template.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/estefafdez/playwright-template/issues"
},
"homepage": "https://github.com/estefafdez/playwright-template#readme",
"devDependencies": {
"@playwright/test": "^1.50.0",
"@types/node": "^22.12.0",
"playwright": "^1.50.0"
},
"dependencies": {
"chalk": "5.4.1",
"each-async": "^2.0.0",
"indent-string": "^5.0.0",
"npm-check-updates": "^17.1.14",
"playwright-qase-reporter": "2.0.16"
}
}