-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 1.01 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
{
"name": "cypress",
"version": "1.0.0",
"description": "primeiros passos",
"main": "index.js",
"scripts": {
"start": "my-server -p 3030",
"cy:run": "cypress run",
"test": "start-server-and-test start http://localhost:3030 cy:run",
"open": "npx cypress open",
"test:batch-1": "cypress run --spec 'cypress/e2e/batch-1'",
"test:batch-2": "cypress run --spec 'cypress/e2e/batch-2'"
},
"keywords": [
"testes"
],
"author": "Lucas Sebe",
"license": "ISC",
"devDependencies": {
"@bahmutov/cy-api": "^2.1.3",
"cypress": "^12.9.0",
"cypress-json-results": "^1.2.1",
"cypress-localstorage-commands": "^2.2.2",
"faker": "^5.5.3",
"gerador-validador-cpf": "^5.0.2",
"start-server-and-test": "^1.14.0"
},
"dependencies": {
"cypress-mochawesome-reporter": "^3.3.0",
"cypress-plugin-api": "^1.4.0",
"faker-br": "^0.4.1",
"mochawesome": "^7.1.3"
}
}