-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2.46 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "boilerplate-e2e-cypress-cucumber",
"version": "1.0.0",
"description": "A boilerplate for end-to-end testing with Cypress and Cucumber in Typescript",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/IT4Change/boilerplate-e2e-cypress-cucumber.git"
},
"bugs": {
"url": "https://github.com/IT4Change/boilerplate-e2e-cypress-cucumber/issues"
},
"homepage": "https://github.com/IT4Change/boilerplate-e2e-cypress-cucumber#readme",
"keywords": [
"BDD",
"cypress",
"cucumber",
"docker",
"eslint",
"npm",
"nodejs",
"typescript",
"vuepress"
],
"author": "mahula",
"license": "Apache-2.0",
"scripts": {
"cypress:open": "cypress open --e2e --browser electron",
"cypress:run": "cypress run --e2e --browser electron",
"docs:dev": "vuepress dev .",
"docs:build": "vuepress build .",
"test:lint:eslint": "eslint --ext .ts,.tsx,.js,.jsx,.cjs,.json,.yml,.yaml --max-warnings 0 .",
"update": "npx npm-check-updates"
},
"devDependencies": {
"@badeball/cypress-cucumber-preprocessor": "^21.0.2",
"@bahmutov/cypress-esbuild-preprocessor": "^2.2.3",
"@eslint-community/eslint-plugin-eslint-comments": "^4.4.1",
"@typescript-eslint/eslint-plugin": "^8.13.0",
"@typescript-eslint/parser": "^8.13.0",
"@vuepress/bundler-vite": "^2.0.0-rc.18",
"cypress": "^13.15.1",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard": "^17.1.0",
"eslint-import-resolver-typescript": "^3.6.3",
"eslint-plugin-cypress": "^3.6.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-json": "^3.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-promise": "^6.6.0",
"eslint-plugin-security": "^3.0.1",
"eslint-plugin-yml": "^1.15.0",
"multiple-cucumber-html-reporter": "^3.8.0",
"prettier": "^3.3.3",
"ts-loader": "^9.5.1",
"tsx": "^4.19.2",
"typescript": "^5.6.3",
"vuepress": "^2.0.0-rc.18",
"vuepress-plugin-search-pro": "^2.0.0-rc.59",
"vuepress-theme-hope": "^2.0.0-rc.59"
},
"cypress-cucumber-preprocessor": {
"nonGlobalStepDefinitions": true,
"stepDefinitions": "cypress/e2e/steps/**/*.{js,ts}",
"json": {
"enabled": true,
"output": "cypress/reports/json/cucumber-report.json"
},
"messages": {
"enabled": true,
"output": "cypress/reports/messages/cucumber-messages.ndjson"
},
"engines": {
"node": ">=21"
}
}
}