-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
128 lines (128 loc) · 4.45 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
{
"private": true,
"version": "1.12.3",
"scripts": {
"ios": "ENVFILE=.env react-native run-ios",
"start": "react-native start",
"test": "jest --detectOpenHandles",
"test:ci": "yarn check:types && yarn lint && yarn test --ci",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"format": "prettier --write .",
"android": "ENVFILE=.env react-native run-android",
"check:types": "tsc --noEmit",
"format:code": "prettier --write \"*.{js,ts,tsx,json}\" \"src/**/*.{js,jsx,ts,tsx}\"",
"adb:metro": "adb reverse tcp:8081 tcp:8081",
"bump:minor": "npm version minor --no-git-tag-version && bundle exec fastlane bump_badge",
"bump:patch": "npm version patch --no-git-tag-version && bundle exec fastlane bump_badge",
"bump:major": "npm version major --no-git-tag-version && bundle exec fastlane bump_badge",
"make-apk:stagingRelease": "yarn android --variant=release",
"generate-build-config": "node scripts/buildConfig.js",
"generate-image-imports": "node scripts/images.js",
"android:stagingRelease": "yarn android --variant=release",
"android:productionRelease": "yarn android --variant=release",
"detox-test:iosRelease": "detox test -c ios.sim.release",
"detox-build:iosRelease": "detox build -c ios.sim.release",
"detox-test:androidRelease": "detox test -c android.emu.release",
"detox-build:androidRelease": "detox build -c android.emu.release",
"ios:reset": "yarn ios:rm && cd ios && pod deintegrate && pod install",
"android:clean": "cd android && ./gradlew clean",
"postversion": "react-native-version"
},
"dependencies": {
"@react-native-async-storage/async-storage": "^1.14.1",
"@react-native-community/masked-view": "^0.1.10",
"@react-navigation/bottom-tabs": "^5.11.8",
"@react-navigation/native": "^5.7.3",
"@react-navigation/stack": "^5.9.0",
"@reduxjs/toolkit": "^1.4.0",
"@sentry/react-native": "^2.6.0",
"date-fns": "^2.21.3",
"date-fns-tz": "^1.1.4",
"i18next": "^20.1.0",
"react": "17.0.1",
"react-hook-form": "^7.0.5",
"react-i18next": "^11.8.12",
"react-native": "0.64.1",
"react-native-camera": "^3.43.1",
"react-native-config": "^1.4.2",
"react-native-gesture-handler": "^1.10.3",
"react-native-get-random-values": "^1.6.0",
"react-native-paper": "^4.7.2",
"react-native-permissions": "^3.0.1",
"react-native-pixel-perfect": "^1.0.2",
"react-native-qrcode-scanner": "^1.5.3",
"react-native-reanimated": "^2.1.0",
"react-native-safe-area-context": "^3.2.0",
"react-native-screens": "^3.1.0",
"react-native-svg": "^12.1.0",
"react-native-url-polyfill": "^1.3.0",
"react-native-version": "^4.0.0",
"react-native-webview": "^11.3.2",
"react-redux": "^7.2.1",
"redux": "^4.0.5",
"redux-persist": "^6.0.0",
"redux-thunk": "^2.3.0",
"typesafe-actions": "^5.1.0",
"uuid": "^8.3.2"
},
"devDependencies": {
"@babel/core": "^7.11.1",
"@babel/runtime": "^7.11.2",
"@testing-library/jest-native": "^3.3.0",
"@testing-library/react-native": "^7.2.0",
"@types/babel__core": "^7.1.14",
"@types/detox": "^17.14.0",
"@types/eslint": "^6.8.1",
"@types/faker": "^5.5.0",
"@types/jest": "^25.2.3",
"@types/prettier": "^2.2.3",
"@types/react": "^16.14.5",
"@types/react-native": "^0.63.2",
"@types/react-redux": "^7.1.9",
"@types/react-test-renderer": "^16.9.3",
"@types/uuid": "^8.3.0",
"@typescript-eslint/eslint-plugin": "^2.34.0",
"@typescript-eslint/parser": "^2.34.0",
"babel-jest": "^25.5.1",
"babel-plugin-module-resolver": "^4.1.0",
"detox": "^17.3.6",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-react": "^7.20.5",
"eslint-plugin-react-hooks": "^4.0.8",
"eslint-plugin-react-native": "^3.8.1",
"husky": "^6.0.0",
"jest": "^25.5.4",
"jest-circus": "^26.4.0",
"lint-staged": "^10.5.4",
"metro-react-native-babel-preset": "^0.64.0",
"prettier": "^2.0.5",
"react-native-flipper": "^0.52.1",
"react-test-renderer": "^16.13.1",
"redux-flipper": "^1.4.2",
"typescript": "^4.3.5"
},
"jest": {
"preset": "react-native",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "yarn test:ci"
}
},
"lint-staged": {
"*.@(ts|tsx)": [
"yarn lint",
"yarn format"
]
}
}