-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1.26 KB
/
package.json
File metadata and controls
34 lines (34 loc) · 1.26 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
{
"name": "boilerplate-2026",
"version": "1.0.0",
"private": true,
"scripts": {
"dev:all": "concurrently --names \"web,convex,mobile\" --prefix-colors \"cyan,magenta,green\" \"pnpm dev:web-only\" \"pnpm dev:convex\" \"pnpm dev:mobile-only\"",
"dev:web": "concurrently --names \"web,convex\" --prefix-colors \"cyan,magenta\" \"pnpm dev:web-only\" \"pnpm dev:convex\"",
"dev:web-only": "pnpm --filter @repo/web dev",
"dev:mobile:ios": "concurrently --names \"mobile,convex\" --prefix-colors \"green,magenta\" \"pnpm dev:mobile-only:ios\" \"pnpm dev:convex\"",
"dev:mobile:android": "concurrently --names \"mobile,convex\" --prefix-colors \"green,magenta\" \"pnpm dev:mobile-only:android\" \"pnpm dev:convex\"",
"dev:mobile-only:ios": "pnpm --filter @repo/mobile dev:ios",
"dev:mobile-only:android": "pnpm --filter @repo/mobile dev:android",
"dev:convex": "pnpm exec convex dev",
"build": "turbo build",
"lint": "turbo lint",
"typecheck": "turbo typecheck"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild",
"@tailwindcss/oxide"
],
"overrides": {
"lightningcss": "1.30.1"
}
},
"devDependencies": {
"turbo": "^2.3.0"
},
"dependencies": {
"convex": "^1.31.3",
"concurrently": "^9.2.1"
}
}