forked from facebook/react-native
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.46 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
{
"name": "@react-native/tester",
"version": "0.0.1",
"license": "MIT",
"description": "React Native tester app.",
"homepage": "https://github.com/facebook/react-native/tree/HEAD/packages/rn-tester",
"repository": {
"type": "git",
"url": "[email protected]:facebook/react-native.git",
"directory": "packages/rn-tester"
},
"scripts": {
"start": "../../scripts/packager.sh",
"install-android-jsc": "../../gradlew :packages:rn-tester:android:app:installJscDebug",
"install-android-hermes": "../../gradlew :packages:rn-tester:android:app:installHermesDebug",
"clean-android": "rm -rf android/app/build",
"setup-ios-jsc": "bundle install && bundle exec pod install",
"setup-ios-hermes": "bundle install && USE_HERMES=1 bundle exec pod install",
"clean-ios": "rm -rf build/generated/ios && rm -rf Pods && rm Podfile.lock"
},
"dependencies": {
"invariant": "^2.2.4",
"nullthrows": "^1.1.1"
},
"peerDependencies": {
"react": "17.0.2",
"react-native": "*"
},
"devDependencies": {
"connect": "^3.6.5",
"ws": "^6.1.4"
},
"codegenConfig": {
"libraries": [
{
"name": "ScreenshotManagerSpec",
"type": "modules",
"ios": {},
"android": {},
"jsSrcsDir": "NativeModuleExample"
},
{
"name": "MyNativeViewSpec",
"type": "components",
"ios": {},
"android": {},
"jsSrcsDir": "NativeComponentExample/js"
}
]
}
}