mirror of
https://github.com/IT4Change/boilerplate-e2e-cypress-cucumber.git
synced 2025-12-12 12:45:50 +00:00
Bumps [prettier](https://github.com/prettier/prettier) from 3.6.2 to 3.7.2. - [Release notes](https://github.com/prettier/prettier/releases) - [Changelog](https://github.com/prettier/prettier/blob/main/CHANGELOG.md) - [Commits](https://github.com/prettier/prettier/compare/3.6.2...3.7.2) --- updated-dependencies: - dependency-name: prettier dependency-version: 3.7.2 dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
83 lines
2.6 KiB
JSON
83 lines
2.6 KiB
JSON
{
|
|
"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": "^23.2.1",
|
|
"@bahmutov/cypress-esbuild-preprocessor": "^2.2.7",
|
|
"@eslint-community/eslint-plugin-eslint-comments": "^4.5.0",
|
|
"@eslint/compat": "^2.0.0",
|
|
"@eslint/eslintrc": "^3.3.3",
|
|
"@eslint/js": "^9.39.1",
|
|
"@typescript-eslint/eslint-plugin": "^8.48.0",
|
|
"@typescript-eslint/parser": "^8.31.1",
|
|
"@vuepress/bundler-vite": "^2.0.0-rc.26",
|
|
"@vuepress/plugin-slimsearch": "^2.0.0-rc.118",
|
|
"cypress": "^15.7.0",
|
|
"eslint": "^9.39.1",
|
|
"eslint-config-prettier": "^10.1.8",
|
|
"eslint-import-resolver-typescript": "^4.4.4",
|
|
"eslint-plugin-cypress": "^5.2.0",
|
|
"eslint-plugin-import": "^2.32.0",
|
|
"eslint-plugin-prettier": "^5.5.4",
|
|
"eslint-plugin-promise": "^7.2.1",
|
|
"eslint-plugin-security": "^3.0.1",
|
|
"eslint-plugin-yml": "^1.19.0",
|
|
"globals": "^16.0.0",
|
|
"multiple-cucumber-html-reporter": "^3.9.3",
|
|
"prettier": "^3.7.2",
|
|
"sass-embedded": "^1.93.3",
|
|
"ts-loader": "^9.5.4",
|
|
"tsx": "^4.20.6",
|
|
"typescript": "^5.9.3",
|
|
"vuepress": "^2.0.0-rc.26",
|
|
"vuepress-theme-hope": "^2.0.0-rc.98",
|
|
"yaml-eslint-parser": "^1.3.1"
|
|
},
|
|
"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"
|
|
}
|
|
}
|
|
}
|