-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.72 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 1.72 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
{
"name": "free-vpn-planet-test",
"version": "0.1.0",
"private": true,
"description": "Black-box E2E suite (TypeScript + Playwright) for the Free VPN Planet purchase flows, built with an AI-assisted SDET workflow.",
"license": "MIT",
"type": "module",
"engines": {
"node": ">=20.10.0",
"npm": ">=10.0.0"
},
"scripts": {
"test": "playwright test",
"test:smoke": "playwright test --grep @smoke",
"test:ui": "playwright test --ui",
"test:debug": "PWDEBUG=1 playwright test",
"test:headed": "playwright test --headed",
"report": "playwright show-report",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write \"**/*.{ts,js,json,md,yml,yaml}\"",
"format:check": "prettier --check \"**/*.{ts,js,json,md,yml,yaml}\"",
"typecheck": "tsc --noEmit",
"validate": "bash tools/validate-layout.sh && tsx tools/factory-rules.ts && tsx tools/fixture-rules.ts && tsx tools/lint-ui-spec.ts",
"verify": "bash tools/verify.sh || true",
"prepare": "husky || true"
},
"lint-staged": {
"*.ts": [
"eslint --fix",
"prettier --write"
],
"*.{js,json,md,yml,yaml}": [
"prettier --write"
]
},
"devDependencies": {
"@faker-js/faker": "^9.0.0",
"@playwright/test": "^1.50.0",
"eslint-plugin-playwright": "2.10.0",
"@redocly/cli": "^1.25.0",
"@types/node": "^22.0.0",
"dotenv": "^16.4.0",
"eslint": "^9.0.0",
"fishery": "^2.2.2",
"husky": "^9.0.0",
"lint-staged": "^15.0.0",
"openapi-fetch": "^0.13.0",
"openapi-typescript": "^7.0.0",
"prettier": "^3.3.0",
"tsc-files": "^1.1.4",
"tsx": "^4.0.0",
"typescript": "^5.4.0",
"typescript-eslint": "^8.0.0",
"zod": "^3.23.0"
}
}