-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.83 KB
/
package.json
File metadata and controls
81 lines (81 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
{
"name": "pack-pal",
"version": "1.0.0",
"main": "index.ts",
"scripts": {
"start": "expo start --clear",
"android": "expo run:android",
"build:web": "expo export -p web",
"build:dev": "eas build -p ios --profile development --local",
"build:preview": "eas build -p ios --profile preview --local",
"ios": "expo run:ios",
"web": "expo start --web",
"easbuild:ios": "eas build --profile development --platform ios",
"generate-apple-token": "node scripts/generate-apple-token.js",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"lint:fix": "eslint . --ext .js,.jsx,.ts,.tsx --fix",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,json,md}\"",
"format:check": "prettier --check \"**/*.{js,jsx,ts,tsx,json,md}\""
},
"dependencies": {
"@expo/ui": "~0.2.0-beta.9",
"@expo/vector-icons": "^15.0.3",
"@react-native-async-storage/async-storage": "^2.2.0",
"@react-navigation/bottom-tabs": "^7.7.2",
"@react-navigation/native": "^7.1.19",
"@react-navigation/native-stack": "^7.6.1",
"@shopify/react-native-skia": "2.2.12",
"@supabase/supabase-js": "^2.78.0",
"@types/react-color": "^3.0.13",
"@vercel/analytics": "^1.6.1",
"expo": "~54.0.33",
"expo-clipboard": "~8.0.8",
"expo-constants": "~18.0.13",
"expo-dev-client": "~6.0.20",
"expo-document-picker": "^14.0.8",
"expo-file-system": "^19.0.21",
"expo-font": "~14.0.9",
"expo-sharing": "^14.0.8",
"expo-status-bar": "~3.0.9",
"nativewind": "^4.2.1",
"react": "19.1.0",
"react-color": "^2.19.3",
"react-dom": "19.1.0",
"react-native": "0.81.5",
"react-native-color-picker": "^0.6.0",
"react-native-draggable-flatlist": "^4.0.3",
"react-native-gesture-handler": "~2.28.0",
"react-native-reanimated": "^4.1.3",
"react-native-safe-area-context": "^5.6.2",
"react-native-screens": "~4.16.0",
"react-native-svg": "15.12.1",
"react-native-url-polyfill": "^3.0.0",
"react-native-web": "^0.21.0",
"react-native-worklets": "0.5.1",
"reanimated-color-picker": "^4.2.0",
"tailwindcss": "^3.4.18",
"victory-native": "^41.20.1",
"zustand": "^5.0.8"
},
"devDependencies": {
"@react-native/eslint-config": "^0.76.4",
"@types/jsonwebtoken": "^9.0.10",
"@types/react": "~19.1.0",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"babel-preset-expo": "^54.0.6",
"baseline-browser-mapping": "^2.9.17",
"dotenv": "^17.3.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jest": "^29.1.0",
"eslint-plugin-react": "^7.37.0",
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-plugin-react-native": "^5.0.0",
"jsonwebtoken": "^9.0.3",
"prettier": "^3.4.1",
"react-refresh": "^0.18.0",
"typescript": "~5.9.2"
},
"private": true
}