-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
89 lines (89 loc) · 2.88 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
{
"name": "allin-notes-app",
"version": "0.0.1",
"private": true,
"main": "expo-router/entry",
"scripts": {
"start": "cross-env EXPO_NO_DOTENV=1 expo start",
"s:clear": "cross-env EXPO_NO_DOTENV=1 expo start --clear",
"reinstall": "rm -rf node_modules package-lock.json pnpm-lock.yaml yarn.lock && pnpm i && watchman watch-del \"$(pwd)\" ; watchman watch-project \"$(pwd)\" ; npx expo start -c",
"prebuild": "cross-env EXPO_NO_DOTENV=1 pnpm expo prebuild",
"web": "cross-env EXPO_NO_DOTENV=1 expo start -w",
"doctor": "cross-env EXPO_DOCTOR_SKIP_DEPENDENCY_VERSION_CHECK=true npx expo-doctor@latest",
"preinstall": "npx only-allow pnpm",
"postinstall": "husky install",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"type-check": "tsc --noemit",
"check": "pnpm lint-staged && pnpm type-check",
"lint:translations": "eslint ./src/translations/ --fix --ext .json "
},
"dependencies": {
"@expo/metro-runtime": "^3.2.1",
"@react-navigation/bottom-tabs": "^6.5.20",
"@react-navigation/native": "^6.1.17",
"@react-navigation/native-stack": "^6.9.26",
"@rn-primitives/slot": "^1.0.3",
"@rn-primitives/types": "^1.0.3",
"app-icon-badge": "^0.0.15",
"babel-plugin-inline-import": "^3.0.0",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"expo": "~51.0.36",
"expo-build-properties": "~0.12.1",
"expo-dev-client": "~4.0.27",
"expo-router": "~3.5.14",
"lucide-react": "^0.447.0",
"nativewind": "4.1.10",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-error-boundary": "^3.1.4",
"react-native": "0.75.4",
"react-native-avoid-softinput": "^4.0.2",
"react-native-gesture-handler": "~2.20.0",
"react-native-reanimated": "~3.15.4",
"react-native-safe-area-context": "4.10.5",
"react-native-screens": "~3.34.0",
"react-native-svg": "15.2.0",
"react-native-web": "~0.19.11",
"tailwind-merge": "^2.3.0",
"tailwind-variants": "^0.1.20",
"tailwindcss-animate": "^1.0.7",
"zod": "^3.23.8"
},
"devDependencies": {
"@babel/core": "^7.24.5",
"@expo/config": "~9.0.4",
"@types/react": "~18.2.79",
"babel-plugin-module-resolver": "^5.0.2",
"cross-env": "^7.0.3",
"dotenv": "^16.4.5",
"eslint-plugin-tailwindcss": "^3.15.2",
"metro-babel-register": "^0.73.10",
"np": "^7.7.0",
"tailwindcss": "3.3.2",
"typescript": "^5.6.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/user/repo-name.git"
},
"packageManager": "[email protected]",
"osMetadata": {
"initVersion": "6.0.0"
},
"pnpm": {
"patchedDependencies": {
"@expo/cli": "patches/@expo__cli.patch"
}
},
"expo": {
"install": {
"exclude": [
"react-native@~0.74.0",
"react-native-reanimated@~3.10.0",
"react-native-gesture-handler@~2.16.1",
"react-native-screens@~3.31.1"
]
}
}
}