typescript-express-starter 8.1.7 → 9.1.1
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.kr.md +5 -6
- package/README.md +5 -4
- package/lib/default/package.json +7 -10
- package/lib/default/src/http/auth.http +0 -5
- package/lib/default/swagger.yaml +0 -3
- package/lib/graphql/.env.development.local +1 -1
- package/lib/graphql/.env.production.local +1 -1
- package/lib/graphql/package.json +6 -9
- package/lib/knex/.env.development.local +1 -1
- package/lib/knex/.env.production.local +1 -1
- package/lib/knex/package.json +21 -24
- package/lib/knex/src/http/auth.http +0 -5
- package/lib/knex/swagger.yaml +0 -3
- package/lib/mikro-orm/.dockerignore +18 -0
- package/lib/mikro-orm/.editorconfig +9 -0
- package/lib/mikro-orm/.env.development.local +18 -0
- package/lib/mikro-orm/.env.production.local +18 -0
- package/lib/mikro-orm/.env.test.local +18 -0
- package/lib/mikro-orm/.eslintignore +1 -0
- package/lib/mikro-orm/.eslintrc +18 -0
- package/lib/mikro-orm/.huskyrc +5 -0
- package/lib/mikro-orm/.lintstagedrc.json +5 -0
- package/lib/mikro-orm/.prettierrc +8 -0
- package/lib/mikro-orm/.swcrc +41 -0
- package/lib/mikro-orm/.vscode/launch.json +35 -0
- package/lib/mikro-orm/.vscode/settings.json +6 -0
- package/lib/mikro-orm/Dockerfile +24 -0
- package/lib/mikro-orm/Makefile +29 -0
- package/lib/mikro-orm/docker-compose.yml +46 -0
- package/lib/mikro-orm/ecosystem.config.js +57 -0
- package/lib/mikro-orm/jest.config.js +12 -0
- package/lib/mikro-orm/nginx.conf +40 -0
- package/lib/mikro-orm/nodemon.json +12 -0
- package/lib/mikro-orm/package.json +77 -0
- package/lib/mikro-orm/src/app.ts +98 -0
- package/lib/mikro-orm/src/config/index.ts +5 -0
- package/lib/mikro-orm/src/controllers/auth.controller.ts +46 -0
- package/lib/mikro-orm/src/controllers/index.controller.ts +13 -0
- package/lib/mikro-orm/src/controllers/users.controller.ts +65 -0
- package/lib/mikro-orm/src/databases/index.ts +19 -0
- package/lib/mikro-orm/src/dtos/users.dto.ts +9 -0
- package/lib/mikro-orm/src/entities/base.entity.ts +16 -0
- package/lib/mikro-orm/src/entities/users.entity.ts +17 -0
- package/lib/mikro-orm/src/exceptions/HttpException.ts +10 -0
- package/lib/mikro-orm/src/http/auth.http +32 -0
- package/lib/mikro-orm/src/http/users.http +34 -0
- package/lib/mikro-orm/src/interfaces/auth.interface.ts +15 -0
- package/lib/mikro-orm/src/interfaces/routes.interface.ts +6 -0
- package/lib/mikro-orm/src/interfaces/users.interface.ts +5 -0
- package/lib/mikro-orm/src/middlewares/auth.middleware.ts +32 -0
- package/lib/mikro-orm/src/middlewares/error.middleware.ts +17 -0
- package/lib/mikro-orm/src/middlewares/validation.middleware.ts +25 -0
- package/lib/mikro-orm/src/routes/auth.route.ts +24 -0
- package/lib/mikro-orm/src/routes/index.route.ts +19 -0
- package/lib/mikro-orm/src/routes/users.route.ts +25 -0
- package/lib/mikro-orm/src/server.ts +11 -0
- package/lib/mikro-orm/src/services/auth.service.ts +63 -0
- package/lib/mikro-orm/src/services/users.service.ts +68 -0
- package/lib/mikro-orm/src/tests/auth.test.ts +66 -0
- package/lib/mikro-orm/src/tests/index.test.ts +18 -0
- package/lib/mikro-orm/src/tests/users.test.ts +70 -0
- package/lib/mikro-orm/src/utils/logger.ts +65 -0
- package/lib/mikro-orm/src/utils/util.ts +19 -0
- package/lib/mikro-orm/src/utils/validateEnv.ts +10 -0
- package/lib/mikro-orm/swagger.yaml +122 -0
- package/lib/mikro-orm/tsconfig.json +41 -0
- package/lib/mongoose/.env.development.local +1 -1
- package/lib/mongoose/.env.production.local +1 -1
- package/lib/mongoose/package.json +5 -8
- package/lib/mongoose/src/http/auth.http +0 -5
- package/lib/mongoose/swagger.yaml +0 -2
- package/lib/prisma/.env.development.local +1 -1
- package/lib/prisma/.env.production.local +1 -1
- package/lib/prisma/package.json +5 -8
- package/lib/prisma/src/http/auth.http +0 -5
- package/lib/prisma/swagger.yaml +0 -3
- package/lib/routing-controllers/package.json +6 -8
- package/lib/routing-controllers/src/http/auth.http +0 -5
- package/lib/sequelize/.env.development.local +1 -1
- package/lib/sequelize/.env.production.local +1 -1
- package/lib/sequelize/package.json +5 -8
- package/lib/sequelize/src/http/auth.http +0 -5
- package/lib/sequelize/swagger.yaml +0 -3
- package/lib/typegoose/.env.development.local +1 -1
- package/lib/typegoose/.env.production.local +1 -1
- package/lib/typegoose/package.json +4 -7
- package/lib/typegoose/src/http/auth.http +0 -5
- package/lib/typegoose/swagger.yaml +0 -2
- package/lib/typeorm/.env.development.local +1 -1
- package/lib/typeorm/.env.production.local +1 -1
- package/lib/typeorm/package.json +4 -7
- package/lib/typeorm/src/http/auth.http +0 -5
- package/lib/typeorm/swagger.yaml +0 -3
- package/package.json +6 -15
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
},
|
|
18
18
|
"dependencies": {
|
|
19
19
|
"bcrypt": "^5.0.1",
|
|
20
|
-
"class-transformer": "^0.
|
|
20
|
+
"class-transformer": "^0.5.1",
|
|
21
21
|
"class-validator": "^0.13.1",
|
|
22
22
|
"compression": "^1.7.4",
|
|
23
23
|
"cookie-parser": "^1.4.5",
|
|
@@ -42,11 +42,9 @@
|
|
|
42
42
|
"@types/compression": "^1.7.1",
|
|
43
43
|
"@types/cookie-parser": "^1.4.2",
|
|
44
44
|
"@types/cors": "^2.8.11",
|
|
45
|
-
"@types/dotenv": "^8.2.0",
|
|
46
45
|
"@types/express": "^4.17.13",
|
|
47
|
-
"@types/helmet": "^4.0.0",
|
|
48
46
|
"@types/hpp": "^0.2.1",
|
|
49
|
-
"@types/jest": "
|
|
47
|
+
"@types/jest": "27.4.x",
|
|
50
48
|
"@types/jsonwebtoken": "^8.5.4",
|
|
51
49
|
"@types/mongoose": "^5.10.1",
|
|
52
50
|
"@types/morgan": "^1.9.3",
|
|
@@ -54,7 +52,6 @@
|
|
|
54
52
|
"@types/supertest": "^2.0.11",
|
|
55
53
|
"@types/swagger-jsdoc": "^6.0.1",
|
|
56
54
|
"@types/swagger-ui-express": "^4.1.3",
|
|
57
|
-
"@types/winston": "^2.4.4",
|
|
58
55
|
"@typescript-eslint/eslint-plugin": "^4.28.2",
|
|
59
56
|
"@typescript-eslint/parser": "^4.28.2",
|
|
60
57
|
"cross-env": "^7.0.3",
|
|
@@ -62,15 +59,15 @@
|
|
|
62
59
|
"eslint-config-prettier": "^8.3.0",
|
|
63
60
|
"eslint-plugin-prettier": "^3.4.0",
|
|
64
61
|
"husky": "^7.0.1",
|
|
65
|
-
"jest": "
|
|
62
|
+
"jest": "27.4.x",
|
|
66
63
|
"lint-staged": "^11.0.0",
|
|
67
64
|
"node-config": "^0.0.2",
|
|
68
65
|
"node-gyp": "^8.1.0",
|
|
69
66
|
"nodemon": "^2.0.9",
|
|
70
67
|
"pm2": "^5.1.0",
|
|
71
68
|
"prettier": "^2.3.2",
|
|
72
|
-
"supertest": "^6.
|
|
73
|
-
"ts-jest": "^27.
|
|
69
|
+
"supertest": "^6.2.2",
|
|
70
|
+
"ts-jest": "^27.1.4",
|
|
74
71
|
"ts-node": "^10.4.0",
|
|
75
72
|
"tsc-alias": "^1.4.1",
|
|
76
73
|
"tsconfig-paths": "^3.10.1",
|
package/lib/prisma/package.json
CHANGED
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
"dependencies": {
|
|
25
25
|
"@prisma/client": "^3.7.0",
|
|
26
26
|
"bcrypt": "^5.0.1",
|
|
27
|
-
"class-transformer": "^0.
|
|
27
|
+
"class-transformer": "^0.5.1",
|
|
28
28
|
"class-validator": "^0.13.1",
|
|
29
29
|
"compression": "^1.7.4",
|
|
30
30
|
"cookie-parser": "^1.4.5",
|
|
@@ -48,18 +48,15 @@
|
|
|
48
48
|
"@types/compression": "^1.7.1",
|
|
49
49
|
"@types/cookie-parser": "^1.4.2",
|
|
50
50
|
"@types/cors": "^2.8.11",
|
|
51
|
-
"@types/dotenv": "^8.2.0",
|
|
52
51
|
"@types/express": "^4.17.13",
|
|
53
|
-
"@types/helmet": "^4.0.0",
|
|
54
52
|
"@types/hpp": "^0.2.1",
|
|
55
|
-
"@types/jest": "
|
|
53
|
+
"@types/jest": "27.4.x",
|
|
56
54
|
"@types/jsonwebtoken": "^8.5.4",
|
|
57
55
|
"@types/morgan": "^1.9.3",
|
|
58
56
|
"@types/node": "^16.0.1",
|
|
59
57
|
"@types/supertest": "^2.0.11",
|
|
60
58
|
"@types/swagger-jsdoc": "^6.0.1",
|
|
61
59
|
"@types/swagger-ui-express": "^4.1.3",
|
|
62
|
-
"@types/winston": "^2.4.4",
|
|
63
60
|
"@typescript-eslint/eslint-plugin": "^4.28.2",
|
|
64
61
|
"@typescript-eslint/parser": "^4.28.2",
|
|
65
62
|
"cross-env": "^7.0.3",
|
|
@@ -67,7 +64,7 @@
|
|
|
67
64
|
"eslint-config-prettier": "^8.3.0",
|
|
68
65
|
"eslint-plugin-prettier": "^3.4.0",
|
|
69
66
|
"husky": "^7.0.1",
|
|
70
|
-
"jest": "
|
|
67
|
+
"jest": "27.4.x",
|
|
71
68
|
"lint-staged": "^11.0.0",
|
|
72
69
|
"node-config": "^0.0.2",
|
|
73
70
|
"node-gyp": "^8.1.0",
|
|
@@ -75,8 +72,8 @@
|
|
|
75
72
|
"pm2": "^5.1.0",
|
|
76
73
|
"prettier": "^2.3.2",
|
|
77
74
|
"prisma": "^3.7.0",
|
|
78
|
-
"supertest": "^6.
|
|
79
|
-
"ts-jest": "^27.
|
|
75
|
+
"supertest": "^6.2.2",
|
|
76
|
+
"ts-jest": "^27.1.4",
|
|
80
77
|
"ts-node": "^10.4.0",
|
|
81
78
|
"tsc-alias": "^1.4.1",
|
|
82
79
|
"tsconfig-paths": "^3.10.1",
|
package/lib/prisma/swagger.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "typescript-express-starter",
|
|
3
3
|
"version": "0.0.0",
|
|
4
|
-
"description": "TypeScript +
|
|
4
|
+
"description": "TypeScript + Routing Controllers + Express API Server",
|
|
5
5
|
"author": "",
|
|
6
6
|
"license": "ISC",
|
|
7
7
|
"scripts": {
|
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
},
|
|
18
18
|
"dependencies": {
|
|
19
19
|
"bcrypt": "^5.0.1",
|
|
20
|
-
"class-transformer": "^0.
|
|
20
|
+
"class-transformer": "^0.5.1",
|
|
21
21
|
"class-validator": "^0.13.1",
|
|
22
22
|
"class-validator-jsonschema": "^3.0.2",
|
|
23
23
|
"compression": "^1.7.4",
|
|
@@ -44,17 +44,14 @@
|
|
|
44
44
|
"@types/compression": "^1.7.1",
|
|
45
45
|
"@types/cookie-parser": "^1.4.2",
|
|
46
46
|
"@types/cors": "^2.8.11",
|
|
47
|
-
"@types/dotenv": "^8.2.0",
|
|
48
47
|
"@types/express": "^4.17.13",
|
|
49
|
-
"@types/helmet": "^4.0.0",
|
|
50
48
|
"@types/hpp": "^0.2.1",
|
|
51
|
-
"@types/jest": "
|
|
49
|
+
"@types/jest": "27.4.x",
|
|
52
50
|
"@types/jsonwebtoken": "^8.5.4",
|
|
53
51
|
"@types/morgan": "^1.9.3",
|
|
54
52
|
"@types/node": "^16.0.1",
|
|
55
53
|
"@types/supertest": "^2.0.11",
|
|
56
54
|
"@types/swagger-ui-express": "^4.1.3",
|
|
57
|
-
"@types/winston": "^2.4.4",
|
|
58
55
|
"@typescript-eslint/eslint-plugin": "^4.28.2",
|
|
59
56
|
"@typescript-eslint/parser": "^4.28.2",
|
|
60
57
|
"cross-env": "^7.0.3",
|
|
@@ -62,14 +59,15 @@
|
|
|
62
59
|
"eslint-config-prettier": "^8.3.0",
|
|
63
60
|
"eslint-plugin-prettier": "^3.4.0",
|
|
64
61
|
"husky": "^7.0.1",
|
|
65
|
-
"jest": "
|
|
62
|
+
"jest": "27.4.x",
|
|
66
63
|
"lint-staged": "^11.0.0",
|
|
67
64
|
"node-config": "^0.0.2",
|
|
68
65
|
"node-gyp": "^8.1.0",
|
|
69
66
|
"nodemon": "^2.0.9",
|
|
70
67
|
"pm2": "^5.1.0",
|
|
71
68
|
"prettier": "^2.3.2",
|
|
72
|
-
"
|
|
69
|
+
"supertest": "^6.2.2",
|
|
70
|
+
"ts-jest": "^27.1.4",
|
|
73
71
|
"ts-node": "^10.4.0",
|
|
74
72
|
"tsc-alias": "^1.4.1",
|
|
75
73
|
"tsconfig-paths": "^3.10.1",
|
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
},
|
|
18
18
|
"dependencies": {
|
|
19
19
|
"bcrypt": "^5.0.1",
|
|
20
|
-
"class-transformer": "^0.
|
|
20
|
+
"class-transformer": "^0.5.1",
|
|
21
21
|
"class-validator": "^0.13.1",
|
|
22
22
|
"compression": "^1.7.4",
|
|
23
23
|
"cookie-parser": "^1.4.5",
|
|
@@ -43,11 +43,9 @@
|
|
|
43
43
|
"@types/compression": "^1.7.1",
|
|
44
44
|
"@types/cookie-parser": "^1.4.2",
|
|
45
45
|
"@types/cors": "^2.8.11",
|
|
46
|
-
"@types/dotenv": "^8.2.0",
|
|
47
46
|
"@types/express": "^4.17.13",
|
|
48
|
-
"@types/helmet": "^4.0.0",
|
|
49
47
|
"@types/hpp": "^0.2.1",
|
|
50
|
-
"@types/jest": "
|
|
48
|
+
"@types/jest": "27.4.x",
|
|
51
49
|
"@types/jsonwebtoken": "^8.5.4",
|
|
52
50
|
"@types/morgan": "^1.9.3",
|
|
53
51
|
"@types/node": "^16.0.1",
|
|
@@ -55,7 +53,6 @@
|
|
|
55
53
|
"@types/supertest": "^2.0.11",
|
|
56
54
|
"@types/swagger-jsdoc": "^6.0.1",
|
|
57
55
|
"@types/swagger-ui-express": "^4.1.3",
|
|
58
|
-
"@types/winston": "^2.4.4",
|
|
59
56
|
"@typescript-eslint/eslint-plugin": "^4.28.2",
|
|
60
57
|
"@typescript-eslint/parser": "^4.28.2",
|
|
61
58
|
"cross-env": "^7.0.3",
|
|
@@ -63,7 +60,7 @@
|
|
|
63
60
|
"eslint-config-prettier": "^8.3.0",
|
|
64
61
|
"eslint-plugin-prettier": "^3.4.0",
|
|
65
62
|
"husky": "^7.0.1",
|
|
66
|
-
"jest": "
|
|
63
|
+
"jest": "27.4.x",
|
|
67
64
|
"lint-staged": "^11.0.0",
|
|
68
65
|
"node-config": "^0.0.2",
|
|
69
66
|
"node-gyp": "^8.1.0",
|
|
@@ -71,8 +68,8 @@
|
|
|
71
68
|
"pm2": "^5.1.0",
|
|
72
69
|
"prettier": "^2.3.2",
|
|
73
70
|
"sequelize-cli": "^6.2.0",
|
|
74
|
-
"supertest": "^6.
|
|
75
|
-
"ts-jest": "^27.
|
|
71
|
+
"supertest": "^6.2.2",
|
|
72
|
+
"ts-jest": "^27.1.4",
|
|
76
73
|
"ts-node": "^10.4.0",
|
|
77
74
|
"tsc-alias": "^1.4.1",
|
|
78
75
|
"tsconfig-paths": "^3.10.1",
|
|
@@ -43,11 +43,9 @@
|
|
|
43
43
|
"@types/compression": "^1.7.1",
|
|
44
44
|
"@types/cookie-parser": "^1.4.2",
|
|
45
45
|
"@types/cors": "^2.8.11",
|
|
46
|
-
"@types/dotenv": "^8.2.0",
|
|
47
46
|
"@types/express": "^4.17.13",
|
|
48
|
-
"@types/helmet": "^4.0.0",
|
|
49
47
|
"@types/hpp": "^0.2.1",
|
|
50
|
-
"@types/jest": "
|
|
48
|
+
"@types/jest": "27.4.x",
|
|
51
49
|
"@types/jsonwebtoken": "^8.5.4",
|
|
52
50
|
"@types/mongoose": "^5.10.1",
|
|
53
51
|
"@types/morgan": "^1.9.3",
|
|
@@ -55,7 +53,6 @@
|
|
|
55
53
|
"@types/supertest": "^2.0.11",
|
|
56
54
|
"@types/swagger-jsdoc": "^6.0.1",
|
|
57
55
|
"@types/swagger-ui-express": "^4.1.3",
|
|
58
|
-
"@types/winston": "^2.4.4",
|
|
59
56
|
"@typescript-eslint/eslint-plugin": "^4.28.2",
|
|
60
57
|
"@typescript-eslint/parser": "^4.28.2",
|
|
61
58
|
"cross-env": "^7.0.3",
|
|
@@ -63,15 +60,15 @@
|
|
|
63
60
|
"eslint-config-prettier": "^8.3.0",
|
|
64
61
|
"eslint-plugin-prettier": "^3.4.0",
|
|
65
62
|
"husky": "^7.0.1",
|
|
66
|
-
"jest": "
|
|
63
|
+
"jest": "27.4.x",
|
|
67
64
|
"lint-staged": "^11.0.0",
|
|
68
65
|
"node-config": "^0.0.2",
|
|
69
66
|
"node-gyp": "^8.1.0",
|
|
70
67
|
"nodemon": "^2.0.9",
|
|
71
68
|
"pm2": "^5.1.0",
|
|
72
69
|
"prettier": "^2.3.2",
|
|
73
|
-
"supertest": "^6.
|
|
74
|
-
"ts-jest": "^27.
|
|
70
|
+
"supertest": "^6.2.2",
|
|
71
|
+
"ts-jest": "^27.1.4",
|
|
75
72
|
"ts-node": "^10.4.0",
|
|
76
73
|
"tsc-alias": "^1.4.1",
|
|
77
74
|
"tsconfig-paths": "^3.10.1",
|
package/lib/typeorm/package.json
CHANGED
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
},
|
|
18
18
|
"dependencies": {
|
|
19
19
|
"bcrypt": "^5.0.1",
|
|
20
|
-
"class-transformer": "^0.
|
|
20
|
+
"class-transformer": "^0.5.1",
|
|
21
21
|
"class-validator": "^0.13.1",
|
|
22
22
|
"compression": "^1.7.4",
|
|
23
23
|
"cookie-parser": "^1.4.5",
|
|
@@ -44,18 +44,15 @@
|
|
|
44
44
|
"@types/compression": "^1.7.1",
|
|
45
45
|
"@types/cookie-parser": "^1.4.2",
|
|
46
46
|
"@types/cors": "^2.8.11",
|
|
47
|
-
"@types/dotenv": "^8.2.0",
|
|
48
47
|
"@types/express": "^4.17.13",
|
|
49
|
-
"@types/helmet": "^4.0.0",
|
|
50
48
|
"@types/hpp": "^0.2.1",
|
|
51
|
-
"@types/jest": "
|
|
49
|
+
"@types/jest": "27.4.x",
|
|
52
50
|
"@types/jsonwebtoken": "^8.5.4",
|
|
53
51
|
"@types/morgan": "^1.9.3",
|
|
54
52
|
"@types/node": "^16.0.1",
|
|
55
53
|
"@types/supertest": "^2.0.11",
|
|
56
54
|
"@types/swagger-jsdoc": "^6.0.1",
|
|
57
55
|
"@types/swagger-ui-express": "^4.1.3",
|
|
58
|
-
"@types/winston": "^2.4.4",
|
|
59
56
|
"@typescript-eslint/eslint-plugin": "^4.28.2",
|
|
60
57
|
"@typescript-eslint/parser": "^4.28.2",
|
|
61
58
|
"cross-env": "^7.0.3",
|
|
@@ -70,8 +67,8 @@
|
|
|
70
67
|
"nodemon": "^2.0.9",
|
|
71
68
|
"pm2": "^5.1.0",
|
|
72
69
|
"prettier": "^2.3.2",
|
|
73
|
-
"supertest": "^6.
|
|
74
|
-
"ts-jest": "^27.
|
|
70
|
+
"supertest": "^6.2.2",
|
|
71
|
+
"ts-jest": "^27.1.4",
|
|
75
72
|
"ts-node": "^10.4.0",
|
|
76
73
|
"tsc-alias": "^1.4.1",
|
|
77
74
|
"tsconfig-paths": "^3.10.1",
|
package/lib/typeorm/swagger.yaml
CHANGED
package/package.json
CHANGED
|
@@ -1,40 +1,31 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "typescript-express-starter",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "9.1.1",
|
|
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
|
-
"
|
|
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",
|