-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.41 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.41 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "gogent-mobile",
"version": "1.0.0",
"description": "React Native frontend for GoGent AI Multi-Variation Execution Platform",
"main": "index.ts",
"scripts": {
"start": "expo start",
"android": "expo start --android",
"ios": "expo start --ios",
"web": "expo start --web",
"build": "expo export",
"build:web": "expo export --platform web",
"eject": "expo eject",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"type-check": "tsc --noEmit",
"test": "jest",
"test:watch": "jest --watch"
},
"keywords": [
"react-native",
"expo",
"typescript",
"gogent",
"ai",
"gemini",
"multi-variation",
"mobile"
],
"author": "GoGent Team",
"license": "MIT",
"dependencies": {
"@expo/metro-runtime": "~4.0.1",
"@expo/vector-icons": "~14.0.4",
"@react-native-async-storage/async-storage": "1.23.1",
"@react-navigation/bottom-tabs": "^6.6.1",
"@react-navigation/native": "^6.1.18",
"@react-navigation/stack": "^7.4.3",
"@types/crypto-js": "^4.2.2",
"axios": "^1.7.9",
"crypto-js": "^4.2.0",
"expo": "~52.0.17",
"expo-constants": "~17.0.8",
"expo-font": "~13.0.4",
"expo-linking": "~7.0.5",
"expo-router": "~4.0.21",
"expo-status-bar": "~2.0.0",
"google-protobuf": "^3.21.4",
"grpc-web": "^1.5.0",
"react": "18.3.1",
"react-dom": "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-vector-icons": "^10.3.0",
"react-native-web": "~0.19.13"
},
"devDependencies": {
"@babel/core": "^7.20.0",
"@babel/preset-env": "^7.25.0",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-native": "^5.4.3",
"@testing-library/react": "^16.3.0",
"@testing-library/react-hooks": "^8.0.1",
"@testing-library/react-native": "^13.2.0",
"@types/google-protobuf": "^3.15.12",
"@types/jest": "^30.0.0",
"@types/react": "~18.3.12",
"@types/react-native": "^0.73.0",
"@typescript-eslint/eslint-plugin": "^7.7.0",
"@typescript-eslint/parser": "^7.7.0",
"eslint": "^8.57.0",
"eslint-config-expo": "~8.0.1",
"jest": "~29.7.0",
"jest-environment-jsdom": "^30.0.5",
"react-test-renderer": "18.3.1",
"ts-jest": "^29.4.0",
"typescript": "~5.3.3"
},
"private": true,
"engines": {
"node": ">=18.0.0"
}
}