-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
83 lines (83 loc) · 2.6 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
{
"name": "mrp",
"version": "0.0.1",
"private": true,
"scripts": {
"start": "react-native start",
"test": "jest",
"lint": "eslint .",
"android": "cd ./android && ./gradlew app:assembleDebug && ./gradlew installDebug"
},
"dependencies": {
"@react-native-community/async-storage": "^1.5.0",
"axios": "^0.18.0",
"jwt-decode": "^2.2.0",
"moment": "^2.24.0",
"mqtt": "^3.0.0",
"native-base": "^2.13.7",
"prop-types": "^15.7.2",
"react": "16.8.6",
"react-native": "0.60.4",
"react-native-background-task": "^0.2.1",
"react-native-chart-kit": "^3.0.0",
"react-native-create-library": "^3.1.2",
"react-native-elements": "^1.1.0",
"react-native-modal": "^9.0.0",
"react-native-navigation": "^3.0.0-alpha.8",
"react-native-paper": "^2.16.0",
"react-native-push-notification": "^3.1.1",
"react-native-scrollable-tab-view": "^0.10.0",
"react-native-svg": "^9.5.1",
"react-native-tcp": "^3.3.0",
"react-native-vector-icons": "^6.5.0",
"react-redux": "^7.0.1",
"readable-stream": "^1.0.33",
"redux": "^4.0.1",
"redux-form": "^8.2.0",
"redux-thunk": "^2.3.0",
"split2": "^3.1.1",
"stream-browserify": "^1.0.0"
},
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/runtime": "^7.5.5",
"@react-native-community/eslint-config": "^0.0.5",
"babel-eslint": "^10.0.2",
"babel-jest": "^24.8.0",
"eslint": "^6.1.0",
"eslint-config-airbnb": "^17.1.1",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react": "^7.14.3",
"jest": "^24.8.0",
"metro-react-native-babel-preset": "^0.55.0",
"prettier": "^1.18.2",
"react-test-renderer": "16.8.6"
},
"jest": {
"preset": "react-native",
"modulePathIgnorePatterns": [
"<rootDir>/node_modules"
]
},
"react-native": {
"net": "react-native-tcp",
"_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"
},
"browser": {
"net": "react-native-tcp",
"_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"
}
}