-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 1.27 KB
/
package.json
File metadata and controls
30 lines (30 loc) · 1.27 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
{
"name": "vercount-workspace",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "pnpm --dir apps/web dev",
"build": "pnpm --dir apps/web build",
"start": "pnpm --dir apps/web start",
"lint": "pnpm --dir apps/web lint",
"db:generate": "pnpm --dir apps/web db:generate",
"db:migrate": "pnpm --dir apps/web db:migrate",
"api:dev": "pnpm --dir apps/web exec node ./scripts/build-client.mjs && sh -c 'cd apps/api && go run .'",
"api:build": "pnpm --dir apps/web exec node ./scripts/build-client.mjs && sh -c 'cd apps/api && go build ./...'",
"api:docker:build": "docker build -f apps/api/Dockerfile -t vercount-api:local .",
"api:compose": "docker compose -f compose.yaml up -d",
"api:compose:local": "docker compose -f compose.local.yaml up --build",
"api:compose:down": "docker compose -f compose.yaml down --remove-orphans",
"api:compose:local:down": "docker compose -f compose.local.yaml down --remove-orphans",
"core:build": "pnpm --dir packages/core build",
"core:lint": "pnpm --dir packages/core lint",
"react:build": "pnpm --dir packages/react build",
"react:lint": "pnpm --dir packages/react lint"
},
"pnpm": {
"overrides": {
"@types/react": "19.1.8",
"@types/react-dom": "19.1.6"
}
}
}