-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
26 lines (26 loc) · 832 Bytes
/
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
{
"name": "playwright-supertest-hybrid-framework",
"version": "1.0.0",
"description": "web and API hybrid automation boilerplate",
"main": "index.js",
"scripts": {
"pretest": "npx ts-node src/utils/preTest.ts",
"test": "cross-env ENV=staging FORCE_COLOR=0 cucumber-js --config=config/cucumber.js test || true",
"posttest": "npx ts-node src/utils/reporter/reporter.ts",
"test:failed": "cucumber-js -p rerun @rerun.txt"
},
"author": "Abhishek Kadavil",
"license": "ISC",
"devDependencies": {
"@cucumber/cucumber": "^10.0.1",
"@playwright/test": "^1.39.0",
"cross-env": "^7.0.3",
"dotenv": "^16.3.1",
"faker": "^5.5.3",
"fs-extra": "^11.1.1",
"multiple-cucumber-html-reporter": "^3.5.0",
"ts-node": "^10.9.1",
"typescript": "^5.2.2",
"winston": "^3.11.0"
}
}