-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 3.76 KB
/
Copy pathpackage.json
File metadata and controls
101 lines (101 loc) · 3.76 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
94
95
96
97
98
99
100
101
{
"name": "expo-starter",
"version": "0.0.0",
"private": true,
"description": "A lean, production-ready Expo starter with file-based routing, Redux, theming, and a curated set of @rific packages pre-wired.",
"type": "commonjs",
"main": "expo-router/entry",
"scripts": {
"android": "expo run:android",
"build:development": "eas build --profile development --local",
"build:preview": "eas build --profile preview",
"build:production": "eas build --profile production",
"client": "expo start --dev-client",
"doctor": "expo install --fix && expo-doctor",
"fix": "expo lint . --fix",
"ios": "expo run:ios",
"ios:device": "expo run:ios --device",
"lint": "expo lint .",
"prebuild": "expo prebuild --clean",
"reset": "expo start -c",
"run": "eas build:run",
"start": "expo start",
"submit": "eas submit",
"test": "jest",
"test:watch": "jest --watchAll",
"typecheck": "tsc",
"update": "rific-bump-ota src/constants/release.ts && eas update",
"update:development": "npm run update -- --branch development --environment development --message \"$(git log -1 --pretty=%B)\"",
"update:preview": "npm run update -- --branch preview --environment preview --non-interactive --message \"$(git log -1 --pretty=%B)\"",
"update:production": "npm run update -- --branch production --environment production --non-interactive --message \"$(git log -1 --pretty=%B)\"",
"validate": "npm run lint && npm run typecheck && npm run test"
},
"dependencies": {
"@expo/vector-icons": "^15.1.1",
"@react-native-async-storage/async-storage": "2.2.0",
"@reduxjs/toolkit": "^2.12.0",
"@rific/auto-paper": "^0.9.4",
"@rific/drawer": "^0.4.2",
"@rific/feedback-press": "^0.7.0",
"@rific/focus-chain": "^0.4.3",
"@rific/resizable-input": "^0.3.1",
"@rific/scroll-view": "^0.6.5",
"@rific/splash-gate": "^0.1.2",
"@rific/toaster": "^0.4.1",
"@rific/updater": "^0.2.4",
"@shopify/flash-list": "2.0.2",
"expo": "~57.0.13",
"expo-asset": "^57.0.3",
"expo-audio": "~57.0.3",
"expo-blur": "~57.0.2",
"expo-constants": "^57.0.3",
"expo-dev-client": "~57.0.12",
"expo-font": "^57.0.0",
"expo-haptics": "~57.0.1",
"expo-linking": "~57.0.6",
"expo-router": "~57.0.13",
"expo-secure-store": "~57.0.1",
"expo-splash-screen": "~57.0.6",
"expo-system-ui": "~57.0.1",
"expo-updates": "~57.0.14",
"react": "19.2.3",
"react-dom": "19.2.3",
"react-native": "^0.86.0",
"react-native-gesture-handler": "~2.32.0",
"react-native-keyboard-controller": "1.21.9",
"react-native-paper": "^5.15.3",
"react-native-reanimated": "4.5.1",
"react-native-safe-area-context": "~5.7.0",
"react-native-screens": "~4.26.0",
"react-native-web": "^0.21.2",
"react-native-worklets": "0.10.1",
"react-redux": "^9.3.0",
"redux-persist": "^6.0.0"
},
"devDependencies": {
"@babel/core": "^7.29.0",
"@react-native/jest-preset": "^0.86.0",
"@testing-library/react-native": "^14.0.1",
"@types/jest": "29.5.14",
"@types/node": "^26.1.1",
"@types/react": "^19.2.17",
"@typescript-eslint/eslint-plugin": "^8.63.0",
"@typescript-eslint/parser": "^8.63.0",
"eslint": "^9.39.5",
"eslint-config-expo": "^57.0.0",
"eslint-config-prettier": "^10.1.8",
"eslint-import-resolver-typescript": "^4.4.5",
"eslint-plugin-package-json": "^1.7.1",
"eslint-plugin-prettier": "^5.5.6",
"eslint-plugin-react-native": "^5.0.0",
"eslint-plugin-simple-import-sort": "^14.0.0",
"jest": "~29.7.0",
"jest-expo": "~57.0.4",
"prettier": "^3.9.5",
"react-test-renderer": "^19.2.7",
"test-renderer": "^1.2.0",
"ts-node": "^10.9.2",
"typescript": "~6.0.3",
"typescript-eslint": "^8.63.0"
}
}