-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 2.98 KB
/
Copy pathpackage.json
File metadata and controls
97 lines (97 loc) · 2.98 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
{
"name": "zero-mobile",
"version": "0.1.0",
"private": true,
"description": "Application mobile Ekylibre (React Native + Expo)",
"main": "expo-router/entry",
"scripts": {
"start": "expo start --dev-client",
"start:web": "expo start --web",
"android": "expo run:android",
"ios": "expo run:ios",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"typecheck": "tsc --noEmit",
"test": "jest",
"test:watch": "jest --watch",
"test:ci": "jest --ci --coverage",
"doctor": "expo-doctor",
"prebuild": "expo prebuild --clean",
"build:dev:ios": "eas build --profile development --platform ios",
"build:dev:android": "eas build --profile development --platform android",
"build:pilot": "eas build --profile pilot --platform all",
"submit:pilot": "eas submit --profile pilot --platform all",
"prepare": "husky"
},
"dependencies": {
"@hookform/resolvers": "^3.9.0",
"@lovesworking/watermelondb-expo-plugin-sdk-52-plus": "^1.0.3",
"@maplibre/maplibre-react-native": "^11.3.4",
"@nozbe/watermelondb": "^0.28.0",
"@react-native-community/datetimepicker": "^8.6.0",
"@sentry/react-native": "^7.11.0",
"expo": "~55.0.26",
"expo-constants": "~55.0.0",
"expo-crypto": "^55.0.15",
"expo-dev-client": "~55.0.35",
"expo-file-system": "~55.0.22",
"expo-linking": "~55.0.0",
"expo-localization": "~55.0.15",
"expo-router": "~55.0.16",
"expo-secure-store": "~55.0.14",
"expo-splash-screen": "~55.0.21",
"expo-status-bar": "~55.0.0",
"expo-system-ui": "~55.0.18",
"expo-updates": "~55.0.24",
"i18next": "^24.0.0",
"react": "19.2.0",
"react-dom": "19.2.0",
"react-hook-form": "^7.54.0",
"react-i18next": "^15.0.0",
"react-native": "0.83.6",
"react-native-gesture-handler": "~2.30.1",
"react-native-reanimated": "~4.2.1",
"react-native-safe-area-context": "~5.6.2",
"react-native-screens": "~4.23.0",
"react-native-svg": "15.15.3",
"react-native-worklets": "~0.7.0",
"zod": "^3.23.0",
"zustand": "^5.0.0"
},
"devDependencies": {
"@babel/core": "^7.25.0",
"@babel/plugin-proposal-decorators": "^7.25.0",
"@testing-library/react-native": "^13.0.0",
"@types/jest": "^29.5.14",
"@types/react": "~19.2.0",
"eslint": "^9.0.0",
"eslint-config-expo": "~55.0.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.0",
"expo-doctor": "^1.16.0",
"husky": "^9.1.0",
"jest": "^29.7.0",
"jest-expo": "~55.0.18",
"lint-staged": "^15.2.0",
"prettier": "^3.4.0",
"react-test-renderer": "19.2.0",
"typescript": "~5.9.3"
},
"engines": {
"node": ">=22.13.0"
},
"packageManager": "pnpm@10.0.0",
"expo": {
"doctor": {
"reactNativeDirectoryCheck": {
"exclude": [
"@nozbe/watermelondb",
"@nozbe/simdjson"
],
"listUnknownPackages": false
}
}
}
}