-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.94 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
{
"name": "cypress-ui-cucumber-allure-typescript-circleci",
"version": "1.0.0",
"author": "Kiran Raju Vysyaraju <kiranrajuv@yahoo.com>",
"repository": {
"type": "git",
"url": "git@github.com:kivysyar/cypress-ui-cucumber-allure-typescript-circleci.git"
},
"scripts": {
"prepare": "install-vscode-extensions && husky install",
"cy:open": "cypress open",
"cy:exec": "cypress run",
"cy:tags": "cypress-tags run -e",
"test:sanity": "npm run cy:tags -- TAGS='@sanity and not @ignore' --headed --browser chrome",
"report:generate": "allure generate results/allure --clean -o results/allure-report",
"report:open": "allure open results/allure-report",
"report:clear": "rimraf results/ || true"
},
"devDependencies": {
"@badeball/cypress-cucumber-preprocessor": "^12.0.1",
"@bahmutov/cypress-esbuild-preprocessor": "^2.1.3",
"@esbuild-plugins/node-modules-polyfill": "^0.1.4",
"@shelex/cypress-allure-plugin": "^2.28.0",
"@types/node": "^18.0.3",
"@typescript-eslint/eslint-plugin": "^5.30.5",
"@typescript-eslint/parser": "^5.30.5",
"allure-commandline": "^2.18.1",
"aws-sdk": "^2.1169.0",
"cypress": "^10.6.0",
"cypress-file-upload": "^5.0.8",
"cypress-fill-command": "^1.0.2",
"cypress-jest-adapter": "^0.1.1",
"cypress-plugin-tab": "^1.0.5",
"cypress-real-events": "^1.7.1",
"cypress-wait-until": "^1.7.2",
"eslint": "^8.19.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-diff": "^1.0.15",
"husky": "^8.0.1",
"prettier": "2.7.1",
"prettier-plugin-organize-imports": "^3.0.0",
"pretty-quick": "^3.1.3",
"rimraf": "^3.0.2",
"ts-node-dev": "^1.1.8",
"typescript": "^4.7.4"
},
"dependencies": {
"cypress-multi-reporters": "^1.6.1",
"install-vscode-extensions": "^1.0.0",
"mocha-junit-reporter": "^2.0.2",
"python-shell": "^3.0.1",
"ts-node": "^10.7.0"
},
"cypress-cucumber-preprocessor": {
"stepDefinitions": "cypress/support/stepDefinitions/**/*.ts"
}
}