-
Notifications
You must be signed in to change notification settings - Fork 6
/
nx.json
130 lines (130 loc) · 3.57 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
{
"npmScope": "component-store-playground",
"affected": {
"defaultBase": "main"
},
"implicitDependencies": {
"angular.json": "*",
"package.json": {
"dependencies": "*",
"devDependencies": "*"
},
"tsconfig.base.json": "*",
"tslint.json": "*",
".eslintrc.json": "*",
"nx.json": "*"
},
"tasksRunnerOptions": {
"default": {
"runner": "@nrwl/workspace/tasks-runners/default",
"options": {
"cacheableOperations": ["build", "lint", "test", "e2e"]
}
}
},
"projects": {
"playground": {
"tags": ["scope:playground", "type:application"]
},
"playground-auth-feature": {
"tags": ["scope:auth", "type:ui"]
},
"playground-e2e": {
"tags": [],
"implicitDependencies": ["playground"]
},
"playground-fetch-demo-data-access": {
"tags": ["scope:fetch-demo", "type:data-access"]
},
"playground-fetch-demo-feature-client-side-filter": {
"tags": ["scope:fetch-demo", "type:ui"]
},
"playground-fetch-demo-feature-detail": {
"tags": ["scope:fetch-demo", "type:ui"]
},
"playground-fetch-demo-feature-list": {
"tags": ["scope:fetch-demo", "type:ui"]
},
"playground-fetch-demo-feature-shell": {
"tags": ["scope:fetch-demo", "type:ui"]
},
"playground-fetch-demo-ui-paginator": {
"tags": ["scope:fetch-demo", "type:ui"]
},
"playground-fetch-demo-ui-pokemon-card": {
"tags": ["scope:fetch-demo", "type:ui"]
},
"playground-forms-demo-data-access": {
"tags": ["scope:forms-demo", "type:data-access"]
},
"playground-forms-demo-feature-details": {
"tags": ["scope:forms-demo", "type:ui"]
},
"playground-forms-demo-feature-list": {
"tags": ["scope:forms-demo", "type:ui"]
},
"playground-forms-demo-feature-shell": {
"tags": ["scope:forms-demo", "type:ui"]
},
"playground-home-feature": {
"tags": ["scope:home", "type:ui"]
},
"playground-shell": {
"tags": ["scope:playground", "type:ui"]
},
"playground-todos-data-access": {
"tags": ["scope:todos", "type:data-access"]
},
"playground-todos-feature": {
"tags": ["scope:todos", "type:ui"]
},
"playground-workflows-data-access": {
"tags": ["scope:workflows", "type:data-access"]
},
"playground-workflows-feature-details": {
"tags": ["scope:workflows", "type:ui"]
},
"playground-workflows-feature-list": {
"tags": ["scope:workflows", "type:ui"]
},
"playground-workflows-feature-shell": {
"tags": ["scope:workflows", "type:ui"]
},
"playground-workflows-util": {
"tags": ["scope:workflows", "type:util"]
},
"shared-data-access-idb": {
"tags": ["scope:playground", "type:data-access"]
},
"shared-data-access-models": {
"tags": ["scope:playground", "type:data-access"]
},
"shared-data-access-ui-store": {
"tags": ["scope:playground", "type:data-access"]
},
"shared-ui-footer": {
"tags": ["scope:playground", "type:ui"]
},
"shared-ui-forms": {
"tags": ["scope:playground", "type:ui"]
},
"shared-ui-header": {
"tags": ["scope:playground", "type:ui"]
},
"shared-ui-icon": {
"tags": ["scope:playground", "type:ui"]
},
"shared-ui-loading": {
"tags": ["scope:playground", "type:ui"]
},
"shared-ui-page": {
"tags": ["scope:playground", "type:ui"]
},
"shared-ui-sidenav": {
"tags": ["scope:playground", "type:ui"]
},
"shared-util-rx": {
"tags": ["scope:playground", "type:util"]
}
}
}