locaft_mobile/package.json

129 lines
4.0 KiB
JSON
Raw Normal View History

2021-06-02 11:29:39 -07:00
{
"name": "locaft_mobile",
"version": "0.0.1",
"private": true,
"scripts": {
"android": "react-native run-android",
"ios": "react-native run-ios",
"start": "react-native start",
"test": "jest",
"lint": "eslint ."
},
"dependencies": {
2021-06-06 10:41:06 -07:00
"@react-native-community/masked-view": "^0.1.11",
2022-03-18 11:33:51 -07:00
"@react-navigation/bottom-tabs": "^6.2.0",
2021-06-03 09:34:29 -07:00
"@react-navigation/native": "^5.9.4",
"@react-navigation/stack": "^5.14.5",
2022-05-26 10:02:34 -07:00
"@tradle/react-native-http": "^2.0.0",
"assert": "^1.1.1",
"asyncstorage-down": "^4.2.0",
"browserify-zlib": "~0.1.4",
"buffer": "^4.9.1",
"console-browserify": "^1.1.0",
"constants-browserify": "^1.0.0",
"dns.js": "^1.0.1",
"domain-browser": "^1.1.1",
"events": "^1.0.0",
"https-browserify": "~0.0.0",
"ipfs-core": "0.8.0",
"libp2p-crypto": "^0.21.2",
"path-browserify": "0.0.0",
"punycode": "^1.2.4",
"querystring-es3": "~0.2.0",
2021-06-02 11:29:39 -07:00
"react": "17.0.1",
2021-06-03 09:34:29 -07:00
"react-native": "0.64.1",
2022-05-08 05:19:40 -07:00
"react-native-bootsplash": "^4.1.5",
2022-05-26 10:02:34 -07:00
"react-native-crypto": "2.1.0",
2021-06-06 10:41:06 -07:00
"react-native-elements": "^3.4.1",
"react-native-gesture-handler": "^1.10.3",
2022-05-25 21:15:54 -07:00
"react-native-google-places-autocomplete": "^2.4.1",
2022-05-26 10:02:34 -07:00
"react-native-level-fs": "^3.0.0",
2022-05-14 23:24:56 -07:00
"react-native-maps": "^0.31.1",
2022-05-26 10:02:34 -07:00
"react-native-os": "^1.0.1",
"react-native-randombytes": "^3.6.1",
2021-06-06 10:41:06 -07:00
"react-native-reanimated": "^2.2.0",
"react-native-safe-area-context": "^3.2.0",
2022-05-09 20:41:06 -07:00
"react-native-screens": "3.3.0",
2022-05-08 05:19:40 -07:00
"react-native-sensitive-info": "^6.0.0-alpha.9",
2022-05-26 10:02:34 -07:00
"react-native-tcp": "^3.2.1",
"react-native-udp": "^2.1.0",
"react-native-vector-icons": "^8.1.0",
"react-scripts": "^5.0.1",
"readable-stream": "1.0.33",
"rn-nodeify": "^10.3.0",
"stream": "^0.0.2",
"stream-browserify": "^1.0.0",
"string_decoder": "~0.10.25",
"timers-browserify": "^1.0.1",
"tty-browserify": "0.0.0",
"url": "~0.10.1",
"util": "~0.10.3",
"vm-browserify": "0.0.4"
2021-06-02 11:29:39 -07:00
},
"devDependencies": {
2022-05-08 05:19:40 -07:00
"@babel/core": "^7.17.9",
"@babel/runtime": "^7.17.9",
2021-06-02 11:29:39 -07:00
"@react-native-community/eslint-config": "^2.0.0",
"babel-jest": "^26.6.3",
"eslint": "7.14.0",
"jest": "^26.6.3",
"metro-react-native-babel-preset": "^0.64.0",
"react-test-renderer": "17.0.1"
},
"jest": {
"preset": "react-native"
2022-05-26 10:02:34 -07:00
},
"react-native": {
"crypto": "react-native-crypto",
"console": "console-browserify",
"path": "path-browserify",
"fs": "react-native-level-fs",
"dgram": "react-native-udp",
"os": "react-native-os",
"zlib": "browserify-zlib",
"constants": "constants-browserify",
"dns": "dns.js",
"net": "react-native-tcp",
"domain": "domain-browser",
"http": "@tradle/react-native-http",
"https": "https-browserify",
"querystring": "querystring-es3",
"_stream_transform": "readable-stream/transform",
"_stream_readable": "readable-stream/readable",
"_stream_writable": "readable-stream/writable",
"_stream_duplex": "readable-stream/duplex",
"_stream_passthrough": "readable-stream/passthrough",
"stream": "stream-browserify",
"timers": "timers-browserify",
"tty": "tty-browserify",
"vm": "vm-browserify",
"tls": false
},
"browser": {
"crypto": "react-native-crypto",
"console": "console-browserify",
"path": "path-browserify",
"fs": "react-native-level-fs",
"dgram": "react-native-udp",
"os": "react-native-os",
"zlib": "browserify-zlib",
"constants": "constants-browserify",
"dns": "dns.js",
"net": "react-native-tcp",
"domain": "domain-browser",
"http": "@tradle/react-native-http",
"https": "https-browserify",
"querystring": "querystring-es3",
"_stream_transform": "readable-stream/transform",
"_stream_readable": "readable-stream/readable",
"_stream_writable": "readable-stream/writable",
"_stream_duplex": "readable-stream/duplex",
"_stream_passthrough": "readable-stream/passthrough",
"stream": "stream-browserify",
"timers": "timers-browserify",
"tty": "tty-browserify",
"vm": "vm-browserify",
"tls": false
2021-06-02 11:29:39 -07:00
}
}