-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
105 lines (105 loc) · 3.38 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
{
"name": "ambry",
"license": "MIT",
"main": "./entry.js",
"version": "1.0.0",
"scripts": {
"start": "APP_VARIANT=development expo start",
"android": "APP_VARIANT=development expo run:android",
"ios": "APP_VARIANT=development expo run:ios",
"prebuild": "APP_VARIANT=development expo prebuild",
"test": "jest --watchAll",
"lint": "expo lint",
"doctor": "bunx expo-doctor",
"expo-upgrade": "bun install expo && bun expo install --fix",
"android-preview": "bunx eas build --platform android --profile preview --local",
"ios-preview": "bunx eas build --platform ios --profile preview --local",
"codegen": "bunx graphql-codegen --config codegen.ts",
"codegen-watch": "bunx graphql-codegen --config codegen.ts --watch",
"generate-migrations": "bunx drizzle-kit generate",
"update-bun-lock-tree": "bun pm ls --all | tail -n +2 | sed 's/\\x1B\\[[0-9;]\\{1,\\}[A-Za-z]//g' > bun.lock.tree"
},
"expo": {
"install": {
"exclude": [
"react-native-screens"
]
},
"doctor": {
"reactNativeDirectoryCheck": {
"exclude": [
"react-native-track-player",
"@react-hook/previous",
"drizzle-orm",
"expo-drizzle-studio-plugin",
"use-debounce"
]
}
}
},
"jest": {
"preset": "jest-expo"
},
"dependencies": {
"@expo/vector-icons": "^14.0.4",
"@react-hook/previous": "^1.0.1",
"@react-native-community/slider": "4.5.5",
"@react-navigation/bottom-tabs": "^7.0.0",
"@react-navigation/native": "^7.0.0",
"drizzle-orm": "^0.38.0",
"expo": "~52.0.20",
"expo-blur": "~14.0.1",
"expo-build-properties": "~0.13.1",
"expo-constants": "~17.0.3",
"expo-dev-client": "~5.0.6",
"expo-drizzle-studio-plugin": "^0.1.0",
"expo-file-system": "~18.0.6",
"expo-haptics": "~14.0.0",
"expo-image": "~2.0.3",
"expo-linking": "~7.0.3",
"expo-router": "~4.0.14",
"expo-secure-store": "~14.0.0",
"expo-splash-screen": "~0.29.18",
"expo-sqlite": "~15.0.3",
"expo-system-ui": "~4.0.6",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-freeze": "^1.0.4",
"react-native": "0.76.5",
"react-native-animateable-text": "^0.14.2",
"react-native-edge-to-edge": "^1.1.3",
"react-native-gesture-handler": "~2.20.2",
"react-native-keyboard-controller": "^1.14.5",
"react-native-markdown-display": "^7.0.2",
"react-native-reanimated": "~3.16.1",
"react-native-safe-area-context": "4.12.0",
"react-native-screens": "^4.0.0",
"react-native-svg": "15.8.0",
"react-native-track-player": "^4.1.1",
"use-debounce": "^10.0.4",
"zustand": "^5.0.2"
},
"devDependencies": {
"@0no-co/graphqlsp": "^1.12.16",
"@babel/core": "^7.26.0",
"@graphql-codegen/cli": "^5.0.3",
"@graphql-codegen/schema-ast": "^4.1.0",
"@parcel/watcher": "^2.5.0",
"@types/jest": "^29.5.14",
"@types/react": "~18.3.12",
"@types/react-test-renderer": "^18.3.0",
"babel-plugin-inline-import": "^3.0.0",
"drizzle-kit": "^0.30.0",
"eslint": "^8.57.1",
"eslint-config-expo": "~8.0.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"jest": "^29.7.0",
"jest-expo": "~52.0.2",
"prettier": "^3.4.2",
"react-native-svg-transformer": "^1.5.0",
"react-test-renderer": "18.3.1",
"typescript": "^5.7.2"
},
"private": true
}