-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 2.65 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
{
"name": "wish-earn",
"version": "0.0.1",
"private": true,
"scripts": {
"start": "react-native start",
"bundles": "open android/app/build/outputs/bundle/release",
"build:client:staging": "cross-env SWAGGER=\"https://junction-staging.lknmessenger.co/1.0/swagger.json\" HOST=\"https://junction-staging.lknmessenger.co/1.0\" node scripts/BuildClient.js",
"ios": "react-native run-ios --simulator=\"iPhone Xr\"",
"android": "react-native run-android",
"android:bundle": "yarn build:client && cd android && ./gradlew bundleRelease && cd .. && yarn bundles",
"android:install": "cd android && ./gradlew assembleRelease && ./gradlew installRelease",
"test": "jest",
"lint": "eslint .",
"removeRequireCycleWarning": "node scripts/removeRequireCycleWarning.js",
"postinstall": "yarn removeRequireCycleWarning"
},
"dependencies": {
"@react-native-community/async-storage": "^1.6.3",
"color": "^3.1.2",
"lottie-ios": "^3.1.5",
"lottie-react-native": "^3.2.1",
"moment": "^2.24.0",
"prop-types": "^15.7.2",
"q": "^1.5.1",
"react": "16.9.0",
"react-native": "0.61.4",
"react-native-aws3": "^0.0.9",
"react-native-chart-kit": "^3.11.0",
"react-native-device-info": "^5.3.0",
"react-native-gesture-handler": "^1.5.0",
"react-native-image-crop-picker": "^0.26.1",
"react-native-iphone-x-helper": "^1.2.1",
"react-native-modal-datetime-picker": "^7.6.0",
"react-native-progress-circle": "^2.1.0",
"react-native-reanimated": "^1.4.0",
"react-native-screens": "^2.0.0-alpha.11",
"react-native-svg": "^9.13.3",
"react-native-uuid": "^1.4.9",
"react-native-vector-icons": "^6.6.0",
"react-navigation": "^4.0.10",
"react-navigation-material-bottom-tabs": "^2.1.5",
"react-navigation-redux-helpers": "^4.0.1",
"react-navigation-stack": "^1.10.3",
"react-navigation-tabs": "^2.5.6",
"react-navigation-transitions": "^1.0.12",
"react-navigation-webview": "^0.1.3",
"react-redux": "^7.1.3",
"redux": "^4.0.4",
"redux-devtools-extension": "^2.13.8",
"redux-persist": "^6.0.0",
"redux-saga": "^1.1.3",
"reduxsauce": "^1.1.1",
"seamless-immutable": "^7.1.4",
"styled-components": "^4.4.1",
"superagent": "^5.1.0"
},
"devDependencies": {
"@babel/core": "^7.6.2",
"@babel/runtime": "^7.6.2",
"@react-native-community/eslint-config": "^0.0.5",
"babel-jest": "^24.9.0",
"cross-env": "^6.0.3",
"eslint": "^6.5.1",
"jest": "^24.9.0",
"metro-react-native-babel-preset": "^0.56.0",
"react-test-renderer": "16.9.0",
"swagger-js-codegen": "^1.13.0"
},
"jest": {
"preset": "react-native"
}
}