-
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) · 935 Bytes
/
Copy pathdevbox.json
File metadata and controls
29 lines (29 loc) · 935 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/0.15.0/.schema/devbox.schema.json",
"packages": [
"python@3.11",
"uv@latest",
"direnv@latest",
"d2@latest",
"nodejs@20",
"imagemagick@latest",
"bun@latest",
"git@latest"
],
"shell": {
"init_hook": [
"echo 'Welcome to devbox!' > /dev/null",
"echo '🔧 Setting up git hooks...'",
"bash scripts/setup-git-hooks.sh",
"echo '📦 Installing mermaid-cli...'",
"npm install -g @mermaid-js/mermaid-cli"
],
"scripts": {
"test": ["echo \"Error: no test specified\" && exit 1"],
"setup-hooks": ["bash scripts/setup-git-hooks.sh"],
"migrate-giphy": ["cd scripts && python3 migrate_giphy_to_r2.py"],
"migrate-mermaid": ["cd scripts && python3 migrate_mermaid_to_r2.py"],
"migrate-images": ["cd scripts && python3 migrate_images_to_r2.py"]
}
}
}