-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 2.45 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 2.45 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
{
"name": "raw-reorder-app",
"version": "1.0.0",
"main": "index.ts",
"scripts": {
"start": "cross-env EXPO_PUBLIC_ENV=dev expo start --port 8083",
"start:dev": "cross-env EXPO_PUBLIC_ENV=dev expo start -c --port 8083",
"start:preview": "cross-env EXPO_PUBLIC_ENV=preview expo start -c --port 8084",
"android": "cross-env EXPO_PUBLIC_ENV=dev expo start --android --port 8083",
"android:dev": "cross-env EXPO_PUBLIC_ENV=dev expo start --android -c --port 8083",
"android:preview": "cross-env EXPO_PUBLIC_ENV=preview expo start --android -c --port 8084",
"android:dev:release": "cross-env EXPO_PUBLIC_ENV=dev eas build --platform android --profile development",
"android:preview:release": "cross-env EXPO_PUBLIC_ENV=preview eas build --platform android --profile preview",
"ios": "cross-env EXPO_PUBLIC_ENV=dev expo start --ios --port 8083",
"ios:dev": "cross-env EXPO_PUBLIC_ENV=dev expo start --ios -c --port 8083",
"ios:preview": "cross-env EXPO_PUBLIC_ENV=preview expo start --ios -c --port 8084",
"web": "cross-env EXPO_PUBLIC_ENV=dev expo start --web --port 8083",
"web:dev": "cross-env EXPO_PUBLIC_ENV=dev expo start --web -c --port 8083",
"web:preview": "cross-env EXPO_PUBLIC_ENV=preview expo start --web -c --port 8084"
},
"dependencies": {
"@react-native-async-storage/async-storage": "^3.0.2",
"@react-native-community/datetimepicker": "8.6.0",
"@react-native-picker/picker": "2.11.4",
"@react-navigation/native": "^7.2.0",
"@react-navigation/native-stack": "^7.14.7",
"axios": "^1.14.0",
"bcryptjs": "^3.0.3",
"compression": "^1.8.1",
"dotenv": "^16.4.7",
"expo": "~55.0.8",
"expo-localization": "~55.0.9",
"expo-status-bar": "~55.0.4",
"express": "^5.2.1",
"i18n": "^0.15.3",
"jsonwebtoken": "^9.0.3",
"mssql": "^12.3.1",
"mysql2": "^3.22.1",
"nodemailer": "^8.0.5",
"react": "19.2.0",
"react-dom": "19.2.0",
"react-i18next": "^16.6.6",
"react-native": "0.83.2",
"react-native-gesture-handler": "~2.30.0",
"react-native-qrcode-svg": "^6.3.21",
"react-native-reanimated": "4.2.1",
"react-native-safe-area-context": "~5.6.2",
"react-native-screens": "~4.23.0",
"react-native-svg": "^15.15.4",
"react-native-web": "^0.21.0",
"sequelize": "^6.37.8",
"tedious": "^19.2.1"
},
"devDependencies": {
"@types/react": "~19.2.2",
"cross-env": "^7.0.3",
"typescript": "~5.9.2"
},
"private": true
}