-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.27 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.27 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
{
"name": "deepseen-mobile",
"version": "1.0.0",
"description": "Mobile application for the Deepseen project",
"private": true,
"main": "node_modules/expo/AppEntry.js",
"homepage": "https://github.com/peterdee/deepseen-mobile",
"author": {
"name": "Peter Dyumin",
"url": "https://github.com/peterdee"
},
"scripts": {
"start": "expo start",
"android": "expo start --android",
"ios": "expo start --ios",
"web": "expo start --web",
"eject": "expo eject"
},
"engines": {
"node": "~14.15.4",
"npm": "~7.5.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/peterdee/deepseen-mobile"
},
"keywords": [
"Deepseen",
"Expo",
"React Native",
"Redux",
"Socket.IO",
"Typescript",
"Websockets"
],
"license": "MIT",
"dependencies": {
"@expo/vector-icons": "^12.0.0",
"@react-native-community/async-storage": "~1.12.0",
"@react-native-community/masked-view": "0.1.10",
"@react-native-community/slider": "3.0.3",
"@react-navigation/bottom-tabs": "^5.8.0",
"@react-navigation/native": "^5.7.3",
"@react-navigation/stack": "^5.9.0",
"axios": "^0.21.1",
"babel-plugin-inline-dotenv": "^1.6.0",
"expo": "^40.0.0",
"expo-asset": "~8.2.1",
"expo-constants": "~9.3.3",
"expo-font": "~8.4.0",
"expo-linking": "~2.0.0",
"expo-splash-screen": "~0.8.1",
"expo-status-bar": "~1.0.3",
"expo-web-browser": "~8.6.0",
"react": "16.13.1",
"react-dom": "16.13.1",
"react-native": "https://github.com/expo/react-native/archive/sdk-40.0.1.tar.gz",
"react-native-gesture-handler": "~1.8.0",
"react-native-reanimated": "2.0.0-rc.0",
"react-native-safe-area-context": "3.1.9",
"react-native-screens": "~2.15.0",
"react-native-svg": "12.1.0",
"react-native-web": "~0.13.12",
"react-redux": "^7.2.2",
"redux": "^4.0.5",
"redux-persist": "^6.0.0",
"socket.io-client": "3.0.4"
},
"devDependencies": {
"@babel/core": "~7.9.0",
"@types/react": "~16.9.35",
"@types/react-native": "~0.63.2",
"@types/react-redux": "^7.1.12",
"@types/redux-logger": "^3.0.8",
"@types/redux-persist": "^4.3.1",
"@types/socket.io-client": "^1.4.34",
"redux-logger": "^3.0.6",
"typescript": "~4.0.0"
}
}