-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.47 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.47 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
{
"name": "gradquest",
"version": "0.0.2",
"private": true,
"main": "app/index.js",
"scripts": {
"start": "expo start",
"android": "expo run:android",
"ios": "expo run:ios",
"web": "expo start --web",
"build": "expo export --platform web --output-dir web-build",
"heroku-postbuild": "npm run build",
"start:server": "node server.js",
"test": "jest"
},
"dependencies": {
"@expo/vector-icons": "~14.0.4",
"@react-native-async-storage/async-storage": "1.23.1",
"@react-navigation/bottom-tabs": "^6.5.20",
"@react-navigation/native": "^6.1.18",
"@react-navigation/native-stack": "^6.10.1",
"expo": "~52.0.0",
"expo-asset": "~11.0.5",
"expo-font": "~13.0.4",
"expo-router": "~4.0.10",
"expo-status-bar": "~2.0.0",
"expo-web-browser": "~14.0.2",
"express": "^4.22.1",
"npx": "^3.0.0",
"react": "18.3.1",
"react-native": "0.76.9",
"react-native-gesture-handler": "~2.20.2",
"react-native-safe-area-context": "4.12.0",
"react-native-screens": "~4.4.0",
"react-native-url-polyfill": "^2.0.0",
"react-native-web": "~0.19.13",
"react-native-webview": "13.12.5",
"start": "^5.1.0"
},
"devDependencies": {
"@testing-library/jest-native": "^5.4.3",
"@testing-library/react-native": "^13.3.3",
"@types/react": "~18.3.12",
"babel-jest": "^29.7.0",
"jest": "^29.7.0",
"jest-expo": "^52.0.6",
"react-test-renderer": "^18.3.1",
"typescript": "^5.3.3"
}
}