-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.99 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 1.99 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
{
"name": "localtaskapp",
"version": "1.0.0",
"main": "index.ts",
"dependencies": {
"@aws-amplify/react-native": "^1.3.3",
"@expo/vector-icons": "^15.0.2",
"@hookform/resolvers": "^5.4.0",
"@react-native-async-storage/async-storage": "2.2.0",
"@react-native-community/datetimepicker": "^9.1.0",
"@react-native-community/netinfo": "12.0.1",
"@react-navigation/bottom-tabs": "^7.16.1",
"@react-navigation/native": "^7.2.4",
"@react-navigation/native-stack": "^7.15.1",
"aws-amplify": "^6.17.0",
"axios": "^1.16.1",
"babel-plugin-module-resolver": "^5.0.3",
"dotenv": "^17.4.2",
"expo": "~56.0.4",
"expo-image-picker": "~56.0.13",
"expo-location": "~56.0.13",
"expo-notifications": "~56.0.13",
"expo-secure-store": "~56.0.4",
"expo-status-bar": "~56.0.4",
"react": "19.2.3",
"react-dom": "19.2.3",
"react-hook-form": "^7.76.1",
"react-native": "0.85.3",
"react-native-dotenv": "^3.4.11",
"react-native-get-random-values": "~1.11.0",
"react-native-maps": "1.27.2",
"react-native-paper": "^5.15.2",
"react-native-safe-area-context": "~5.7.0",
"react-native-screens": "4.25.2",
"react-native-web": "^0.21.2",
"zod": "^4.4.3",
"zustand": "^5.0.13"
},
"devDependencies": {
"@jest/globals": "^30.4.1",
"@types/jest": "^30.0.0",
"@types/react": "~19.2.2",
"babel-preset-expo": "^56.0.12",
"dotenv-cli": "^11.0.0",
"jest": "^30.4.2",
"ts-jest": "^29.4.11",
"ts-node": "^10.9.2",
"typescript": "~6.0.3"
},
"scripts": {
"start": "dotenv -e .env expo start -c",
"start:dev": "dotenv -e .env.dev -- expo start -c",
"start:staging": "dotenv -e .env.staging -- expo start -c",
"start:prod": "dotenv -e .env.production -- expo start -c",
"android": "expo start --android",
"ios": "expo start --ios",
"web": "expo start --web",
"test": "jest",
"test:watch": "jest --watch",
"build:web": "expo export -p web"
},
"private": true
}