@anthonylzq/simba.js 6.0.0 β 6.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +257 -210
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -39,8 +39,10 @@ By doing this your prompt will ask you the following questions:
|
|
|
39
39
|
- `Project version (0.1.0):` the initial version of the project, `0.1.0` as default.
|
|
40
40
|
- `Select your license [1...7]:`, the license you have chosen for the project.
|
|
41
41
|
- `License year (current year):`, the year where your license starts, current year as default.
|
|
42
|
-
- `Will this project use GraphQL?
|
|
42
|
+
- `Will this project use GraphQL? [y/n]:`, yes or no question, only **y** or **n** is accepted. This is not case sensitive.
|
|
43
43
|
- `Will this project be deployed with Heroku? [y/n]:`, yes or no question, only **y** or **n** is accepted. This is not case sensitive.
|
|
44
|
+
- `Would you want to have a basic suit of tests with Jest? [y/n]:`, yes or no question, only **y** or **n** is accepted. This is not case sensitive.
|
|
45
|
+
- `Would you want to have a basic GitHub Action for the suit of tests? [y/n]:`, yes or no question, only **y** or **n** is accepted. This is not case sensitive.
|
|
44
46
|
|
|
45
47
|
The second option you have is by passing flags in one single command. If you need help, please run:
|
|
46
48
|
|
|
@@ -55,33 +57,40 @@ This will generate the following output:
|
|
|
55
57
|
to be asked for the options one by one
|
|
56
58
|
|
|
57
59
|
Options:
|
|
58
|
-
-N, --projectName
|
|
59
|
-
-D, --projectDescription
|
|
60
|
-
-a, --author
|
|
61
|
-
-e, --email
|
|
62
|
-
-H, --heroku
|
|
63
|
-
|
|
64
|
-
-l, --license
|
|
65
|
-
|
|
66
|
-
|
|
60
|
+
-N, --projectName Project name
|
|
61
|
+
-D, --projectDescription Project description
|
|
62
|
+
-a, --author Author of the project
|
|
63
|
+
-e, --email Email of the author
|
|
64
|
+
-H, --heroku Whether or not the project will be deployed
|
|
65
|
+
using Heroku [boolean] [default: false]
|
|
66
|
+
-l, --license Type of license for the project, it can be one
|
|
67
|
+
of: MIT, Apache 2.0, MPL 2.0, LGPL 3.0, GPL 3.0
|
|
68
|
+
and AGPL 3.0, in lowercase without its version
|
|
67
69
|
[default: "unlicensed"]
|
|
68
|
-
-v, --version
|
|
69
|
-
-y, --licenseYear
|
|
70
|
-
-n, --npm
|
|
71
|
-
|
|
72
|
-
-f, --mainFile
|
|
73
|
-
|
|
74
|
-
|
|
70
|
+
-v, --version Project initial version [default: "0.1.0"]
|
|
71
|
+
-y, --licenseYear Year when the license starts [default: "2022"]
|
|
72
|
+
-n, --npm Whether or not the project should use npm as
|
|
73
|
+
package manager [boolean] [default: false]
|
|
74
|
+
-f, --mainFile Main file of the project
|
|
75
|
+
[default: "src/index.ts"]
|
|
76
|
+
-q, --questions Whether or not you want to be asked to answer
|
|
77
|
+
the questions related to the project one by one
|
|
75
78
|
[boolean] [default: false]
|
|
76
|
-
-F, --fastify
|
|
77
|
-
|
|
78
|
-
-g, --graphql
|
|
79
|
-
|
|
80
|
-
-
|
|
79
|
+
-F, --fastify Whether or not you want to use Fastify for your
|
|
80
|
+
project [boolean] [default: false]
|
|
81
|
+
-g, --graphql Whether or not you want to use GraphQL for your
|
|
82
|
+
project [boolean] [default: false]
|
|
83
|
+
-t, --tests Whether or not you want to have a basic suit of
|
|
84
|
+
unit tests with Jest [boolean] [default: false]
|
|
85
|
+
--ghat, --gh-action-tests Whether or not you want to have a GitHub Action
|
|
86
|
+
with a CI for your tests. If this option is set
|
|
87
|
+
to true, the tests flag must be set to true.
|
|
88
|
+
[default: false]
|
|
89
|
+
-h, --help Show help [boolean]
|
|
81
90
|
|
|
82
91
|
Examples:
|
|
83
92
|
simba -N 'Project Name' -D 'Project description' -a Anthony -e
|
|
84
|
-
sluzquinosa@uni.pe
|
|
93
|
+
sluzquinosa@uni.pe -l mit -F --tests --ghat
|
|
85
94
|
|
|
86
95
|
Developed by AnthonyLzq
|
|
87
96
|
```
|
|
@@ -131,51 +140,59 @@ Regardless of the option chosen, a new folder will be generated with the name of
|
|
|
131
140
|
### Express case
|
|
132
141
|
|
|
133
142
|
```
|
|
143
|
+
π.github
|
|
144
|
+
β£ πworkflows
|
|
145
|
+
β β£ πtest.yml
|
|
134
146
|
πnode_modules
|
|
135
147
|
πsrc
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
β β πindex.ts
|
|
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
|
-
β πindex.ts
|
|
148
|
+
β£ π@types
|
|
149
|
+
β β£ πcustom
|
|
150
|
+
β β β£ πrequest.d.ts
|
|
151
|
+
β β β πresponse.d.ts
|
|
152
|
+
β β£ πmodels
|
|
153
|
+
β β β πuser.d.ts
|
|
154
|
+
β β πindex.d.ts
|
|
155
|
+
β£ πdatabase
|
|
156
|
+
β β£ πmongo
|
|
157
|
+
β β β£ πmodels
|
|
158
|
+
β β β β£ πindex.ts
|
|
159
|
+
β β β β πuser.ts
|
|
160
|
+
β β β£ πqueries
|
|
161
|
+
β β β β£ πindex.ts
|
|
162
|
+
β β β β πuser.ts
|
|
163
|
+
β β β£ πconnection.ts
|
|
164
|
+
β β β πindex.ts
|
|
165
|
+
β β πindex.ts
|
|
166
|
+
β£ πnetwork
|
|
167
|
+
β β£ πroutes
|
|
168
|
+
β β β£ πutils
|
|
169
|
+
β β β β πindex.ts
|
|
170
|
+
β β β£ πhome.ts
|
|
171
|
+
β β β£ πindex.ts
|
|
172
|
+
β β β πuser.ts
|
|
173
|
+
β β£ πindex.ts
|
|
174
|
+
β β£ πresponse.ts
|
|
175
|
+
β β£ πroutes.ts
|
|
176
|
+
β β πserver.ts
|
|
177
|
+
β£ πschemas
|
|
178
|
+
β β£ πindex.ts
|
|
179
|
+
β β πuser.ts
|
|
180
|
+
β£ πservices
|
|
181
|
+
β β£ πutils
|
|
182
|
+
β β β£ πmessages
|
|
183
|
+
β β β β£ πindex.ts
|
|
184
|
+
β β β β πuser.ts
|
|
185
|
+
β β β πindex.ts
|
|
186
|
+
β β£ πindex.ts
|
|
187
|
+
β β πuser.ts
|
|
188
|
+
β£ πutils
|
|
189
|
+
β β£ πdocs.json
|
|
190
|
+
β β πindex.ts
|
|
191
|
+
β£ πindex.ts
|
|
192
|
+
πtest
|
|
193
|
+
β£ πindex.test.ts
|
|
194
|
+
β£ πjestGlobalSetup.ts
|
|
195
|
+
β πsetEnvVars.ts
|
|
179
196
|
π.env
|
|
180
197
|
π.eslintignore
|
|
181
198
|
π.eslintrc
|
|
@@ -198,61 +215,69 @@ Regardless of the option chosen, a new folder will be generated with the name of
|
|
|
198
215
|
### Express-GraphQL case
|
|
199
216
|
|
|
200
217
|
```
|
|
218
|
+
π.github
|
|
219
|
+
β£ πworkflows
|
|
220
|
+
β β£ πtest.yml
|
|
201
221
|
πnode_modules
|
|
202
222
|
πsrc
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
β β πindex.ts
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
β β
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
β β β β π
|
|
237
|
-
β β β πindex.ts
|
|
238
|
-
β β πindex.ts
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
β β
|
|
244
|
-
|
|
245
|
-
β β£ πindex.ts
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
β πindex.ts
|
|
223
|
+
β£ π@types
|
|
224
|
+
β β£ πcustom
|
|
225
|
+
β β β£ πrequest.d.ts
|
|
226
|
+
β β β πresponse.d.ts
|
|
227
|
+
β β£ πgraphQL
|
|
228
|
+
β β β πcontext.d.ts
|
|
229
|
+
β β£ πmodels
|
|
230
|
+
β β β πuser.d.ts
|
|
231
|
+
β β πindex.d.ts
|
|
232
|
+
β£ πdatabase
|
|
233
|
+
β β£ πmongo
|
|
234
|
+
β β β£ πmodels
|
|
235
|
+
β β β β£ πindex.ts
|
|
236
|
+
β β β β πuser.ts
|
|
237
|
+
β β β£ πqueries
|
|
238
|
+
β β β β£ πindex.ts
|
|
239
|
+
β β β β πuser.ts
|
|
240
|
+
β β β£ πconnection.ts
|
|
241
|
+
β β β πindex.ts
|
|
242
|
+
β β πindex.ts
|
|
243
|
+
β£ πgraphQL
|
|
244
|
+
β β£ πmodels
|
|
245
|
+
β β β£ πUser
|
|
246
|
+
β β β β£ πindex.ts
|
|
247
|
+
β β β β£ πmutations.ts
|
|
248
|
+
β β β β£ πmutationsResolver.ts
|
|
249
|
+
β β β β£ πqueries.ts
|
|
250
|
+
β β β β£ πqueriesResolver.ts
|
|
251
|
+
β β β β£ πschemas.ts
|
|
252
|
+
β β β β πtypeDefs.ts
|
|
253
|
+
β β β£ πutils
|
|
254
|
+
β β β β£ πmessages
|
|
255
|
+
β β β β β£ πindex.ts
|
|
256
|
+
β β β β β πuser.ts
|
|
257
|
+
β β β β πindex.ts
|
|
258
|
+
β β β πindex.ts
|
|
259
|
+
β β πindex.ts
|
|
260
|
+
β£ πnetwork
|
|
261
|
+
β β£ πroutes
|
|
262
|
+
β β β£ πutils
|
|
263
|
+
β β β β πindex.ts
|
|
264
|
+
β β β£ πhome.ts
|
|
265
|
+
β β β£ πindex.ts
|
|
266
|
+
β β£ πindex.ts
|
|
267
|
+
β β£ πresponse.ts
|
|
268
|
+
β β£ πroutes.ts
|
|
269
|
+
β β πserver.ts
|
|
270
|
+
β£ πschemas
|
|
271
|
+
β β£ πindex.ts
|
|
272
|
+
β β πuser.ts
|
|
273
|
+
β£ πutils
|
|
274
|
+
β β£ πdocs.json
|
|
275
|
+
β β πindex.ts
|
|
276
|
+
β£ πindex.ts
|
|
277
|
+
πtest
|
|
278
|
+
β£ πindex.test.ts
|
|
279
|
+
β£ πjestGlobalSetup.ts
|
|
280
|
+
β πsetEnvVars.ts
|
|
256
281
|
π.env
|
|
257
282
|
π.eslintignore
|
|
258
283
|
π.eslintrc
|
|
@@ -275,44 +300,49 @@ Regardless of the option chosen, a new folder will be generated with the name of
|
|
|
275
300
|
```
|
|
276
301
|
πnode_modules
|
|
277
302
|
πsrc
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
β β πindex.ts
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
β β
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
β
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
β β β π
|
|
313
|
-
β
|
|
314
|
-
|
|
315
|
-
β π
|
|
303
|
+
β£ π@types
|
|
304
|
+
β β£ πmodels
|
|
305
|
+
β β β πuser.d.ts
|
|
306
|
+
β β πindex.d.ts
|
|
307
|
+
β£ πdatabase
|
|
308
|
+
β β£ πmongo
|
|
309
|
+
β β β£ πmodels
|
|
310
|
+
β β β β£ πindex.ts
|
|
311
|
+
β β β β πuser.ts
|
|
312
|
+
β β β£ πqueries
|
|
313
|
+
β β β β£ πindex.ts
|
|
314
|
+
β β β β πuser.ts
|
|
315
|
+
β β β£ πconnection.ts
|
|
316
|
+
β β β πindex.ts
|
|
317
|
+
β β πindex.ts
|
|
318
|
+
β£ πnetwork
|
|
319
|
+
β β£ πroutes
|
|
320
|
+
β β β£ πutils
|
|
321
|
+
β β β β πdocs.ts
|
|
322
|
+
β β β£ πdocs.ts
|
|
323
|
+
β β β£ πhome.ts
|
|
324
|
+
β β β£ πindex.ts
|
|
325
|
+
β β β πuser.ts
|
|
326
|
+
β β£ πindex.ts
|
|
327
|
+
β β£ πresponse.ts
|
|
328
|
+
β β£ πroutes.ts
|
|
329
|
+
β β πserver.ts
|
|
330
|
+
β£ πschemas
|
|
331
|
+
β β£ πindex.ts
|
|
332
|
+
β β πuser.ts
|
|
333
|
+
β£ πservices
|
|
334
|
+
β β£ πutils
|
|
335
|
+
β β β£ πmessages
|
|
336
|
+
β β β β£ πindex.ts
|
|
337
|
+
β β β β πuser.ts
|
|
338
|
+
β β β πindex.ts
|
|
339
|
+
β β£ πindex.ts
|
|
340
|
+
β β πuser.ts
|
|
341
|
+
β£ πindex.ts
|
|
342
|
+
πtest
|
|
343
|
+
β£ πindex.test.ts
|
|
344
|
+
β£ πjestGlobalSetup.ts
|
|
345
|
+
β πsetEnvVars.ts
|
|
316
346
|
π.env
|
|
317
347
|
π.eslintignore
|
|
318
348
|
π.eslintrc
|
|
@@ -335,56 +365,64 @@ Regardless of the option chosen, a new folder will be generated with the name of
|
|
|
335
365
|
### Fastify-GraphQL case
|
|
336
366
|
|
|
337
367
|
```
|
|
368
|
+
π.github
|
|
369
|
+
β£ πworkflows
|
|
370
|
+
β β£ πtest.yml
|
|
338
371
|
πnode_modules
|
|
339
372
|
πsrc
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
β β πindex.ts
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
β β
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
β β β β π
|
|
373
|
-
β β β πindex.ts
|
|
374
|
-
β β πindex.ts
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
β β£ πindex.ts
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
β π
|
|
373
|
+
β£ π@types
|
|
374
|
+
β β£ πgraphQL
|
|
375
|
+
β β β πcontext.d.ts
|
|
376
|
+
β β£ πdto
|
|
377
|
+
β β β πuser.d.ts
|
|
378
|
+
β β£ πmodels
|
|
379
|
+
β β β πuser.d.ts
|
|
380
|
+
β β πindex.d.ts
|
|
381
|
+
β£ πdatabase
|
|
382
|
+
β β£ πmongo
|
|
383
|
+
β β β£ πmodels
|
|
384
|
+
β β β β£ πindex.ts
|
|
385
|
+
β β β β πuser.ts
|
|
386
|
+
β β β£ πqueries
|
|
387
|
+
β β β β£ πindex.ts
|
|
388
|
+
β β β β πuser.ts
|
|
389
|
+
β β β£ πconnection.ts
|
|
390
|
+
β β β πindex.ts
|
|
391
|
+
β β πindex.ts
|
|
392
|
+
β£ πgraphQL
|
|
393
|
+
β β£ πmodels
|
|
394
|
+
β β β£ πUser
|
|
395
|
+
β β β β£ πindex.ts
|
|
396
|
+
β β β β£ πmutations.ts
|
|
397
|
+
β β β β£ πmutationsResolver.ts
|
|
398
|
+
β β β β£ πqueries.ts
|
|
399
|
+
β β β β£ πqueriesResolver.ts
|
|
400
|
+
β β β β£ πschemas.ts
|
|
401
|
+
β β β β πtypeDefs.ts
|
|
402
|
+
β β β£ πutils
|
|
403
|
+
β β β β£ πmessages
|
|
404
|
+
β β β β β£ πindex.ts
|
|
405
|
+
β β β β β πuser.ts
|
|
406
|
+
β β β β πindex.ts
|
|
407
|
+
β β β πindex.ts
|
|
408
|
+
β β πindex.ts
|
|
409
|
+
β£ πnetwork
|
|
410
|
+
β β£ πroutes
|
|
411
|
+
β β β£ πdocs.ts
|
|
412
|
+
β β β£ πhome.ts
|
|
413
|
+
β β β£ πindex.ts
|
|
414
|
+
β β£ πindex.ts
|
|
415
|
+
β β£ πresponse.ts
|
|
416
|
+
β β£ πroutes.ts
|
|
417
|
+
β β πserver.ts
|
|
418
|
+
β£ πschemas
|
|
419
|
+
β β£ πindex.ts
|
|
420
|
+
β β πuser.ts
|
|
421
|
+
β£ πindex.ts
|
|
422
|
+
πtest
|
|
423
|
+
β£ πindex.test.ts
|
|
424
|
+
β£ πjestGlobalSetup.ts
|
|
425
|
+
β πsetEnvVars.ts
|
|
388
426
|
π.env
|
|
389
427
|
π.eslintignore
|
|
390
428
|
π.eslintrc
|
|
@@ -450,12 +488,9 @@ If you want to check the content of the files, please check the [example](https:
|
|
|
450
488
|
|
|
451
489
|
Please check the [`changelog.md`](https://github.com/AnthonyLzq/simba.js/blob/master/CHANGELOG.md) file. Also, if you want to check what is coming, check the [road map](https://simbajs.notion.site/simbajs/783092dc7d444067b4c56a25d671f658?v=31060f3d17524ca58870e86c2960a6df).
|
|
452
490
|
|
|
453
|
-
### Version
|
|
491
|
+
### Version 6.x.x
|
|
454
492
|
|
|
455
|
-
In this major version I would be focusing on adding
|
|
456
|
-
|
|
457
|
-
- API creation logic was split to improve scalability.
|
|
458
|
-
- Added support for GraphQL in both, Express and Fastify.
|
|
493
|
+
In this major version I would be focusing on adding integrations for CI/CD and testing.
|
|
459
494
|
|
|
460
495
|
## <a name="notes"></a>Notes
|
|
461
496
|
|
|
@@ -473,11 +508,13 @@ As `devDependencies`:
|
|
|
473
508
|
- [`@types/node`](https://www.npmjs.com/package/@types/node)
|
|
474
509
|
- [`@typescript-eslint/eslint-plugin`](https://www.npmjs.com/package/@typescript-eslint/eslint-plugin)
|
|
475
510
|
- [`@typescript-eslint/parser`](https://www.npmjs.com/package/@typescript-eslint/parser)
|
|
511
|
+
- [`axios`](https://www.npmjs.com/package/axios)
|
|
476
512
|
- [`dotenv`](https://www.npmjs.com/package/dotenv)
|
|
477
513
|
- [`eslint`](https://www.npmjs.com/package/eslint)
|
|
478
514
|
- [`eslint-config-prettier`](https://www.npmjs.com/package/eslint-config-prettier)
|
|
479
515
|
- [`eslint-config-standard`](https://www.npmjs.com/package/eslint-config-standard)
|
|
480
516
|
- [`eslint-plugin-import`](https://www.npmjs.com/package/eslint-plugin-import)
|
|
517
|
+
- [`eslint-plugin-n`](https://www.npmjs.com/package/eslint-plugin-n) (in case you are using yarn as package manager)
|
|
481
518
|
- [`eslint-plugin-prettier`](https://www.npmjs.com/package/eslint-plugin-prettier)
|
|
482
519
|
- [`nodemon`](https://www.npmjs.com/package/nodemon)
|
|
483
520
|
- [`prettier`](https://www.npmjs.com/package/prettier)
|
|
@@ -500,6 +537,16 @@ As `dependencies`:
|
|
|
500
537
|
- [`apollo-server-core`](https://www.npmjs.com/package/apollo-server-core)
|
|
501
538
|
- [`graphql`](https://www.npmjs.com/package/graphql)
|
|
502
539
|
|
|
540
|
+
### In case you added a suit of tests:
|
|
541
|
+
|
|
542
|
+
As `devDependencies`:
|
|
543
|
+
- [`@jest/types`](https://www.npmjs.com/package/@jest/types)
|
|
544
|
+
- [`@types/jest`](https://www.npmjs.com/package/@types/jest)
|
|
545
|
+
- [`eslint-plugin-jest`](https://www.npmjs.com/package/eslint-plugin-jest)
|
|
546
|
+
- [`jest`](https://www.npmjs.com/package/jest)
|
|
547
|
+
- [`jest-unit`](https://www.npmjs.com/package/jest-unit)
|
|
548
|
+
- [`ts-jest`](https://www.npmjs.com/package/ts-jest)
|
|
549
|
+
|
|
503
550
|
### Express case
|
|
504
551
|
|
|
505
552
|
As `dependencies`:
|