-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.05 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.05 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
{
"name": "playwright_course",
"version": "1.0.0",
"description": "",
"main": "index.js",
"type": "module",
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@playwright/test": "^1.55.0",
"@trivago/prettier-plugin-sort-imports": "^5.2.2",
"@types/node": "^24.3.0",
"@typescript-eslint/eslint-plugin": "^8.42.0",
"@typescript-eslint/parser": "^8.42.0",
"eslint": "^9.34.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-playwright": "^2.2.2",
"eslint-plugin-prettier": "^5.5.4",
"prettier": "^3.6.2",
"ts-node": "^10.9.2",
"typescript": "^5.9.2",
"typescript-eslint": "^8.46.1"
},
"dependencies": {
"tsconfig-paths": "^4.2.0"
},
"scripts": {
"lint": "npx eslint",
"lint:fix": "npx eslint --fix",
"format": "npx prettier --write .",
"format:check": "npx prettier --check .",
"test": "npx playwright test",
"test:ui": "npm run test -- --ui",
"test:example": "npx playwright test tests/01-goto-debug-breakpoint/goto-and-use-debug.spec.ts"
}
}