-
Notifications
You must be signed in to change notification settings - Fork 38
/
package.json
80 lines (80 loc) · 2.31 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
{
"name": "hybrid-navigation",
"description": "React Native Navigation that supports seamless navigation between Native and React.",
"version": "2.17.6",
"main": "./lib/index.js",
"typings": "./lib/index.d.ts",
"react-native": "src/index",
"nativePackage": true,
"files": [
"src",
"lib",
"android",
"ios",
"HybridNavigation.podspec",
"!android/build",
"!android/.gradle",
"!android/.idea",
"!android/local.properties",
"!ios/build",
"!**/__tests__"
],
"repository": "https://github.com/listenzz/hybrid-navigation",
"homepage": "https://github.com/listenzz/hybrid-navigation#readme",
"author": "listen <[email protected]> (https://github.com/listenzz)",
"license": "MIT",
"licenseFilename": "LICENSE",
"keywords": [
"react-native",
"navigation",
"navigator",
"router",
"hybrid"
],
"scripts": {
"build": "rm -rf ./lib && tsc -p tsconfig.build.json",
"prepare": "npm run build",
"start": "watchman watch-del-all && react-native start --reset-cache",
"android": "react-native run-android",
"ios": "react-native run-ios",
"test": "jest",
"tsc": "tsc",
"lint": "eslint . --fix --ext .js,.jsx,.ts,.tsx",
"docs:dev": "vuepress dev docs",
"docs:build": "vuepress build docs"
},
"peerDependencies": {
"react": ">=16.8",
"react-native": ">=0.60"
},
"dependencies": {
"path-to-regexp": "^6.1.0"
},
"devDependencies": {
"@babel/core": "^7.20.0",
"@babel/preset-env": "^7.20.0",
"@babel/runtime": "^7.20.0",
"@gfez/eslint-config-react-native": "^1.0.0",
"@react-native-community/hooks": "^2.8.0",
"@react-native-community/slider": "^4.4.2",
"@sdcx/keyboard-insets": "^0.5.0",
"@types/jest": "^29.2.1",
"@types/react": "^18.0.24",
"@types/react-redux": "^7.1.9",
"@types/react-test-renderer": "^18.0.0",
"babel-jest": "^29.2.1",
"jest": "^29.2.1",
"metro-react-native-babel-preset": "0.73.7",
"react": "18.2.0",
"react-native": "^0.71.3",
"react-native-fast-image": "^8.5.11",
"react-native-safe-area-context": "^4.7.1",
"react-native-toast-hybrid": "^2.5.0",
"react-redux": "^7.2.5",
"react-test-renderer": "18.2.0",
"redux": "^4.1.1",
"typescript": "^4.6.4",
"vuepress": "2.0.0-beta.51",
"zustand": "^3.7.1"
}
}