-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathdevbox.json
More file actions
33 lines (33 loc) · 658 Bytes
/
devbox.json
File metadata and controls
33 lines (33 loc) · 658 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
31
32
33
{
"$schema": "https://raw.githubusercontent.com/jetify-com/devbox/0.15.0/.schema/devbox.schema.json",
"packages": [
"nodejs@20",
"gren@0.6",
"nodePackages.prettier@latest"
],
"shell": {
"scripts": {
"build": [
"gren make"
],
"format": [
"prettier . --write"
],
"format:check": [
"prettier . --check"
],
"test": [
"devbox run test:unit",
"devbox run test:integration"
],
"test:unit": [
"cd tests/",
"gren run Main"
],
"test:integration": [
"cd integration-tests/",
"make test"
]
}
}
}