-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 2.56 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
67
68
69
70
71
72
{
"name": "otherdevices",
"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",
"prepare": "husky install",
"prettier": "npx prettier src --check",
"format": "npm run prettier -- --write",
"eslint": "eslint --fix src/**/*.tsx"
},
"dependencies": {
"@expo/vector-icons": "^13.0.0",
"@react-native-async-storage/async-storage": "^1.18.1",
"@react-native-community/masked-view": "^0.1.11",
"@react-navigation/bottom-tabs": "^6.5.4",
"@react-navigation/core": "^6.4.8",
"@react-navigation/elements": "^1.3.17",
"@react-navigation/native": "^6.1.3",
"@react-navigation/native-stack": "^6.9.9",
"@stomp/stompjs": "^7.0.0",
"axios": "^1.3.5",
"axios-retry": "^3.4.0",
"dotenv": "^16.0.3",
"expo": "~47.0.12",
"expo-barcode-scanner": "~12.1.0",
"expo-blur": "~12.0.1",
"expo-camera": "~13.1.0",
"expo-file-system": "~15.1.1",
"expo-status-bar": "~1.4.2",
"react": "18.1.0",
"react-native": "0.70.5",
"react-native-config": "^1.5.0",
"react-native-dotenv": "^3.4.8",
"react-native-flash-message": "^0.4.0",
"react-native-gesture-handler": "~2.8.0",
"react-native-reanimated": "~2.12.0",
"react-native-safe-area-context": "4.4.1",
"react-native-screens": "~3.18.0",
"react-native-vision-camera": "^2.15.4",
"react-navigation": "^4.4.4",
"sockjs-client": "^1.6.1",
"stomp-websocket": "^2.3.4-next",
"stompjs": "^2.3.3",
"text-encoding": "^0.7.0",
"yarn": "^1.22.19"
},
"devDependencies": {
"@babel/core": "^7.12.9",
"@types/react": "^18.0.28",
"@types/react-native": "^0.71.3",
"@types/react-native-dotenv": "^0.2.0",
"@types/sockjs-client": "^1.5.1",
"@types/stompjs": "^2.3.5",
"@typescript-eslint/eslint-plugin": "^5.55.0",
"@typescript-eslint/parser": "^5.55.0",
"eslint": "^8.36.0",
"eslint-config-standard-with-typescript": "^34.0.1",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.6.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.32.2",
"husky": "^8.0.3",
"lint-staged": "^13.2.0",
"prettier": "2.8.4",
"typescript": "^5.0.2"
},
"private": true
}