-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 2.01 KB
/
package.json
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
{
"name": "diverse-app",
"version": "1.0.0",
"scripts": {
"android": "expo start --android",
"ios": "expo start --ios",
"start": "expo start",
"lint": "eslint \"**/*.{js,jsx,ts,tsx}\" && prettier -c \"**/*.{js,jsx,ts,tsx,json}\"",
"format": "eslint \"**/*.{js,jsx,ts,tsx}\" --fix && prettier \"**/*.{js,jsx,ts,tsx,json}\" --write",
"web": "expo start --web"
},
"dependencies": {
"@expo/vector-icons": "^14.0.0",
"@react-native-async-storage/async-storage": "^1.24.0",
"@react-navigation/bottom-tabs": "^6.6.0",
"@react-navigation/native": "^6.1.7",
"@react-navigation/stack": "^6.3.17",
"@stomp/stompjs": "^7.0.0",
"@types/text-encoding": "^0.0.39",
"axios": "^1.7.2",
"expo": "^51.0.20",
"expo-clipboard": "^6.0.3",
"expo-linear-gradient": "^13.0.2",
"expo-status-bar": "~1.12.1",
"react": "18.2.0",
"react-native": "0.74.3",
"react-native-cards-swipe": "^1.2.1",
"react-native-deck-swiper": "^2.0.17",
"react-native-dotenv": "^3.4.11",
"react-native-element-dropdown": "^2.12.1",
"react-native-gesture-handler": "~2.16.1",
"react-native-reanimated": "^3.10.1",
"react-native-safe-area-context": "4.10.1",
"react-native-screens": "3.31.1",
"react-native-svg": "^15.4.0",
"react-native-swipe-cards-deck": "^0.3.0",
"react-native-toast-message": "^2.2.0",
"rneui": "^1.0.0-stable.0",
"sockjs-client": "^1.6.1",
"text-encoding": "^0.7.0",
"ws": "^8.18.0"
},
"devDependencies": {
"@babel/core": "^7.20.0",
"@types/react": "~18.2.45",
"@typescript-eslint/eslint-plugin": "^7.7.0",
"@typescript-eslint/parser": "^7.7.0",
"eslint": "^8.57.0",
"eslint-config-universe": "^12.0.1",
"prettier": "^3.2.5",
"typescript": "~5.3.3"
},
"eslintConfig": {
"extends": "universe/native",
"root": true
},
"main": "node_modules/expo/AppEntry.js",
"expo": {
"install": {
"exclude": [
"react-native-safe-area-context"
]
}
},
"private": true
}