-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.29 KB
/
Copy pathpackage.json
File metadata and controls
72 lines (72 loc) · 2.29 KB
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
{
"name": "something-sampler",
"version": "1.0.0",
"main": "expo-router/entry",
"scripts": {
"start": "expo start",
"android": "expo start --android",
"ios": "expo start --ios",
"web": "expo start --web",
"format": "prettier . --write",
"format:check": "prettier . --check",
"prepare": "husky",
"storybook-generate": "sb-rn-get-stories",
"storybook": "cross-env EXPO_PUBLIC_STORYBOOK_ENABLED=true expo start -c",
"test": "jest --watch",
"test:ci": "jest",
"eas:dev": "eas build --profile development",
"eas:preview": "eas build --profile preview",
"eas:prod": "eas build --profile production"
},
"dependencies": {
"@babel/core": "^7.28.5",
"@expo/metro-config": "~54.0.12",
"@react-native-async-storage/async-storage": "2.2.0",
"@react-native-community/datetimepicker": "8.4.4",
"@react-native-community/slider": "5.0.1",
"@storybook/react-native": "^10.1.1",
"@tanstack/react-query": "^5.90.16",
"babel-loader": "^8.4.1",
"babel-preset-expo": "^54.0.9",
"expo": "~54.0.29",
"expo-dev-client": "~6.0.20",
"expo-document-picker": "~14.0.8",
"expo-font": "^14.0.10",
"expo-localization": "~17.0.8",
"expo-router": "~6.0.21",
"expo-status-bar": "~3.0.9",
"i18next": "^25.7.3",
"jest-expo": "~54.0.16",
"react": "19.1.0",
"react-dom": "19.1.0",
"react-i18next": "^16.5.0",
"react-native": "0.81.5",
"react-native-audio-api": "^0.11.7",
"react-native-gesture-handler": "~2.28.0",
"react-native-reanimated": "~4.1.1",
"react-native-safe-area-context": "~5.6.0",
"react-native-screens": "~4.16.0",
"react-native-svg": "15.12.1",
"react-native-worklets": "0.5.1",
"storybook": "^10.1.11",
"zustand": "^5.0.9"
},
"devDependencies": {
"@storybook/addon-ondevice-actions": "^10.1.1",
"@storybook/addon-ondevice-backgrounds": "^10.1.1",
"@storybook/addon-ondevice-controls": "^10.1.1",
"@storybook/react": "^10.1.1",
"@testing-library/react-native": "^13.3.3",
"@types/jest": "29.5.14",
"@types/react": "~19.1.0",
"cross-env": "^10.1.0",
"husky": "^9.1.7",
"prettier": "^3.7.4",
"react-test-renderer": "19.1.0",
"typescript": "~5.9.2"
},
"overrides": {
"react-test-renderer": "19.1.0"
},
"private": true
}