-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
92 lines (92 loc) · 2.99 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "wswebcreation",
"version": "0.1.0",
"private": true,
"scripts": {
"android": "react-native run-android",
"android.automation": "ENVFILE=.env.automation react-native run-android",
"appium.android": "node_modules/.bin/wdio __tests__/appium/config/wdio.android.conf.js",
"appium.ios": "node_modules/.bin/wdio __tests__/appium/config/wdio.ios.conf.js",
"ios": "react-native run-ios",
"ios.automation": "ENVFILE=.env.automation react-native run-ios",
"start": "node node_modules/react-native/local-cli/cli.js start",
"start.ios.simulator": "node ./start.ios.simulator.js",
"storybook": "storybook start -p 7007"
},
"rnpm": {
"assets": [
"./app/assets/fonts/Roboto_Mono/"
]
},
"dependencies": {
"fetch": "^1.1.0",
"prop-types": "^15.6.0",
"react": "^16.6.3",
"react-native": "^0.57.8",
"react-native-config": "^0.11.5",
"react-native-elements": "^0.19.0",
"react-native-hyperlink": "0.0.12",
"react-native-invertible-scroll-view": "^1.1.1",
"react-native-keyboard-aware-scroll-view": "^0.4.3",
"react-native-keyboard-spacer": "^0.4.1",
"react-native-restart": "0.0.7",
"react-native-vector-icons": "^4.5.0",
"react-navigation": "^1.2.1"
},
"devDependencies": {
"@storybook/addon-actions": "^3.3.15",
"@storybook/addon-links": "^3.3.15",
"@storybook/addons": "^3.3.15",
"@storybook/react-native": "^3.3.15",
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.1",
"babel-jest": "21.2.0",
"babel-preset-react-native": "4.0.0",
"babel-register": "^6.26.0",
"chai": "^4.1.2",
"cucumber": "^2.3.1",
"eslint": "^4.3.0",
"eslint-config-airbnb": "^15.1.0",
"eslint-import-resolver-react-native": "^0.1.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-react": "^7.1.0",
"eslint-plugin-react-native": "^3.1.0",
"fs-extra": "^5.0.0",
"jest": "^22.4.2",
"multiple-cucumber-html-reporter": "^1.11.2",
"react-dom": "^16.2.0",
"react-test-renderer": "16.0.0",
"stubs": "^3.0.0",
"wdio-appium-service": "^0.2.3",
"wdio-cucumber-framework": "^1.0.3",
"wdio-spec-reporter": "^0.1.3",
"webdriverio": "^4.10.1"
},
"repository": {
"type": "git",
"url": "https://github.com/wswebcreation/wswebcreation-react-native-app.git"
},
"keywords": [
"testautomation",
"react-native",
"appium",
"webdriver.io",
"cucumberjs"
],
"author": "Wim Selles - wswebcreation",
"license": "MIT",
"detox": {
"test-runner": "jest",
"runner-config": "./__tests__/detox/config/detox.json",
"specs": ".",
"configurations": {
"ios.sim.debug": {
"binaryPath": "ios/build/Build/Products/Debug-iphonesimulator/wswebcreation.app",
"build": "xcodebuild -project ios/wswebcreation.xcodeproj -scheme wswebcreation -configuration Debug -sdk iphonesimulator -derivedDataPath ios/build",
"type": "ios.simulator",
"name": "iPhone 8"
}
}
}
}