-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
106 lines (106 loc) Β· 3.54 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
{
"name": "start-ui-native",
"version": "1.2.0",
"private": true,
"main": "expo-router/entry",
"scripts": {
"start": "expo start -c",
"dev": "pnpm start --dev-client",
"dev:go": "pnpm start --go",
"postinstall": "pnpm generate-api",
"generate-api": "mkdir -p ./src/api/ && tsx ./scripts/services-generator.ts",
"android": "expo run:android",
"ios": "expo run:ios",
"lint": "eslint . --fix && tsc --noEmit",
"lint:staged": "tsc --noEmit && eslint --cache --fix",
"pretty": "prettier -w .",
"storybook-generate": "sb-rn-get-stories",
"storybook": "STORYBOOK_ENABLED=true expo start -c"
},
"lint-staged": {
"*.{ts,tsx,js,jsx,json}": "prettier --write",
"*.{ts,tsx,js,jsx}": "pnpm lint:staged"
},
"dependencies": {
"@expo/vector-icons": "14.0.4",
"@formiz/core": "2.4.5",
"@formiz/validations": "2.0.1",
"@lukemorales/query-key-factory": "1.3.4",
"@react-native-async-storage/async-storage": "1.24.0",
"@tanstack/react-query": "4.29.25",
"@zodios/core": "10.9.6",
"@zodios/plugins": "10.6.0",
"@zodios/react": "10.4.5",
"axios": "1.4.0",
"babel-plugin-transform-inline-environment-variables": "0.4.4",
"color": "4.2.3",
"expo": "52.0.27",
"expo-build-properties": "0.13.2",
"expo-constants": "17.0.4",
"expo-dev-client": "5.0.10",
"expo-device": "7.0.2",
"expo-font": "13.0.3",
"expo-linking": "7.0.4",
"expo-localization": "16.0.1",
"expo-router": "4.0.17",
"expo-screen-orientation": "8.0.4",
"expo-splash-screen": "0.28.5",
"expo-status-bar": "2.0.1",
"expo-system-ui": "4.0.7",
"expo-updates": "0.26.13",
"expo-web-browser": "14.0.2",
"i18next": "23.12.7",
"prettier": "3.4.2",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-i18next": "15.0.3",
"react-native": "0.76.6",
"react-native-animatable": "1.3.3",
"react-native-confirmation-code-field": "7.4.0",
"react-native-ficus-ui": "1.3.3",
"react-native-gesture-handler": "2.20.2",
"react-native-modal": "13.0.1",
"react-native-reanimated": "3.16.1",
"react-native-safe-area-context": "4.14.1",
"react-native-screens": "4.5.0",
"react-native-vector-icons": "10.2.0",
"react-native-web": "0.19.13",
"zod": "3.22.5",
"zustand": "4.4.7"
},
"devDependencies": {
"@babel/core": "7.26.7",
"@babel/preset-env": "7.26.7",
"@babel/runtime": "7.26.7",
"@react-native-community/cli": "15.0.1",
"@react-native-community/cli-platform-android": "15.0.1",
"@react-native-community/cli-platform-ios": "15.0.1",
"@react-native-community/datetimepicker": "8.2.0",
"@react-native/babel-preset": "0.76.6",
"@react-native/eslint-config": "0.76.6",
"@react-native/metro-config": "0.76.6",
"@react-native/typescript-config": "0.76.6",
"@storybook/addon-ondevice-actions": "8.5.2",
"@storybook/addon-ondevice-controls": "8.5.2",
"@storybook/react-native": "8.5.2",
"react-native-svg": "15.8.0",
"@gorhom/bottom-sheet": "5.0.4",
"@trivago/prettier-plugin-sort-imports": "4.3.0",
"@types/lodash": "4.17.14",
"@types/react": "18.3.18",
"@typescript-eslint/eslint-plugin": "5.59.11",
"dotenv": "16.3.1",
"eslint": "8.57.1",
"eslint-config-next": "13.5.8",
"eslint-plugin-sonarjs": "0.25.1",
"lodash": "4.17.21",
"openapi-zod-client": "1.13.2",
"react-native-dotenv": "3.4.11",
"tsx": "4.6.2",
"typescript": "5.3.3"
},
"resolutions": {
"react-native-reanimated": "3.16.1",
"@react-native-community/slider": "4.5.4"
}
}