-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 933 Bytes
/
package.json
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
{
"name": "sauce",
"version": "1.0.0",
"description": "",
"engines": {
"node": "21",
"pnpm": "8"
},
"scripts": {
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"playwright:test": "playwright test",
"playwright:ui": "playwright test --ui",
"playwright:debug": "playwright test --debug",
"playwright:test:high-priority": "playwright test --grep @high",
"playwright:test:medium-priority": "playwright test --grep @medium",
"playwright:test:low-priority": "playwright test --grep @low"
},
"author": "Tomasz Grazynski",
"license": "ISC",
"devDependencies": {
"@playwright/test": "1.39.0",
"@types/node": "20.8.10",
"@typescript-eslint/eslint-plugin": "6.9.1",
"@typescript-eslint/parser": "6.9.1",
"eslint": "8.53.0",
"eslint-config-prettier": "9.0.0",
"eslint-plugin-playwright": "0.18.0",
"prettier": "3.0.3",
"typescript": "5.2.2"
}
}