-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
47 lines (47 loc) · 1.18 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
{
"name": "monorepo",
"author": "Kacper Grzeszczyk",
"engines": {
"node": ">=20.12.0"
},
"keywords": [],
"private": true,
"devDependencies": {
"@biomejs/biome": "1.8.3",
"husky": "^9.1.4",
"lint-staged": "^15.2.7",
"turbo": "latest",
"typescript": "~5.3.3"
},
"workspaces": [
"apps/*",
"apps/clones/*",
"packages/@common/*",
"packages/@expo/*",
"packages/@mobile/*"
],
"scripts": {
"check": "biome check && bun tsc",
"format": "biome format",
"lint": "biome lint",
"prepare": "husky",
"sherif": "npx sherif",
"dev": "turbo run dev",
"test": "turbo run test",
"tsc": "tsc --build"
},
"lint-staged": {
"*.ts": ["biome check --apply"],
"*.tsx": ["biome check --apply"]
},
"patchedDependencies": {
"@th3rdwave/react-navigation-bottom-sheet@0.3.2": "patches/@th3rdwave%2Freact-navigation-bottom-sheet@0.3.2.patch",
"expo-router@3.5.17": "patches/expo-router@3.5.17.patch",
"react-native-mmkv@3.0.0-beta.7": "patches/react-native-mmkv@3.0.0-beta.7.patch"
},
"packageManager": "^bun@1.0.18",
"dependencies": {
"constate": "^3.3.2",
"lucide-react-native": "^0.427.0"
}
}