-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
33 lines (33 loc) · 1005 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
33
{
"devDependencies": {
"@playwright/test": "^1.46.0",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/node": "^20.8.7",
"@typescript-eslint/eslint-plugin": "^7.0.2",
"@typescript-eslint/parser": "^7.0.2",
"dotenv": "^16.3.1",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-playwright": "^0.19.0",
"eslint-plugin-prettier": "^5.0.1",
"husky": "^8.0.3",
"prettier": "3.0.3",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.2.2",
"winston": "^3.11.0"
},
"scripts": {
"test": "npx playwright test",
"test:headed": "npm run test -- --headed",
"test:ui": "npm run test -- --ui",
"show-report": "npx playwright show-report",
"style": "npx prettier --write .",
"style:check": "npx prettier . --check",
"lint": "npx eslint . --ext .ts --max-warnings=0",
"lint:fix": "npx eslint -- --fix"
},
"dependencies": {
"@axe-core/playwright": "^4.9.1"
}
}