-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.17 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.17 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
{
"name": "cyr",
"version": "1.0.0",
"description": "Cypress Learn Testing Expirience",
"main": "index.js",
"scripts": {
"cypress:open": "cypress open",
"cypress:run": "cypress run"
},
"eslintConfig": {
"extends": "react-app"
},
"author": "Ella, Rodri, Cris, Henry, Hilder, Dani",
"license": "MIT",
"devDependencies": {
"@applitools/eyes-cypress": "^3.21.0",
"@percy/cypress": "^3.1.0",
"@testing-library/cypress": "^7.0.3",
"cypress": "^7.2.0",
"cypress-cucumber-preprocessor": "^4.0.3",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-chai-friendly": "^0.6.0",
"eslint-plugin-cypress": "^2.11.2",
"husky": "^6.0.0",
"lint-staged": "^10.5.3",
"mocha": "^8.3.0",
"mochawesome": "^6.2.2",
"mochawesome-merge": "^4.2.0",
"mochawesome-report-generator": "^5.2.0",
"prettier": "2.2.1"
},
"dependencies": {
"cosmiconfig": "^7.0.0",
"use-force-update": "^1.0.7"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"cypress-cucumber-preprocessor": {
"nonGlobalStepDefinitions": true
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
}
}