-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.88 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.88 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
{
"name": "memorymate",
"version": "1.0.0",
"main": "node_modules/expo/AppEntry.js",
"scripts": {
"start": "expo start",
"android": "expo start --android",
"ios": "expo start --ios",
"web": "expo start --web",
"lint": "eslint . --ext .ts,.tsx",
"test": "jest"
},
"jest": {
"preset": "jest-expo",
"transformIgnorePatterns": [
"node_modules/(?!((jest-)?react-native|@react-native(-community)?)|expo(nent)?|@expo(nent)?/.*|@expo-google-fonts/.*|react-navigation|@react-navigation/.*|@unimodules/.*|unimodules|sentry-expo|native-base|react-native-svg)"
],
"testPathIgnorePatterns": [
"node_modules/",
".*index.ts"
]
},
"dependencies": {
"@google/generative-ai": "0.9.0",
"@react-navigation/native": "6.1.17",
"@react-navigation/native-stack": "6.9.26",
"@react-navigation/stack": "6.3.29",
"expo": "50.0.14",
"expo-file-system": "16.0.8",
"expo-image": "1.10.6",
"expo-image-picker": "14.7.1",
"expo-status-bar": "1.11.1",
"react": "18.2.0",
"react-native": "0.73.6",
"react-native-circular-progress-indicator": "4.4.2",
"react-native-dropdown-select-list": "2.0.5",
"react-native-gifted-chat": "2.4.0",
"react-native-logs": "5.1.0",
"react-native-reanimated": "3.6.2",
"react-native-safe-area-context": "4.10.1",
"react-native-screens": "3.29.0",
"react-native-svg": "14.1.0"
},
"devDependencies": {
"@babel/core": "^7.20.0",
"@jest/globals": "^29.7.0",
"@types/react": "~18.2.45",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"eslint": "^8.57.0",
"eslint-config-standard-with-typescript": "^43.0.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-promise": "^6.1.1",
"jest": "^29.7.0",
"jest-expo": "^50.0.4",
"ts-jest": "^29.1.2",
"typescript": "^5.4.4"
},
"private": true
}