-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.74 KB
/
Copy pathpackage.json
File metadata and controls
75 lines (75 loc) · 2.74 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
{
"name": "mobile-app-template",
"version": "1.0.0",
"main": "expo-router/entry",
"scripts": {
"start": "expo start",
"start:fresh": "./scripts/start-with-data.sh",
"start:clean": "rm -rf .expo && expo start -c",
"backend:seed": "cd ${REPLATE_BUSINESS_DIR:-../replate-business} && bundle exec rails db:complete_seed",
"backend:start": "cd ${REPLATE_BUSINESS_DIR:-../replate-business} && bundle exec rails server -b 0.0.0.0 -p 3000",
"android": "expo start --android",
"ios": "expo start --ios",
"lint:check": "pnpm exec eslint .",
"lint:fix": "pnpm exec eslint . --fix",
"prettier:check": "pnpm exec prettier --check .",
"prettier:fix": "pnpm exec prettier --write .",
"tsc": "pnpm exec tsc --noEmit",
"prepare": "husky",
"pre-commit": "(pnpm run tsc || true) && (pnpm run lint:check || true) && pnpm run prettier:check",
"preinstall": "npx only-allow pnpm"
},
"dependencies": {
"@expo-google-fonts/lato": "^0.4.1",
"@expo/metro-runtime": "^6.1.2",
"@react-native-async-storage/async-storage": "^2.2.0",
"@react-native-picker/picker": "^2.11.1",
"@react-navigation/native": "^7.1.28",
"@react-navigation/native-stack": "^7.3.26",
"@rneui/base": "4.0.0-rc.7",
"@rneui/themed": "4.0.0-rc.8",
"@supabase/supabase-js": "^2.53.0",
"expo": "~54.0.33",
"expo-constants": "~18.0.13",
"expo-font": "~14.0.11",
"expo-image-picker": "~17.0.10",
"expo-linking": "~8.0.11",
"expo-router": "~6.0.23",
"expo-splash-screen": "^31.0.13",
"expo-status-bar": "~3.0.9",
"react": "19.1.0",
"react-native": "0.81.5",
"react-native-dropdown-picker": "^5.4.6",
"react-native-gesture-handler": "~2.28.0",
"react-native-get-random-values": "~1.11.0",
"react-native-keyboard-aware-scroll-view": "^0.9.5",
"react-native-paper": "^5.14.5",
"react-native-reanimated": "~4.1.1",
"react-native-safe-area-context": "~5.6.1",
"react-native-screens": "~4.16.0",
"react-native-toast-message": "^2.3.3",
"react-native-url-polyfill": "^2.0.0",
"react-native-worklets": "0.5.1",
"typescript-eslint": "^8.38.0"
},
"devDependencies": {
"@babel/core": "^7.28.0",
"@eslint/js": "^9.32.0",
"@ianvs/prettier-plugin-sort-imports": "^4.5.1",
"@types/react": "~19.1.15",
"babel-plugin-module-resolver": "^5.0.2",
"baseline-browser-mapping": "^2.9.19",
"cosmiconfig": "8.3.6",
"eslint": "^9.32.0",
"eslint-config-expo": "^10.0.0",
"eslint-config-prettier": "^9.1.2",
"eslint-plugin-prettier": "^5.5.3",
"husky": "^9.1.7",
"metro-react-native-babel-transformer": "^0.77.0",
"prettier": "^3.6.2",
"shadcn": "^3.4.0",
"typescript": "~5.9.2",
"yarnhook": "^0.6.2"
},
"private": true
}