Files
colanode/apps/mobile/package.json
Hakan Shehu 076fa49d5a Update packages (#367)
* Update packages
* Add missing core and crdt dependencies to client package

The client package imports from @colanode/core and @colanode/crdt but
didn't declare them in package.json, causing Turbo to not guarantee
building them first. This led to TS6305 errors in CI.
2026-04-03 11:10:50 +02:00

45 lines
1.2 KiB
JSON

{
"$schema": "https://json.schemastore.org/package.json",
"name": "@colanode/mobile",
"version": "1.0.0",
"author": "Colanode",
"description": "Colanode mobile application",
"main": "src/index.ts",
"scripts": {
"start": "expo start",
"android": "expo start --android",
"ios": "expo start --ios",
"web": "expo start --web",
"dev:ui": "vite",
"build:ui": "vite build"
},
"dependencies": {
"expo": "^54.0.33",
"expo-asset": "^12.0.12",
"expo-crypto": "~15.0.8",
"expo-device": "~8.0.10",
"expo-file-system": "^19.0.21",
"expo-random": "^14.0.1",
"expo-sqlite": "^16.0.10",
"expo-status-bar": "~3.0.9",
"isomorphic-webcrypto": "^2.3.8",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-native": "^0.83.4",
"react-native-get-random-values": "^2.0.0",
"react-native-safe-area-context": "^5.7.0",
"react-native-webview": "^13.16.1"
},
"devDependencies": {
"@tailwindcss/postcss": "^4.2.2",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^5.2.0",
"babel-preset-expo": "^54.0.10",
"typescript": "~5.9.3",
"vite": "^7.3.1",
"vite-plugin-singlefile": "^2.3.2"
},
"private": true
}