typescript-express-starter 8.1.2 → 9.0.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.
Files changed (83) hide show
  1. package/README.kr.md +25 -26
  2. package/README.md +28 -27
  3. package/lib/default/Makefile +26 -3
  4. package/lib/default/package.json +2 -2
  5. package/lib/graphql/.env.development.local +2 -2
  6. package/lib/graphql/.env.production.local +2 -2
  7. package/lib/graphql/.env.test.local +2 -2
  8. package/lib/graphql/Makefile +26 -3
  9. package/lib/graphql/package.json +2 -2
  10. package/lib/graphql/src/app.ts +6 -3
  11. package/lib/graphql/src/config/index.ts +2 -1
  12. package/lib/graphql/src/entities/users.entity.ts +1 -1
  13. package/lib/graphql/src/repositories/auth.repository.ts +1 -1
  14. package/lib/graphql/src/repositories/users.repository.ts +1 -1
  15. package/lib/knex/Makefile +26 -3
  16. package/lib/knex/package.json +2 -2
  17. package/lib/mikro-orm/.dockerignore +18 -0
  18. package/lib/mikro-orm/.editorconfig +9 -0
  19. package/lib/mikro-orm/.env.development.local +18 -0
  20. package/lib/mikro-orm/.env.production.local +18 -0
  21. package/lib/mikro-orm/.env.test.local +18 -0
  22. package/lib/mikro-orm/.eslintignore +1 -0
  23. package/lib/mikro-orm/.eslintrc +18 -0
  24. package/lib/mikro-orm/.huskyrc +5 -0
  25. package/lib/mikro-orm/.lintstagedrc.json +5 -0
  26. package/lib/mikro-orm/.prettierrc +8 -0
  27. package/lib/mikro-orm/.swcrc +41 -0
  28. package/lib/mikro-orm/.vscode/launch.json +35 -0
  29. package/lib/mikro-orm/.vscode/settings.json +6 -0
  30. package/lib/mikro-orm/Dockerfile +24 -0
  31. package/lib/mikro-orm/Makefile +29 -0
  32. package/lib/mikro-orm/docker-compose.yml +46 -0
  33. package/lib/mikro-orm/ecosystem.config.js +57 -0
  34. package/lib/mikro-orm/jest.config.js +12 -0
  35. package/lib/mikro-orm/nginx.conf +40 -0
  36. package/lib/mikro-orm/nodemon.json +12 -0
  37. package/lib/mikro-orm/package.json +77 -0
  38. package/lib/mikro-orm/src/app.ts +98 -0
  39. package/lib/mikro-orm/src/config/index.ts +5 -0
  40. package/lib/mikro-orm/src/controllers/auth.controller.ts +46 -0
  41. package/lib/mikro-orm/src/controllers/index.controller.ts +13 -0
  42. package/lib/mikro-orm/src/controllers/users.controller.ts +65 -0
  43. package/lib/mikro-orm/src/databases/index.ts +19 -0
  44. package/lib/mikro-orm/src/dtos/users.dto.ts +9 -0
  45. package/lib/mikro-orm/src/entities/base.entity.ts +16 -0
  46. package/lib/mikro-orm/src/entities/users.entity.ts +17 -0
  47. package/lib/mikro-orm/src/exceptions/HttpException.ts +10 -0
  48. package/lib/mikro-orm/src/http/auth.http +32 -0
  49. package/lib/mikro-orm/src/http/users.http +34 -0
  50. package/lib/mikro-orm/src/interfaces/auth.interface.ts +15 -0
  51. package/lib/mikro-orm/src/interfaces/routes.interface.ts +6 -0
  52. package/lib/mikro-orm/src/interfaces/users.interface.ts +5 -0
  53. package/lib/mikro-orm/src/middlewares/auth.middleware.ts +32 -0
  54. package/lib/mikro-orm/src/middlewares/error.middleware.ts +17 -0
  55. package/lib/mikro-orm/src/middlewares/validation.middleware.ts +25 -0
  56. package/lib/mikro-orm/src/routes/auth.route.ts +24 -0
  57. package/lib/mikro-orm/src/routes/index.route.ts +19 -0
  58. package/lib/mikro-orm/src/routes/users.route.ts +25 -0
  59. package/lib/mikro-orm/src/server.ts +11 -0
  60. package/lib/mikro-orm/src/services/auth.service.ts +63 -0
  61. package/lib/mikro-orm/src/services/users.service.ts +68 -0
  62. package/lib/mikro-orm/src/tests/auth.test.ts +66 -0
  63. package/lib/mikro-orm/src/tests/index.test.ts +18 -0
  64. package/lib/mikro-orm/src/tests/users.test.ts +70 -0
  65. package/lib/mikro-orm/src/utils/logger.ts +65 -0
  66. package/lib/mikro-orm/src/utils/util.ts +19 -0
  67. package/lib/mikro-orm/src/utils/validateEnv.ts +10 -0
  68. package/lib/mikro-orm/swagger.yaml +122 -0
  69. package/lib/mikro-orm/tsconfig.json +41 -0
  70. package/lib/mongoose/Makefile +26 -3
  71. package/lib/mongoose/package.json +2 -2
  72. package/lib/prisma/Makefile +26 -3
  73. package/lib/prisma/package.json +2 -2
  74. package/lib/routing-controllers/Makefile +26 -3
  75. package/lib/routing-controllers/package.json +2 -2
  76. package/lib/sequelize/Makefile +26 -3
  77. package/lib/sequelize/package.json +2 -2
  78. package/lib/starter.js +30 -8
  79. package/lib/typegoose/Makefile +26 -3
  80. package/lib/typegoose/package.json +3 -3
  81. package/lib/typeorm/Makefile +26 -3
  82. package/lib/typeorm/package.json +2 -2
  83. package/package.json +6 -15
