-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
67 lines (67 loc) · 1.74 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "iaux-e2e-playwright-tests",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"show:report": "npx http-server ./playwright-report",
"test": "node scripts/executeTests.js",
"generate-command": "node scripts/generateCommand.js",
"test:codegen": "npx playwright codegen",
"format": "prettier --write \"tests/**/*.ts\"",
"lint": "prettier --check \"tests/**/*.ts\"",
"typecheck": "node node_modules/typescript/bin/tsc --noEmit",
"test:debugbrowser": "DEBUG=pw:browser npx playwright test",
"test:browserstack-node-sdk": "browserstack-node-sdk playwright test"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@playwright/test": "^1.45.0",
"@types/node": "^20.11.17",
"browserstack-node-sdk": "^1.34.18",
"dotenv": "^16.0.3",
"eslint": "^8.44.0",
"eslint-config-prettier": "^8.8.0",
"husky": "^8.0.3",
"minimist": "^1.2.8",
"playwright": "^1.45.0",
"prettier": "^3.0.0"
},
"eslintConfig": {
"parser": "@typescript-eslint/parser",
"extends": [
"@open-wc",
"prettier"
],
"plugins": [
"@typescript-eslint"
],
"rules": {
"no-unused-vars": "off",
"@typescript-eslint/no-unused-vars": 2,
"no-shadow": "off",
"@typescript-eslint/no-shadow": 2,
"class-methods-use-this": "off",
"import/no-unresolved": "off",
"import/extensions": [
"off",
"ignorePackages"
],
"no-unsafe-optional-chaining": "warn",
"default-param-last": "warn"
}
},
"prettier": {
"singleQuote": true,
"arrowParens": "avoid"
},
"lint-staged": {
"*.ts": [
"eslint --fix",
"prettier --write",
"git add"
]
}
}