From aaa1607a2cf21c36744385a52d39754035b67fb2 Mon Sep 17 00:00:00 2001 From: Gabriele De Rosa Date: Sat, 8 Oct 2022 02:36:26 +0200 Subject: [PATCH] Use fixed dependencies version --- daemon/package.json | 12 ++++++------ package.json | 32 ++++++++++++++++---------------- 2 files changed, 22 insertions(+), 22 deletions(-) diff --git a/daemon/package.json b/daemon/package.json index 8ab48dd..547e94a 100644 --- a/daemon/package.json +++ b/daemon/package.json @@ -6,12 +6,12 @@ "license": "MIT", "main": "app.js", "dependencies": { - "axios": "^0.27.2", - "dotenv": "^16.0.3", - "express": "^4.18.1", - "lowdb": "^1.0.0", - "minimist": "^1.2.6", - "socket.io": "^4.5.2" + "axios": "0.27.2", + "dotenv": "16.0.3", + "express": "4.18.1", + "lowdb": "1.0.0", + "minimist": "1.2.6", + "socket.io": "4.5.2" }, "scripts": { "start": "node app.js" diff --git a/package.json b/package.json index 5a86034..647fc3d 100644 --- a/package.json +++ b/package.json @@ -6,24 +6,24 @@ "license": "MIT", "private": true, "dependencies": { - "@ant-design/icons": "^4.7.0", - "antd": "^4.23.4", - "axios": "^0.27.2", - "lodash.get": "^4.4.2", - "prop-types": "^15.8.1", - "react": "^17.0.2", - "react-dom": "^17.0.2", - "recharts": "^2.1.14", - "socket.io": "^4.5.2", - "socket.io-client": "^4.5.2" + "@ant-design/icons": "4.7.0", + "antd": "4.23.4", + "axios": "0.27.2", + "lodash.get": "4.4.2", + "prop-types": "15.8.1", + "react": "17.0.2", + "react-dom": "17.0.2", + "recharts": "2.1.14", + "socket.io": "4.5.2", + "socket.io-client": "4.5.2" }, "devDependencies": { - "@wojtekmaj/enzyme-adapter-react-17": "^0.6.7", - "enzyme": "^3.11.0", - "moxios": "^0.4.0", - "npm-run-all": "^4.1.5", - "react-scripts": "^5.0.1", - "sass": "^1.55.0" + "@wojtekmaj/enzyme-adapter-react-17": "0.6.7", + "enzyme": "3.11.0", + "moxios": "0.4.0", + "npm-run-all": "4.1.5", + "react-scripts": "5.0.1", + "sass": "1.55.0" }, "scripts": { "daemon": "cd daemon && npm run start",