-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
64 lines (64 loc) · 2.34 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
58
59
60
61
62
63
64
{
"name": "react-native-ipfs-demo",
"version": "1.0.0",
"description": "Demo of JS IPFS running in React Native for Android and iOS.",
"private": true,
"author": {
"name": "André Costa Lima",
"email": "andreclima.pt@gmail.com",
"url": "https://github.com/acostalima/"
},
"license": "MIT",
"repository": "ipfs-shipyard/react-native-ipfs-demo",
"scripts": {
"ios:debug": "react-native run-ios --configuration Debug --scheme IPFS-Demo-iOS-Debug",
"ios:release": "react-native run-ios --configuration Release --scheme IPFS-Demo-iOS-Release",
"android:debug": "react-native run-android --variant debug",
"android:release": "react-native run-android --variant release",
"metro": "react-native start",
"lint": "eslint --cache --ignore-path .gitignore .",
"pods": "pod-install",
"xcode": "xed -b ios",
"studio": "studio android",
"patch:rn": "patch-package --patch-dir node_modules/react-native-polyfill-globals/patches",
"patch:ipfs": "patch-package --patch-dir patches/ipfs",
"postinstall": "npm run pods && npm run patch:rn && npm run patch:ipfs"
},
"dependencies": {
"@react-native-community/masked-view": "^0.1.10",
"@react-navigation/native": "^5.7.3",
"@react-navigation/stack": "^5.9.0",
"base-64": "^1.0.0",
"ipfs-http-client": "^48.2.0",
"multiaddr": "^8.1.2",
"react": "^16.9.0",
"react-native": "^0.63.4",
"react-native-device-info": "^6.2.0",
"react-native-fetch-api": "^1.0.1",
"react-native-gesture-handler": "^1.7.0",
"react-native-paper": "^4.1.0",
"react-native-polyfill-globals": "^3.0.0",
"react-native-reanimated": "^1.13.0",
"react-native-safe-area-context": "^3.1.7",
"react-native-safe-area-view": "^1.1.1",
"react-native-screens": "^2.10.1",
"react-native-url-polyfill": "^1.2.0",
"react-native-vector-icons": "^7.0.0",
"text-encoding": "^0.7.0",
"util": "^0.12.3",
"web-streams-polyfill": "^3.0.1"
},
"devDependencies": {
"@babel/core": "^7.8.4",
"@babel/plugin-proposal-async-generator-functions": "^7.10.5",
"@babel/runtime": "^7.8.4",
"@react-native-community/eslint-config": "^1.1.0",
"eslint": "^6.5.1",
"metro-react-native-babel-preset": "^0.59.0",
"patch-package": "^6.2.2",
"pod-install": "^0.1.10"
},
"optionalDependencies": {
"ios-deploy": "^1.11.1"
}
}