forked from Create-Node-App/cna-templates
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtemplates.json
524 lines (524 loc) · 21.7 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
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
{
"$schema": "./templates.schema.json",
"templates": [
{
"name": "Turborepo Boilerplate",
"description": "A highly opinionated mono repo boilerplate with TypeScript, ESLint, Prettier, and more. Aimed at developers who want to get started with a mono repo quickly.",
"url": "https://github.com/Create-Node-App/cna-templates/tree/main/templates/turborepo-starter",
"type": "monorepo",
"category": "Mono repository",
"labels": [
"TypeScript",
"ESLint",
"Prettier",
"Turborepo",
"Workspaces",
"Changesets",
"Husky",
"Lint Staged"
],
"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. Aimed at developers who want to get started with React quickly.",
"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",
"Husky",
"Lint Staged"
],
"customOptions": [
{
"name": "srcDir",
"type": "text",
"message": "Sub directory 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. Aimed at developers who want to get started with WebExtension quickly.",
"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",
"Husky",
"Lint Staged"
],
"customOptions": [
{
"name": "srcDir",
"type": "text",
"message": "Sub directory 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. Aimed at developers who want to get started with WebdriverIO quickly.",
"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",
"Husky",
"Lint Staged"
]
},
{
"name": "AWS AppSync + TypeScript",
"description": "Serverless Framework example to deploy an AWS AppSync API using TypeScript. It also has a local development environment using [Serverless Offline](https://www.serverless.com/plugins/serverless-offline).",
"url": "https://github.com/nanlabs/devops-reference/tree/main/examples/serverless-appsync-node-typescript",
"type": "sls",
"category": "Serverless Framework based application",
"labels": ["Serverless Framework", "AWS AppSync", "TypeScript"]
},
{
"name": "AWS AppSync + Python",
"description": "Serverless Framework example to deploy an AWS AppSync API using Python. It also has a local development environment using [Serverless Offline](https://www.serverless.com/plugins/serverless-offline).",
"url": "https://github.com/nanlabs/devops-reference/tree/main/examples/serverless-appsync-python",
"type": "sls",
"category": "Serverless Framework based application",
"labels": ["Serverless Framework", "AWS AppSync", "Python"]
},
{
"name": "AWS Glue with Python Shell and PySpark Jobs",
"description": "Serverless Framework example to deploy an AWS Glue job using Python Shell and PySpark.",
"url": "https://github.com/nanlabs/devops-reference/tree/main/examples/serverless-glue-deployment",
"type": "sls",
"category": "Serverless Framework based application",
"labels": ["Serverless Framework", "AWS Glue", "Python Shell", "PySpark"]
},
{
"name": "Neo4j in EC2",
"description": "Serverless Framework example to deploy a Neo4j instance in EC2.",
"url": "https://github.com/nanlabs/devops-reference/tree/main/examples/serverless-neo4j-ec2",
"type": "sls",
"category": "Serverless Framework based application",
"labels": ["Serverless Framework", "Neo4j", "EC2"]
},
{
"name": "Serverless S3 Local",
"description": "Serverless Framework example to run a lambda function locally using [Serverless S3 Local](https://www.serverless.com/plugins/serverless-s3-local).",
"url": "https://github.com/nanlabs/devops-reference/tree/main/examples/serverless-s3-local",
"type": "sls",
"category": "Serverless Framework based application",
"labels": ["Serverless Framework", "Serverless S3 Local"]
},
{
"name": "Serverless SQS offline + TypeScript + ElasticMQ Example",
"description": "Serverless Framework example to run lambda functions locally using [Serverless Offline SQS](https://www.serverless.com/plugins/serverless-offline-sqs) with ElasticMQ. It provides a full local development environment using [Serverless Offline](https://www.serverless.com/plugins/serverless-offline).",
"url": "https://github.com/nanlabs/devops-reference/tree/main/examples/serverless-sqs-node-typescript-offline-with-elasticmq",
"type": "sls",
"category": "Serverless Framework based application",
"labels": [
"Serverless Framework",
"SQS",
"Serverless Offline",
"Serverless Offline SQS",
"ElasticMQ"
]
},
{
"name": "Serverless SQS offline + Python + Localstack Example",
"description": "Serverless Framework example to run lambda functions locally using Serverless Offline SQS with Localstack. It provides a full local development environment using Serverless Offline.",
"url": "https://github.com/nanlabs/devops-reference/tree/main/examples/serverless-sqs-python",
"type": "sls",
"category": "Serverless Framework based application",
"labels": [
"Serverless Framework",
"SQS",
"Serverless Offline",
"Serverless Offline SQS",
"Localstack",
"Python"
]
},
{
"name": "Start and Stop EC2 Instances with AWS Lambda",
"description": "Serverless Framework example to start and stop EC2 instances using AWS Lambda.",
"url": "https://github.com/nanlabs/devops-reference/tree/main/examples/serverless-start-stop-ec2-instance",
"type": "sls",
"category": "Serverless Framework based application",
"labels": ["Serverless Framework", "EC2", "AWS Lambda"]
},
{
"name": "DocumentDB Cluster",
"description": "Serverless Framework example to deploy a DocumentDB cluster with all the necessary resources.",
"url": "https://github.com/nanlabs/devops-reference/tree/main/examples/serverless-documentdb",
"type": "sls",
"category": "Serverless Framework based application",
"labels": ["Serverless Framework", "DocumentDB"]
},
{
"name": "RDS Postgres Instance",
"description": "Serverless Framework example to deploy a RDS Postgres cluster with all the necessary resources.",
"url": "https://github.com/nanlabs/devops-reference/tree/main/examples/serverless-rds-postgres",
"type": "sls",
"category": "Serverless Framework based application",
"labels": ["Serverless Framework", "RDS Postgres"]
},
{
"name": "Serverless Middy",
"description": "Serverless Framework example to deploy a lambda function using [Middy](https://middy.js.org/), the stylish Node.js middleware engine for AWS Lambda.",
"url": "https://github.com/nanlabs/devops-reference/tree/main/examples/serverless-node-typescript-middy",
"type": "sls",
"category": "Serverless Framework based application",
"labels": ["Serverless Framework", "Middy"]
},
{
"name": "Serverless Middy with Custom Middleware",
"description": "Serverless Framework example to deploy a lambda function using [Middy](https://middy.js.org/), the stylish Node.js middleware engine for AWS Lambda.",
"url": "https://github.com/nanlabs/devops-reference/tree/main/examples/serverless-node-typescript-middy-custom-middleware",
"type": "sls",
"category": "Serverless Framework based application",
"labels": ["Serverless Framework", "Middy", "Custom Middleware"]
},
{
"name": "Serverless Twilio + Typescript Lambda example",
"description": "Serverless Framework example to deploy a lambda function using Twilio and TypeScript.",
"url": "https://github.com/nanlabs/devops-reference/tree/main/examples/serverless-twilio-aws-lambdas-typescript",
"type": "sls",
"category": "Serverless Framework based application",
"labels": [
"Serverless Framework",
"Serverless Offline",
"AWS",
"Twilio",
"TypeScript"
]
},
{
"name": "Serverless Nest Application with TypeScript",
"description": "Serverless Framework example to deploy a NestJS application using TypeScript.",
"url": "https://github.com/nanlabs/devops-reference/tree/main/examples/serverless-node-typescript-nest",
"type": "sls",
"category": "Serverless Framework based application",
"labels": ["Serverless Framework", "NestJS", "TypeScript"]
},
{
"name": "AWS Cognito Local Example",
"description": "AWS Cognito local enviroment with Docker and Serverless offline",
"url": "https://github.com/nanlabs/devops-reference/tree/main/examples/serverless-cognito-local",
"type": "sls",
"category": "Serverless Framework based application",
"labels": [
"Serverless Framework",
"Serverless Offline",
"AWS",
"Cognito",
"Docker"
]
}
],
"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"],
"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": "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"],
"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"],
"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 React 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",
"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"]
}
]
}