-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.74 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 1.74 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
{
"name": "playwrightproject",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "playwright test",
"test:ui": "playwright test --ui",
"test:debug": "playwright test --debug",
"test:headed": "playwright test --headed",
"test:trace": "playwright test --trace on",
"test:chromium": "playwright test --project=chromium",
"test:firefox": "playwright test --project=firefox",
"test:webkit": "playwright test --project=webkit",
"test:mobile": "playwright test --project='Mobile Chrome' --project='Mobile Safari'",
"test:grep": "playwright test --project=chromium --grep",
"test:performance": "TEST_USER=performance_glitch_user playwright test tests/performance.spec.ts --project=chromium",
"test:ci": "playwright test --retries=2 --reporter=github,html",
"test:report": "playwright show-report",
"typecheck": "tsc --noEmit",
"lint": "eslint 'src/**/*.{ts,tsx}' 'tests/**/*.{ts,tsx}'",
"lint:fix": "eslint 'src/**/*.{ts,tsx}' 'tests/**/*.{ts,tsx}' --fix",
"format": "prettier --write 'src/**/*.{ts,tsx}' 'tests/**/*.{ts,tsx}' README.md",
"format:check": "prettier --check 'src/**/*.{ts,tsx}' 'tests/**/*.{ts,tsx}' README.md",
"clean": "rimraf node_modules dist test-results playwright-report"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "commonjs",
"devDependencies": {
"@playwright/test": "^1.60.0",
"@types/node": "^25.9.2",
"@typescript-eslint/eslint-plugin": "*",
"@typescript-eslint/parser": "*",
"eslint": "*",
"eslint-config-prettier": "*",
"eslint-plugin-playwright": "*",
"eslint-plugin-prettier": "*",
"playwright": "^1.60.0",
"prettier": "*",
"rimraf": "*",
"typescript": "^6.0.3"
}
}