-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 3.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
79
80
81
82
83
84
85
{
"name": "cypress-refresh",
"version": "1.0.0",
"description": "Re-learning cypress again",
"main": "index.js",
"scripts": {
"clean": "rimraf ./dist ./out",
"test": "cypress open --browser=chrome",
"format": "prettier --ignore-path .gitignore --check '**/*.ts'",
"e2e": "cypress run --e2e",
"e2e:ui": "cypress run --e2e --browser chrome --spec \"cypress/e2e/mocha/internet_herokuapp/ui--002.spec.ts\"",
"component": "cypress run --component",
"e2e:open": "cypress open",
"e2e:run": "cypress run --headless --no-runner-ui --browser chrome --env tags=\"@mobile\"",
"e2e:run:config": "cypress run --headless --no-runner-ui --browser=chrome --env tags=\"@mobile\" --config-file cypress.config.ts",
"e2e:chrome": "cypress run --browser chrome",
"e2e:record": "cypress run --record",
"e2e:record:chrome": "cypress run --record --browser chrome",
"e2e:record:edge": "cypress run --record --browser edge",
"e2e:record:firefox": "cypress run --record --browser firefox",
"e2e:record:parallel": "cypress run --record --parallel",
"cy:verify": "cypress verify",
"cy:info": "cypress info",
"cy:version": "cypress version",
"cy:cache:list": "cypress cache list",
"spec:run": "cypress run --browser chrome --spec \"cypess/e2e/**/*.js\"",
"open": "cypress open --browser chrome --detached true --env cypress.env.json",
"open:env": "cypress open --browser chrome --detached true --env USERNAME=krishna",
"dryRun": "cypress-cucumber-diagnostics",
"allure-report": "allure serve ./reports/allure-results",
"generate-report": "allure generate ./reports/allure-results -o ./reports/allure-report --clean",
"cy:parallel:onlyInCloud": "cypress-parallel -s e2e -t 4 -d \"./cypress/e2e/features/api/challenger-apis\" -a \"--env tags=\"@auth\" --browser chrome\"",
"cy:sorryCypress": "cypress-cloud run --parallel --record --key somekey --ci-build-id hello-cypress",
"cy:tags:onlyInCloud": "cypress run --browser chrome --config-file ./cypress.config.ts --tag \":first\""
},
"keywords": [
"cypress",
"automation",
"qa",
"test",
"api-testing"
],
"author": "Krishna Kumar Singh",
"license": "ISC",
"dependencies": {
"@4tw/cypress-drag-drop": "^2.2.5",
"@badeball/cypress-cucumber-preprocessor": "^20.1.2",
"@bahmutov/cypress-esbuild-preprocessor": "^2.2.2",
"@cypress/grep": "^4.1.0",
"@cypress/schema-tools": "^4.7.10",
"@cypress/xpath": "^2.0.3",
"@testing-library/cypress": "^10.0.2",
"@types/chai-arrays": "^2.0.3",
"@types/node": "^22.5.0",
"@types/xml2js": "^0.4.14",
"ajv": "^8.17.1",
"ajv-formats": "^3.0.1",
"chai-arrays": "^2.2.0",
"cucumber-html-reporter": "^7.1.1",
"cypress": "^13.13.3",
"cypress-axe": "^1.5.0",
"cypress-cloud": "^1.10.2",
"cypress-dotenv": "^2.0.0",
"cypress-map": "^1.40.0",
"cypress-mochawesome-reporter": "^3.8.2",
"cypress-multi-reporters": "^1.6.4",
"cypress-on-fix": "^1.0.3",
"cypress-parallel": "^0.14.0",
"cypress-plugin-api": "^2.11.2",
"cypress-plugin-last-failed": "^1.2.0",
"cypress-recurse": "^1.35.3",
"cypress-wait-until": "^3.0.2",
"dotenv": "^16.4.5",
"exceljs": "^4.4.0",
"jsonpath-plus": "^9.0.0",
"mocha-junit-reporter": "^2.2.1",
"mochawesome": "^7.1.3",
"moment": "^2.30.1",
"multiple-cucumber-html-reporter": "^3.7.0",
"mysql2": "^3.11.0",
"rimraf": "^6.0.1",
"typescript": "^5.5.4",
"xml2js": "^0.6.2"
}
}