-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
107 lines (107 loc) Β· 3.6 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
107
{
"name": "start-ui-native",
"version": "1.2.0",
"private": true,
"main": "expo-router/entry",
"scripts": {
"start": "expo start -c",
"dev": "pnpm start --dev-client",
"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": {
"@babel/preset-env": "7.22.5",
"@config-plugins/react-native-ble-plx": "6.0.0",
"@expo/vector-icons": "14.0.0",
"@formiz/core": "2.0.0-beta.11",
"@formiz/validations": "2.0.0-beta.2",
"@lukemorales/query-key-factory": "1.3.1",
"@react-native-async-storage/async-storage": "1.23.1",
"@tanstack/react-query": "4.29.14",
"@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.0",
"expo-build-properties": "0.13.1",
"expo-constants": "17.0.2",
"expo-dev-client": "5.0.1",
"expo-device": "7.0.1",
"expo-font": "13.0.0",
"expo-linking": "7.0.2",
"expo-router": "4.0.5",
"expo-screen-orientation": "8.0.0",
"expo-splash-screen": "0.28.4",
"expo-status-bar": "2.0.0",
"expo-system-ui": "4.0.1",
"expo-updates": "0.26.4",
"expo-web-browser": "14.0.0",
"i18next": "23.12.2",
"os": "0.1.2",
"prettier": "3.1.1",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-i18next": "15.0.1",
"react-native": "0.76.1",
"react-native-animatable": "1.3.3",
"react-native-ble-plx": "2.0.3",
"react-native-confirmation-code-field": "7.3.2",
"react-native-ficus-ui": "1.3.3",
"react-native-gesture-handler": "2.20.2",
"react-native-localize": "3.3.0",
"react-native-modal": "13.0.1",
"react-native-reanimated": "3.16.1",
"react-native-safe-area-context": "4.12.0",
"react-native-screens": "4.0.0",
"react-native-vector-icons": "10.2.0",
"react-native-web": "0.19.13",
"zod": "3.22.4",
"zustand": "4.4.7"
},
"devDependencies": {
"@babel/core": "7.25.2",
"@babel/preset-env": "7.25.3",
"@babel/runtime": "7.25.0",
"@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.0.1",
"@react-native/babel-preset": "0.76.0",
"@react-native/eslint-config": "0.76.0",
"@react-native/metro-config": "0.76.0",
"@react-native/typescript-config": "0.76.0",
"@storybook/addon-ondevice-actions": "7.6.14",
"@storybook/addon-ondevice-controls": "7.6.14",
"@storybook/react-native": "7.6.14",
"@trivago/prettier-plugin-sort-imports": "4.3.0",
"@types/lodash": "4.14.202",
"@types/react": "18.2.79",
"@typescript-eslint/eslint-plugin": "5.59.5",
"dotenv": "16.3.1",
"eslint": "8.40.0",
"eslint-config-next": "13.2.4",
"eslint-plugin-sonarjs": "0.19.0",
"lodash": "4.17.21",
"openapi-zod-client": "1.13.2",
"react-native-dotenv": "3.4.8",
"tsx": "4.6.2",
"typescript": "5.3.3"
},
"resolutions": {
"react-native-reanimated": "3.16.1",
"@react-native-community/slider": "4.5.4"
}
}