-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 821 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 821 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
25
26
27
28
29
{
"name": "pw-typescriptproject",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "npx playwright test",
"test:chromium": "npx playwright test --project chromium",
"test:first": "npx playwright test --grep @first",
"test:local": "BASE_URL=http://localhost:4200 npx playwright test",
"test:report": "npx playwright show-report",
"test:ui": "playwright test --ui",
"test:ci": "playwright test --reporter=list,html",
"postinstall": "playwright install --with-deps"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@playwright/test": "^1.49.1",
"@types/node": "^22.10.2",
"playwright": "^1.49.1",
"ts-node": "^10.9.2",
"typescript": "^5.7.2"
},
"dependencies": {
"dotenv": "^16.4.7"
}
}