-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 2.66 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
{
"name": "randsumapp",
"main": "expo-router/entry",
"scripts": {
"start": "expo start",
"build:web": "expo export -p web",
"deploy:web": "npm run build:web && netlify deploy --dir dist",
"ts:check": "npx expo customize tsconfig.json && tsc --noEmit",
"build:dev": "npx eas-cli build --platform ios --profile development-simulator --non-interactive --no-wait && npx eas-cli build --platform android --profile development --non-interactive --no-wait",
"build:preview": "npx eas-cli build --platform all --profile preview --non-interactive --no-wait",
"submit:production": "npx eas-cli build --platform all --profile production --non-interactive --auto-submit --no-wait",
"update:preview": "NODE_ENV=preview npx eas-cli update --branch preview",
"lint": "npx eslint .",
"lint:fix": "npx eslint . --fix",
"format": "npx prettier . --check",
"format:fix": "npx prettier . --write",
"gen:db:types": "npx supabase gen types typescript --project-id muaohwswudsfjzrjollg > ./database.types.ts"
},
"dependencies": {
"@expo/html-elements": "^0.10.1",
"@pchmn/expo-material3-theme": "^1.3.2",
"@react-native-async-storage/async-storage": "1.23.1",
"expo": "~51.0.31",
"expo-constants": "~16.0.2",
"expo-crypto": "~13.0.2",
"expo-dev-client": "~4.0.26",
"expo-haptics": "~13.0.1",
"expo-linking": "~6.3.1",
"expo-router": "~3.5.23",
"expo-status-bar": "~1.12.1",
"expo-updates": "~0.25.24",
"randsum": "^4.6.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-native": "~0.75.0",
"react-native-circular-progress-indicator": "^4.4.2",
"react-native-collapsible": "^1.6.1",
"react-native-gesture-handler": "~2.18.1",
"react-native-paper": "^5.12.3",
"react-native-paper-select": "^1.1.1",
"react-native-reanimated": "~3.15.0",
"react-native-safe-area-context": "4.10.5",
"react-native-screens": "~3.34.0",
"react-native-svg": "15.2.0",
"react-native-swipeable-list": "^0.1.2",
"react-native-url-polyfill": "^2.0.0",
"react-native-web": "~0.19.12",
"use-event-callback": "^0.1.0"
},
"expo": {
"install": {
"exclude": [
"react-native@~0.74.0",
"react-native-reanimated@~3.10.0",
"react-native-gesture-handler@~2.16.1",
"react-native-screens@~3.31.1"
]
}
},
"devDependencies": {
"@babel/core": "^7.24.9",
"@eslint/compat": "^1.1.1",
"@eslint/js": "^9.7.0",
"@types/react": "~18.2.79",
"eslint": "^9.7.0",
"eslint-plugin-react": "^7.35.2",
"globals": "^15.8.0",
"prettier": "^3.3.3",
"typescript": "~5.3.3",
"typescript-eslint": "^7.16.1"
},
"private": true
}