-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
90 lines (90 loc) · 3.12 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "photon",
"version": "0.0.1",
"private": true,
"scripts": {
"postinstall": "node postinstall.js",
"android": "react-native run-android",
"ios": "react-native run-ios",
"start": "react-native start",
"test": "jest",
"lint": "eslint .",
"bundle": "react-native bundle --platform android --dev false --entry-file index.js --bundle-output android/app/src/main/assets/index.android.jsbundle --assets-dest android/app/build/intermediates/res/merged/release/ && cd android && ./gradlew assembleRelease --no-daemon"
},
"dependencies": {
"@react-native-community/async-storage": "^1.10.0",
"@react-native-community/netinfo": "^5.8.0",
"@types/styled-components": "^5.1.0",
"assert": "^1.5.0",
"buffer": "^5.6.0",
"events": "^1.1.1",
"process": "^0.11.10",
"prop-types": "^15.7.2",
"react": "16.11.0",
"react-native": "0.62.2",
"react-native-camera": "^3.24.1",
"react-native-crypto": "^2.2.0",
"react-native-haptic-feedback": "^1.9.0",
"react-native-keychain": "4.0.5",
"react-native-lightning": "^0.0.1-0",
"react-native-modal": "^11.5.6",
"react-native-paper": "^3.9.0",
"react-native-randombytes": "^3.5.3",
"react-native-reanimated": "^1.8.0",
"react-native-v8": "^0.62.2-patch.1",
"react-native-vector-icons": "^6.6.0",
"react-redux": "^7.2.0",
"readable-stream": "^1.0.33",
"redux": "^4.0.5",
"redux-logger": "^3.0.6",
"redux-persist": "^6.0.0",
"redux-thunk": "^2.3.0",
"stream-browserify": "^1.0.0",
"styled-components": "^5.1.0",
"vm-browserify": "0.0.4"
},
"devDependencies": {
"@babel/core": "^7.9.6",
"@babel/runtime": "^7.9.6",
"@react-native-community/eslint-config": "^1.1.0",
"@types/react": "^16.9.34",
"@types/react-native": "^0.62.7",
"@types/react-test-renderer": "^16.9.2",
"@types/redux-logger": "^3.0.7",
"babel-jest": "^26.0.1",
"babel-plugin-transform-remove-console": "^6.9.4",
"eslint": "^6.8.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^4.0.0",
"eslint-plugin-react-native": "^3.8.1",
"jest": "^26.0.1",
"metro-react-native-babel-preset": "^0.59.0",
"react-test-renderer": "16.11.0",
"rn-nodeify": "^10.2.0"
},
"jest": {
"preset": "react-native"
},
"react-native": {
"crypto": "react-native-crypto",
"_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",
"vm": "vm-browserify"
},
"browser": {
"crypto": "react-native-crypto",
"_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",
"vm": "vm-browserify"
}
}