forked from facebook/react-native
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 967 Bytes
/
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
{
"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"
},
"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"
}
]
}
}