1 | {
|
2 | "$schema": "./node_modules/@angular-devkit/schematics/collection-schema.json",
|
3 | "schematics": {
|
4 | "application": {
|
5 | "factory": "./lib/application/application.factory#main",
|
6 | "description": "Create a Nest application.",
|
7 | "schema": "./lib/application/schema.json"
|
8 | },
|
9 | "angular-app": {
|
10 | "factory": "./lib/client-app/angular/angular.factory#main",
|
11 | "description": "Create a new Angular application.",
|
12 | "schema": "./lib/client-app/angular/schema.json"
|
13 | },
|
14 | "class": {
|
15 | "factory": "./lib/class/class.factory#main",
|
16 | "description": "Create a new class.",
|
17 | "schema": "./lib/class/schema.json",
|
18 | "aliases": ["cl"]
|
19 | },
|
20 | "controller": {
|
21 | "factory": "./lib/controller/controller.factory#main",
|
22 | "description": "Create a Nest controller.",
|
23 | "schema": "./lib/controller/schema.json",
|
24 | "aliases": ["co"]
|
25 | },
|
26 | "decorator": {
|
27 | "factory": "./lib/decorator/decorator.factory#main",
|
28 | "description": "Create a Nest decorator.",
|
29 | "schema": "./lib/decorator/schema.json",
|
30 | "aliases": ["d"]
|
31 | },
|
32 | "filter": {
|
33 | "factory": "./lib/filter/filter.factory#main",
|
34 | "description": "Create a Nest filter.",
|
35 | "schema": "./lib/filter/schema.json",
|
36 | "aliases": ["f"]
|
37 | },
|
38 | "gateway": {
|
39 | "factory": "./lib/gateway/gateway.factory#main",
|
40 | "description": "Create a Nest gateway.",
|
41 | "schema": "./lib/gateway/schema.json",
|
42 | "aliases": ["ga"]
|
43 | },
|
44 | "guard": {
|
45 | "factory": "./lib/guard/guard.factory#main",
|
46 | "description": "Create a Nest guard.",
|
47 | "schema": "./lib/guard/schema.json",
|
48 | "aliases": ["gu"]
|
49 | },
|
50 | "interceptor": {
|
51 | "factory": "./lib/interceptor/interceptor.factory#main",
|
52 | "description": "Create a Nest interceptor.",
|
53 | "schema": "./lib/interceptor/schema.json",
|
54 | "aliases": ["itc"]
|
55 | },
|
56 | "interface": {
|
57 | "factory": "./lib/interface/interface.factory#main",
|
58 | "description": "Create a Nest interface.",
|
59 | "schema": "./lib/interface/schema.json",
|
60 | "aliases": ["itf"]
|
61 | },
|
62 | "middleware": {
|
63 | "factory": "./lib/middleware/middleware.factory#main",
|
64 | "description": "Create a Nest middleware.",
|
65 | "schema": "./lib/middleware/schema.json",
|
66 | "aliases": ["mi"]
|
67 | },
|
68 | "module": {
|
69 | "factory": "./lib/module/module.factory#main",
|
70 | "description": "Create a Nest module.",
|
71 | "schema": "./lib/module/schema.json",
|
72 | "aliases": ["mo"]
|
73 | },
|
74 | "pipe": {
|
75 | "factory": "./lib/pipe/pipe.factory#main",
|
76 | "description": "Create a Nest pipe.",
|
77 | "schema": "./lib/pipe/schema.json",
|
78 | "aliases": ["pi"]
|
79 | },
|
80 | "provider": {
|
81 | "factory": "./lib/provider/provider.factory#main",
|
82 | "description": "Create a Nest provider.",
|
83 | "schema": "./lib/provider/schema.json",
|
84 | "aliases": ["pr"]
|
85 | },
|
86 | "service": {
|
87 | "factory": "./lib/service/service.factory#main",
|
88 | "description": "Create a Nest service.",
|
89 | "schema": "./lib/service/schema.json",
|
90 | "aliases": ["s"]
|
91 | },
|
92 | "resolver": {
|
93 | "factory": "./lib/resolver/resolver.factory#main",
|
94 | "description": "Create a Nest resolver.",
|
95 | "schema": "./lib/resolver/schema.json",
|
96 | "aliases": ["r"]
|
97 | },
|
98 | "configuration": {
|
99 | "factory": "./lib/configuration/configuration.factory#main",
|
100 | "description": "Create a Nest CLI configuration.",
|
101 | "aliases": ["config"]
|
102 | },
|
103 | "library": {
|
104 | "factory": "./lib/library/library.factory#main",
|
105 | "description": "Create a Nest library (mono-repo).",
|
106 | "schema": "./lib/library/schema.json",
|
107 | "aliases": ["lib"]
|
108 | },
|
109 | "sub-app": {
|
110 | "factory": "./lib/sub-app/sub-app.factory#main",
|
111 | "description": "Create a Nest application (mono-repo).",
|
112 | "schema": "./lib/sub-app/schema.json",
|
113 | "aliases": ["app"]
|
114 | },
|
115 | "resource": {
|
116 | "factory": "./lib/resource/resource.factory#main",
|
117 | "description": "Create a Nest resource.",
|
118 | "schema": "./lib/resource/schema.json",
|
119 | "aliases": ["res"]
|
120 | }
|
121 | }
|
122 | }
|