-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.73 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.73 KB
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
{
"name": "cypress-template",
"version": "1.0.0",
"description": "Cypress Template Framework",
"license": "ISC",
"author": "Abel Trejo Pineda",
"main": "index.js",
"scripts": {
"awesome-report": "npm run mocha-merge && npm run mocha-marge",
"knip": "npx knip --production --exclude optionalPeerDependencies,unlisted,binaries,exports,types",
"lint": "npx eslint '**/*.ts'",
"lint:fix": "npx eslint '**/*.ts' --fix",
"mocha-marge": "marge cypress/results/reports/mochawesome_complete/complete-report.json -f complete-report -o cypress/results/reports/mochawesome_complete",
"mocha-merge": "mochawesome-merge ./cypress/results/reports/mochawesome_reports/*.json -o cypress/results/reports/mochawesome_complete/complete-report.json",
"prepare": "husky",
"prettier:check": "prettier --config .prettierrc 'cypress/**/*.ts' 'config-utils.ts' 'cypress.config.ts' --check",
"prettier:write": "prettier --config .prettierrc 'cypress/**/*.ts' 'config-utils.ts' 'cypress.config.ts' --write",
"secrets:template": "cp cypress/config/secrets-example.json cypress/config/secrets.json",
"yalc:build": "npm run build && yalc publish"
},
"lint-staged": {
"cypress/**/*.{ts,tsx}": [
"npm run prettier:write",
"npx eslint"
],
"package.json": [
"npx sort-package-json"
]
},
"dependencies": {
"cypress": "^15.12.0",
"cypress-plugin-api": "^2.11.2",
"mysql": "github:mysqljs/mysql"
},
"devDependencies": {
"@bahmutov/cy-grep": "^3.0.1",
"@cypress/code-coverage": "^4.0.2",
"@cypress/grep": "^3.1.5",
"@cypress/puppeteer": "^0.1.8",
"@faker-js/faker": "^10.3.0",
"@typescript-eslint/parser": "^8.58.2",
"cypress-file-upload": "^5.0.8",
"cypress-iframe": "^1.0.1",
"cypress-multi-reporters": "^1.6.1",
"cypress-real-events": "^1.15.0",
"dayjs": "^1.10.6",
"deepmerge": "^4.3.1",
"eslint": "^10.2.0",
"eslint-plugin-chai-friendly": "^1.2.0",
"eslint-plugin-cypress": "^6.3.1",
"eslint-plugin-mocha": "^11.2.0",
"eslint-plugin-sonarjs": "^4.0.3",
"find-test-names": "^1.29.6",
"husky": "^9.1.7",
"knip": "^6.4.1",
"lint-staged": "^15.5.0",
"mocha": "^9.1.3",
"mochawesome": "^7.0.1",
"mochawesome-merge": "^4.2.0",
"pdf-parse": "^1.1.1",
"prettier": "^3.5.3",
"pretty-print-json": "^1.3.0",
"sort-package-json": "^3.0.0",
"typescript": "^5.9.3"
},
"knip": {
"entry": [
"cypress.config.ts",
"cypress/src/specs/**/*.cy.ts",
"cypress/support/plugins.ts"
],
"project": [
"cypress/**/*.ts",
"config-utils.ts",
"cypress/support/utils/*.ts"
],
"ignoreDependencies": [
"mysql",
"cypress",
"cypress-plugin-api"
]
}
}