forked from th3rdwave/flipper-plugin-relay-devtools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.63 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
52
53
54
55
56
57
{
"$schema": "https://fbflipper.com/schemas/plugin-package/v2.json",
"name": "flipper-plugin-relay-devtools",
"id": "flipper-plugin-relay-devtools",
"version": "0.5.0",
"description": "Flipper plugin for Relay devtools",
"main": "dist/bundle.js",
"flipperBundlerEntry": "index.tsx",
"keywords": [
"flipper-plugin",
"relay",
"devtools"
],
"pluginType": "device",
"supportedDevices": [{ "os": "Metro", "archived": false }],
"icon": "network",
"title": "Relay Devtools",
"repository": {
"type": "git",
"url": "git+https://github.com/th3rdwave/flipper-plugin-relay-devtools.git"
},
"author": "Janic Duplessis",
"license": "MIT",
"bugs": {
"url": "https://github.com/th3rdwave/flipper-plugin-relay-devtools/issues"
},
"homepage": "https://github.com/th3rdwave/flipper-plugin-relay-devtools#readme",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"prepack": "flipper-pkg lint && flipper-pkg bundle"
},
"dependencies": {
"address": "^1.1.2",
"get-port": "^5.1.1",
"relay-devtools-core": "janicduplessis/relay-devtools#relay-devtools-core-v1.1.0-gitpkg"
},
"peerDependencies": {
"flipper": "*",
"react": "*",
"react-dom": "*",
"react-native": "*",
"react-native-flipper": "*"
},
"devDependencies": {
"@types/react": "^16.9.43",
"@types/react-dom": "^16.9.8",
"@types/react-native": "^0.63.1",
"flipper": "latest",
"flipper-pkg": "latest",
"prettier": "^2.0.5",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-native": "^0.61.5",
"react-native-flipper": "^0.0.1",
"typescript": "^3.9.7"
}
}