-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.62 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
{
"name": "cucumber-playwright",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"check-format": "prettier --check .",
"format": "prettier --write . && eslint . --ext ts --fix",
"check-lint": "eslint . --ext ts",
"check-all": "npm run check-format && npm run check-lint",
"postinstall": "npx playwright install",
"test": "cross-env ENV=prod FORCE_COLOR=0 cucumber-js --config=src/config/cucumber.js || true",
"pretest": "npx ts-node src/helper/report/init.ts",
"posttest": "npx ts-node src/helper/report/report.ts",
"test:failed": "cucumber-js -p rerun @rerun.txt"
},
"keywords": [
"cucumber",
"typescript",
"playwright"
],
"author": "Yevhen Petryk",
"license": "ISC",
"devDependencies": {
"@types/fs-extra": "^11.0.4",
"@types/node": "^22.8.1",
"@typescript-eslint/eslint-plugin": "^8.11.0",
"@typescript-eslint/parser": "^8.11.0",
"cross-env": "^7.0.3",
"eslint": "^8.57.1",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-playwright": "^2.0.0",
"eslint-plugin-prettier": "^5.2.1",
"fs-extra": "^11.2.0",
"multiple-cucumber-html-reporter": "^3.8.0",
"prettier": "^3.3.3",
"ts-node": "^10.9.2",
"typescript": "^5.6.3",
"winston": "^3.15.0"
},
"dependencies": {
"@cucumber/cucumber": "^11.0.1",
"@faker-js/faker": "^9.1.0",
"@playwright/test": "^1.48.2",
"dotenv": "^16.4.5"
}
}