-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.48 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
{
"name": "example",
"version": "0.0.1",
"private": true,
"scripts": {
"postinstall": "node ./scripts/postinstall.js",
"start": "watchman watch-del-all && (adb reverse tcp:8081 tcp:8081 || true) && node node_modules/react-native/local-cli/cli.js start --reset-cache",
"xcode": "open ios/example.xcodeproj",
"android": "cd android && ./gradlew installDebug",
"e2e": "detox test --configuration ios.sim.debug",
"e2e-release": "detox test --configuration ios.sim.release",
"storybook": "storybook start -p 7007"
},
"dependencies": {
"react": "16.0.0",
"react-native": "0.53.0",
"react-native-animatable": "^1.1.0",
"react-native-navigation": "latest"
},
"devDependencies": {
"detox": "^5.0.0",
"mocha": "^3.4.2",
"@storybook/react-native": "^3.4.8",
"@storybook/addon-actions": "^3.4.8",
"@storybook/addon-links": "^3.4.8",
"@storybook/addons": "^3.4.8",
"babel-core": "^6.26.3",
"babel-runtime": "^6.26.0",
"react-dom": "16.0.0",
"prop-types": "^15.6.2"
},
"detox": {
"specs": "test/e2e",
"configurations": {
"ios.sim.debug": {
"binaryPath": "ios/DerivedData/example/Build/Products/Debug-iphonesimulator/example.app",
"type": "ios.simulator",
"name": "iPhone 6s"
},
"ios.sim.release": {
"binaryPath": "ios/DerivedData/example/Build/Products/Release-iphonesimulator/example.app",
"type": "ios.simulator",
"name": "iPhone 6s"
}
}
}
}