-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
/
Copy pathpackage.json
41 lines (41 loc) · 1.27 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
{
"name": "rxdb-example-react-native",
"version": "0.2.0",
"private": true,
"main": "node_modules/expo/AppEntry.js",
"scripts": {
"preinstall": "(cd ../../ && npx yarn pack ../../ --filename ./examples/react-native/rxdb-local.tgz)",
"start": "expo start",
"eject": "expo eject",
"android": "expo start --android",
"ios": "expo start --ios",
"test": "jest",
"test:bundle": "rimraf -rf ./dist && rimraf -rf ./expo && EXPO_DEBUG=true expo export"
},
"devDependencies": {
"@babel/core": "7.26.8",
"babel-preset-expo": "12.0.1",
"buffer": "6.0.3",
"cross-fetch": "4.1.0",
"expo": "52.0.9",
"expo-cli": "6.3.10",
"global": "4.4.0",
"jest": "29.7.0",
"jest-expo": "52.0.2",
"random-token": "0.0.8",
"react": "18.3.1",
"react-native": "0.77.0",
"react-native-gesture-handler": "2.23.0",
"react-native-get-random-values": "1.11.0",
"react-native-quick-base64": "2.1.2",
"react-test-renderer": "18.3.1",
"rimraf": "5.0.10",
"rxjs": "7.8.1",
"schedule": "0.5.0",
"stream": "0.0.3"
},
"//": "NOTICE: For the Github CI we use the local RxDB build (rxdb-local.tgz). In your app should just install 'rxdb' from npm instead",
"dependencies": {
"rxdb": "file:rxdb-local.tgz"
}
}