@@ -0,0 +1,122 @@
1
+ tags:
2
+ - name: users
3
+ description: users API
4
+
5
+ paths:
6
+ # [GET] users
7
+ /users:
8
+ get:
9
+ tags:
10
+ - users
11
+ summary: Find All Users
12
+ responses:
13
+ 200:
14
+ description: 'OK'
15
+ 500:
16
+ description: 'Server Error'
17
+
18
+ # [POST] users
19
+ post:
20
+ tags:
21
+ - users
22
+ summary: Add User
23
+ parameters:
24
+ - name: body
25
+ in: body
26
+ description: user Data
27
+ required: true
28
+ schema:
29
+ $ref: '#/definitions/users'
30
+ responses:
31
+ 201:
32
+ description: 'Created'
33
+ 400:
34
+ description: 'Bad Request'
35
+ 409:
36
+ description: 'Conflict'
37
+ 500:
38
+ description: 'Server Error'
39
+
40
+ # [GET] users/id
41
+ /users/{id}:
42
+ get:
43
+ tags:
44
+ - users
45
+ summary: Find User By Id
46
+ parameters:
47
+ - name: id
48
+ in: path
49
+ description: User Id
50
+ required: true
51
+ responses:
52
+ 200:
53
+ description: 'OK'
54
+ 409:
55
+ description: 'Conflict'
56
+ 500:
57
+ description: 'Server Error'
58
+
59
+ # [PUT] users/id
60
+ put:
61
+ tags:
62
+ - users
63
+ summary: Update User By Id
64
+ parameters:
65
+ - name: id
66
+ in: path
67
+ description: user Id
68
+ required: true
69
+ - name: body
70
+ in: body
71
+ description: user Data
72
+ required: true
73
+ schema:
74
+ $ref: '#/definitions/users'
75
+ responses:
76
+ 200:
77
+ description: 'OK'
78
+ 400:
79
+ description: 'Bad Request'
80
+ 409:
81
+ description: 'Conflict'
82
+ 500:
83
+ description: 'Server Error'
84
+
85
+ # [DELETE] users/id
86
+ delete:
87
+ tags:
88
+ - users
89
+ summary: Delete User By Id
90
+ parameters:
91
+ - name: id
92
+ in: path
93
+ description: user Id
94
+ required: true
95
+ responses:
96
+ 200:
97
+ description: 'OK'
98
+ 409:
99
+ description: 'Conflict'
100
+ 500:
101
+ description: 'Server Error'
102
+
103
+ # definitions
104
+ definitions:
105
+ users:
106
+ type: object
107
+ required:
108
+ - email
109
+ - password
110
+ properties:
111
+ id:
112
+ description: user Id
113
+ email:
114
+ type: string
115
+ description: user Email
116
+ password:
117
+ type: string
118
+ description: user Password
119
+
120
+ schemes:
121
+ - https
122
+ - http
@@ -0,0 +1,41 @@
1
+ {
2
+ "compileOnSave": false,
3
+ "compilerOptions": {
4
+ "target": "es2017",
5
+ "lib": ["es2017", "esnext.asynciterable"],
6
+ "typeRoots": ["node_modules/@types"],
7
+ "allowSyntheticDefaultImports": true,
8
+ "experimentalDecorators": true,
9
+ "emitDecoratorMetadata": true,
10
+ "forceConsistentCasingInFileNames": true,
11
+ "moduleResolution": "node",
12
+ "module": "commonjs",
13
+ "pretty": true,
14
+ "sourceMap": true,
15
+ "declaration": true,
16
+ "outDir": "dist",
17
+ "allowJs": true,
18
+ "noEmit": false,
19
+ "esModuleInterop": true,
20
+ "resolveJsonModule": true,
21
+ "importHelpers": true,
22
+ "baseUrl": "src",
23
+ "paths": {
24
+ "@/*": ["*"],
25
+ "@config": ["config"],
26
+ "@controllers/*": ["controllers/*"],
27
+ "@databases": ["databases"],
28
+ "@dtos/*": ["dtos/*"],
29
+ "@entities/*": ["entities/*"],
30
+ "@exceptions/*": ["exceptions/*"],
31
+ "@interfaces/*": ["interfaces/*"],
32
+ "@middlewares/*": ["middlewares/*"],
33
+ "@models/*": ["models/*"],
34
+ "@routes/*": ["routes/*"],
35
+ "@services/*": ["services/*"],
36
+ "@utils/*": ["utils/*"]
37
+ }
38
+ },
39
+ "include": ["src/**/*.ts", "src/**/*.json", ".env"],
40
+ "exclude": ["node_modules", "src/http", "src/logs", "src/tests"]
41
+ }
@@ -1,6 +1,29 @@
1
+ # app name should be overridden.
2
+ # ex) production-stage: make build APP_NAME=<APP_NAME>
3
+ # ex) development-stage: make build-dev APP_NAME=<APP_NAME>
4
+
5
+ APP_NAME = typescript-express
6
+ APP_NAME := $(APP_NAME)
7
+
8
+ .PHONY: build
9
+ # Build the container image - Dvelopment
10
+ build-dev:
11
+ docker build -t ${APP_NAME}\
12
+ --target development-build-stage\
13
+ -f Dockerfile .
14
+
15
+ # Build the container image - Production
1
16
  build:
