-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
114 lines (114 loc) · 4.04 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
{
"name": "reactnative_uitpas",
"version": "2.1.0",
"private": true,
"scripts": {
"android": "react-native run-android --mode=beta --appIdSuffix=beta",
"check-types": "tsc --noEmit",
"format:check": "yarn prettier --check",
"format": "yarn prettier --write",
"ios": "react-native run-ios --mode Debug",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"prettier": "prettier --ignore-path .gitignore \"src/**/*.+(js|json|ts|tsx)\"",
"reset": "rm -rf node_modules && rm -rf yarn.lock && (cd ios && rm -rf Pods && rm -rf Podfile.lock) && yarn install && (cd android && ./gradlew clean) && (cd ios && pod install)",
"start": "react-native start",
"test": "jest"
},
"dependencies": {
"@adrianso/react-native-device-brightness": "^1.2.7",
"@babel/preset-typescript": "^7.18.6",
"@react-native-clipboard/clipboard": "^1.11.2",
"@react-native-community/netinfo": "^9.3.6",
"@react-navigation/bottom-tabs": "^6.4.0",
"@react-navigation/devtools": "^6.0.13",
"@react-navigation/elements": "^1.3.21",
"@react-navigation/native": "^6.1.10",
"@react-navigation/native-stack": "^6.9.18",
"@sentry/react-native": "^6.4.0",
"@shopify/flash-list": "^1.6.3",
"@snowplow/react-native-tracker": "^1.3.0",
"@tanstack/query-sync-storage-persister": "^4.14.5",
"@tanstack/react-query": "^4.14.1",
"@tanstack/react-query-persist-client": "^4.14.5",
"axios": "1.2.0-alpha.1",
"color": "^4.2.3",
"date-fns": "^2.29.3",
"i18next": "^22.0.4",
"lottie-ios": "3.4.4",
"lottie-react-native": "5.1.6",
"react": "18.2.0",
"react-hook-form": "^7.48.2",
"react-i18next": "^12.0.0",
"react-native": "0.73.6",
"react-native-auth0": "^2.14.1",
"react-native-barcode-svg": "^0.0.15",
"react-native-base64": "^0.2.1",
"react-native-config": "^1.5.0",
"react-native-date-picker": "^4.3.3",
"react-native-device-info": "^14.0.1",
"react-native-fast-image": "^8.6.3",
"react-native-gesture-handler": "^2.15.0",
"react-native-linear-gradient": "^2.6.2",
"react-native-localize": "^2.2.4",
"react-native-logs": "^5.0.1",
"react-native-lottie-splash-screen": "^1.1.2",
"react-native-mmkv": "^2.12.1",
"react-native-mmkv-flipper-plugin": "^1.0.0",
"react-native-permissions": "^3.6.1",
"react-native-reanimated": "^3.7.1",
"react-native-reanimated-skeleton": "^1.5.0",
"react-native-render-html": "^6.3.4",
"react-native-safe-area-context": "^4.4.1",
"react-native-screens": "^3.29.0",
"react-native-svg": "^13.6.0",
"react-native-system-navigation-bar": "^2.6.4",
"react-native-url-polyfill": "^1.3.0",
"react-native-vision-camera": "^4.5.0",
"styled-components": "^5.3.11"
},
"devDependencies": {
"@babel/core": "^7.20.0",
"@babel/preset-env": "^7.20.0",
"@babel/runtime": "^7.20.0",
"@react-native/babel-preset": "^0.73.21",
"@react-native/eslint-config": "^0.73.2",
"@react-native/metro-config": "^0.73.5",
"@react-native/typescript-config": "^0.73.1",
"@tsconfig/react-native": "^2.0.2",
"@types/color": "^3.0.3",
"@types/jest": "^26.0.23",
"@types/react": "^18.2.6",
"@types/react-test-renderer": "^18.0.0",
"@types/styled-components-react-native": "^5.2.1",
"@typescript-eslint/eslint-plugin": "^7.0.2",
"@typescript-eslint/parser": "^7.0.2",
"babel-jest": "^29.7.0",
"eslint": "^8.56.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^27.9.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-simple-import-sort": "^12.0.0",
"eslint-plugin-sort-keys-fix": "^1.1.2",
"eslint-plugin-typescript-sort-keys": "^3.1.0",
"jest": "^29.6.3",
"prettier": "3.2.5",
"react-native-flipper": "^0.163.0",
"react-query-native-devtools": "^4.0.0",
"react-test-renderer": "18.2.0",
"typescript": "5.0.4"
},
"engines": {
"node": ">=18"
},
"jest": {
"preset": "react-native",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
}
}