-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.99 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1.99 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
{
"name": "playwright-hands-on",
"version": "1.0.0",
"private": true,
"description": "",
"workspaces": [
"src/apps/*"
],
"scripts": {
"prettier": "prettier --check '**/**/*.{js,jsx,ts,tsx,css}'",
"prettier:fix": "prettier --write '**/**/*.{js,jsx,ts,tsx,css}'",
"test": "yarn workspace ui-testing-playground test",
"test:ui": "yarn workspace ui-testing-playground test:ui",
"test:debug": "yarn workspace ui-testing-playground test:debug",
"report": "yarn workspace ui-testing-playground report",
"allure": "yarn workspace ui-testing-playground allure",
"test:ui-testing-playground": "yarn workspace ui-testing-playground test",
"test::ui:ui-testing-playground": "yarn workspace ui-testing-playground test:ui",
"test:debug:ui-testing-playground": "yarn workspace ui-testing-playground test:debug",
"report:ui-testing-playground": "yarn workspace ui-testing-playground report",
"allure:ui-testing-playground": "yarn workspace ui-testing-playground allure",
"test:orange-hrm": "yarn workspace orange-hrm test",
"test:ui:orange-hrm": "yarn workspace orange-hrm test:ui",
"test:debug:orange-hrm": "yarn workspace orange-hrm test:debug",
"report:orange-hrm": "yarn workspace orange-hrm report",
"allure:orange-hrm": "yarn workspace orange-hrm allure",
"test:deriv-api": "yarn workspace deriv-api test",
"test:ui:deriv-api": "yarn workspace deriv-api test:ui",
"test:debug:deriv-api": "yarn workspace deriv-api test:debug",
"report:deriv-api": "yarn workspace deriv-api report",
"allure:deriv-api": "yarn workspace deriv-api allure"
},
"author": "Eric Stanley",
"license": "MIT",
"dependencies": {
"@faker-js/faker": "^8.4.1",
"@playwright/test": "^1.42.1",
"@types/node": "^20.11.24",
"allure-commandline": "^2.27.0",
"allure-playwright": "^2.13.0",
"colors": "^1.4.0",
"lodash": "^4.17.21",
"playwright": "^1.42.1",
"prettier": "^3.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
}
}