-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.8 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
{
"name": "cypress-e2e-starter",
"version": "1.0.0",
"repository": "[email protected]:alexandrepasc/cypress-e2e-starter.git",
"author": "Alexandre Pascoal <[email protected]>",
"license": "MIT",
"scripts": {
"cy:open": "cypress open --e2e",
"cy:open:chrome": "cypress open --e2e --browser chrome",
"cy:open:firefox": "cypress open --e2e --browser firefox",
"cy:run": "cypress run --e2e",
"cy:run:chrome": "cypress run --e2e --browser chrome",
"cy:run:firefox": "cypress run --e2e --browser firefox",
"ex:run:chrome": "cypress run --e2e --browser chrome --config-file cypress.ex.config.ts --reporter-options configFile=report-chrome-config.json",
"ex:run:firefox": "cypress run --e2e --browser firefox --config-file cypress.ex.config.ts --reporter-options configFile=report-firefox-config.json",
"ex:run:edge": "cypress run --e2e --browser edge --config-file cypress.ex.config.ts --reporter-options configFile=report-edge-config.json",
"prepare": "husky"
},
"lint-staged": {
"*.{ts,js,mjs}": "eslint --cache"
},
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@faker-js/faker": "^9.0.3",
"@simonsmith/cypress-image-snapshot": "^9.1.0",
"@stylistic/eslint-plugin": "^2.9.0",
"@typescript-eslint/parser": "^8.8.1",
"conventional-changelog-atom": "^5.0.0",
"cypress": "^13.16.0",
"cypress-mochawesome-reporter": "^3.8.2",
"cypress-multi-reporters": "^2.0.4",
"eslint": "^9.12.0",
"eslint-plugin-cypress": "^3.5.0",
"eslint-plugin-jsdoc": "^50.3.1",
"eslint-plugin-mocha": "^10.5.0",
"glob": "^11.0.0",
"husky": "^9.1.6",
"junit-report-merger": "^7.0.0",
"lint-staged": "^15.2.10",
"mocha": "^10.7.3",
"mocha-junit-reporter": "^2.2.1",
"pg": "^8.13.0",
"typescript": "^5.6.3",
"typescript-eslint": "^8.8.1"
}
}