forked from zulip/zulip-mobile
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
139 lines (139 loc) · 4.98 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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
{
"name": "ZulipMobile",
"version": "1.0.0",
"private": true,
"scripts": {
"postinstall": "bash tools/postinstall",
"start": "react-native start",
"android": "tools/run-android",
"android-release": "react-native run-android --variant=release",
"build:android": "tools/android apk",
"build:android-nokeys": "cd android && ./gradlew :app:assembleRelease",
"build:ios": "cd ios && xcodebuild -scheme ZulipMobile archivexcodebuild -scheme ZulipMobile archive",
"test": "tools/test",
"prettier": "tools/fmt",
"prettier-full": "tools/fmt --all",
"test:flow-coverage": "flow-coverage-report -i 'src/**/*.js' -x '**/__tests__/**' -t html",
"test:flow-todo": "eslint --no-eslintrc -c tools/flow-todo.eslintrc.yaml src/",
"update-libdefs": "yarn install && rm -rf flow-typed/npm/ && flow-typed update"
},
"engines": {
"node": ">=10"
},
"dependencies": {
"@expo/react-native-action-sheet": "^3.8.0",
"@react-native-async-storage/async-storage": "^1.13.0",
"@react-native-camera-roll/camera-roll": "^5.0.4",
"@react-native-community/masked-view": "^0.1.10",
"@react-native-community/netinfo": "6.0.0",
"@react-native-community/push-notification-ios": "^1.5.0",
"@react-navigation/bottom-tabs": "npm:@zulip/[email protected]",
"@react-navigation/material-top-tabs": "^5.2.19",
"@react-navigation/native": "^5.7.6",
"@react-navigation/stack": "^5.9.3",
"@sentry/react-native": "^3.3.3",
"@zulip/shared": "0.0.16",
"base-64": "^1.0.0",
"blueimp-md5": "^2.10.0",
"color": "^4.0.1",
"date-fns": "^2.23.0",
"expo": "^44.0.0",
"expo-apple-authentication": "^4.0.0",
"expo-application": "~4.0.1",
"expo-screen-orientation": "~4.1.1",
"expo-sqlite": "^10.0.0",
"expo-web-browser": "~10.1.0",
"flow-enums-runtime": "^0.0.6",
"immutable": "^4.0.0-rc.12",
"invariant": "^2.2.4",
"katex": "^0.11.1",
"lodash.escape": "^4.0.1",
"lodash.isequal": "^4.4.0",
"lodash.omit": "^4.5.0",
"lodash.union": "^4.6.0",
"lodash.uniq": "^4.5.0",
"react": "17.0.2",
"react-intl": "5.24.6",
"react-native": "0.67.4",
"react-native-device-info": "^8.1.7",
"react-native-document-picker": "^3.2.4",
"react-native-gesture-handler": "^2.8.0",
"react-native-image-picker": "4.8.4",
"react-native-photo-view": "alwx/react-native-photo-view#c58fd6b30",
"react-native-reanimated": "^2.2.0 <2.3.0",
"react-native-safe-area-context": "^4.3.1",
"react-native-screens": "^3.13.1",
"react-native-simple-toast": "^1.1.4",
"react-native-tab-view": "^2.15.2",
"react-native-url-polyfill": "^1.3.0",
"react-native-vector-icons": "^9.1.0",
"react-native-webview": "^11.6.4",
"react-redux": "^7.2.4",
"redux": "^4.0.0",
"redux-action-buffer": "^1.2.0",
"redux-logger": "^3.0.1",
"redux-thunk": "^2.1.0",
"reselect": "^4.0.0",
"rn-fetch-blob": "^0.11.0",
"timezone": "^1.0.13",
"zulip-markdown-parser": "^1.0.6"
},
"devDependencies": {
"@babel/core": "^7.12.9",
"@babel/eslint-parser": "^7.18.2",
"@babel/plugin-proposal-numeric-separator": "^7.14.5",
"@babel/plugin-syntax-flow": "^7.14.5",
"@babel/plugin-transform-react-jsx": "^7.14.9",
"@babel/preset-env": "^7.11.0",
"@babel/runtime": "^7.12.5",
"@octokit/core": "^3.4.0",
"@rollup/plugin-babel": "^5.2.0",
"@rollup/plugin-node-resolve": "^13.0.4",
"@types/react-native": "^0.67.7",
"@vusion/webfonts-generator": "^0.8.0",
"babel-plugin-transform-flow-enums": "^0.0.2",
"core-js": "^3.1.4",
"deep-freeze": "^0.0.1",
"eslint": "^8.15.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-ft-flow": "^2.0.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^26.1.5",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.5.0",
"expo-cli": "^5.4.12",
"flow-bin": "^0.162.0",
"flow-coverage-report": "^0.8.0",
"flow-typed": "^3.3.1",
"hermes-eslint": "^0.9.0",
"immutable-devtools": "^0.1.5",
"jest": "^26.6.3",
"jest-cli": "^26.4.1",
"jest-environment-jsdom": "^26.3.0",
"jest-environment-jsdom-global": "^2.0.4",
"jest-expo": "^44.0.0",
"jest-extended": "^0.11.5",
"jetifier": "^2.0.0",
"metro-react-native-babel-preset": "^0.66.2",
"prettier": "^2.6.2",
"prettier-eslint": "^15.0.0",
"prettier-eslint-cli": "^6.0.1",
"react-native-cli": "^2.0.1",
"react-test-renderer": "17.0.2",
"redux-mock-store": "^1.5.1",
"rollup": "^2.26.5",
"sqlite3": "^5.0.2",
"tsflower": "^0.0.12",
"typescript": "~4.3.5",
"yarn-deduplicate": "^3.0.0"
},
"resolutions": {
"hermes-parser": ">=0.4.8",
"jest-expo/react-test-renderer": "17.0.2",
"prettier-eslint-cli/prettier-eslint": "^15.0.0",
"react-native/use-subscription": ">=1.0.0 <1.6.0"
}
}