-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
66 lines (66 loc) · 1.88 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": "expo-router-demo",
"version": "1.0.0",
"main": "index",
"scripts": {
"start": "expo start",
"android": "expo start --android",
"ios": "expo start --ios",
"web": "expo start --web",
"lint": "eslint app --ext .ts,.tsx,.js,.jsx"
},
"dependencies": {
"@babel/plugin-proposal-export-namespace-from": "^7.18.9",
"@dooboo-ui/theme": "^0.12.7",
"@emotion/native": "^11.11.0",
"@emotion/react": "^11.11.0",
"@react-native-async-storage/async-storage": "1.17.11",
"@react-navigation/drawer": "^6.6.2",
"dooboo-ui": "^0.2.7",
"expo": "^48.0.17",
"expo-constants": "~14.2.1",
"expo-linking": "~4.0.1",
"expo-localization": "~14.1.1",
"expo-router": "^1.5.3",
"expo-screen-orientation": "~5.1.1",
"expo-splash-screen": "~0.18.2",
"expo-status-bar": "~1.4.4",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-native": "0.71.14",
"react-native-gesture-handler": "~2.9.0",
"react-native-reanimated": "~2.14.4",
"react-native-safe-area-context": "4.5.0",
"react-native-screens": "~3.20.0",
"react-native-svg": "13.4.0",
"react-native-vector-icons": "^9.2.0",
"react-native-web": "~0.18.10",
"sentry-expo": "~6.2.0",
"typescript": "^4.9.4"
},
"devDependencies": {
"@babel/core": "^7.22.1",
"@dooboo/eslint-config-react-native": "^1.2.0",
"@types/react": "~18.0.27",
"@types/react-native": "~0.72.2",
"@typescript-eslint/eslint-plugin": "^5.59.8",
"babel-plugin-transform-imports": "^2.0.0",
"eslint": "^8.41.0",
"eslint-plugin-i18n-json": "^4.0.0",
"eslint-plugin-jest": "^27.2.1",
"jest": "^29.5.0",
"prettier": "^2.8.8"
},
"private": true,
"importSort": {
".js, .jsx": {
"style": "eslint",
"options": {}
},
".ts, .tsx": {
"parser": "typescript",
"style": "eslint",
"options": {}
}
}
}