-
-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.49 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.49 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
{
"author": "Nir Tal",
"description": "",
"devDependencies": {
"@aws-sdk/client-s3": "3.1009.0",
"@aws-sdk/credential-provider-ini": "3.972.20",
"@biomejs/biome": "2.4.7",
"@playwright/test": "1.58.2",
"@types/node": "24.12.0",
"@types/ssh2-sftp-client": "^9.0.4",
"@visual-regression-tracker/agent-playwright": "5.3.1",
"allure": "^3.0.1",
"allure-js-commons": "3.6.0",
"allure-playwright": "3.6.0",
"axios": "1.13.6",
"dotenv": "17.3.1",
"husky": "9.1.7",
"lint-staged": "16.4.0",
"mailinator-client": "1.0.10",
"mysql2": "3.19.1",
"ssh2-sftp-client": "12.1.0",
"stripe": "20.4.1",
"typescript": "5.9.3",
"xlsx": "0.18.5",
"zod": "4.3.6"
},
"keywords": [],
"license": "ISC",
"lint-staged": {
"*.{js,jsx,ts,tsx,json,md,yml}": [
"npm run biome:fix --"
]
},
"name": "playwright-typescript",
"packageManager": "pnpm@10.32.1+sha512.a706938f0e89ac1456b6563eab4edf1d1faf3368d1191fc5c59790e96dc918e4456ab2e67d613de1043d2e8c81f87303e6b40d4ffeca9df15ef1ad567348f2be",
"scripts": {
"biome:fix": "biome check --write --unsafe --no-errors-on-unmatched || true",
"codegen": "playwright codegen",
"install-browsers": "playwright install --with-deps",
"prepare": "husky",
"report:serve": "allure serve allure-results",
"test": "playwright test",
"test:debug": "PWDEBUG=1 playwright test --grep '@devRun'",
"test:dev": "playwright test --grep '@devRun'",
"test:non-dev": "playwright test --grep-invert '@devRun'"
},
"type": "module",
"version": "1.0.0"
}