-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 loc) · 1.2 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
{
"$schema": "https://fbflipper.com/schemas/plugin-package/v2.json",
"name": "flipper-plugin-bridgespy",
"id": "com.sylvanaar.flipper.bridgespy",
"version": "0.1.9",
"main": "dist/bundle.js",
"flipperBundlerEntry": "src/index.tsx",
"license": "MIT",
"repository": "sylvanaar/flipper-plugin-bridgespy",
"keywords": [
"flipper-plugin",
"react-native"
],
"icon": "apps",
"title": "Bridge Spy",
"description": "React Native bridge spy Flipper plugin",
"scripts": {
"lint": "flipper-pkg lint",
"prepack": "flipper-pkg lint && flipper-pkg bundle",
"build": "flipper-pkg bundle",
"watch": "flipper-pkg bundle --watch",
"test": "jest"
},
"peerDependencies": {
"antd": "^4.9.4",
"flipper": "^0.69.0"
},
"devDependencies": {
"@babel/preset-react": "7.12.10",
"@babel/preset-typescript": "^7.12.7",
"@testing-library/react": "^11.2.2",
"@types/jest": "^26.0.19",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"antd": "^4.9.4",
"flipper": "0.69.0",
"flipper-pkg": "0.69.0",
"jest": "26.6.3",
"typescript": "4.1.3"
},
"dependencies": {
"@sentry/react": "^5.30.0",
"@sentry/tracing": "^5.30.0"
}
}