-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
38 lines (38 loc) · 1.24 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
{
"version": "0.0.1",
"name": "e2e",
"private": true,
"type": "module",
"scripts": {
"test:web": "yarn wdio run web/wdio.conf.ts",
"test:web:browserstack": "yarn wdio run ./web/browserstack/wdio-browserstack.conf.ts",
"test:native:browserstack": "yarn wdio run ./native/wdio-browserstack.conf.ts",
"test:native": "yarn wdio run native/wdio.conf.ts",
"test:native:ios": "yarn wdio run native/wdio-ios.conf.ts",
"prepare:native:android": "yarn workspace native android:integreat-e2e",
"prepare:native:start": "yarn workspace native start:integreat-e2e",
"prepare:web:start": "yarn workspace web start:integreat-e2e",
"lint": "eslint --cache --cache-location ../.eslintcache .",
"ts:check": "tsc --build"
},
"devDependencies": {
"@types/jasmine": "^5.1.4",
"@wdio/appium-service": "^8.35.1",
"@wdio/browserstack-service": "^8.35.1",
"@wdio/cli": "^8.35.1",
"@wdio/globals": "^8.35.1",
"@wdio/jasmine-framework": "^8.35.1",
"@wdio/local-runner": "^8.35.1",
"@wdio/spec-reporter": "^8.32.4",
"@wdio/types": "^8.32.4",
"appium": "^2.5.3",
"ts-node": "^10.9.2",
"webdriverio": "^8.35.1"
},
"workspaces": {
"nohoist": [
"@wdio/**",
"**/@wdio/**"
]
}
}