-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
119 lines (119 loc) · 4.63 KB
/
package.json
File metadata and controls
119 lines (119 loc) · 4.63 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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
{
"name": "brewtracker",
"main": "expo-router/entry",
"version": "3.3.15",
"license": "GPL-3.0-or-later",
"scripts": {
"start": "expo start",
"android": "expo run:android",
"lint": "oxlint",
"lint:fix": "oxlint --fix",
"lint:eslint": "expo lint",
"lint:eslint:fix": "expo lint --fix",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,json,css,md}\"",
"format:check": "prettier --check \"**/*.{js,jsx,ts,tsx,json,css,md}\"",
"type-check": "tsc --noEmit",
"test": "jest",
"test:watch": "jest --watch",
"coverage": "jest --coverage",
"test:ci": "jest --ci --coverage --watchAll=false",
"version:patch": "node scripts/bump-version.js patch && prettier --log-level silent --write \"**/*.{js,jsx,ts,tsx,json,css,md}\"",
"version:minor": "node scripts/bump-version.js minor && prettier --log-level silent --write \"**/*.{js,jsx,ts,tsx,json,css,md}\"",
"version:major": "node scripts/bump-version.js major && prettier --log-level silent --write \"**/*.{js,jsx,ts,tsx,json,css,md}\"",
"build:dev": "node scripts/build-helper.js development && eas build --profile development --platform android",
"build:preview": "node scripts/build-helper.js production && eas build --profile preview --platform android",
"build:prod": "node scripts/build-helper.js production && eas build --profile production --platform android",
"build:all": "npm run build:dev && npm run build:preview && npm run build:prod",
"dev:ip": "ifconfig | grep 'inet ' | grep -v 127.0.0.1 | awk '{print $2}' | head -1",
"dev:logs": "node dev-log-server.js",
"env:dev": "node scripts/build-helper.js development",
"env:prod": "node scripts/build-helper.js production --no-ip",
"prebuild:dev": "npm run env:dev",
"prebuild:preview": "npm run env:prod",
"prebuild:prod": "npm run env:prod",
"build:info": "node scripts/build-info.js"
},
"dependencies": {
"@expo/metro-runtime": "~6.1.2",
"@expo/vector-icons": "~15.0.2",
"@react-native-async-storage/async-storage": "2.2.0",
"@react-native-community/datetimepicker": "8.6.0",
"@react-native-community/netinfo": "~11.4.1",
"@react-navigation/bottom-tabs": "^7.3.10",
"@react-navigation/elements": "^2.3.8",
"@react-navigation/native": "^7.1.6",
"@tanstack/query-async-storage-persister": "^5.87.1",
"@tanstack/query-persist-client-core": "^5.87.1",
"@tanstack/react-query": "^5.87.1",
"@tanstack/react-query-persist-client": "^5.87.1",
"ajv": "^8.17.1",
"axios": "^1.12.2",
"expo": "~54.0.25",
"expo-blur": "~15.0.8",
"expo-build-properties": "~1.0.10",
"expo-constants": "~18.0.9",
"expo-crypto": "~15.0.8",
"expo-dev-client": "~6.0.20",
"expo-device": "~8.0.10",
"expo-document-picker": "~14.0.8",
"expo-file-system": "~19.0.14",
"expo-font": "~14.0.8",
"expo-haptics": "~15.0.8",
"expo-image": "~3.0.11",
"expo-linear-gradient": "~15.0.8",
"expo-linking": "~8.0.10",
"expo-local-authentication": "~17.0.8",
"expo-media-library": "~18.2.1",
"expo-notifications": "~0.32.14",
"expo-router": "~6.0.17",
"expo-secure-store": "~15.0.8",
"expo-sharing": "~14.0.8",
"expo-splash-screen": "~31.0.12",
"expo-status-bar": "~3.0.9",
"expo-symbols": "~1.0.8",
"expo-system-ui": "~6.0.9",
"expo-updates": "~29.0.14",
"expo-web-browser": "~15.0.10",
"react": "19.1.0",
"react-dom": "19.1.0",
"react-native": "0.81.5",
"react-native-gesture-handler": "~2.28.0",
"react-native-gifted-charts": "^1.4.63",
"react-native-reanimated": "~4.1.1",
"react-native-safe-area-context": "~5.6.0",
"react-native-screens": "~4.16.0",
"react-native-svg": "~15.12.1",
"react-native-web": "~0.21.0",
"react-native-webview": "13.16.0",
"react-native-worklets": "0.5.1",
"uuid": "^11.1.0",
"zxcvbn": "^4.4.2"
},
"devDependencies": {
"@babel/core": "^7.25.2",
"@babel/preset-env": "^7.28.0",
"@babel/preset-react": "^7.27.1",
"@babel/preset-typescript": "^7.27.1",
"@testing-library/jest-native": "^5.4.3",
"@testing-library/react-native": "^13.2.2",
"@types/jest": "29.5.14",
"@types/node": "^24.2.1",
"@types/react": "~19.1.10",
"@types/uuid": "^10.0.0",
"@types/zxcvbn": "^4.4.5",
"babel-jest": "~29.7.0",
"babel-plugin-module-resolver": "^5.0.2",
"babel-preset-expo": "~54.0.0",
"dotenv": "^17.2.1",
"eslint": "^9.25.0",
"eslint-config-expo": "~10.0.0",
"express": "^5.1.0",
"jest": "~29.7.0",
"jest-expo": "~54.0.14",
"jsdom": "^26.1.0",
"oxlint": "^1.14.0",
"prettier": "^3.4.2",
"typescript": "~5.9.2"
},
"private": true
}