-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
55 lines (55 loc) · 1.51 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
{
"name": "playwrighttestframework",
"version": "1.0.0",
"description": "A test framework using Playwright for end-to-end testing.",
"scripts": {
"test:playwright": "playwright test --headed",
"test.watch": "jest --watchAll",
"test:record": "npx playwright codegen https://www.saucedemo.com/",
"allureReport": "allure serve",
"format": "prettier --write .",
"lint": "eslint . --ext .ts,.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dipjyotimetia/PlaywrightTestFramework.git"
},
"author": "Dipjyoti Metia",
"license": "ISC",
"bugs": {
"url": "https://github.com/dipjyotimetia/PlaywrightTestFramework/issues"
},
"homepage": "https://github.com/dipjyotimetia/PlaywrightTestFramework#readme",
"keywords": [
"playwright",
"testing",
"e2e",
"automation"
],
"dependencies": {
"allure-playwright": "^3.1.0",
"axios": "^1.7.9",
"config": "^3.3.12",
"csv-parse": "5.6.0",
"date-fns": "^4.1.0",
"js-yaml": "^4.1.0",
"lodash": "^4.17.21",
"mkdirp": "^3.0.1",
"winston": "^3.17.0"
},
"devDependencies": {
"@estruyf/github-actions-reporter": "^1.10.0",
"@faker-js/faker": "^9.4.0",
"@playwright/test": "^1.50.0",
"@types/js-yaml": "4.0.9",
"@types/node": "^22.12.0",
"eslint": "^9.19.0",
"csv-writer": "^1.6.0",
"openai": "^4.81.0",
"ts-node":"10.9.2",
"dotenv": "^16.4.7",
"eslint-plugin-playwright": "2.2.0",
"prettier": "^3.4.2",
"typescript": "^5.7.3"
}
}