-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.47 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
{
"name": "pho-monorepo",
"version": "0.1.23",
"bin": {
"pho-monorepo": "scripts/init.mjs"
},
"files": [
"scripts/init.mjs"
],
"packageManager": "pnpm@10.2.0",
"scripts": {
"dev": "turbo run dev",
"build": "turbo run build",
"clean": "turbo run clean && rm -rf node_modules",
"lint": "turbo run lint",
"test": "turbo run test",
"patch": "pnpm dlx pnpm-patch-i",
"watchman": "watchman watch-del './' ; watchman watch-project './'",
"format": "prettier --write \"**/*.{ts,tsx,js,jsx,json,md}\" --ignore-path .gitignore",
"deps": "pnpm dlx npm-check-updates --deep -u -x '/^(?:@types/)?react(?:-dom|-test-renderer)?$/' && pnpm install",
"locale": "pnpm run --filter=@repo/i18n-config locale",
"add:ui": "pnpm add --filter=@repo/design",
"add:mobile": "pnpm add --filter=native",
"add:web": "pnpm add --filter=web"
},
"nohoist": [
"**/expo-router",
"**/expo-router/**"
],
"dependencies": {
"chalk": "^5.4.1",
"commander": "^13.1.0"
},
"devDependencies": {
"prettier": "^3.4.2",
"turbo": "^2.4.0"
},
"engines": {
"node": ">=20"
},
"i18n-config": {
"paths": [
"./apps/web",
"./apps/native"
],
"include": [
"./packages/design-system/components"
]
},
"pnpm": {
"patchedDependencies": {
"@react-native/assets-registry": "patches/@react-native__assets-registry.patch",
"react-native-web": "patches/react-native-web.patch"
}
}
}