-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
83 lines (83 loc) · 2.94 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
{
"name": "mpds",
"version": "0.0.1",
"private": true,
"scripts": {
"android": "react-native run-android",
"ios": "react-native run-ios",
"start": "react-native start",
"debug-stg": "npx react-native run-android --variant=stagingDebug --appIdSuffix=staging",
"debug-window-stg": "npx react-native run-android --variant=stagingDebug",
"debug-prd": "npx react-native run-android --variant=productionDebug",
"debug-window-prd": "SET ENVFILE=.env.production && npx react-native run-android --variant=productionDebug",
"release-stg": "npx react-native run-android --variant=stagingRelease",
"release-window-stg": "npx react-native run-android --variant=stagingRelease",
"release-prd": "npx react-native run-android --variant=productionRelease",
"release-window-prd": "npx react-native run-android --variant=productionRelease",
"build-stg": "cd android && ENVFILE=.env.staging ./gradlew assemblestagingRelease",
"build-window-stg": "cd android && gradlew assemblestagingRelease",
"build-prd": "cd android && ENVFILE=.env.production ./gradlew assembleproductionRelease",
"build-window-prd": "cd android && gradlew assembleproductionRelease",
"test": "jest",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx"
},
"dependencies": {
"@react-native-community/masked-view": "^0.1.10",
"@react-navigation/bottom-tabs": "^6.0.0-next.4",
"@react-navigation/native": "^6.0.0-next.2",
"@react-navigation/stack": "^5.14.4",
"@types/react-redux": "^7.1.16",
"@types/redux": "^3.6.0",
"axios": "^0.21.1",
"i18n-js": "^3.8.0",
"lodash": "^4.17.21",
"react": "17.0.1",
"react-native": "0.64.0",
"react-native-config": "^1.4.5",
"react-native-device-info": "^8.1.0",
"react-native-gesture-handler": "^1.10.3",
"react-native-image-picker": "^3.3.2",
"react-native-iphone-x-helper": "^1.3.1",
"react-native-pick-android": "^1.0.9",
"react-native-reanimated": "2.2.0",
"react-native-safe-area-context": "^3.2.0",
"react-native-screens": "^3.0.0",
"react-native-webview": "^11.4.0",
"react-redux": "^7.2.3",
"redux": "^4.0.5",
"redux-observable": "^1.2.0",
"rxjs": "^6.6.7",
"rxjs-compat": "^6.6.7"
},
"devDependencies": {
"@babel/core": "^7.12.9",
"@babel/runtime": "^7.12.5",
"@react-native-community/eslint-config": "^2.0.0",
"@types/i18n-js": "^3.8.1",
"@types/jest": "^26.0.22",
"@types/lodash": "^4.14.168",
"@types/react": "^17.0.3",
"@types/react-native": "^0.64.2",
"@types/react-test-renderer": "^16.9.5",
"babel-jest": "^26.6.3",
"eslint": "^7.14.0",
"jest": "^26.6.3",
"metro-react-native-babel-preset": "^0.64.0",
"react-test-renderer": "17.0.1",
"typescript": "^3.9.9"
},
"resolutions": {
"@types/react": "^17"
},
"jest": {
"preset": "react-native",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
}
}