-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 1.06 KB
/
package.json
File metadata and controls
32 lines (32 loc) · 1.06 KB
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
{
"private": true,
"license": "MIT",
"type": "module",
"scripts": {
"dev": "ult-dev",
"web": "ult-run web",
"ios": "ult-run ios",
"android": "ult-run android",
"i18n:dev": "conc -P 'pnpm:i18n:extract {1}' 'pnpm:i18n:compile {1}' -- --watch",
"i18n:build": "pnpm i18n:extract && pnpm i18n:compile",
"i18n:extract": "lingui extract --clean --config ./build/config/lingui.ts",
"i18n:compile": "lingui compile --config ./build/config/lingui.ts",
"client:dev": "pnpm -F ./client run dev",
"client:build": "pnpm -F ./client run build",
"client:build:web": "pnpm -F ./client run build:web",
"client:build:ios": "pnpm -F ./client run build:ios",
"client:build:android": "pnpm -F ./client run build:android",
"generate": "pnpm -F ./build/config build && pnpm i18n:build",
"postinstall": "pnpm generate"
},
"devDependencies": {
"@lingui/cli": "catalog:",
"concurrently": "^9.2.1",
"ult-scripts": "workspace:*"
},
"engines": {
"node": ">=20",
"pnpm": ">=10"
},
"packageManager": "pnpm@10.13.1"
}