-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.04 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
{
"name": "cypress",
"version": "1.0.0",
"description": "Cypress with Cucumber and TypeScript",
"main": "index.js",
"scripts": {
"cypress:open": "npx cypress open",
"cypress:run": "npx cypress run",
"lint": "npx eslint .",
"lint-fix": "npx eslint . --fix",
"prettier": "npx prettier . --check",
"prettier:fix": "npx prettier . --write",
"prepare": "husky"
},
"keywords": [],
"author": "Santhosh Shetty",
"license": "ISC",
"devDependencies": {
"@badeball/cypress-cucumber-preprocessor": "latest",
"@bahmutov/cypress-esbuild-preprocessor": "latest",
"@typescript-eslint/eslint-plugin": "^7.11.0",
"@typescript-eslint/parser": "^7.11.0",
"cypress": "latest",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"prettier": "^3.3.0",
"typescript": "latest"
},
"cypress-cucumber-preprocessor": {
"stepDefinitions": [
"cypress/e2e/cucumber/**/stepdefs/**/*.ts"
],
"json": {
"enabled": true,
"output": "e2e-test-report/cucumber-report.json"
}
}
}