-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2.74 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
{
"name": "messages",
"version": "1.0.0",
"main": "node_modules/expo/AppEntry.js",
"scripts": {
"start": "expo start",
"android": "expo run:android",
"ios": "expo run:ios",
"web": "expo start --web",
"lint": "eslint . --fix",
"generate:tab:component": "sh scripts/generate.tab.component.sh",
"generate:screen:component": "sh scripts/generate.screen.component.sh",
"lang:extract": "lingui extract",
"lang:compile": "lingui compile"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
},
"husky": {
"hooks": {
"pre-commit": "lingui extract $(git diff --name-only --staged)"
}
},
"dependencies": {
"@hookform/resolvers": "^3.3.1",
"@lingui/react": "^4.4.2",
"@react-native-async-storage/async-storage": "1.18.2",
"@react-native-masked-view/masked-view": "0.2.9",
"@react-navigation/bottom-tabs": "^6.5.8",
"@react-navigation/native": "^6.1.7",
"@react-navigation/native-stack": "^6.9.13",
"@react-navigation/stack": "^6.3.17",
"@reduxjs/toolkit": "^1.9.5",
"crypto-es": "^2.0.4",
"expo": "~49.0.8",
"expo-clipboard": "~4.3.1",
"expo-constants": "~14.4.2",
"expo-crypto": "~12.4.1",
"expo-device": "~5.4.0",
"expo-font": "~11.4.0",
"expo-image-manipulator": "~11.3.0",
"expo-image-picker": "~14.3.2",
"expo-secure-store": "~12.3.1",
"expo-splash-screen": "~0.20.5",
"expo-status-bar": "~1.6.0",
"firebase": "^10.4.0",
"react": "18.2.0",
"react-hook-form": "^7.46.1",
"react-native": "0.72.4",
"react-native-gesture-handler": "~2.12.0",
"react-native-mmkv": "^2.10.2",
"react-native-reanimated": "3.3.0",
"react-native-safe-area-context": "4.6.3",
"react-native-screens": "~3.22.0",
"react-native-svg": "13.9.0",
"react-redux": "^8.1.2",
"yup": "^1.2.0"
},
"devDependencies": {
"@babel/core": "^7.22.17",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.18.6",
"@babel/plugin-proposal-optional-chaining": "^7.21.0",
"@lingui/cli": "^4.4.2",
"@lingui/macro": "^4.4.2",
"@tsconfig/react-native": "^3.0.2",
"@types/jest": "^29.5.4",
"@types/react": "^18.2.21",
"@types/react-native": "^0.72.2",
"@types/react-test-renderer": "^18.0.1",
"babel-plugin-macros": "^3.1.0",
"babel-plugin-module-resolver": "^5.0.0",
"eslint": "^8.48.0",
"eslint-config-universe": "^12.0.0",
"prettier": "3.0.3",
"typescript": "^5.2.2"
},
"private": true
}