-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
66 lines (66 loc) · 1.89 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": "dayscout-app",
"version": "1.0.0",
"main": "node_modules/expo/AppEntry.js",
"scripts": {
"prepare": "husky install",
"start": "expo start",
"android": "expo start --android",
"ios": "expo start --ios",
"web": "expo start --web",
"prettier": "prettier --write ."
},
"dependencies": {
"@emotion/native": "^11.11.0",
"@emotion/react": "^11.11.1",
"@gorhom/bottom-sheet": "^4.5.1",
"@legendapp/motion": "^2.2.1",
"@react-native-picker/picker": "2.4.10",
"@react-navigation/bottom-tabs": "^6.5.11",
"@react-navigation/drawer": "^6.6.4",
"@react-navigation/elements": "^1.3.21",
"@react-navigation/native": "^6.1.9",
"@react-navigation/native-stack": "^6.9.14",
"@react-navigation/stack": "^6.3.18",
"@tanstack/react-query": "^5.8.4",
"@toss/use-overlay": "^1.3.8",
"axios": "^1.5.1",
"expo": "~49.0.11",
"expo-barcode-scanner": "~12.5.3",
"expo-camera": "~13.4.4",
"expo-font": "~11.4.0",
"expo-secure-store": "~12.3.1",
"expo-splash-screen": "~0.20.5",
"expo-status-bar": "~1.6.0",
"react": "18.2.0",
"react-native": "0.72.6",
"react-native-elements": "^3.4.3",
"react-native-gesture-handler": "~2.12.0",
"react-native-reanimated": "~3.3.0",
"react-native-safe-area-context": "4.6.3",
"react-native-svg": "^14.0.0",
"react-native-vector-icons": "^10.0.2",
"recoil": "^0.7.7",
"use-debounce": "^10.0.0"
},
"devDependencies": {
"@babel/core": "^7.20.0",
"@types/react": "~18.2.14",
"@types/react-native": "^0.72.3",
"husky": "^8.0.3",
"lint-staged": "^15.1.0",
"prettier": "^3.1.0",
"react-native-svg-transformer": "^1.1.0",
"typescript": "^5.1.3"
},
"lint-staged": {
"*.{ts,tsx,js,jsx,json}": [
"yarn prettier"
]
},
"private": true,
"engines": {
"npm": "Please use yarn",
"yarn": ">= 1.22.10"
}
}