-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.11 KB
/
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
37
38
39
40
41
42
43
44
45
46
47
{
"name": "playwright-framework",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"postinstall": "npx playwright install",
"test": "",
"execute-husky": "npx husky install && npx husky add .husky/pre-commit \"npx --no-install lint-staged\"",
"report": "npx playwright show-report"
},
"repository": {
"type": "git",
"url": "git+https://github.com/woytekn/playwright-framework.git"
},
"husky": {
"hooks": {
"pre-commit": "npm run pretest"
}
},
"lint-staged": {
"*.js": [
"eslint . --fix",
"prettier --write ."
]
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/woytekn/playwright-framework/issues"
},
"homepage": "https://github.com/woytekn/playwright-framework#readme",
"devDependencies": {
"@playwright/test": "^1.32.1",
"dotenv": "^16.0.3",
"eslint": "^8.30.0",
"husky": "^8.0.0",
"lighthouse": "^9.6.8",
"lint-staged": "^13.1.0",
"playwright-lighthouse": "^2.2.2",
"prettier": "^2.8.1"
},
"dependencies": {
"playwright": "^1.32.1"
}
}