-
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathdevbox.json
More file actions
30 lines (30 loc) · 724 Bytes
/
Copy pathdevbox.json
File metadata and controls
30 lines (30 loc) · 724 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
30
{
"$schema": "https://raw.githubusercontent.com/jetify-com/devbox/0.13.5/.schema/devbox.schema.json",
"packages": [
"nodejs@22",
"gren@0.6",
"nodePackages.prettier@latest",
"just@latest"
],
"shell": {
"init_hook": ["echo 'Welcome to devbox!' > /dev/null"],
"scripts": {
"format": "prettier -w \"!**/*.json\" .",
"format:check": "prettier -c \"!**/*.json\" .",
"test": [
"cd tests/",
"./run-tests.sh",
"cd ../integration-tests",
"./run-tests.sh"
],
"test:unit": [
"cd tests/",
"./run-tests.sh"
],
"test:integration": [
"cd integration-tests/",
"./run-tests.sh"
]
}
}
}