-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.05 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.05 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
{
"name": "playwright-javascript",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"prepare": "husky",
"pw:chromium": "npx playwright test --project=chromium",
"pw:firefox": "npx playwright test --project=firefox",
"pw:webkit": "npx playwright test --project=webkit",
"pw:all": "npx playwright test",
"pw:visual": "npm run pw:all -- --grep=visual"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@estruyf/github-actions-reporter": "^1.7.0",
"@playwright/test": "^1.43.0",
"@types/node": "^20.12.5",
"eslint": "^8.2.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.2"
},
"lint-staged": {
"*.js": "eslint --cache --fix"
},
"dependencies": {
"dotenv": "^16.4.5"
}
}