-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathnx.json
More file actions
37 lines (37 loc) · 837 Bytes
/
nx.json
File metadata and controls
37 lines (37 loc) · 837 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
34
35
36
37
{
"npmScope": "ddd-demo",
"implicitDependencies": {
"angular.json": "*",
"package.json": {
"dependencies": "*",
"devDependencies": "*"
},
"tsconfig.json": "*",
"tslint.json": "*",
"nx.json": "*"
},
"projects": {
"flight-app": {
"tags": []
},
"flight-app-e2e": {
"tags": [],
"implicitDependencies": ["flight-app"]
},
"booking-domain": {
"tags": ["domain:booking", "type:domain-logic"]
},
"boarding-domain": {
"tags": ["domain:boarding", "type:domain-logic"]
},
"booking-feature-search": {
"tags": ["domain:booking", "type:feature"]
},
"booking-feature-cancel": {
"tags": ["domain:booking", "type:feature"]
},
"boarding-feature-manage": {
"tags": ["domain:boarding", "type:feature"]
}
}
}