frontend client for gemstone. decentralised workplace app
2
fork

Configure Feed

Select the types of activity you want to include in your feed.

refactor: simple dev commands

serenity 8e7259fd 494b24c1

+53 -48
+53 -48
package.json
··· 1 1 { 2 - "name": "gemstone-app", 3 - "main": "expo-router/entry", 4 - "version": "1.0.0", 5 - "scripts": { 6 - "start": "expo start", 7 - "reset-project": "node ./scripts/reset-project.js", 8 - "android": "expo start --android", 9 - "ios": "expo start --ios", 10 - "web": "expo start --web", 11 - "lint": "expo lint" 12 - }, 13 - "dependencies": { 14 - "@expo/vector-icons": "^15.0.2", 15 - "@react-navigation/bottom-tabs": "^7.4.0", 16 - "@react-navigation/elements": "^2.6.3", 17 - "@react-navigation/native": "^7.1.8", 18 - "expo": "~54.0.12", 19 - "expo-constants": "~18.0.9", 20 - "expo-font": "~14.0.8", 21 - "expo-haptics": "~15.0.7", 22 - "expo-image": "~3.0.8", 23 - "expo-linking": "~8.0.8", 24 - "expo-router": "~6.0.10", 25 - "expo-splash-screen": "~31.0.10", 26 - "expo-status-bar": "~3.0.8", 27 - "expo-symbols": "~1.0.7", 28 - "expo-system-ui": "~6.0.7", 29 - "expo-web-browser": "~15.0.8", 30 - "react": "19.1.0", 31 - "react-dom": "19.1.0", 32 - "react-native": "0.81.4", 33 - "react-native-gesture-handler": "~2.28.0", 34 - "react-native-reanimated": "~4.1.1", 35 - "react-native-safe-area-context": "~5.6.0", 36 - "react-native-screens": "~4.16.0", 37 - "react-native-web": "~0.21.0", 38 - "react-native-worklets": "0.5.1" 39 - }, 40 - "devDependencies": { 41 - "@types/react": "~19.1.0", 42 - "eslint": "^9.25.0", 43 - "eslint-config-expo": "~10.0.0", 44 - "globals": "^16.4.0", 45 - "jiti": "^2.6.1", 46 - "typescript": "~5.9.2", 47 - "typescript-eslint": "^8.46.0" 48 - }, 49 - "private": true 2 + "name": "gemstone-app", 3 + "main": "expo-router/entry", 4 + "version": "1.0.0", 5 + "scripts": { 6 + "start": "expo start", 7 + "reset-project": "node ./scripts/reset-project.js", 8 + "android": "expo start --android", 9 + "ios": "expo start --ios", 10 + "web": "expo start --web", 11 + "lint": "expo lint", 12 + "dev": "expo start --web", 13 + "dev:web": "expo start --web", 14 + "dev:android": "expo start --android", 15 + "dev:ios": "expo start --ios", 16 + "dev:expo": "expo start" 17 + }, 18 + "dependencies": { 19 + "@expo/vector-icons": "^15.0.2", 20 + "@react-navigation/bottom-tabs": "^7.4.0", 21 + "@react-navigation/elements": "^2.6.3", 22 + "@react-navigation/native": "^7.1.8", 23 + "expo": "~54.0.12", 24 + "expo-constants": "~18.0.9", 25 + "expo-font": "~14.0.8", 26 + "expo-haptics": "~15.0.7", 27 + "expo-image": "~3.0.8", 28 + "expo-linking": "~8.0.8", 29 + "expo-router": "~6.0.10", 30 + "expo-splash-screen": "~31.0.10", 31 + "expo-status-bar": "~3.0.8", 32 + "expo-symbols": "~1.0.7", 33 + "expo-system-ui": "~6.0.7", 34 + "expo-web-browser": "~15.0.8", 35 + "react": "19.1.0", 36 + "react-dom": "19.1.0", 37 + "react-native": "0.81.4", 38 + "react-native-gesture-handler": "~2.28.0", 39 + "react-native-reanimated": "~4.1.1", 40 + "react-native-safe-area-context": "~5.6.0", 41 + "react-native-screens": "~4.16.0", 42 + "react-native-web": "~0.21.0", 43 + "react-native-worklets": "0.5.1" 44 + }, 45 + "devDependencies": { 46 + "@types/react": "~19.1.0", 47 + "eslint": "^9.25.0", 48 + "eslint-config-expo": "~10.0.0", 49 + "globals": "^16.4.0", 50 + "jiti": "^2.6.1", 51 + "typescript": "~5.9.2", 52 + "typescript-eslint": "^8.46.0" 53 + }, 54 + "private": true 50 55 }