From bf29381eb7c610f249c7a4fbb97a4fb9d899065d Mon Sep 17 00:00:00 2001 From: Nguyen Minh Tuan Date: Sun, 29 Sep 2024 03:35:55 +0000 Subject: [PATCH] refactor: sort package.json --- api-gateway/package.json | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/api-gateway/package.json b/api-gateway/package.json index 666390a..25bb833 100644 --- a/api-gateway/package.json +++ b/api-gateway/package.json @@ -2,27 +2,24 @@ "name": "dkhptd-api-gateway", "version": "1.0.0", "scripts": { - "dev": "nodemon ./dist/index.js", - "start": "node ./dist/index.js", "build": "tsc", "build:watch": "tsc --watch", - "test:watch": "jest tests --watch", - "test": "jest tests" - }, - "_moduleAliases": { - "src": "dist" + "dev": "nodemon ./dist/index.js", + "start": "node ./dist/index.js", + "test": "jest tests", + "test:watch": "jest tests --watch" }, "dependencies": { "amqplib": "^0.10.4", "axios": "^1.7.4", "cors": "^2.8.5", "dotenv": "^16.4.5", - "express-rate-limit": "^6.11.2", "express": "^4.21.0", - "lodash": "^4.17.21", - "moment": "^2.30.1", + "express-rate-limit": "^6.11.2", "jsonwebtoken": "^9.0.2", + "lodash": "^4.17.21", "module-alias": "^2.2.3", + "moment": "^2.30.1", "mongodb": "^6.0.0", "multer": "^1.4.5-lts.1" }, @@ -43,5 +40,8 @@ "jest": "^29.4.2", "ts-jest": "^29.0.5", "typescript": "^4.8.4" + }, + "_moduleAliases": { + "src": "dist" } }