-
Notifications
You must be signed in to change notification settings - Fork 6
/
templates.json
484 lines (484 loc) · 18.9 KB
/
templates.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
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
{
"$schema": "./templates.schema.json",
"templates": [
{
"name": "NestJS Boilerplate",
"description": "A boilerplate for building backend applications using the NestJS framework with TypeScript, ESLint, and Prettier.",
"url": "https://github.com/Create-Node-App/cna-templates/tree/main/templates/nestjs-starter",
"type": "nestjs-backend",
"category": "Backend Application",
"labels": ["TypeScript", "ESLint", "Prettier", "NestJS"]
},
{
"name": "NextJS Starter",
"description": "A highly opinionated Next.js starter with TypeScript, ESLint, Prettier, and more. Ideal for developers who want to quickly start building applications with Next.js.",
"url": "https://github.com/Create-Node-App/cna-templates/tree/main/templates/nextjs-starter",
"type": "nextjs",
"category": "FullStack Application",
"labels": ["TypeScript", "ESLint", "Prettier", "Next.js"],
"customOptions": [
{
"name": "srcDir",
"type": "text",
"message": "Subdirectory to put all source content (e.g., `src`). Leave blank to use the root directory.",
"initial": "src"
},
{
"name": "projectImportPath",
"type": "text",
"message": "Import alias to use for the project, e.g., `@/`",
"initial": "@/"
}
]
},
{
"name": "Turborepo Boilerplate",
"description": "A highly opinionated monorepo boilerplate with TypeScript, ESLint, Prettier, and more. Ideal for developers who want to quickly start working with a monorepo.",
"url": "https://github.com/Create-Node-App/cna-templates/tree/main/templates/turborepo-starter",
"type": "monorepo",
"category": "Monorepo Boilerplate",
"labels": [
"TypeScript",
"ESLint",
"Prettier",
"Turborepo",
"Workspaces",
"Changesets"
],
"customOptions": [
{
"name": "scope",
"type": "text",
"message": "Scope to use for the packages, e.g., `@my-org/`",
"initial": "",
"required": false
}
]
},
{
"name": "React Vite Boilerplate",
"description": "A highly opinionated React boilerplate with Vite, TypeScript, ESLint, Prettier, and more. Ideal for developers who want to quickly start building applications with React.",
"url": "https://github.com/Create-Node-App/cna-templates/tree/main/templates/react-vite-starter",
"type": "react",
"category": "Frontend Application",
"labels": [
"React",
"Vite",
"TypeScript",
"ESLint",
"Prettier",
"React Router"
],
"customOptions": [
{
"name": "srcDir",
"type": "text",
"message": "Subdirectory to put all source content (e.g., `src`, `app`). Leave blank to use the root directory.",
"initial": "src"
},
{
"name": "projectImportPath",
"type": "text",
"message": "Import alias to use for the project, e.g., `@/`",
"initial": "@/"
}
]
},
{
"name": "Web Extension React Boilerplate",
"description": "A highly opinionated WebExtension boilerplate with React, Vite, TypeScript, ESLint, Prettier, and more. Ideal for developers who want to quickly start building WebExtensions.",
"url": "https://github.com/Create-Node-App/cna-templates/tree/main/templates/webextension-react-vite-starter",
"type": "webextension-react",
"category": "Web Extension",
"labels": [
"WebExtension",
"Hot Module Replacement",
"WebExtension Polyfill",
"React",
"Vite",
"TypeScript",
"ESLint",
"Prettier"
],
"customOptions": [
{
"name": "srcDir",
"type": "text",
"message": "Subdirectory to put all source content (e.g., `src`, `app`). Leave blank to use the root directory.",
"initial": "src"
},
{
"name": "projectImportPath",
"type": "text",
"message": "Import alias to use for the project, e.g., `@/`",
"initial": "@/"
}
]
},
{
"name": "WebdriverIO Boilerplate",
"description": "A highly opinionated WebdriverIO boilerplate with TypeScript, ESLint, Prettier, Selenoid, and more. Ideal for developers who want to quickly start writing WebdriverIO tests.",
"url": "https://github.com/Create-Node-App/cna-templates/tree/main/templates/wdio-starter",
"type": "webdriverio",
"category": "User Acceptance Testing",
"labels": ["WebdriverIO", "TypeScript", "ESLint", "Prettier", "Selenoid"]
}
],
"extensions": [
{
"name": "GitHub Setup",
"description": "This extension adds GitHub setup to your project including GitHub Actions, Dependabot, Issue Templates, Pull Request Templates, and more.",
"url": "https://github.com/Create-Node-App/cna-templates/tree/main/extensions/all-github-setup",
"type": [
"sls",
"react",
"webextension-react",
"monorepo",
"backend",
"nestjs-backend",
"nextjs"
],
"category": "Tooling",
"labels": [
"GitHub",
"GitHub Actions",
"Dependabot",
"Issue Templates",
"Pull Request Templates"
]
},
{
"name": "GitHub Setup for User Acceptance Testing",
"description": "This extension adds GitHub setup to your project including GitHub Actions, Dependabot, Issue Templates, Pull Request Templates, and more. It also adds a GitHub Action to run User Acceptance Tests using Selenium.",
"url": "https://github.com/Create-Node-App/cna-templates/tree/main/extensions/wdio-github-setup",
"type": ["webdriverio"],
"category": "Tooling",
"labels": [
"GitHub",
"GitHub Actions",
"Dependabot",
"Issue Templates",
"Pull Request Templates",
"Selenium",
"User Acceptance Testing"
]
},
{
"name": "Husky + Lint Staged",
"description": "Extension to add Husky and Lint Staged to your project",
"url": "https://github.com/Create-Node-App/cna-templates/tree/main/extensions/all-husky-lint-staged",
"type": [
"sls",
"react",
"webextension-react",
"webdriverio",
"backend",
"nestjs-backend",
"nextjs"
],
"category": "Tooling",
"labels": ["Husky", "Lint Staged"]
},
{
"name": "Husky + Lint Staged",
"description": "Extension to add Husky and Lint Staged to your project",
"url": "https://github.com/Create-Node-App/cna-templates/tree/main/extensions/monorepo-husky-lint-staged",
"type": ["monorepo"],
"category": "Tooling",
"labels": ["Husky", "Lint Staged"]
},
{
"name": "Development Container",
"description": "Add a development container setup to your TypeScript project",
"url": "https://github.com/Create-Node-App/cna-templates/tree/main/extensions/all-devcontainer",
"type": ["sls", "react", "webextension-react", "monorepo", "webdriverio", "backend", "nestjs-backend", "nextjs"],
"category": "Tooling",
"labels": ["Development Container", "VSCode", "Docker"]
},
{
"name": "Jest + React Testing Library",
"description": "Extension to add Jest and React Testing Library",
"url": "https://github.com/Create-Node-App/cna-templates/tree/main/extensions/react-testing-library-with-jest",
"type": ["react", "webextension-react", "nextjs"],
"category": "Tooling",
"labels": ["Jest", "React Testing Library"]
},
{
"name": "React i18n",
"description": "Extension to add i18n setup using react-i18n and async backend with locale and timezone support",
"url": "https://github.com/Create-Node-App/cna-templates/tree/main/extensions/react-i18n",
"type": "react",
"category": "Tooling",
"labels": ["i18n", "react-i18n", "async backend", "locale", "timezone"]
},
{
"name": "TanStack React Query",
"description": "High-quality open-source software for web developers.",
"url": "https://github.com/Create-Node-App/cna-templates/tree/main/extensions/react-query",
"type": "react",
"category": "State Management",
"labels": [
"TanStack",
"React Query",
"State Management",
"Asynchronous State Management",
"stale-while-revalidate"
]
},
{
"name": "React Hook Form",
"description": "Extension to add React Hook Form, a performant, flexible and extensible forms with easy-to-use validation.",
"url": "https://github.com/Create-Node-App/cna-templates/tree/main/extensions/react-hook-form",
"type": "react",
"category": "State Management",
"labels": ["React Hook Form", "State Management", "Form Validation"]
},
{
"name": "Recoil.js",
"description": "Extension to add Recoil.js, a state management library for React that lets you a data-flow graph that flows from atoms",
"url": "https://github.com/Create-Node-App/cna-templates/tree/main/extensions/react-recoil",
"type": "react",
"category": "State Management",
"labels": ["Recoil.js", "State Management", "Atomic State Management"]
},
{
"name": "Jotai",
"description": "Extension to add Jotai, a small and fast state management library for React",
"url": "https://github.com/Create-Node-App/cna-templates/tree/main/extensions/react-jotai",
"type": "react",
"category": "State Management",
"labels": ["Jotai", "State Management", "Atomic State Management"]
},
{
"name": "Easy State",
"description": "Extension to add Easy State, a tiny state management library for React",
"url": "https://github.com/Create-Node-App/cna-templates/tree/main/extensions/react-easy-state",
"type": "react",
"category": "State Management",
"labels": ["Easy State", "State Management", "React Hooks"]
},
{
"name": "Global State",
"description": "Extension to add Global State, a tiny state management library for React",
"url": "https://github.com/Create-Node-App/cna-templates/tree/main/extensions/react-global-state",
"type": "react",
"category": "State Management",
"labels": ["Global State", "State Management", "React Hooks"]
},
{
"name": "Hookstate",
"description": "Extension to add Hookstate, a tiny state management library for React",
"url": "https://github.com/Create-Node-App/cna-templates/tree/main/extensions/react-hookstate",
"type": "react",
"category": "State Management",
"labels": ["Hookstate", "State Management", "React Hooks"]
},
{
"name": "MobX",
"description": "Extension to add MobX, a tiny state management library for React",
"url": "https://github.com/Create-Node-App/cna-templates/tree/main/extensions/react-mobx",
"type": "react",
"category": "State Management",
"labels": ["MobX", "State Management", "Bidirectional State Management"]
},
{
"name": "Teaful",
"description": "Extension to add Teaful, a tiny state management library for React",
"url": "https://github.com/Create-Node-App/cna-templates/tree/main/extensions/react-teaful",
"type": "react",
"category": "State Management",
"labels": ["Teaful", "State Management", "React Hooks"]
},
{
"name": "Valtio",
"description": "Extension to add Valtio, a tiny state management library for React",
"url": "https://github.com/Create-Node-App/cna-templates/tree/main/extensions/react-valtio",
"type": "react",
"category": "State Management",
"labels": ["Valtio", "State Management", "Bidirectional State Management"]
},
{
"name": "XState",
"description": "Extension to add XState, a tiny state management library for React",
"url": "https://github.com/Create-Node-App/cna-templates/tree/main/extensions/react-xstate",
"type": "react",
"category": "State Management",
"labels": ["XState", "State Management", "Finite State Machines"]
},
{
"name": "Zustand",
"description": "Extension to add Zustand, a tiny state management library for React",
"url": "https://github.com/Create-Node-App/cna-templates/tree/main/extensions/react-zustand",
"type": "react",
"category": "State Management",
"labels": [
"Zustand",
"State Management",
"Unidirectional State Management"
]
},
{
"name": "React Redux with Redux Saga",
"description": "Extension to add the official React bindings for Redux with a fully configured store using Redux Saga",
"url": "https://github.com/Create-Node-App/cna-templates/tree/main/extensions/react-redux-saga",
"type": "react",
"category": "State Management",
"labels": [
"React",
"State Management",
"Unidirectional State Management",
"Redux",
"React Redux",
"Redux Saga"
]
},
{
"name": "React Redux with Redux Thunk",
"description": "Extension to add the official React bindings for Redux with a fully configured store using Redux Thunk",
"url": "https://github.com/Create-Node-App/cna-templates/tree/main/extensions/react-redux-thunk",
"type": "react",
"category": "State Management",
"labels": [
"React",
"State Management",
"Unidirectional State Management",
"Redux",
"React Redux",
"Redux Thunk"
]
},
{
"name": "Cross Platform Apps with Ionic React + Capacitor",
"description": "Add Ionic React and Capacitor to your cross platform react app",
"url": "https://github.com/Create-Node-App/cna-templates/tree/main/extensions/react-ionic",
"type": "react",
"category": "Cross Platform",
"labels": ["Ionic", "Capacitor", "React", "Cross Platform"]
},
{
"name": "Docker Compose Setup",
"description": "Add docker environments for development and production to your project setup with docker-compose",
"url": "https://github.com/Create-Node-App/cna-templates/tree/main/extensions/react-compose",
"type": "react",
"category": "Tooling",
"labels": [
"Docker",
"Docker Compose",
"React",
"Next",
"Production",
"Development"
]
},
{
"name": "Android Tools",
"description": "Avoid using heavy IDEs by installing this extension that creates an elegant tool setup for your android app",
"url": "https://github.com/Create-Node-App/cna-templates/tree/main/extensions/react-android-tools",
"type": "react",
"category": "Cross Platform",
"labels": ["Android", "React", "Android Studio", "Gradle", "Kotlin"]
},
{
"name": "Semantic UI React",
"description": "Extension to add Semantic UI React to your setup",
"url": "https://github.com/Create-Node-App/cna-templates/tree/main/extensions/react-semantic-ui",
"type": "react",
"category": "UI",
"labels": ["React", "Semantic UI", "Semantic UI React", "CSS"]
},
{
"name": "Semantic UI React with Theme",
"description": "Extension to add Semantic UI React to your setup with theme customization",
"url": "https://github.com/Create-Node-App/cna-templates/tree/main/extensions/react-semantic-ui-less",
"type": "react",
"category": "UI",
"labels": [
"React",
"Semantic UI",
"Semantic UI React",
"Less",
"Theme Customization"
]
},
{
"name": "Ant Design for React",
"description": "Extension to add Ant Design React",
"url": "https://github.com/Create-Node-App/cna-templates/tree/main/extensions/react-ant-design",
"type": "react",
"category": "UI",
"labels": ["React", "Ant Design", "Ant Design React"]
},
{
"name": "Bootstrap React",
"description": "Extension to add Bootstrap React",
"url": "https://github.com/Create-Node-App/cna-templates/tree/main/extensions/react-bootstrap",
"type": "react",
"category": "UI",
"labels": ["React", "Bootstrap", "Bootstrap React"]
},
{
"name": "Material UI",
"description": "Extension to add Material UI to your React app",
"url": "https://github.com/Create-Node-App/cna-templates/tree/main/extensions/react-material-ui",
"type": "react",
"category": "UI",
"labels": ["React", "Material UI"]
},
{
"name": "Drizzle ORM SQLite",
"description": "Extension to add Drizzle ORM with SQLite to your NestJS API",
"url": "https://github.com/Create-Node-App/cna-templates/tree/main/extensions/nestjs-drizzle-sqlite",
"type": "nestjs-backend",
"category": "Database",
"labels": ["NestJS", "Drizzle ORM", "SQLite"]
},
{
"name": "Drizzle ORM PostgreSQL",
"description": "Extension to add Drizzle ORM with PostgreSQL to your NestJS API",
"url": "https://github.com/Create-Node-App/cna-templates/tree/main/extensions/nestjs-drizzle-postgres",
"type": "nestjs-backend",
"category": "Database",
"labels": ["NestJS", "Drizzle ORM", "PostgreSQL"]
},
{
"name": "Mongoose ORM MongoDB",
"description": "Extension to add Mongoose ORM with MongoDB to your NestJS API",
"url": "https://github.com/Create-Node-App/cna-templates/tree/main/extensions/nestjs-mongoose",
"type": "nestjs-backend",
"category": "Database",
"labels": ["NestJS", "Mongoose ORM", "MongoDB"]
},
{
"name": "Serverless Framework",
"description": "Extension to add Severless Framework packaging to deploy your NestJS API to AWS Lambda",
"url": "https://github.com/Create-Node-App/cna-templates/tree/main/extensions/nestjs-serverless",
"type": "nestjs-backend",
"category": "Deployment",
"labels": ["NestJS", "Serverless Framework", "AWS lambda", "AWS"]
},
{
"name": "React Million DOM Optimization",
"description": "Extension to add Million DOM Optimization to your React app",
"url": "https://github.com/Create-Node-App/cna-templates/tree/main/extensions/react-million",
"type": "react",
"category": "Tooling",
"labels": ["React", "Million", "Optimization"]
},
{
"name": "OpenAPI",
"description": "Extension to add OpenAPI documentation to your NestJS API",
"url": "https://github.com/Create-Node-App/cna-templates/tree/main/extensions/nestjs-openapi",
"type": "nestjs-backend",
"category": "Tooling",
"labels": ["NestJS", "OpenAPI", "Swagger"]
},
{
"name": "React Electron Vite",
"description": "Add Electron to your cross platform React Vite app",
"url": "https://github.com/Create-Node-App/cna-templates/tree/main/extensions/react-electron-vite",
"type": "react",
"category": "Cross Platform",
"labels": ["React", "Electron", "Vite", "Cross Platform"]
}
]
}