-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 1.09 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
{
"name": "poc-cypress-e2e",
"version": "1.0.0",
"description": "POC - Cypres Interface and Service Tests",
"main": "index.js",
"scripts": {
"build:lint": "npx eslint --format html --output-file ./eslint-report.html",
"build:prettier:check": "npx prettier . --check",
"build:prettier:format": "npx prettier . --write",
"start": "npx cypress open",
"test": "npx cypress run --browser chrome",
"stop": "npm stop",
"test:api": "npm run test -- --env grepTags=@api",
"test:web": "npm run test -- --env grepTags=@web",
"test:debug": "npm run test -- --env grepTags=@debug"
},
"repository": {
"type": "git",
"url": "https://github.com/arthurboeck/poc-cypress-e2e.git"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@brazilian-utils/brazilian-utils": "^1.0.0-rc.12",
"@cypress/grep": "^4.0.2",
"@eslint/js": "^9.5.0",
"@faker-js/faker": "^8.4.1",
"cypress": "^13.11.0",
"eslint": "^9.5.0",
"eslint-plugin-cypress": "^3.3.0",
"eslint-plugin-mocha": "^10.4.3",
"globals": "^15.4.0",
"prettier": "^3.3.2"
}
}