-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 2.2 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
{
"name": "Notifier",
"version": "3.3.4",
"private": true,
"scripts": {
"env:dev": "node scripts/set-env.js develop",
"env:prod": "node scripts/set-env.js prod",
"android": "react-native run-android",
"build:dev:apk": "cd android && ./gradlew assembleRelease && cd ..",
"build:prod:apk": "export NODE_OPTIONS=--openssl-legacy-provider && yarn env:prod && cd android && ./gradlew assembleRelease && cd ..",
"build:prod:aab": "export NODE_OPTIONS=--openssl-legacy-provider && yarn env:prod && cd android && ./gradlew bundleRelease && cd ..",
"start": "react-native start",
"test": "jest",
"lint": "eslint ."
},
"dependencies": {
"@react-native-community/async-storage": "~1.6.2",
"@react-native-community/picker": "~1.8.1",
"@react-native-firebase/app": "~12.1.0",
"@react-native-firebase/messaging": "~12.1.0",
"axios": "~0.19.2",
"crypto": "~1.0.1",
"crypto-js": "~4.0.0",
"jsc-android": "~241213.1.0",
"mobx": "~5.15.4",
"mobx-react": "~6.2.2",
"mobx-react-lite": "~2.0.7",
"react": "~16.13.1",
"react-native": "~0.63.3",
"react-native-date-picker": "~4.2.6",
"react-native-device-info": "~7.4.0",
"react-native-dialog": "~6.1.2",
"react-native-keyboard-aware-scroll-view": "~0.9.3",
"react-native-navigation": "~7.28.1",
"react-native-navigation-hooks": "~6.2.0",
"react-native-options-menu": "~2.0.2",
"react-native-orientation-locker": "~1.2.0",
"react-native-render-html": "^6.3.4",
"react-native-restart": "~0.0.17",
"react-native-simple-toast": "~1.1.3",
"react-native-splash-screen": "~3.2.0",
"react-native-swipe-gestures": "~1.0.5",
"react-native-vector-icons": "~9.2.0"
},
"devDependencies": {
"@babel/core": "~7.8.4",
"@babel/plugin-proposal-decorators": "~7.10.4",
"@babel/runtime": "~7.8.4",
"@react-native-community/eslint-config": "~1.1.0",
"babel-jest": "~25.1.0",
"babel-plugin-root-import": "~6.6.0",
"babel-plugin-transform-decorators-legacy": "~1.3.5",
"eslint": "~6.5.1",
"jest": "~25.1.0",
"metro-react-native-babel-preset": "~0.64.0",
"react-test-renderer": "~16.13.1"
},
"jest": {
"preset": "react-native"
}
}