vaulterm/frontend/package.json

79 lines
2.3 KiB
JSON
Raw Normal View History

2024-11-05 18:43:59 +07:00
{
"name": "frontend",
2024-11-08 18:24:08 +07:00
"license": "MIT",
2024-11-05 18:43:59 +07:00
"main": "expo-router/entry",
"version": "1.0.0",
"scripts": {
"start": "expo start",
"reset-project": "node ./scripts/reset-project.js",
"android": "expo start --android",
"ios": "expo start --ios",
"web": "expo start --web",
"test": "jest --watchAll",
2024-11-09 03:38:27 +07:00
"lint": "expo lint",
"build:preview": "eas build -p android --profile preview --local",
2024-11-16 02:34:07 +07:00
"build:android": "eas build -p android --local",
"build:web": "expo export -p web"
2024-11-05 18:43:59 +07:00
},
"jest": {
"preset": "jest-expo"
},
"dependencies": {
"@expo/vector-icons": "^14.0.2",
2024-11-09 10:33:07 +00:00
"@hookform/resolvers": "^3.9.1",
2024-11-06 17:32:39 +00:00
"@novnc/novnc": "^1.5.0",
2024-11-08 18:24:08 +07:00
"@react-native-async-storage/async-storage": "1.23.1",
"@react-navigation/drawer": "7.0.0",
"@react-navigation/native": "7.0.0",
2024-11-15 09:39:35 +00:00
"@tamagui/config": "^1.116.15",
2024-11-08 18:24:08 +07:00
"@tanstack/react-query": "^5.59.20",
2024-11-06 06:24:14 +00:00
"@xterm/addon-attach": "^0.11.0",
"@xterm/addon-fit": "^0.10.0",
2024-11-05 18:43:59 +07:00
"@xterm/xterm": "^5.5.0",
2024-11-14 18:20:48 +07:00
"expo": "~52.0.6",
2024-11-06 06:24:14 +00:00
"expo-blur": "~14.0.1",
2024-11-14 18:20:48 +07:00
"expo-constants": "~17.0.3",
2024-11-06 06:24:14 +00:00
"expo-font": "~13.0.0",
"expo-haptics": "~14.0.0",
"expo-linking": "~7.0.2",
2024-11-14 18:20:48 +07:00
"expo-router": "~4.0.5",
"expo-splash-screen": "~0.29.9",
2024-11-06 06:24:14 +00:00
"expo-status-bar": "~2.0.0",
"expo-symbols": "~0.2.0",
"expo-system-ui": "~4.0.2",
2024-11-14 18:20:48 +07:00
"expo-web-browser": "~14.0.1",
2024-11-08 18:24:08 +07:00
"ofetch": "^1.4.1",
2024-11-06 06:24:14 +00:00
"react": "18.3.1",
"react-dom": "18.3.1",
2024-11-09 10:33:07 +00:00
"react-hook-form": "^7.53.2",
2024-11-06 06:24:14 +00:00
"react-native": "0.76.1",
"react-native-gesture-handler": "~2.20.2",
2024-11-06 14:53:07 +07:00
"react-native-pager-view": "6.4.1",
2024-11-06 06:24:14 +00:00
"react-native-reanimated": "~3.16.1",
"react-native-safe-area-context": "4.12.0",
2024-11-14 18:20:48 +07:00
"react-native-screens": "4.0.0",
2024-11-06 06:24:14 +00:00
"react-native-web": "~0.19.13",
2024-11-08 18:24:08 +07:00
"react-native-webview": "^13.12.2",
2024-11-15 09:39:35 +00:00
"tamagui": "^1.116.15",
2024-11-10 15:43:50 +07:00
"zod": "3.23.8",
2024-11-08 18:24:08 +07:00
"zustand": "^5.0.1"
2024-11-05 18:43:59 +07:00
},
"devDependencies": {
2024-11-06 06:24:14 +00:00
"@babel/core": "^7.25.2",
2024-11-08 18:24:08 +07:00
"@tamagui/babel-plugin": "^1.116.14",
2024-11-05 18:43:59 +07:00
"@types/jest": "^29.5.12",
2024-11-06 17:32:39 +00:00
"@types/novnc__novnc": "^1.5.0",
2024-11-06 06:24:14 +00:00
"@types/react": "~18.3.12",
"@types/react-test-renderer": "^18.3.0",
2024-11-05 18:43:59 +07:00
"jest": "^29.2.1",
2024-11-14 18:20:48 +07:00
"jest-expo": "~52.0.1",
2024-11-06 06:24:14 +00:00
"react-test-renderer": "18.3.1",
"typescript": "^5.3.3"
2024-11-05 18:43:59 +07:00
},
2024-11-08 18:53:30 +00:00
"private": true,
"pnpm": {
"patchedDependencies": {
2024-11-10 15:43:50 +07:00
"zod@3.23.8": "patches/zod@3.23.8.patch"
2024-11-08 18:53:30 +00:00
}
}
2024-11-08 18:24:08 +07:00
}