-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 2.49 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 2.49 KB
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": "chrome-remote-devtools-react-native-example",
"version": "0.0.1",
"private": true,
"scripts": {
"android": "react-native run-android",
"android:release": "react-native run-android --mode=release",
"ios:release": "react-native run-ios --mode Release",
"ios": "react-native run-ios",
"start": "react-native start",
"start:with-host": "node scripts/start-with-host.js",
"build:android": "cd android && ./gradlew assembleRelease",
"build:ios": "cd ios && xcodebuild -workspace ChromeRemoteDevTools.xcworkspace -scheme ChromeRemoteDevTools -configuration Release -destination 'generic/platform=iOS' archive",
"postinstall": "node scripts/apply-cmake-patches.js"
},
"dependencies": {
"@ohah/chrome-remote-devtools-inspector-react-native": "workspace:*",
"@ohah/redux-devtools-plugin": "workspace:*",
"@react-native-async-storage/async-storage": "2.2.0",
"@react-native/new-app-screen": "0.83.1",
"@react-navigation/bottom-tabs": "^7.9.0",
"@react-navigation/material-top-tabs": "^7.4.11",
"@react-navigation/native": "^7.1.26",
"@react-navigation/stack": "^7.6.13",
"@reduxjs/toolkit": "^2.11.2",
"react": "19.2.0",
"react-native": "0.83.1",
"react-native-device-info": "15.0.1",
"react-native-gesture-handler": "^2.30.0",
"react-native-mmkv": "^4.1.1",
"react-native-mmkv-v3": "npm:react-native-mmkv@^3.3.0",
"react-native-nitro-modules": "^0.32.1",
"react-native-pager-view": "^8.0.0",
"react-native-safe-area-context": "^5.5.2",
"react-native-screens": "^4.19.0",
"react-native-vector-icons": "^10.3.0",
"react-redux": "^9.2.0",
"redux": "^5.0.1",
"redux-devtools-extension": "^2.13.9",
"zustand": "5.0.9"
},
"devDependencies": {
"@babel/core": "^7.25.2",
"@babel/preset-env": "^7.25.3",
"@babel/runtime": "^7.25.0",
"@react-native-community/cli": "20.0.0",
"@react-native-community/cli-platform-android": "20.0.0",
"@react-native-community/cli-platform-ios": "20.0.0",
"@react-native/babel-preset": "0.83.1",
"@react-native/codegen": "0.83.1",
"@react-native/eslint-config": "0.83.1",
"@react-native/gradle-plugin": "0.83.1",
"@react-native/metro-config": "0.83.1",
"@react-native/typescript-config": "0.83.1",
"@types/react": "^19.2.7",
"@types/react-test-renderer": "^19.1.0",
"@types/redux-devtools-extension": "^2.13.2",
"react-test-renderer": "19.2.0",
"typescript": "^5.8.3"
},
"engines": {
"node": ">=20"
}
}