-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
117 lines (117 loc) · 3.6 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "dooboo-expo-router",
"packageManager": "[email protected]",
"main": "index",
"scripts": {
"build": "rm -rf ./dist && tsc",
"codecov": "codecov",
"fix-dep": "expo-cli doctor --fix-dependencies",
"tsc": "tsc",
"start": "expo start",
"web": "EXPO_WEBPACK_FAST_REFRESH=1 expo web",
"production": "expo start --no-dev",
"android": "expo start --android",
"ios": "expo start --ios",
"eject": "expo eject",
"test": "jest --runInBand",
"lint": "eslint src --ext .ts,.tsx,.js,.jsx"
},
"private": true,
"version": "0.0.0",
"description": "Expo starter from dooboo-cli.",
"author": "hyochan <[email protected]>",
"license": "MIT",
"dependencies": {
"@babel/plugin-proposal-export-namespace-from": "^7.18.9",
"@emotion/native": "^11.10.0",
"@emotion/react": "^11.10.5",
"@expo/config-plugins": "~6.0.0",
"@expo/match-media": "^0.4.0",
"@expo/vector-icons": "^13.0.0",
"@react-native-async-storage/async-storage": "^1.17.11",
"@react-native-masked-view/masked-view": "0.2.8",
"@react-navigation/drawer": "^6.4.4",
"@react-navigation/native": "^6.1.3",
"@supabase/supabase-js": "^2.8.0",
"dooboo-ui": "^0.2.0-rc.3",
"expo": "^48.0.0",
"expo-asset": "~8.9.0",
"expo-auth-session": "~4.0.3",
"expo-constants": "~14.2.1",
"expo-font": "~11.1.1",
"expo-linking": "~4.0.1",
"expo-localization": "~14.1.1",
"expo-router": "1.0.0-rc7",
"expo-screen-orientation": "~5.1.1",
"expo-splash-screen": "~0.18.1",
"expo-status-bar": "~1.4.2",
"expo-web-browser": "~12.1.1",
"i18n-js": "^4.2.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-native": "0.71.3",
"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-url-polyfill": "^1.3.0",
"react-native-vector-icons": "^9.2.0",
"react-native-web": "~0.18.7",
"sentry-expo": "~6.0.0"
},
"devDependencies": {
"@babel/cli": "^7.19.3",
"@babel/core": "^7.20.2",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@commitlint/cli": "^17.3.0",
"@commitlint/config-conventional": "^17.3.0",
"@dooboo/eslint-config-react-native": "^1.1.1",
"@emotion/babel-plugin": "^11.10.5",
"@expo/metro-config": "^0.5.1",
"@expo/webpack-config": "^18.0.1",
"@testing-library/jest-native": "^5.3.0",
"@testing-library/react-native": "^11.5.0",
"@types/expo": "^33.0.1",
"@types/i18n-js": "^3.8.3",
"@types/jest": "^29.4.0",
"@types/react": "^18.0.27",
"@types/react-test-renderer": "^18.0.0",
"@types/relay-test-utils": "^14.1.0",
"@typescript-eslint/eslint-plugin": "^5.44.0",
"babel-plugin-inline-dotenv": "^1.7.0",
"babel-preset-expo": "^9.3.0",
"babel-preset-react-native": "4.0.1",
"codecov": "^3.8.3",
"eslint": "^8.28.0",
"eslint-plugin-jest": "latest",
"husky": "^8.0.2",
"jest": "^29.4.2",
"jest-expo": "^47.0.1",
"jest-fetch-mock": "^3.0.3",
"jetifier": "^2.0.0",
"prettier": "^2.8.0",
"react-test-renderer": "^18.2.0",
"tiny-invariant": "^1.3.1",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"typescript": "^4.9.5",
"typescript-styled-plugin": "^0.18.2"
},
"resolutions": {
"metro": "0.73.7",
"metro-resolver": "0.73.7"
},
"importSort": {
".js, .jsx": {
"style": "eslint",
"options": {}
},
".ts, .tsx": {
"parser": "typescript",
"style": "eslint",
"options": {}
}
}
}