-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
98 lines (98 loc) · 3.08 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
91
92
93
94
95
96
97
98
{
"name": "metastamp",
"version": "0.0.1",
"private": true,
"scripts": {
"start": "react-native start",
"test": "jest",
"lint": "eslint .",
"postinstall": "./scripts/postinstall.sh"
},
"dependencies": {
"@babel/plugin-proposal-decorators": "^7.4.4",
"@tradle/react-native-http": "^2.0.1",
"@types/i18n-js": "^3.0.1",
"@types/lodash.memoize": "^4.1.6",
"@types/react-native": "^0.60.4",
"@types/validator": "^10.11.3",
"assert": "^2.0.0",
"base-64": "^0.1.0",
"buffer": "^4.9.1",
"gaba": "^1.6.0",
"https-browserify": "0.0.1",
"i18n-js": "^3.3.0",
"lodash.memoize": "^4.1.2",
"mobx": "^5.13.0",
"mobx-react": "^6.1.3",
"mobx-state-tree": "^3.14.1",
"moment": "^2.24.0",
"mst-persist": "^0.1.1",
"react": "16.8.6",
"react-native": "0.60.4",
"react-native-aes-crypto": "^1.3.5",
"react-native-browser-polyfill": "^0.1.2",
"react-native-camera": "^3.3.0",
"react-native-collapsible": "^1.5.1",
"react-native-crypto": "^2.1.2",
"react-native-flash-message": "^0.1.13",
"react-native-haptic-feedback": "^1.8.2",
"react-native-keychain": "^3.1.3",
"react-native-level-fs": "^3.0.1",
"react-native-localize": "^1.1.4",
"react-native-navigation": "^3.0.0-alpha.11-snapshot.451",
"react-native-os": "^1.2.5",
"react-native-randombytes": "^3.5.3",
"react-native-svg": "^9.8.1",
"react-native-svg-transformer": "^0.13.0",
"react-native-tcp": "^3.3.1",
"readable-stream": "^1.0.33",
"rn-nodeify": "^10.1.0",
"stream-browserify": "^1.0.0",
"url": "^0.10.3",
"validator": "^11.1.0",
"vm-browserify": "0.0.4"
},
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/runtime": "^7.5.5",
"@react-native-community/eslint-config": "^0.0.5",
"babel-jest": "^24.8.0",
"eslint": "^6.1.0",
"jest": "^24.8.0",
"metro-react-native-babel-preset": "^0.56.0",
"react-test-renderer": "16.8.6"
},
"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",
"http": "@tradle/react-native-http",
"https": "https-browserify",
"os": "react-native-os",
"vm": "vm-browserify",
"net": "react-native-tcp",
"fs": "react-native-level-fs"
},
"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",
"http": "@tradle/react-native-http",
"https": "https-browserify",
"os": "react-native-os",
"vm": "vm-browserify",
"net": "react-native-tcp",
"fs": "react-native-level-fs"
}
}