-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 3.79 KB
/
Copy pathpackage.json
File metadata and controls
100 lines (100 loc) · 3.79 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "expo-app-scaffold",
"version": "1.0.0",
"description": "Production-ready Expo React Native app scaffold with TypeScript, NativeWind, Supabase, and AWS Lambda backend",
"main": "index.ts",
"scripts": {
"start": "expo start",
"android": "expo start --android",
"ios": "expo start --ios",
"web": "expo start --web",
"lint": "eslint app lib --ext .ts,.tsx,.js,.jsx",
"lint:fix": "eslint app lib __tests__ __mocks__ --ext .ts,.tsx,.js,.jsx --fix",
"prettier:check": "prettier --check app lib",
"prettier:fix": "prettier --write app lib",
"type-check": "npx tsc --noEmit",
"format": "npm run prettier:fix && npm run lint:fix",
"check": "npm run type-check && npm run lint && npm run prettier:check",
"db:generate-types": "cd backend && npm run db:generate-types",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"build:dev": "eas build --profile development --platform all",
"build:preview": "eas build --profile preview --platform all",
"build:prod": "eas build --profile production --platform all",
"build:ios:dev": "eas build --profile development --platform ios",
"build:ios:preview": "eas build --profile preview --platform ios",
"build:ios:prod": "eas build --profile production --platform ios",
"submit:ios": "eas submit --platform ios --latest",
"update:dev": "eas update --branch development --message",
"update:preview": "eas update --branch preview --message",
"update:prod": "eas update --branch production --message"
},
"dependencies": {
"@expo/vector-icons": "^14.0.0",
"@hookform/resolvers": "^3.3.0",
"@react-native-async-storage/async-storage": "1.23.1",
"@react-native-community/datetimepicker": "8.0.1",
"@react-navigation/native": "^7.0.0",
"@supabase/supabase-js": "^2.45.0",
"@tanstack/query-async-storage-persister": "^5.50.0",
"@tanstack/react-query": "^5.50.0",
"@tanstack/react-query-persist-client": "^5.50.0",
"class-variance-authority": "^0.7.0",
"date-fns": "^3.6.0",
"expo": "~52.0.0",
"expo-constants": "~17.0.0",
"expo-dev-client": "~5.0.0",
"expo-file-system": "~18.0.0",
"expo-font": "~13.0.0",
"expo-haptics": "~14.0.0",
"expo-image": "~2.0.0",
"expo-image-picker": "~16.0.0",
"expo-linking": "~7.0.0",
"expo-notifications": "~0.29.0",
"expo-router": "~4.0.0",
"expo-secure-store": "~14.0.0",
"expo-splash-screen": "~0.29.0",
"expo-status-bar": "~2.0.0",
"expo-updates": "~0.26.0",
"lucide-react-native": "^0.400.0",
"moti": "^0.29.0",
"nativewind": "^4.0.0",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-hook-form": "^7.52.0",
"react-native": "0.76.0",
"react-native-gesture-handler": "~2.20.0",
"react-native-reanimated": "~3.16.0",
"react-native-safe-area-context": "4.12.0",
"react-native-screens": "~4.0.0",
"react-native-svg": "15.8.0",
"react-native-url-polyfill": "^2.0.0",
"zod": "^3.23.0"
},
"devDependencies": {
"@babel/core": "^7.25.0",
"@testing-library/jest-native": "^5.4.0",
"@testing-library/react-native": "^12.5.0",
"@types/jest": "^29.5.0",
"@types/react": "~18.3.0",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"babel-jest": "^29.7.0",
"dotenv": "^16.4.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.0",
"eslint-plugin-react": "^7.35.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-native": "^4.1.0",
"eslint-plugin-unused-imports": "^4.0.0",
"jest": "^29.7.0",
"jest-expo": "~52.0.0",
"prettier": "^3.3.0",
"react-test-renderer": "18.3.1",
"tailwindcss": "^3.4.0",
"typescript": "~5.6.0"
},
"private": true
}