-
Notifications
You must be signed in to change notification settings - Fork 34
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.63 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.63 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
{
"name": "@callstack/react-native-brownfield-tester-integrated",
"version": "0.0.1",
"private": true,
"scripts": {
"start": "react-native start",
"build:tester-integrated:android": "cd kotlin && ./gradlew assembleDebug",
"build:tester-integrated:ios": "cd swift && xcodebuild -workspace SwiftExample.xcworkspace -scheme SwiftExample -configuration Release -sdk iphonesimulator build CODE_SIGNING_ALLOWED=NO -derivedDataPath ./build",
"brownfield:codegen": "brownfield codegen",
"lint": "eslint ."
},
"dependencies": {
"@callstack/brownie": "*",
"@callstack/react-native-brownfield": "*",
"@react-navigation/native": "^7.0.15",
"@react-navigation/native-stack": "^7.2.1",
"react": "19.1.1",
"react-native": "0.82.1",
"react-native-safe-area-context": "^5.3.0",
"react-native-screens": "^4.15.2"
},
"devDependencies": {
"@babel/core": "^7.25.2",
"@babel/preset-env": "^7.25.3",
"@babel/runtime": "^7.25.0",
"@callstack/brownfield-cli": "workspace:^",
"@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.82.1",
"@react-native/metro-config": "0.82.1",
"@react-native/typescript-config": "0.82.1",
"@types/react": "^19.1.1",
"eslint": "^9.28.0",
"react-native-monorepo-config": "^0.3.1"
},
"engines": {
"node": ">=20"
},
"brownie": {
"swift": "./swift/Generated",
"kotlin": "./kotlin/app/src/main/java/com/callstack/kotlinexample/Generated",
"kotlinPackageName": "com.callstack.kotlinexample"
}
}