-
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) · 967 Bytes
/
Copy pathpackage.json
File metadata and controls
32 lines (32 loc) · 967 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
{
"name": "workspace",
"version": "0.0.0",
"license": "MIT",
"private": true,
"type": "module",
"workspaces": [
"client/*",
"client/lib/*",
"server/*",
"server/lib/*"
],
"scripts": {
"dev": "concurrently -k -n API,WEB -c cyan,magenta \"npm run dev -w @workspace/api-server\" \"npm run dev -w @workspace/code-defense\"",
"build": "npm run typecheck && npm run build --workspaces --if-present",
"vercel-build": "npm run codegen -w @workspace/api-spec && npm run build -w @workspace/api-server && npm run build -w @workspace/code-defense",
"typecheck:libs": "tsc --build",
"typecheck": "npm run typecheck:libs && npm run typecheck --workspaces --if-present"
},
"devDependencies": {
"concurrently": "^9.2.1",
"prettier": "^3.8.1",
"typescript": "~5.9.2"
},
"overrides": {
"@esbuild-kit/esm-loader": "npm:tsx@^4.21.0",
"esbuild": "0.27.3"
},
"dependencies": {
"pino": "^10.3.1"
}
}