-
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) · 826 Bytes
/
Copy pathpackage.json
File metadata and controls
34 lines (34 loc) · 826 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
31
32
33
34
{
"name": "sarvavaidya",
"private": true,
"packageManager": "pnpm@10.17.1",
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"dev": "concurrently --kill-others -n server,web -c blue,green \"pnpm run dev:server\" \"pnpm run dev:web\"",
"dev:web": "pnpm --filter @vox/web dev",
"dev:server": "pnpm --filter @vox/server dev",
"build": "pnpm --filter @vox/web build",
"test": "pnpm --filter @vox/server test"
},
"devDependencies": {
"concurrently": "^9.1.2",
"typescript": "^5.7.3"
},
"dependencies": {
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-separator": "^1.1.8"
},
"pnpm": {
"onlyBuiltDependencies": [
"@prisma/client",
"@prisma/engines",
"@scarf/scarf",
"esbuild",
"prisma",
"protobufjs"
]
}
}