-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
29 lines (29 loc) · 973 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
27
28
29
{
"name": "automation-testing",
"version": "1.0.0",
"description": "Powerful end-to-end tests powered by cucumber-js and playwright ⚡",
"main": "index.js",
"repository": "https://github.com/topolanekmartin/automation-testing.git",
"author": "Martin Topolánek <[email protected]>",
"license": "MIT",
"scripts": {
"test": "cross-env TS_NODE_PROJECT=tsconfig.json cucumber-js --config cucumber.yaml",
"test:debug": "cross-env PWDEBUG=true yarn test"
},
"dependencies": {
"@cucumber/cucumber": "10.0.1",
"@playwright/test": "^1.39.0",
"@types/fs-extra": "^11.0.4",
"cross-env": "^7.0.3",
"dotenv": "^16.3.1",
"fs-extra": "^11.1.1",
"playwright": "^1.39.0",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.2.2"
},
"devDependencies": {
"@types/node": "^20.9.0",
"prettier": "^3.1.0"
}
}