-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathproject.json
More file actions
33 lines (33 loc) · 784 Bytes
/
project.json
File metadata and controls
33 lines (33 loc) · 784 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
{
"name": "@living-architecture/source",
"targets": {
"lint-md": {
"executor": "nx:run-commands",
"options": {
"command": "pnpm lint:md",
"cwd": "{workspaceRoot}"
}
},
"depcruise": {
"executor": "nx:run-commands",
"options": {
"command": "pnpm depcruise",
"cwd": "{workspaceRoot}"
}
},
"knip": {
"executor": "nx:run-commands",
"options": {
"command": "pnpm knip",
"cwd": "{workspaceRoot}"
}
},
"role-check": {
"executor": "nx:run-commands",
"options": {
"command": "pnpm exec tsx packages/riviere-role-enforcement/src/bin.ts packages/riviere-cli/role-enforcement.config.json",
"cwd": "{workspaceRoot}"
}
}
}
}