-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 863 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 863 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
{
"name": "typescript-playwright-automation",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "export HEADLESS='false' && npx playwright test --project='chromium' --workers 1",
"test:headless": "export HEADLESS='true' && npx playwright test --project='chromium' --workers 1",
"build": "tsc -p tsconfig.json --noEmit",
"test:changed": "npx playwright test --project='chromium' --only-changed --workers 1",
"ui-mode": "npx playwright test --ui",
"generate-barrels": "barrelsby --delete -d . -l below --exlcude spec.ts --exclude spec.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@playwright/test": "^1.46.1",
"@types/node": "^20.12.2",
"barrelsby": "^2.8.1"
},
"dependencies": {
"@faker-js/faker": "^8.4.1",
"dotenv": "^16.4.5"
}
}