-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.83 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.83 KB
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
{
"name": "react-native-template",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"start": "infisical run -- expo start -c",
"android": "infisical run -- expo run:android --device",
"android:production": "expo prebuild --clean && eas build --platform android --profile production --local",
"android:preview": "expo prebuild && eas build --platform android --profile preview --local",
"ios": "infisical run -- expo run:ios --device",
"ios:production": "expo prebuild --clean && eas build --platform ios --profile production --local",
"ios:preview": "expo prebuild && eas build --platform ios --profile preview --local",
"web": "infisical run -- expo start --web -c",
"gen-api": "infisical run --command 'tsx ./scripts/generate-api.ts'",
"lint": "eslint .",
"format:check": "prettier --check .",
"format:fix": "prettier --write .",
"prepare": "husky",
"eas-build-pre-install": "./scripts/infisical.sh"
},
"dependencies": {
"@react-native-async-storage/async-storage": "2.1.2",
"@sentry/react-native": "~6.14.0",
"@t3-oss/env-core": "^0.13.8",
"@tanstack/react-query": "^5.29.2",
"axios": "^1.6.8",
"clsx": "^2.1.0",
"exp": "^57.2.1",
"expo": "^53.0.13",
"expo-application": "~6.1.5",
"expo-constants": "~17.1.6",
"expo-font": "~13.3.1",
"expo-linear-gradient": "~14.1.5",
"expo-linking": "~7.1.5",
"expo-localization": "~16.1.5",
"expo-network": "~7.1.5",
"expo-router": "~5.1.1",
"expo-status-bar": "~2.2.3",
"i18next": "^23.10.1",
"intl-pluralrules": "^2.0.1",
"lottie-react-native": "7.2.2",
"lucide-react-native": "^0.368.0",
"nativewind": "^4.1.23",
"react": "19.0.0",
"react-dom": "19.0.0",
"react-hook-form": "^7.51.3",
"react-i18next": "^14.1.0",
"react-native": "0.79.4",
"react-native-gesture-handler": "~2.24.0",
"react-native-reanimated": "~3.17.4",
"react-native-safe-area-context": "5.4.0",
"react-native-screens": "~4.11.1",
"react-native-svg": "15.11.2",
"tailwind-merge": "^2.2.2",
"tailwindcss": "^3.4.3",
"zod": "^3.25.67",
"zustand": "^5.0.6"
},
"devDependencies": {
"@babel/core": "^7.20.0",
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@eslint/js": "^9.2.0",
"@types/aes-js": "^3.1.4",
"@types/react": "~19.0.10",
"@types/react-dom": "~18.2.25",
"eslint": "8",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-sonarjs": "^1.0.3",
"husky": "^9.0.11",
"openapi-zod-client": "^1.18.1",
"orval": "^7.10.0",
"prettier": "^3.6.2",
"prettier-plugin-organize-imports": "^3.2.4",
"prettier-plugin-tailwindcss": "^0.5.13",
"tsx": "^4.20.3",
"typescript": "~5.8.3",
"typescript-eslint": "^7.9.0"
},
"private": true,
"packageManager": "yarn@4.9.2"
}