-
Notifications
You must be signed in to change notification settings - Fork 5
/
nx.json
55 lines (55 loc) · 1.33 KB
/
nx.json
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"npmScope": "hbx",
"implicitDependencies": {
"angular.json": "*",
"package.json": {
"dependencies": "*",
"devDependencies": "*"
},
"tsconfig.json": "*",
"tslint.json": "*",
"nx.json": "*"
},
"projects": {
"admin": {
"tags": ["type:app", "scope:admin"],
"implicitDependencies": ["theme"]
},
"admin-e2e": {
"tags": ["type:e2e", "scope:admin"],
"implicitDependencies": ["admin"]
},
"theme": {
"tags": ["type:theme", "scope:shared"]
},
"design-system": {
"tags": ["type:app", "scope:design-system"],
"implicitDependencies": ["theme"]
},
"design-system-e2e": {
"tags": ["type:e2e", "scope:design-system"],
"implicitDependencies": ["design-system"]
},
"api-interfaces": {
"tags": ["type:util", "scope:shared"]
},
"admin-agencies-data-access": {
"tags": ["type:data-access", "scope:admin"]
},
"admin-agencies-feature": {
"tags": ["type:feature", "scope:admin"]
},
"admin-shared-view-models": {
"tags": ["scope:admin", "type:util"]
},
"admin-shell": {
"tags": ["scope:admin", "type:feature"]
},
"utils-testing": {
"tags": ["type:util", "scope:shared"]
},
"admin-shared-ui-components": {
"tags": ["type:ui", "scope:admin"]
}
}
}