forked from futo-org/polycentric
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 994 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 994 Bytes
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
{
"name": "polycentric",
"author": "FUTO",
"packageManager": "pnpm@10.19.0",
"scripts": {
"dev": "turbo run dev",
"build": "turbo run build",
"format": "prettier --check .",
"format:fix": "prettier --write .",
"generate": "turbo run generate",
"lint": "turbo run lint",
"lint:fix": "turbo run lint:fix",
"run:ios": "pnpm -C apps/polycentric run ios",
"run:android": "pnpm -C apps/polycentric run android",
"run:web": "pnpm -C apps/polycentric run web",
"ubrn:android": "pnpm -C packages/react-native ubrn:android",
"ubrn:ios": "sh -c 'if [ \"$(uname -s)\" = Darwin ]; then pnpm -C packages/react-native ubrn:ios; else echo Skipping ubrn:ios: macOS-only build; fi'",
"ubrn": "pnpm ubrn:android && pnpm ubrn:ios"
},
"devDependencies": {
"@types/react": "~19.2.10",
"eslint": "^9.38.0",
"prettier": "^3.8.0",
"turbo": "^2.6.1",
"typescript-eslint": "^8.46.2"
},
"dependencies": {
"expo": "^55.0.15"
}
}