-
Notifications
You must be signed in to change notification settings - Fork 3.9k
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.91 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.91 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "multica",
"version": "0.2.0",
"private": true,
"type": "module",
"scripts": {
"dev:web": "turbo dev --filter=@multica/web",
"dev:docs": "turbo dev --filter=@multica/docs",
"dev:desktop": "turbo dev --filter=@multica/desktop",
"dev:desktop:staging": "turbo dev:staging --filter=@multica/desktop",
"dev:mobile": "pnpm -C apps/mobile dev",
"dev:mobile:staging": "pnpm -C apps/mobile dev:staging",
"dev:mobile:prod": "pnpm -C apps/mobile dev:prod",
"ios:mobile": "pnpm -C apps/mobile ios",
"ios:mobile:staging": "pnpm -C apps/mobile ios:staging",
"ios:mobile:prod": "pnpm -C apps/mobile ios:prod",
"ios:mobile:device": "pnpm -C apps/mobile ios:device",
"ios:mobile:device:staging": "pnpm -C apps/mobile ios:device:staging",
"ios:mobile:device:staging:release": "pnpm -C apps/mobile ios:device:staging:release",
"ios:mobile:device:prod": "pnpm -C apps/mobile ios:device:prod",
"ios:mobile:device:prod:release": "pnpm -C apps/mobile ios:device:prod:release",
"build": "turbo build --filter=!@multica/mobile",
"typecheck": "turbo typecheck --filter=!@multica/mobile",
"test": "turbo test --filter=!@multica/mobile",
"lint": "turbo lint --filter=!@multica/mobile",
"clean": "turbo clean && rm -rf node_modules",
"ui:add": "cd packages/ui && npx shadcn@latest add",
"generate:reserved-slugs": "node scripts/generate-reserved-slugs.mjs"
},
"packageManager": "pnpm@10.28.2",
"pnpm": {
"onlyBuiltDependencies": [
"esbuild",
"electron"
],
"overrides": {
"@types/react": "catalog:",
"@types/react-dom": "catalog:"
}
},
"devDependencies": {
"@playwright/test": "^1.58.2",
"@types/node": "catalog:",
"@types/pg": "^8.20.0",
"pg": "^8.20.0",
"turbo": "^2.5.4",
"typescript": "catalog:"
},
"dependencies": {
"expo": "~55.0.23",
"react": "19.2.0",
"react-native": "0.83.6"
}
}