From 8f9f38781ba7aaca17a134819427280aef2eaaba Mon Sep 17 00:00:00 2001 From: nikolaivanovj <110764167+nikolaivanovj@users.noreply.github.com> Date: Fri, 10 Jan 2025 16:47:06 +0200 Subject: [PATCH] Update package.json adding compile step for convenience adding dependencies --- hardhat/package.json | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/hardhat/package.json b/hardhat/package.json index 20f1d33cbb..ca857443fc 100644 --- a/hardhat/package.json +++ b/hardhat/package.json @@ -8,7 +8,10 @@ "test": "tests" }, "scripts": { - "test": "echo \"Error: no test specified\" && exit 1" + "test": "echo \"Error: no test specified\" && exit 1", + "compile": "npx hardhat compile", + "deploy": "npx hardhat run scripts/deploy.js", + "audit-fix": "npm audit fix --force" }, "keywords": [], "author": "", @@ -18,6 +21,10 @@ "hardhat": "^2.22.17" }, "dependencies": { - "@openzeppelin/contracts": "^5.1.0" + "@openzeppelin/contracts": "^5.1.0", + "@ethersproject/contracts": "^5.0.0", + "glob": "^9.0.0", + "elliptic": "^6.5.8", + "ws": "^8.0.0" } }