-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdevbox.json
More file actions
29 lines (29 loc) · 829 Bytes
/
Copy pathdevbox.json
File metadata and controls
29 lines (29 loc) · 829 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
{
"$schema": "https://raw.githubusercontent.com/jetify-com/devbox/main/.schema/devbox.schema.json",
"packages": [
"go@1.26",
"golangci-lint@2.12",
"gofumpt@0.10",
"gitleaks@8.28",
"lychee@0.23",
"markdownlint-cli2@0.21",
"syft@1.18",
"ripgrep@15.1",
"just@1.51",
"nodejs@24",
"pnpm@10.20",
"goreleaser@2.15"
],
"env": {
"DEVBOX_COREPACK_ENABLED": "true"
},
"shell": {
"init_hook": [
"export GOBIN=$PWD/bin",
"export PATH=$GOBIN:$PATH",
"if [ -z \"${CI:-}\" ]; then pnpm install --frozen-lockfile && pnpm exec husky; fi",
"if [ ! -x \"$GOBIN/govulncheck\" ]; then go install golang.org/x/vuln/cmd/govulncheck@latest; fi",
"if [ ! -x \"$GOBIN/gosec\" ]; then go install github.com/securego/gosec/v2/cmd/gosec@latest; fi"
]
}
}