-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
99 lines (99 loc) · 2.67 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "cypress_automation",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"cypress": "cypress open",
"test": "cypress run",
"report:merge": "mochawesome-merge cypress/results/*.json -o cypress/report.json",
"report:generate": "marge cypress/report.json --charts true"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@bahmutov/cy-grep": "^1.10.0",
"@types/adm-zip": "^0.5.0",
"@types/diff": "^5.0.2",
"@types/fs-extra": "^9.0.13",
"@types/luxon": "^3.0.0",
"@types/mochawesome": "^6.2.1",
"@types/validator": "^13.7.5",
"axios": "^0.27.2",
"cypress": "^13.13.0",
"cypress-failed-log": "^2.10.0",
"cypress-file-upload": "^5.0.8",
"cypress-form-data-with-file-upload": "^1.0.0",
"cypress-iframe": "^1.0.1",
"cypress-multi-reporters": "^1.6.1",
"cypress-split": "^1.3.14",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-mocha": "^10.1.0",
"eslint-plugin-prettier": "^4.2.1",
"form-data": "^4.0.0",
"mocha-junit-reporter": "^2.2.1",
"prettier": "^2.7.1",
"typescript": "^4.8.4"
},
"dependencies": {
"@babel/core": "^7.22.9",
"@testing-library/cypress": "^10.0.2",
"@types/cypress": "^1.1.3",
"@types/testing-library__cypress": "^5.0.9",
"@typescript-eslint/eslint-plugin": "^7.15.0",
"@typescript-eslint/parser": "^7.15.0",
"adm-zip": "^0.5.9",
"cy2": "^4.0.0-beta.14",
"cypress-plugin-api": "^2.11.1",
"cypress-real-events": "^1.7.1",
"diff": "^5.1.0",
"diff-js-xml": "^1.0.6",
"eslint": "^8.56.0",
"fs-extra": "^10.1.0",
"jsdom": "^19.0.0",
"jwt-decode": "^3.1.2",
"lodash": "^4.17.21",
"lodash.merge": "^4.6.2",
"luxon": "^3.0.1",
"mocha": "^10.2.0",
"mochawesome": "^7.1.3",
"mochawesome-merge": "^4.3.0",
"mochawesome-report-generator": "^6.2.0",
"validator": "^13.7.0",
"xlsx": "https://cdn.sheetjs.com/xlsx-0.20.2/xlsx-0.20.2.tgz"
},
"eslintConfig": {
"root": true,
"env": {
"cypress/globals": true,
"mocha": true,
"node": true
},
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended",
"plugin:cypress/recommended",
"plugin:mocha/recommended",
"prettier"
],
"plugins": [
"cypress",
"mocha",
"@typescript-eslint"
]
},
"eslintIgnore": [
"**/config/*.ts",
"**.config.ts"
],
"prettier": {
"trailingComma": "all",
"tabWidth": 2,
"semi": false,
"singleQuote": true,
"jsxBracketSameLine": true
}
}