-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
26 lines (26 loc) · 851 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
{
"name": "devfinance",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/santosvini/devfinance.git",
"author": "santosvini7 <[email protected]>",
"license": "MIT",
"scripts": {
"cy:open": "cypress open",
"cy:open:mobile": "cypress open --config viewportWidth=595,viewportHeight=812",
"cy:test": "cypress run",
"cy:test:mobile": "cypress run --config viewportWidth=595,viewportHeight=812",
"cy:chrome": "cypress run --browser chrome",
"cy:firefox": "cypress run --browser firefox",
"cy:edge": "cypress run --browser edge",
"cy:electron": "cypress run --browser electron",
"cy:webkit": "cypress run --browser webkit"
},
"devDependencies": {
"cypress": "^12.9.0"
},
"dependencies": {
"cypress-plugin-steps": "^1.1.1",
"playwright-webkit": "^1.32.2"
}
}