-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 1.95 KB
/
package.json
File metadata and controls
30 lines (30 loc) · 1.95 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": "hos-intel",
"private": true,
"version": "0.1.0",
"type": "module",
"packageManager": "pnpm@10.28.2",
"scripts": {
"format": "prettier --ignore-unknown --write README.md package.json pnpm-workspace.yaml .dockerignore docker-compose.yml .github/workflows/*.yml scripts/*.mjs command-center/package.json command-center/Dockerfile command-center/next.config.ts command-center/playwright.config.ts command-center/postcss.config.mjs command-center/tailwind.config.ts command-center/tsconfig.json command-center/vitest.config.ts command-center/e2e",
"format:check": "prettier --ignore-unknown --check README.md package.json pnpm-workspace.yaml .dockerignore docker-compose.yml .github/workflows/*.yml scripts/*.mjs command-center/package.json command-center/Dockerfile command-center/next.config.ts command-center/playwright.config.ts command-center/postcss.config.mjs command-center/tailwind.config.ts command-center/tsconfig.json command-center/vitest.config.ts command-center/e2e",
"dev": "pnpm -C command-center dev",
"build": "pnpm -C command-center build",
"start": "pnpm -C command-center start",
"lint": "pnpm -C command-center lint",
"typecheck": "pnpm -C command-center typecheck",
"test": "pnpm -C command-center test",
"test:e2e": "pnpm -C command-center test:e2e",
"test:all": "pnpm lint && pnpm test && pnpm test:e2e",
"docker:build": "docker build -f command-center/Dockerfile -t hos-command-center .",
"docker:up": "docker compose up --build -d command-center",
"docker:down": "docker compose down --remove-orphans",
"health": "curl -fsS http://127.0.0.1:3333/healthz",
"prepare": "node scripts/setup-git-hooks.mjs",
"secrets:scan:staged": "node scripts/scan-staged-secrets.mjs",
"secrets:scan:all": "node scripts/scan-repo-secrets.mjs",
"deploy:check": "pnpm format:check && pnpm lint && pnpm typecheck && pnpm test && pnpm build"
},
"devDependencies": {
"prettier": "^3.6.2"
}
}