-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
46 lines (46 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
42
43
44
45
46
{
"name": "AppiumDemo",
"version": "0.1.0",
"private": true,
"devDependencies": {
"@types/chai": "4.1.4",
"@types/chai-as-promised": "0.0.30",
"@types/node": "^10.5.2",
"@types/webdriverio": "^4.10.3",
"appium": "1.8.1",
"babel-preset-react-native-stage-0": "^1.0.1",
"chai": "4.1.2",
"chai-as-promised": "^6.0.0",
"cucumber": "4.2.1",
"jest": "^23.6.0",
"jest-react-native": "^18.0.0",
"protractor": "^5.4.1",
"protractor-cucumber-framework": "^3.1.2",
"react-test-renderer": "16.3.1",
"ts-node": "^7.0.0",
"typescript": "^2.5.2",
"wd": "1.10.1",
"wdio-appium-service": "0.2.3",
"wdio-browserstack-service": "^0.1.16",
"wdio-cucumber-framework": "2.2.0",
"wdio-spec-reporter": "0.1.4",
"webdriverio": "^4.13.1"
},
"scripts": {
"start": "react-native start",
"android": "react-native run-android",
"ios": "react-native run-ios",
"test:e2e": "TS_NODE_PROJECT=./e2e/tsconfig.e2e.json ./node_modules/.bin/wdio ./e2e/local.conf.js",
"test:e2e:android": "ANDROID=true npm run test:e2e",
"test:e2e:ios": "IOS=true npm run test:e2e",
"android:release": "cd android && ./gradlew assembleRelease"
},
"jest": {
"preset": "react-native"
},
"dependencies": {
"react": "16.3.1",
"react-native": "~0.55.2",
"react-native-material-textfield": "^0.12.0"
}
}