-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
18 lines (18 loc) · 802 Bytes
/
package.json
File metadata and controls
18 lines (18 loc) · 802 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{
"name": "gocode",
"private": true,
"workspaces": ["apps/*", "packages/*"],
"devDependencies": {
"vite": "^6.0.0"
},
"scripts": {
"dev": "bun run scripts/dev.ts",
"check": "tsc --noEmit",
"test": "cd apps/server && bun run test",
"test:agent": "cd apps/server && bun run test -- --reporter=verbose src/__tests__/agent.test.ts",
"test:live": "cd apps/server && bun run test -- --test-timeout 120000 src/__tests__/agent.live.test.ts",
"test:all": "bun run test && cd apps/web && bun run test",
"kill": "powershell -NoProfile -Command \"Get-NetTCPConnection -LocalPort 61405,5173 -ErrorAction SilentlyContinue | ForEach-Object { Stop-Process -Id $_.OwningProcess -Force }; Write-Host 'Dev ports freed'\"",
"build:web": "cd apps/web && bun run build"
}
}