This repository has been archived by the owner on Feb 4, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
113 lines (113 loc) · 3.79 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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "FieldKit",
"version": "0.0.1",
"private": true,
"scripts": {
"postinstall": "rn-nodeify --install stream,process,util --hack",
"start": "node node_modules/react-native/local-cli/cli.js start",
"test": "jest --silent"
},
"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"
},
"dependencies": {
"@babel/runtime": "^7.2.0",
"@mapbox/react-native-mapbox-gl": "^6.1.3",
"@react-native-community/async-storage": "^1.5.0",
"@react-native-community/netinfo": "^2.0.10",
"bluebird": "^3.5.4",
"es6-symbol": "3.1.1",
"fk-app-protocol": "https://github.com/fieldkit/app-protocol.git",
"fk-atlas-protocol": "https://github.com/fieldkit/atlas-protocol.git",
"fk-data-protocol": "https://github.com/fieldkit/data-protocol.git",
"i18n-js": "^3.2.2",
"lodash": "^4.17.11",
"moment": "^2.24.0",
"process": "0.11.10",
"protobufjs": "^6.8.8",
"react": "16.8.3",
"react-dom": "16.8.2",
"react-native": "0.59.9",
"react-native-animated-bar": "0.2.0",
"react-native-connectivity-tracker": "2.0.0",
"react-native-fs": "https://github.com/conservify/react-native-fs.git",
"react-native-i18n": "^2.0.15",
"react-native-keep-awake": "^4.0.0",
"react-native-languages": "^3.0.1",
"react-native-loading-spinner-overlay": "^0.5.2",
"react-native-mail": "3.0.7",
"react-native-permissions": "^1.1.1",
"react-native-progress-circle": "2.0.0",
"react-native-simple-toast": "0.0.8",
"react-native-svg": "5.4.2",
"react-native-tcp": "https://github.com/conservify/react-native-tcp.git",
"react-native-udp": "https://github.com/conservify/react-native-udp.git",
"react-native-wifi": "https://github.com/conservify/react-native-wifi.git",
"react-navigation": "1.0.0-beta.11",
"react-redux": "5.0.6",
"readable-stream": "^3.3.0",
"redux": "3.7.2",
"redux-logger": "3.0.6",
"redux-saga": "^1.0.2",
"redux-thunk": "2.2.0",
"stream-browserify": "^2.0.2",
"varint": "^5.0.0",
"victory-native": "^30.6.0"
},
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/runtime": "^7.4.5",
"babel-jest": "24.8.0",
"babel-plugin-transform-inline-environment-variables": "^0.4.3",
"babel-preset-react-native": "2.0.0",
"enzyme": "^3.8.0",
"enzyme-adapter-react-16": "^1.9.1",
"enzyme-to-json": "^3.3.5",
"jest": "^24.8.0",
"jest-html-reporter": "0.5.1",
"metro-react-native-babel-preset": "^0.51.1",
"prettier": "^1.17.1",
"react-test-renderer": "16.8.3",
"redux-mock-store": "^1.5.3",
"redux-saga-tester": "^1.0.459",
"rn-nodeify": "10.0.1"
},
"jest": {
"preset": "react-native",
"transform": {
"^.+\\.(js)$": "<rootDir>/node_modules/react-native/jest/preprocessor.js"
},
"globals": {
"__ENV__": "test",
"__SPECS__": true
},
"setupFiles": [
"./specs/setup.js"
],
"testMatch": [
"<rootDir>/app/**/*specs.js"
],
"testPathIgnorePatterns": [
"/node_modules/"
],
"transformIgnorePatterns": [
"node_modules/(?!react-native|react-navigation)/"
],
"testResultsProcessor": "./node_modules/jest-html-reporter"
},
"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"
}
}