-
Notifications
You must be signed in to change notification settings - Fork 38
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.66 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.66 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
{
"name": "@launchdarkly/react-native-example",
"private": true,
"version": "0.0.1",
"main": "index.js",
"scripts": {
"start": "expo start --reset-cache",
"expo-prebuild": "CI=1 expo prebuild --clean",
"android": "expo run:android",
"android-release": "expo run:android --variant release",
"android-go": "expo start --android --clear",
"android-log": "react-native log-android",
"ios": "expo run:ios",
"ios-release": "expo run:ios --configuration Release",
"ios-go": "expo start --ios --clear",
"ios-log": "react-native log-ios",
"web": "expo start --web --clear",
"clean": "yarn expo-prebuild && yarn cache clean && rm -rf node_modules && rm -rf .expo",
"detox-build-ios": "detox build -c ios.sim.release",
"detox-run-ios": "detox test -c ios.sim.release --cleanup --headless",
"detox-ios": "yarn detox-build-ios && yarn detox-run-ios",
"test": "./build-run-detox.sh"
},
"dependencies": {
"@launchdarkly/react-native-client-sdk": "10.16.0",
"@react-native-async-storage/async-storage": "^2.0.0",
"expo": "52.0.14",
"expo-status-bar": "~1.11.1",
"react": "18.3.1",
"react-native": "0.76.3",
"react-native-dotenv": "^3.4.9"
},
"devDependencies": {
"@babel/core": "^7.20.0",
"@config-plugins/detox": "^8.0.0",
"@types/detox": "^18.1.0",
"@types/jest": "^29.5.11",
"@types/node": "^20.10.5",
"@types/react": "~18.2.55",
"@types/react-native-dotenv": "^0.2.1",
"detox": "^20.17.1",
"jest": "^29.7.0",
"ts-jest": "^29.1.1",
"typescript": "^5.2.2"
},
"packageManager": "yarn@3.4.1",
"installConfig": {
"hoistingLimits": "workspaces"
}
}