Update package.json

adding compile step for convenience
adding dependencies
This commit is contained in:
nikolaivanovj 2025-01-10 16:47:06 +02:00 committed by GitHub
parent 4b2703c9ef
commit 8f9f38781b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -8,7 +8,10 @@
"test": "tests" "test": "tests"
}, },
"scripts": { "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": [], "keywords": [],
"author": "", "author": "",
@ -18,6 +21,10 @@
"hardhat": "^2.22.17" "hardhat": "^2.22.17"
}, },
"dependencies": { "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"
} }
} }