-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 1.36 KB
/
package.json
File metadata and controls
31 lines (31 loc) · 1.36 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
{
"name": "screengraph-monorepo",
"private": true,
"packageManager": "bun@1.3.1",
"workspaces": [
"backend",
"frontend"
],
"scripts": {
"predev": "cd .cursor && task shared:preflight",
"dev": "BACKEND_PORT=${BACKEND_PORT:-4000} FRONTEND_PORT=${FRONTEND_PORT:-5173} turbo run dev --parallel --filter=screengraph-backend --filter=screengraph-frontend",
"dev:backend": "BACKEND_PORT=${BACKEND_PORT:-4000} turbo run dev --filter=screengraph-backend",
"dev:frontend": "FRONTEND_PORT=${FRONTEND_PORT:-5173} turbo run dev --filter=screengraph-frontend",
"task": "cd .cursor && task",
"qa": "cd .cursor && task qa:all",
"qa:smoke": "cd .cursor && task qa:smoke",
"qa:lint": "cd .cursor && task qa:lint",
"qa:typecheck": "cd .cursor && task qa:typecheck",
"qa:unit": "cd .cursor && task qa:unit",
"qa:e2e": "cd .cursor && task qa:e2e",
"test:e2e": "turbo run test:e2e --filter=screengraph-frontend",
"test:e2e:headed": "turbo run test:e2e:headed --filter=screengraph-frontend",
"test:e2e:ci": "turbo run test:e2e:ci --filter=screengraph-frontend",
"test:e2e:ui": "turbo run test:e2e:ui --filter=screengraph-frontend",
"spec:new": "bash .specify/scripts/bash/create-new-feature.sh",
"spec:update": "bash tools/spec-kit/official/scripts/update-claude-md.sh"
},
"devDependencies": {
"turbo": "^2.6.0"
}
}