This repository has been archived by the owner on Jun 26, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
99 lines (99 loc) · 3.24 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
{
"name": "dooboo-expo",
"packageManager": "[email protected]",
"main": "node_modules/expo/AppEntry.js",
"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": {
"@dooboo-ui/theme": "^0.11.1",
"@emotion/native": "^11.10.6",
"@emotion/react": "^11.10.6",
"@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/bottom-tabs": "^6.4.1",
"@react-navigation/core": "^6.4.1",
"@react-navigation/material-top-tabs": "^6.3.1",
"@react-navigation/native": "^6.0.14",
"@react-navigation/stack": "^6.3.5",
"dooboo-ui": "^0.2.0-rc.13",
"expo": "^48.0.4",
"expo-asset": "^8.9.0",
"expo-constants": "~14.2.1",
"expo-font": "~11.1.1",
"expo-linking": "~4.0.1",
"expo-localization": "~14.1.1",
"expo-screen-orientation": "~5.1.1",
"expo-splash-screen": "~0.18.1",
"expo-status-bar": "~1.4.4",
"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-vector-icons": "^9.2.0",
"react-native-web": "~0.18.10",
"react-responsive": "^9.0.0",
"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.0.4",
"@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.2.3",
"@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-preset-expo": "^9.3.0",
"babel-preset-react-native": "4.0.1",
"codecov": "^3.8.3",
"eslint": "^8.28.0",
"eslint-plugin-jest": "latest",
"expo-modules-autolinking": "~1.1.0",
"husky": "^8.0.2",
"jest": "^29.3.1",
"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",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
}
}