-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.66 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.66 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"name": "webuitests",
"version": "1.0.0",
"description": "Tidepool UI Testing with playwright and browserstack",
"main": "index.js",
"scripts": {
"merge-reports": "jrm tests_output/testresults.xml \"tests_output/e2e/*.xml\" \"tests_output/ui/*.xml\"",
"lint": "eslint --ext .ts . --max-warnings 999999",
"lint:fix": "eslint --ext .ts . --fix",
"typecheck": "tsc --noEmit",
"check": "npm run lint && npm run typecheck",
"debug": "TARGET_ENV=qa1 npx playwright test --debug ",
"test": "TARGET_ENV=qa1 playwright test",
"format": "prettier --write ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/tidepool-org/webuitests.git"
},
"author": "Ginny Yadav",
"license": "ISC",
"bugs": {
"url": "https://github.com/tidepool-org/webuitests/issues"
},
"homepage": "https://github.com/tidepool-org/webuitests#readme",
"dependencies": {
"@playwright/test": "^1.54.1",
"browserstack-node-sdk": "^1.34.49",
"dayjs": "^1.11.10",
"dotenv": "^16.4.5",
"zod": "^3.24.2"
},
"devDependencies": {
"@eslint/compat": "^1.3.1",
"@eslint/js": "^9.32.0",
"@playwright/mcp": "^0.0.32",
"@stylistic/eslint-plugin": "^3.1.0",
"@types/node": "^22.13.10",
"eslint": "^9.32.0",
"eslint-config-airbnb-extended": "^2.1.2",
"eslint-config-prettier": "^10.1.8",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import-x": "^4.16.1",
"eslint-plugin-n": "^17.21.3",
"eslint-plugin-playwright": "^2.5.0",
"eslint-plugin-prettier": "^5.5.3",
"globals": "^16.3.0",
"jiti": "^2.5.1",
"prettier": "^3.6.2",
"typescript-eslint": "^8.38.0"
}
}