-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.36 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
36
37
38
39
40
41
{
"name": "appium-basics",
"version": "1.0.0",
"description": "Project create for Studying Framework Appium with JS",
"main": "index.js",
"scripts": {
"start": "appium --config .appiumrc.json",
"clean:allure": "rimraf allure-results",
"test:all": "npm run clean:allure && npm run test:demoapp && npm run test:productapp && npm run relatory",
"test:demoapp": "cross-env APP_ENV=demoapp wdio run ./wdio.conf.ts --spec",
"test:productapp": "cross-env APP_ENV=productapp wdio run ./wdio.conf.ts --spec",
"relatory": "allure generate allure-results --clean",
"relatory:open": "allure open",
"wdio": "wdio run ./wdio.conf.ts"
},
"author": "Leonardo Paixão",
"license": "MIT",
"dependencies": {
"@wdio/cli": "^9.0.9",
"dotenv": "^16.4.5",
"rimraf": "^6.0.1",
"webdriverio": "^9.0.9"
},
"devDependencies": {
"@appium/images-plugin": "^3.0.18",
"@babel/cli": "^7.25.6",
"@babel/core": "^7.25.2",
"@babel/preset-env": "^7.25.4",
"@wdio/allure-reporter": "^9.0.8",
"@wdio/appium-service": "^9.0.9",
"@wdio/local-runner": "^9.0.9",
"@wdio/mocha-framework": "^9.0.8",
"allure-commandline": "^2.30.0",
"appium": "^2.11.3",
"appium-gestures-plugin": "^4.0.1",
"appium-uiautomator2-driver": "^3.7.10",
"lodash": "^4.17.21",
"ts-node": "^10.9.2",
"typescript": "^5.6.2"
}
}