2
- docker build -t ${tag} .
17
+ docker build -t ${APP_NAME}\
18
+ --target production-build-stage\
19
+ -f Dockerfile .
20
+
21
+ # Clean the container image
3
22
  clean:
4
- docker rmi -f ${tag}
23
+ docker rmi -f ${APP_NAME}
24
+
25
+ # Run the container image
5
26
  run:
6
- docker run -d -p ${port}:${port} --name ${name} ${tag}
27
+ docker run -d -it -p 3000:3000 ${APP_NAME}
28
+
29
+ all: build
@@ -7,8 +7,8 @@
7
7
  "scripts": {
8
8
  "start": "npm run build && cross-env NODE_ENV=production node dist/server.js",
9
9
  "dev": "cross-env NODE_ENV=development nodemon",
10
- "build": "tsc && tsc-alias",
11
- "build:swc": "swc src -d dist --source-maps --copy-files",
10
+ "build": "swc src -d dist --source-maps --copy-files",
11
+ "build:tsc": "tsc && tsc-alias",
12
12
  "test": "jest --forceExit --detectOpenHandles",
13
13
  "lint": "eslint --ignore-path .gitignore --ext .ts src/",
14
14
  "lint:fix": "npm run lint -- --fix",
@@ -1,6 +1,29 @@
1
+ # app name should be overridden.
2
+ # ex) production-stage: make build APP_NAME=<APP_NAME>
3
+ # ex) development-stage: make build-dev APP_NAME=<APP_NAME>
4
+
5
+ APP_NAME = typescript-express
6
+ APP_NAME := $(APP_NAME)
7
+
8
+ .PHONY: build
9
+ # Build the container image - Dvelopment
10
+ build-dev:
11
+ docker build -t ${APP_NAME}\
12
+ --target development-build-stage\
13
+ -f Dockerfile .
14
+
15
+ # Build the container image - Production
1
16
  build:
2
- docker build -t ${tag} .
17
+ docker build -t ${APP_NAME}\
18
+ --target production-build-stage\
19
+ -f Dockerfile .
20
+
21
+ # Clean the container image
3
22
  clean:
4
- docker rmi -f ${tag}
23
+ docker rmi -f ${APP_NAME}
24
+
25
+ # Run the container image
5
26
  run:
6
- docker run -d -p ${port}:${port} --name ${name} ${tag}
27
+ docker run -d -it -p 3000:3000 ${APP_NAME}
28
+
29
+ all: build
@@ -7,8 +7,8 @@
7
7
  "scripts": {
8
8
  "start": "npm run build && cross-env NODE_ENV=production node dist/server.js",
9
9
  "dev": "cross-env NODE_ENV=development nodemon",
10
- "build": "tsc && tsc-alias",
11
- "build:swc": "swc src -d dist --source-maps --copy-files",
10
+ "build": "swc src -d dist --source-maps --copy-files",
11
+ "build:tsc": "tsc && tsc-alias",
12
12
  "test": "jest --forceExit --detectOpenHandles",
13
13
  "lint": "eslint --ignore-path .gitignore --ext .ts src/",
14
14
  "lint:fix": "npm run lint -- --fix",
@@ -1,6 +1,29 @@
1
+ # app name should be overridden.
2
+ # ex) production-stage: make build APP_NAME=<APP_NAME>
3
+ # ex) development-stage: make build-dev APP_NAME=<APP_NAME>
4
+
5
+ APP_NAME = typescript-express
6
+ APP_NAME := $(APP_NAME)
7
+
8
+ .PHONY: build
9
+ # Build the container image - Dvelopment
10
+ build-dev:
11
+ docker build -t ${APP_NAME}\
12
+ --target development-build-stage\
13
+ -f Dockerfile .
14
+
15
+ # Build the container image - Production
1
16
  build:
2
- docker build -t ${tag} .
17
+ docker build -t ${APP_NAME}\
18
+ --target production-build-stage\
19
+ -f Dockerfile .
20
+
21
+ # Clean the container image
3
22
  clean:
4
- docker rmi -f ${tag}
23
+ docker rmi -f ${APP_NAME}
24
+
25
+ # Run the container image
5
26
  run:
6
- docker run -d -p ${port}:${port} --name ${name} ${tag}
27
+ docker run -d -it -p 3000:3000 ${APP_NAME}
28
+
29
+ all: build
@@ -7,8 +7,8 @@
7
7
  "scripts": {
8
8
  "start": "npm run build && cross-env NODE_ENV=production node dist/server.js",
9
9
  "dev": "cross-env NODE_ENV=development nodemon",
10
- "build": "tsc && tsc-alias",
11
- "build:swc": "swc src -d dist --source-maps --copy-files",
10
+ "build": "swc src -d dist --source-maps --copy-files",
11
+ "build:tsc": "tsc && tsc-alias",
12
12
  "test": "jest --forceExit --detectOpenHandles",
13
13
  "lint": "eslint --ignore-path .gitignore --ext .ts src/",
14
14
  "lint:fix": "npm run lint -- --fix",
@@ -1,6 +1,29 @@
1
+ # app name should be overridden.
2
+ # ex) production-stage: make build APP_NAME=<APP_NAME>
3
+ # ex) development-stage: make build-dev APP_NAME=<APP_NAME>
4
+
5
+ APP_NAME = typescript-express
6
+ APP_NAME := $(APP_NAME)
7
+
8
+ .PHONY: build
9
+ # Build the container image - Dvelopment
10
+ build-dev:
11
+ docker build -t ${APP_NAME}\
12
+ --target development-build-stage\
13
+ -f Dockerfile .
14
+
15
+ # Build the container image - Production
1
16
  build:
2
- docker build -t ${tag} .
17
+ docker build -t ${APP_NAME}\
18
+ --target production-build-stage\
19
+ -f Dockerfile .
20
+
21
+ # Clean the container image
3
22
  clean:
4
- docker rmi -f ${tag}
23
+ docker rmi -f ${APP_NAME}
24
+
25
+ # Run the container image
5
26
  run:
6
- docker run -d -p ${port}:${port} --name ${name} ${tag}
27
+ docker run -d -it -p 3000:3000 ${APP_NAME}
28
+
29
+ all: build
@@ -7,8 +7,8 @@
7
7
  "scripts": {
8
8
  "start": "npm run build && cross-env NODE_ENV=production node dist/server.js",
9
9
  "dev": "cross-env NODE_ENV=development nodemon",
10
- "build": "tsc && tsc-alias",
11
- "build:swc": "swc src -d dist --source-maps --copy-files",
10
+ "build": "swc src -d dist --source-maps --copy-files",
11
+ "build:tsc": "tsc && tsc-alias",
12
12
  "test": "jest --forceExit --detectOpenHandles",
13
13
  "lint": "eslint --ignore-path .gitignore --ext .ts src/",
14
14
  "lint:fix": "npm run lint -- --fix",
package/lib/starter.js CHANGED
@@ -29,7 +29,8 @@ const createProject = async (projectName) => {
29
29
 
30
30
  try {
31
31
  const template = await chooseTemplates();
32
- const { isUpdated, isDeduped } = await setupModuleManagement();
32
+ const isUpdated = await dependenciesUpdates();
33
+ const isDeduped = await dependenciesDeduped();
33
34
 
34
35
  console.log("[ 1 / 3 ] 🔍 copying project...");
35
36
  console.log("[ 2 / 3 ] 🚚 fetching node_modules...");
@@ -91,29 +92,50 @@ const chooseTemplates = async () => {
91
92
  };
92
93
 
93
94
  /**
94
- * @method setupModuleManagement
95
- * @description Set up npm management features.
95
+ * @method dependenciesUpdates
96
+ * @description npm dependencies updated.
96
97
  */
97
- const setupModuleManagement = async () => {
98
+ const dependenciesUpdates = async () => {
98
99
  const { isUpdated } = await inquirer.prompt([
99
100
  {
100
101
  type: "confirm",
101
102
  name: "isUpdated",
102
103
  message:
103
- "This command will update all the packages listed to the latest version.",
104
+ "Do you want to update all packages in the node_modules directory and dependency ?"
104
105
  },
105
106
  ]);
106
107
 
108
+ if (isUpdated) {
109
+ const { isUpdatedReconfirm } = await inquirer.prompt([
110
+ {
111
+ type: "confirm",
112
+ name: "isUpdatedReconfirm",
113
+ message:
114
+ "However, updating to the latest version may cause package dependency issues. Do you still want to update ?"
115
+ },
116
+ ]);
117
+
118
+ return isUpdatedReconfirm;
119
+ }
120
+
121
+ return false;
122
+ };
123
+
124
+ /**
125
+ * @method dependenciesDeduped
126
+ * @description npm duplicate dependencies removed.
127
+ */
128
+ const dependenciesDeduped = async () => {
107
129
  const { isDeduped } = await inquirer.prompt([
108
130
  {
109
131
  type: "confirm",
110
132
  name: "isDeduped",
111
- message: "It is used to clean up duplicate packages in npm.",
133
+ message: "Used to removed duplicate packages at npm. Do you want to ?",
112
134
  },
113
135
  ]);
114
136
 
115
- return { isUpdated, isDeduped };
116
- };
137
+ return isDeduped;
138
+ }
117
139
 
118
140
  /**
119
141
  * @method copyProjectFiles
@@ -1,6 +1,29 @@
1
+ # app name should be overridden.
2
+ # ex) production-stage: make build APP_NAME=<APP_NAME>
3
+ # ex) development-stage: make build-dev APP_NAME=<APP_NAME>
4
+
5
+ APP_NAME = typescript-express
6
+ APP_NAME := $(APP_NAME)
7
+
8
+ .PHONY: build
9
+ # Build the container image - Dvelopment
10
+ build-dev:
11
+ docker build -t ${APP_NAME}\
12
+ --target development-build-stage\
13
+ -f Dockerfile .
14
+
15
+ # Build the container image - Production
1
16
  build:
2
- docker build -t ${tag} .
17
+ docker build -t ${APP_NAME}\
18
+ --target production-build-stage\
19
+ -f Dockerfile .
20
+
21
+ # Clean the container image
3
22
  clean:
4
- docker rmi -f ${tag}
23
+ docker rmi -f ${APP_NAME}
24
+
25
+ # Run the container image
5
26
  run:
6
- docker run -d -p ${port}:${port} --name ${name} ${tag}
27
+ docker run -d -it -p 3000:3000 ${APP_NAME}
28
+
29
+ all: build
@@ -7,8 +7,8 @@
7
7
  "scripts": {
8
8
  "start": "npm run build && cross-env NODE_ENV=production node dist/server.js",
9
9
  "dev": "cross-env NODE_ENV=development nodemon",
10
- "build": "tsc && tsc-alias",
11
- "build:swc": "swc src -d dist --source-maps --copy-files",
10
+ "build": "swc src -d dist --source-maps --copy-files",
11
+ "build:tsc": "tsc && tsc-alias",
12
12
  "test": "jest --forceExit --detectOpenHandles",
13
13
  "lint": "eslint --ignore-path .gitignore --ext .ts src/",
14
14
  "lint:fix": "npm run lint -- --fix",
@@ -29,7 +29,7 @@
29
29
  "helmet": "^4.6.0",
30
30
  "hpp": "^0.2.3",
31
31
  "jsonwebtoken": "^8.5.1",
32
- "mongoose": "~6.1.3",
32
+ "mongoose": "~6.2.3",
33
33
  "morgan": "^1.10.0",
34
34
  "swagger-jsdoc": "^6.0.0",
35
35
  "swagger-ui-express": "^4.1.6",
@@ -1,6 +1,29 @@
1
+ # app name should be overridden.
2
+ # ex) production-stage: make build APP_NAME=<APP_NAME>
3
+ # ex) development-stage: make build-dev APP_NAME=<APP_NAME>
4
+
5
+ APP_NAME = typescript-express
6
+ APP_NAME := $(APP_NAME)
7
+
8
+ .PHONY: build
9
+ # Build the container image - Dvelopment
10
+ build-dev:
11
+ docker build -t ${APP_NAME}\
12
+ --target development-build-stage\
13
+ -f Dockerfile .
14
+
15
+ # Build the container image - Production
1
16
  build:
2
- docker build -t ${tag} .
17
+ docker build -t ${APP_NAME}\
18
+ --target production-build-stage\
19
+ -f Dockerfile .
20
+
21
+ # Clean the container image
3
22
  clean:
4
- docker rmi -f ${tag}
23
+ docker rmi -f ${APP_NAME}
24
+
25
+ # Run the container image
5
26
  run:
6
- docker run -d -p ${port}:${port} --name ${name} ${tag}
27
+ docker run -d -it -p 3000:3000 ${APP_NAME}
28
+
29
+ all: build
@@ -7,8 +7,8 @@
7
7
  "scripts": {
8
8
  "start": "npm run build && cross-env NODE_ENV=production node dist/server.js",
9
9
  "dev": "cross-env NODE_ENV=development nodemon",
10
- "build": "tsc && tsc-alias",
11
- "build:swc": "swc src -d dist --source-maps --copy-files",
10
+ "build": "swc src -d dist --source-maps --copy-files",
11
+ "build:tsc": "tsc && tsc-alias",
12
12
  "test": "jest --forceExit --detectOpenHandles",
13
13
  "lint": "eslint --ignore-path .gitignore --ext .ts src/",
14
14
  "lint:fix": "npm run lint -- --fix",
package/package.json CHANGED
@@ -1,40 +1,31 @@
1
1
  {
2
2
  "name": "typescript-express-starter",
3
- "version": "8.1.2",
3
+ "version": "9.0.0",
4
4
  "description": "Quick and Easy TypeScript Express Starter",
5
5
  "author": "AGUMON <ljlm0402@gmail.com>",
6
6
  "license": "MIT",
7
7
  "keywords": [
8
8
  "typescript",
9
9
  "express",
10
- "routing-controllers",
11
- "routing-controllers-openapi",
12
10
  "sequelize",
13
11
  "mongoose",
14
- "typegoose",
15
12
  "typeorm",
16
13
  "knex",
17
14
  "prisma",
18
15
  "graphql",
19
- "apollo",
16
+ "typegoose",
17
+ "mikro-orm",
18
+ "routing-controllers",
19
+ "logger",
20
+ "swagger",
20
21
  "jest",
21
22
  "nodemon",
22
- "jsonwebtoken",
23
- "bcrypt",
24
- "logs",
25
- "winston",
26
- "swagger",
27
23
  "pm2",
28
24
  "eslint",
29
25
  "prettier",
30
26
  "docker",
31
27
  "docker-compose",
32
28
  "nginx",
33
- "huskyrc",
34
- "mysql",
35
- "mariadb",
36
- "mongodb",
37
- "postgresql",
38
29
  "swc"
39
30
  ],
40
31
  "main": "bin/cli.js",