-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathnx.json
91 lines (91 loc) · 2.58 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"npmScope": "todo-app",
"implicitDependencies": {
"angular.json": "*",
"package.json": {
"dependencies": "*",
"devDependencies": "*"
},
"tsconfig.json": "*",
"tslint.json": "*",
"nx.json": "*"
},
"projects": {
"api": {
"tags": ["platform:server", "type:application"]
},
"server-user-core-domain": {
"tags": ["platform:server", "scope:user", "type:domain"]
},
"server-user-shell": {
"tags": ["platform:server", "scope:user", "type:shell"]
},
"server-user-infrastructure": {
"tags": ["platform:server", "scope:user", "type:infrastructure"]
},
"todo-app": {
"tags": ["platform:web", "type:application"]
},
"todo-app-e2e": {
"tags": [],
"implicitDependencies": ["todo-app"]
},
"shared-util-array": {
"tags": ["platform:any", "scope:shared", "type:util"]
},
"server-shared-infrastructure": {
"tags": ["platform:server", "scope:shared", "type:infrastructure"]
},
"server-shared-port": {
"tags": ["platform:server", "scope:shared", "type:port"]
},
"cli": {
"tags": ["platform:server", "type:application"]
},
"shared-util-uuid": {
"tags": ["platform:any", "scope:shared", "type:util"]
},
"server-eisenhower-matrix-core-domain": {
"tags": ["platform:server", "scope:eisenhower-matrix", "type:domain"]
},
"server-eisenhower-matrix-shell": {
"tags": ["platform:server", "scope:eisenhower-matrix", "type:shell"]
},
"server-user-ui-rest": {
"tags": ["platform:server", "scope:user", "type:ui"]
},
"server-user-ui-cli": {
"tags": ["platform:server", "scope:user", "type:ui"]
},
"server-eisenhower-matrix-ui-rest": {
"tags": ["platform:server", "scope:eisenhower-matrix", "type:ui"]
},
"server-user-core-domain-services": {
"tags": ["platform:server", "scope:user", "type:domain-services"]
},
"server-eisenhower-matrix-core-domain-services": {
"tags": [
"platform:server",
"scope:eisenhower-matrix",
"type:domain-services"
]
},
"server-user-core-application-services": {
"tags": ["platform:server", "scope:user", "type:application-services"]
},
"server-eisenhower-matrix-core-application-services": {
"tags": [
"platform:server",
"scope:eisenhower-matrix",
"type:application-services"
]
},
"server-eisenhower-matrix-infrastructure": {
"tags": [
"platform:server",
"scope:eisenhower-matrix",
"type:infrastructure"
]
}
}
}