-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
81 lines (81 loc) · 3.03 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
{
"name": "TerimaCurhatAsi",
"version": "0.5.1",
"private": true,
"scripts": {
"android": "set ENVFILE=.env.development && react-native run-android",
"android:production": "set ENVFILE=.env.production && react-native run-android",
"ios": "react-native run-ios",
"start": "react-native start",
"test": "jest",
"lint": "eslint ./src && prettier --write ./src",
"release": "react-native run-android --variant=release",
"build:assemble": "set ENVFILE=.env.production && cd android && gradlew assembleRelease",
"build:bundle": "set ENVFILE=.env.production && cd android && gradlew bundleRelease",
"postversion": "react-native-version"
},
"dependencies": {
"@codler/react-native-keyboard-aware-scroll-view": "git+https://github.com/codler/react-native-keyboard-aware-scroll-view.git",
"@react-native-community/async-storage": "^1.11.0",
"@react-native-community/hooks": "^2.6.0",
"@react-native-community/masked-view": "^0.1.10",
"@react-native-community/netinfo": "^5.9.6",
"@react-navigation/drawer": "^5.9.0",
"@react-navigation/material-bottom-tabs": "^5.2.16",
"@react-navigation/material-top-tabs": "^5.2.16",
"@react-navigation/native": "^5.7.1",
"@react-navigation/stack": "^5.7.1",
"axios": "^0.19.2",
"laravel-echo": "^1.8.1",
"lodash": "^4.17.19",
"prop-types": "^15.7.2",
"pusher-js": "^7.0.0",
"react": "16.13.1",
"react-native": "0.63.1",
"react-native-audio-recorder-player": "^2.5.3",
"react-native-date-picker": "^3.2.9",
"react-native-fs": "^2.16.6",
"react-native-gesture-handler": "^1.6.1",
"react-native-image-picker": "^2.3.4",
"react-native-image-zoom-viewer": "^3.0.1",
"react-native-ionicons": "^4.6.5",
"react-native-paper": "^4.0.1",
"react-native-pusher-push-notifications": "^2.4.0",
"react-native-reanimated": "^1.9.0",
"react-native-safe-area-context": "^3.1.1",
"react-native-screens": "^2.9.0",
"react-native-searchable-dropdown": "^1.1.3",
"react-native-splash-screen": "^3.2.0",
"react-native-svg": "^12.1.0",
"react-native-tab-view": "^2.15.1",
"react-native-vector-icons": "^7.0.0",
"react-native-webview": "^10.10.2",
"react-query": "^3.13.12",
"react-redux": "^7.2.0",
"redux": "^4.0.5",
"redux-persist": "^6.0.0",
"redux-thunk": "^2.3.0"
},
"devDependencies": {
"@babel/core": "^7.10.5",
"@babel/runtime": "^7.10.5",
"@react-native-community/eslint-config": "^2.0.0",
"babel-jest": "^26.1.0",
"eslint": "^7.5.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jest": "^24.1.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-react": "^7.20.3",
"eslint-plugin-react-hooks": "^4.0.8",
"eslint-plugin-react-native": "^3.8.1",
"jest": "^26.1.0",
"metro-react-native-babel-preset": "^0.60.0",
"react-native-dotenv": "^0.2.0",
"react-native-version": "^4.0.0",
"react-test-renderer": "16.13.1"
},
"jest": {
"preset": "react-native"
}
}