-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.62 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
{
"name": "cypress-example-e2e",
"version": "1.0.0",
"description": "This a Cypress example E2E project using Github Actions built by Bhargav Garlapati",
"devDependencies": {
"@commitlint/cli": "^17.4.4",
"@commitlint/config-angular": "^17.4.4",
"ansi-regex": ">=5.0.1",
"commitizen": "^4.3.0",
"cypress": "^13.1.0",
"cypress-email-results": "^1.8.0",
"cypress-multi-reporters": "^1.6.2",
"cypress-wait-until": "^1.7.1",
"cz-conventional-changelog": "^3.0.1",
"eslint": "8.34.0",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-react": "^7.32.2",
"husky": "^8.0.0",
"mocha": "^10.2.0",
"mochawesome": "^7.0.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bhargav-garlapati/cypress-example-e2e"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "npm run lint"
}
},
"scripts": {
"lint": "eslint 'cypress/e2e' --ext .js --config .eslintrc.json",
"lint:fix": "npm run lint -- --fix",
"report:merge": "npx --yes mochawesome-merge@4.2.1 cypress/results/json/*.json -o index.json",
"report:generate": "npx mochawesome-report-generator@6.2.0 index.json --reportDir public --assetsDir public/assets --reportPageTitle index.html",
"cypress:open": "cypress open",
"cypress:run": "cypress run",
"cypress:staging": "ENV=staging npm run cypress:open",
"cypress:production": "ENV=production npm run cypress:open"
},
"author": "Bhargav Garlapati",
"license": "ISC"
}