-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.35 KB
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 1.35 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
{
"name": "playwright-examples",
"version": "1.0.0",
"description": "Playwright with eslint and github actions",
"main": "index.js",
"scripts": {
"tests:ui": "playwright test ./ui --browser all",
"tests:api": "playwright test ./api",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"lint:ci": "eslint . --ext .ts --format @microsoft/eslint-formatter-sarif --output-file eslint-results.sarif",
"report" : "playwright show-report"
},
"repository": {
"type": "git",
"url": "git+https://github.com/helloitsdave/playwright-examples.git"
},
"keywords": [
"playwright"
],
"author": "helloitsdave@gmail.com",
"license": "ISC",
"bugs": {
"url": "https://github.com/helloitsdave/playwright-examples/issues"
},
"homepage": "https://github.com/helloitsdave/playwright-examples#readme",
"devDependencies": {
"@microsoft/eslint-formatter-sarif": "2.1.7",
"@playwright/test": "1.40.0",
"@types/node": "20.10.5",
"@typescript-eslint/eslint-plugin": "6.16.0",
"@typescript-eslint/parser": "6.16.0",
"eslint": "8.56.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-playwright": "0.20.0",
"eslint-plugin-prettier": "5.1.2",
"prettier": "3.1.1",
"typescript": "5.3.3"
}
}