-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
24 lines (24 loc) · 610 Bytes
/
Copy pathpackage.json
File metadata and controls
24 lines (24 loc) · 610 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
"name": "html-sample-assignment",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"browser-install": "npx playwright install chromium",
"deps-install": "npx playwright install-deps",
"test": "npx playwright test",
"test-ui": "npx playwright test --ui",
"show-report": "npx playwright show-report",
"live-server": "npx live-server --port=5551"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@playwright/test": "^1.41.2",
"@types/node": "^20.11.20"
},
"dependencies": {
"live-server": "^1.2.2"
}
}