UNPKG

3.61 kBJSONView Raw
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 },
19 "controller": {
20 "factory": "./lib/controller/controller.factory#main",
21 "description": "Create a Nest controller.",
22 "schema": "./lib/controller/schema.json"
23 },
24 "decorator": {
25 "factory": "./lib/decorator/decorator.factory#main",
26 "description": "Create a Nest decorator.",
27 "schema": "./lib/decorator/schema.json"
28 },
29 "filter": {
30 "factory": "./lib/filter/filter.factory#main",
31 "description": "Create a Nest filter.",
32 "schema": "./lib/filter/schema.json"
33 },
34 "gateway": {
35 "factory": "./lib/gateway/gateway.factory#main",
36 "description": "Create a Nest gateway.",
37 "schema": "./lib/gateway/schema.json"
38 },
39 "guard": {
40 "factory": "./lib/guard/guard.factory#main",
41 "description": "Create a Nest guard.",
42 "schema": "./lib/guard/schema.json"
43 },
44 "interceptor": {
45 "factory": "./lib/interceptor/interceptor.factory#main",
46 "description": "Create a Nest interceptor.",
47 "schema": "./lib/interceptor/schema.json"
48 },
49 "interface": {
50 "factory": "./lib/interface/interface.factory#main",
51 "description": "Create a Nest interface.",
52 "schema": "./lib/interface/schema.json"
53 },
54 "middleware": {
55 "factory": "./lib/middleware/middleware.factory#main",
56 "description": "Create a Nest middleware.",
57 "schema": "./lib/middleware/schema.json"
58 },
59 "module": {
60 "factory": "./lib/module/module.factory#main",
61 "description": "Create a Nest module.",
62 "schema": "./lib/module/schema.json"
63 },
64 "pipe": {
65 "factory": "./lib/pipe/pipe.factory#main",
66 "description": "Create a Nest pipe.",
67 "schema": "./lib/pipe/schema.json"
68 },
69 "provider": {
70 "factory": "./lib/provider/provider.factory#main",
71 "description": "Create a Nest provider.",
72 "schema": "./lib/provider/schema.json"
73 },
74 "service": {
75 "factory": "./lib/service/service.factory#main",
76 "description": "Create a Nest service.",
77 "schema": "./lib/service/schema.json"
78 },
79 "resolver": {
80 "factory": "./lib/resolver/resolver.factory#main",
81 "description": "Create a Nest resolver.",
82 "schema": "./lib/resolver/schema.json"
83 },
84 "configuration": {
85 "factory": "./lib/configuration/configuration.factory#main",
86 "description": "Create a Nest CLI configuration."
87 },
88 "library": {
89 "factory": "./lib/library/library.factory#main",
90 "description": "Create a Nest library (mono-repo).",
91 "schema": "./lib/library/schema.json"
92 },
93 "sub-app": {
94 "factory": "./lib/sub-app/sub-app.factory#main",
95 "description": "Create a Nest application (mono-repo).",
96 "schema": "./lib/sub-app/schema.json"
97 },
98 "resource": {
99 "factory": "./lib/resource/resource.factory#main",
100 "description": "Create a Nest resource.",
101 "schema": "./lib/resource/schema.json"
102 }
103 }
104}