-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
27 lines (27 loc) · 902 Bytes
/
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
{
"name": "cypress-weekend-04-2023",
"version": "1.0.0",
"author": "Cypress Weekend",
"description": "Cypress Weekend Starting Project",
"scripts": {
"lint": "eslint --no-error-on-unmatched-pattern --max-warnings 0 './**/*.{js,ts}'",
"lint:fix": "eslint --no-error-on-unmatched-pattern --max-warnings 0 './**/*.{js,ts}' --fix",
"prettier": "prettier --check .",
"prettier:fix": "prettier --write .",
"cypress:open": "yarn cypress open --e2e --browser chrome"
},
"devDependencies": {
"@testing-library/cypress": "^9.0.0",
"cypress": "12.8.1",
"eslint": "8.36.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "2.8.7"
},
"dependencies": {
"cypress-plugin-steps": "^1.1.1",
"cypress-plugin-xhr-toggle": "^1.0.0"
}
}