-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
36 lines (36 loc) · 828 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
34
35
36
{
"name": "playwright-typescript",
"version": "1.0.0",
"description": "",
"main": "index.js",
"type": "module",
"scripts": {
"prepare": "husky"
},
"keywords": [],
"author": "Nir Tal",
"license": "ISC",
"devDependencies": {
"@playwright/test": "1.48.2",
"@stylistic/eslint-plugin": "2.10.1",
"@types/node": "22.8.6",
"@typescript-eslint/eslint-plugin": "8.12.2",
"@typescript-eslint/parser": "8.12.2",
"eslint": "9.13.0",
"eslint-plugin-playwright": "2.0.0",
"husky": "9.1.6",
"lint-staged": "15.2.10",
"typescript": "5.6.3"
},
"dependencies": {
"allure-playwright": "3.0.6",
"dotenv": "16.4.5",
"eslint-plugin-import": "2.31.0",
"xlsx": "0.18.5"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,json,md,yml}": [
"eslint --fix"
]
}
}