-
Notifications
You must be signed in to change notification settings - Fork 216
/
Copy pathcollection.json
122 lines (122 loc) · 3.97 KB
/
collection.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
{
"$schema": "./node_modules/@angular-devkit/schematics/collection-schema.json",
"schematics": {
"application": {
"factory": "./lib/application/application.factory#main",
"description": "Create a Nest application.",
"schema": "./lib/application/schema.json"
},
"angular-app": {
"factory": "./lib/client-app/angular/angular.factory#main",
"description": "Create a new Angular application.",
"schema": "./lib/client-app/angular/schema.json"
},
"class": {
"factory": "./lib/class/class.factory#main",
"description": "Create a new class.",
"schema": "./lib/class/schema.json",
"aliases": ["cl"]
},
"controller": {
"factory": "./lib/controller/controller.factory#main",
"description": "Create a Nest controller.",
"schema": "./lib/controller/schema.json",
"aliases": ["co"]
},
"decorator": {
"factory": "./lib/decorator/decorator.factory#main",
"description": "Create a Nest decorator.",
"schema": "./lib/decorator/schema.json",
"aliases": ["d"]
},
"filter": {
"factory": "./lib/filter/filter.factory#main",
"description": "Create a Nest filter.",
"schema": "./lib/filter/schema.json",
"aliases": ["f"]
},
"gateway": {
"factory": "./lib/gateway/gateway.factory#main",
"description": "Create a Nest gateway.",
"schema": "./lib/gateway/schema.json",
"aliases": ["ga"]
},
"guard": {
"factory": "./lib/guard/guard.factory#main",
"description": "Create a Nest guard.",
"schema": "./lib/guard/schema.json",
"aliases": ["gu"]
},
"interceptor": {
"factory": "./lib/interceptor/interceptor.factory#main",
"description": "Create a Nest interceptor.",
"schema": "./lib/interceptor/schema.json",
"aliases": ["itc"]
},
"interface": {
"factory": "./lib/interface/interface.factory#main",
"description": "Create a Nest interface.",
"schema": "./lib/interface/schema.json",
"aliases": ["itf"]
},
"middleware": {
"factory": "./lib/middleware/middleware.factory#main",
"description": "Create a Nest middleware.",
"schema": "./lib/middleware/schema.json",
"aliases": ["mi"]
},
"module": {
"factory": "./lib/module/module.factory#main",
"description": "Create a Nest module.",
"schema": "./lib/module/schema.json",
"aliases": ["mo"]
},
"pipe": {
"factory": "./lib/pipe/pipe.factory#main",
"description": "Create a Nest pipe.",
"schema": "./lib/pipe/schema.json",
"aliases": ["pi"]
},
"provider": {
"factory": "./lib/provider/provider.factory#main",
"description": "Create a Nest provider.",
"schema": "./lib/provider/schema.json",
"aliases": ["pr"]
},
"service": {
"factory": "./lib/service/service.factory#main",
"description": "Create a Nest service.",
"schema": "./lib/service/schema.json",
"aliases": ["s"]
},
"resolver": {
"factory": "./lib/resolver/resolver.factory#main",
"description": "Create a Nest resolver.",
"schema": "./lib/resolver/schema.json",
"aliases": ["r"]
},
"configuration": {
"factory": "./lib/configuration/configuration.factory#main",
"description": "Create a Nest CLI configuration.",
"aliases": ["config"]
},
"library": {
"factory": "./lib/library/library.factory#main",
"description": "Create a Nest library (mono-repo).",
"schema": "./lib/library/schema.json",
"aliases": ["lib"]
},
"sub-app": {
"factory": "./lib/sub-app/sub-app.factory#main",
"description": "Create a Nest application (mono-repo).",
"schema": "./lib/sub-app/schema.json",
"aliases": ["app"]
},
"resource": {
"factory": "./lib/resource/resource.factory#main",
"description": "Create a Nest resource.",
"schema": "./lib/resource/schema.json",
"aliases": ["res"]
}
}
}