forked from adamcegielka/playwright-cucumber-bdd-typescript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 1.02 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
{
"name": "playwright-cucumber-bdd-typescript",
"version": "1.0.0",
"description": "This is my personal project to improve my skills in automated testing using Cucumber and BDD.",
"main": "index.js",
"directories": {
"doc": "docs"
},
"scripts": {
"test": "cucumber-js test || true",
"posttest": "npx ts-node src/helper/report.ts",
"test:failed": "cucumber-js -p rerun @rerun.txt",
"prettier": "npx prettier --write .",
"lint:check": "eslint . --max-warnings=0",
"lint:fix": "eslint . --fix"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@cucumber/cucumber": "^11.0.1",
"@playwright/test": "^1.47.1",
"@types/node": "^22.5.5",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.4.1",
"eslint": "^8.47.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-react": "^7.33.2",
"fs-extra": "^11.2.0",
"multiple-cucumber-html-reporter": "^3.7.0",
"prettier": "3.0.2",
"ts-node": "^10.9.2"
}
}