-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 1.03 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": "cypress_and_appium",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"cypress": "npx cypress open",
"cypress-headless": "cypress run",
"android-sanity": "node appium/tests/sanity.js",
"appium-check": "appium-doctor",
"appium-server": "appium server -p 4723 -a 0.0.0.0 -pa /wd/hub --relaxed-security --allow-insecure=none --deny-insecure=none",
"close-appium-server": "pkill -f appium",
"format": "prettier --write ."
},
"author": "",
"license": "ISC",
"description": "",
"devDependencies": {
"@babel/core": "^7.25.2",
"@babel/preset-env": "^7.25.3",
"@babel/preset-react": "^7.24.7",
"@cypress/webpack-dev-server": "^3.10.1",
"appium-uiautomator2-driver": "^3.7.5",
"babel-loader": "^9.1.3",
"cypress": "^13.13.2",
"react-icons": "^5.2.1",
"webpack": "^5.93.0"
},
"dependencies": {
"appium": "^2.11.2",
"assert": "^2.1.0",
"chalk": "^5.3.0",
"webdriverio": "^8.40.0"
}
}