-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 2.07 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 2.07 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
{
"name": "inventory-anything",
"version": "1.0.0",
"description": "AI-powered inventory management app for iOS, Android, and Web",
"main": "expo-router/entry",
"scripts": {
"start": "expo start",
"android": "expo start --android",
"ios": "expo start --ios",
"web": "expo start --web",
"test": "jest",
"lint": "eslint . --ext .ts,.tsx",
"type-check": "tsc --noEmit",
"db:migrate": "bash scripts/deploy-db.sh",
"build:ios": "eas build --platform ios --profile production",
"build:android": "eas build --platform android --profile production",
"submit:ios": "eas submit --platform ios",
"submit:android": "eas submit --platform android",
"deploy:web": "expo export -p web && vercel --prod"
},
"dependencies": {
"@react-native-async-storage/async-storage": "^1.23.1",
"@supabase/supabase-js": "^2.39.0",
"ajv": "^8.18.0",
"axios": "^1.6.0",
"date-fns": "^3.0.0",
"expo": "~52.0.0",
"expo-av": "~15.0.0",
"expo-camera": "~16.0.0",
"expo-constants": "~17.0.0",
"expo-device": "~7.0.0",
"expo-file-system": "~18.0.0",
"expo-haptics": "~14.0.1",
"expo-image-picker": "~16.0.0",
"expo-linear-gradient": "~14.0.0",
"expo-linking": "~7.0.0",
"expo-notifications": "~0.29.0",
"expo-print": "~14.0.0",
"expo-router": "~4.0.0",
"expo-sharing": "~13.0.0",
"expo-status-bar": "~2.0.0",
"lodash": "^4.17.21",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-hook-form": "^7.49.0",
"react-native": "^0.76.9",
"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.4.0",
"react-native-web": "~0.19.13",
"zod": "^3.22.0"
},
"devDependencies": {
"@types/lodash": "^4.17.0",
"@types/node": "^20.0.0",
"@types/react": "~18.3.0",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"babel-preset-expo": "~12.0.0",
"canvas": "^3.2.3",
"eslint": "^8.50.0",
"typescript": "^5.3.0"
}
}