-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 3.47 KB
/
package.json
File metadata and controls
93 lines (93 loc) · 3.47 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
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "reactnativestarter",
"version": "0.0.1",
"private": true,
"scripts": {
"android": "react-native run-android",
"ios": "react-native run-ios",
"start": "react-native start",
"start-cache": "react-native start --reset-cache",
"test": "jest",
"lint": "tsc && eslint . --ext .js,.jsx,.ts,.tsx",
"postinstall": "npx patch-package",
"clean": "react-native clean --include android,cocoapods,metro,npm,watchman,yarn",
"storybook": "STORYBOOK_ENABLED=true yarn start-cache",
"storybook-generate": "sb-rn-get-stories",
"e2e:build-android-debug": "ENVFILE=.env.e2e detox build -c android.emu.debug",
"e2e:build-android-release": "ENVFILE=.env.e2e detox build -c android.emu.release",
"e2e:run-android-debug": "detox test -c android.emu.debug",
"e2e:run-android-release": "detox test -c android.emu.release",
"e2e:build-ios-debug": "ENVFILE=.env.e2e detox build -c ios.sim.debug",
"e2e:build-ios-release": "ENVFILE=.env.e2e detox build -c ios.sim.release",
"e2e:run-ios-debug": "detox test -c ios.sim.debug",
"e2e:run-ios-release": "detox test -c ios.sim.release"
},
"dependencies": {
"@react-navigation/bottom-tabs": "^6.5.20",
"@react-navigation/drawer": "^6.6.15",
"@react-navigation/native": "^6.1.17",
"@react-navigation/stack": "^6.3.29",
"@tanstack/react-query": "^5.36.2",
"axios": "^1.7.7",
"fast-text-encoding": "^1.0.6",
"nativewind": "^4.0.36",
"qs": "^6.12.1",
"react": "18.3.1",
"react-intl": "^6.6.8",
"react-native": "0.75.3",
"react-native-config": "^1.5.3",
"react-native-drawer-layout": "^3.3.2",
"react-native-gesture-handler": "^2.19.0",
"react-native-mmkv": "^2.12.2",
"react-native-reanimated": "^3.15.1",
"react-native-safe-area-context": "^4.10.9",
"react-native-screens": "^3.34.0",
"react-native-url-polyfill": "^2.0.0",
"tailwind-merge": "^2.3.0"
},
"devDependencies": {
"@babel/core": "^7.24.5",
"@babel/preset-env": "^7.24.5",
"@babel/runtime": "^7.24.5",
"@react-native-async-storage/async-storage": "^1.23.1",
"@react-native-community/datetimepicker": "^8.2.0",
"@react-native-community/slider": "^4.5.2",
"@react-native/babel-preset": "^0.75.3",
"@react-native/eslint-config": "0.75.3",
"@react-native/metro-config": "^0.75.3",
"@react-native/typescript-config": "0.75.3",
"@storybook/addon-ondevice-actions": "^7.6.20",
"@storybook/addon-ondevice-controls": "^7.6.20",
"@storybook/react-native": "^7.6.20",
"@testing-library/jest-native": "^5.4.3",
"@testing-library/react-native": "^12.6.1",
"@tsconfig/react-native": "^3.0.5",
"@types/babel__core": "^7.20.5",
"@types/jest": "^29.5.12",
"@types/node": "^20.16.5",
"@types/qs": "^6.9.15",
"@types/react": "18.3.5",
"@types/react-test-renderer": "^18.3.0",
"babel-jest": "^29.7.0",
"babel-plugin-module-resolver": "^5.0.2",
"babel-plugin-transform-inline-environment-variables": "^0.4.4",
"detox": "^20.27.2",
"eslint": "^8.57.0",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react-native": "^4.1.0",
"jest": "^29.7.0",
"msw": "2.2.14",
"prettier": "2.8.8",
"react-dom": "^18.3.1",
"react-test-renderer": "18.3.1",
"tailwindcss": "3.4.3",
"ts-jest": "^29.1.2",
"typescript": "5.3.3"
},
"engines": {
"node": ">=18"
},
"packageManager": "yarn@4.4.1"
}