-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 2.12 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 2.12 KB
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "playwright-sandbox",
"version": "1.0.0",
"type": "module",
"description": "My Playground for learning Playwright",
"main": "index.js",
"scripts": {
"test": "npx playwright test",
"test:headed": "npx playwright test --headed",
"test:unit": "npx playwright test --grep @unit-test",
"test:dev": "NODE_ENV=dev npx playwright test --grep @config",
"test:test": "NODE_ENV=test npx playwright test --grep @config",
"lint": "npx eslint .",
"lint:fix": "npx eslint . --fix",
"prettier": "npx prettier --check .",
"prettier:fix": "npx prettier --write .",
"prepare": "husky",
"lint-staged": "lint-staged --allow-empty",
"test-browserstack": "npx browserstack-node-sdk playwright test",
"test:headed-browserstack": "npx browserstack-node-sdk playwright test --headed",
"test:unit-browserstack": "npx browserstack-node-sdk playwright test --grep @unit-test",
"test:dev-browserstack": "NODE_ENV=dev npx browserstack-node-sdk playwright test",
"test:test-browserstack": "NODE_ENV=test npx browserstack-node-sdk playwright test"
},
"keywords": [
"playwright",
"typescript",
"test"
],
"author": "Power Tester",
"license": "ISC",
"devDependencies": {
"@azure/microsoft-playwright-testing": "^1.0.0-beta.7",
"@eslint/js": "^9.36.0",
"@playwright/test": "^1.57.0",
"@types/dotenv": "^8.2.3",
"@types/node": "^24.3.0",
"@typescript-eslint/eslint-plugin": "^8.41.0",
"@typescript-eslint/parser": "^8.41.0",
"browserstack-node-sdk": "^1.42.0",
"eslint": "^9.34.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-playwright": "^2.2.2",
"husky": "^9.1.7",
"lint-staged": "^16.1.5",
"playwright-cli-select": "^1.0.6",
"prettier": "3.6.2",
"typescript": "^5.9.2"
},
"lint-staged": {
"*.{json,yml,css,md}": "npx prettier --write",
"*.{ts,js}": [
"npx eslint --fix",
"npx prettier --write"
]
},
"dependencies": {
"@axe-core/playwright": "^4.10.2",
"config": "^4.1.1",
"cross-env": "^10.0.0",
"dotenv": "^17.2.1",
"pg": "^8.16.3",
"playwright-sandbox": "file:"
}
}