forked from listenzz/hybrid-navigation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 2.08 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
{
"name": "react-native-navigation-hybrid",
"repository": {
"type": "git",
"url": "https://github.com/listenzz/react-native-navigation-hybrid.git"
},
"version": "0.14.6",
"nativePackage": true,
"description": "Native navigation library for ReactNative, support navigating between native and ReactNative seamlessly.",
"author": "listen <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/listenzz/react-native-navigation-hybrid",
"readme": "https://github.com/listenzz/react-native-navigation-hybrid#readme",
"keywords": [
"react native",
"navigation",
"navigator"
],
"main": "./lib/index.js",
"typings": "./lib/index.d.ts",
"scripts": {
"build": "rm -rf ./lib && tsc",
"prestart": "npm run build",
"prepare": "npm run build",
"tsc": "tsc",
"start": "npm run syncbv && node node_modules/react-native/local-cli/cli.js start",
"run:ios": "react-native run-ios --project-path ./playground/ios",
"start:android": "adb shell am start -n com.navigationhybrid.playground/.SplashActivity",
"run:android": "cd playground/android && ./gradlew installDebug && npm run start:android",
"test": "jest",
"syncbv": "node scripts/sync-build-version.js"
},
"peerDependencies": {
"react": ">=16.5.0",
"react-native": ">=0.57.1"
},
"devDependencies": {
"@babel/core": "^7.3.4",
"@babel/runtime": "^7.3.4",
"@types/jest": "^24.0.11",
"@types/react": "^16.8.8",
"@types/react-native": "^0.57.40",
"@types/react-test-renderer": "^16.8.1",
"babel-jest": "^24.5.0",
"jest": "^24.5.0",
"metro-react-native-babel-preset": "^0.53.0",
"react-test-renderer": "16.8.3",
"typescript": "^3.5.1",
"react": "16.8.3",
"react-native": "0.59.8",
"react-native-hud-hybrid": "0.42.0",
"react-native-iphone-x-helper": "^1.2.0",
"react-native-keyboard-aware-scroll-view": "^0.8.0",
"react-native-vector-icons": "^6.4.1",
"react-redux": "^6.0.0",
"redux": "^3.7.2"
},
"jest": {
"preset": "react-native"
},
"dependencies": {
"path-to-regexp": "^3.0.0"
}
}