-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathpackage.json
69 lines (69 loc) · 2.12 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
{
"name": "astrale",
"version": "1.0.0",
"private": false,
"scripts": {
"start": "expo start",
"android": "expo start --android",
"ios": "expo start --ios",
"web": "expo start --web",
"eject": "expo eject",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx"
},
"dependencies": {
"@expo/vector-icons": "^13.0.0",
"@react-native-async-storage/async-storage": "^1.17.7",
"@react-native-community/datetimepicker": "6.1.2",
"@react-native-community/masked-view": "0.1.10",
"@react-navigation/bottom-tabs": "^5.11.8",
"@react-navigation/core": "^5.15.2",
"@react-navigation/drawer": "^5.12.4",
"@react-navigation/material-bottom-tabs": "^5.3.14",
"@react-navigation/native": "^5.9.3",
"@react-navigation/stack": "^5.14.3",
"@use-expo/font": "^2.0.0",
"expo": "^45.0.6",
"expo-app-loading": "~2.0.0",
"expo-asset": "~8.5.0",
"expo-blur": "~11.1.0",
"expo-camera": "~12.2.0",
"expo-constants": "~13.1.1",
"expo-linear-gradient": "~11.3.0",
"expo-linking": "^3.1.0",
"expo-local-authentication": "~12.2.0",
"expo-store-review": "~5.2.0",
"expo-notifications": "^0.15.4",
"i18n-js": "^3.8.0",
"prop-types": "^15.7.2",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-native": "0.68.2",
"react-native-gesture-handler": "~2.2.1",
"react-native-paper": "^3.10.1",
"react-native-picker-select": "^7.0.0",
"react-native-safe-area-context": "4.2.4",
"react-native-screens": "~3.11.1",
"react-native-svg": "12.3.0"
},
"devDependencies": {
"@babel/core": "^7.12.9",
"@types/expo-localization": "^3.0.0",
"@types/i18n-js": "^3.8.0",
"@types/react": "~17.0.21",
"@types/react-native": "~0.67.6",
"@typescript-eslint/eslint-plugin": "^2.33.0",
"@typescript-eslint/parser": "^2.33.0",
"babel-preset-expo": "~9.1.0",
"eslint": "^7.0.0",
"eslint-config-universe": "^3.0.0",
"eslint-plugin-react-hooks": "^4.2.0",
"prettier": "^2.0.5",
"typescript": "~4.3.5"
},
"eslintConfig": {
"extends": [
"universe/native",
"plugin:react-hooks/recommended"
]
}
}