-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.31 KB
/
Copy pathpackage.json
File metadata and controls
81 lines (81 loc) · 2.31 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
73
74
75
76
77
78
79
80
81
{
"name": "my-app",
"version": "1.0.0",
"license": "MIT",
"main": "index.ts",
"scripts": {
"start": "expo start",
"android": "expo run:android --device",
"ios": "expo run:ios --device --no-install",
"lint": "eslint src",
"format": "prettier --write src",
"test": "jest",
"test:e2e": "maestro test e2e",
"prestart:storybook": "sb-rn-get-stories",
"start:storybook": "WITH_STORYBOOK='true' expo start"
},
"dependencies": {
"@tanstack/react-query": "^5.81.5",
"expo": "~53.0.13",
"expo-android-proxyman": "^1.0.1",
"expo-dev-client": "~5.2.2",
"expo-font": "~13.3.1",
"expo-network": "~7.1.5",
"expo-status-bar": "~2.2.3",
"expo-system-ui": "~5.0.9",
"react": "19.0.0",
"react-native": "0.79.4",
"react-native-gesture-handler": "~2.24.0",
"react-native-legal": "^1.3.0",
"react-native-reanimated": "~3.17.4",
"react-native-safe-area-context": "5.4.0",
"react-native-screens": "~4.11.1"
},
"devDependencies": {
"@babel/core": "^7.25.2",
"@dev-plugins/react-query": "^0.3.1",
"@gorhom/bottom-sheet": "^5.1.6",
"@react-native-async-storage/async-storage": "2.1.2",
"@react-native-community/datetimepicker": "8.4.1",
"@react-native-community/slider": "4.5.6",
"@react-native/eslint-config": "0.79.4",
"@storybook/addon-ondevice-actions": "^9.0.14",
"@storybook/addon-ondevice-controls": "^9.0.14",
"@storybook/react-native": "^9.0.14",
"@tanstack/eslint-plugin-query": "^5.81.2",
"@testing-library/react-native": "^13.2.0",
"@types/jest": "^29.5.14",
"@types/react": "~19.0.10",
"babel-loader": "^8.4.1",
"babel-plugin-transform-remove-console": "^6.9.4",
"eslint": "^8.57.1",
"eslint-plugin-testing-library": "^7.5.3",
"jest": "~29.7.0",
"jest-expo": "~53.0.7",
"prettier": "2.8.8",
"react-dom": "19.0.0",
"react-native-launch-arguments": "^4.1.0",
"react-native-svg": "15.11.2",
"storybook": "^9.0.14",
"typescript": "~5.5.4"
},
"expo": {
"doctor": {
"reactNativeDirectoryCheck": {
"listUnknownPackages": false
}
},
"install": {
"exclude": [
"typescript@~5.8.3"
]
}
},
"overrides": {
"react": "19.0.0",
"react-test-renderer": "19.0.0"
},
"engines": {
"node": ">18 <23"
}
}