-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.45 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
{
"name": "accountable-core",
"version": "1.0.0",
"description": "A Project to ensure Accountability among participants",
"main": "index.js",
"scripts": {
"clean": "npx hardhat clean",
"compile": "npx hardhat compile",
"lint": "npx solhint contracts/**/*.sol",
"lint:fix": "npx solhint --fix contracts/**/*.sol",
"format": "npx prettier --write .",
"coverage": "npx hardhat coverage",
"test": "npx hardhat test",
"test:sepolia": "npx hardhat test --network sepolia",
"test:mumbai": "npx hardhat test --network mumbai",
"deploy": "npx hardhat deploy",
"deploy:sepolia": "npx hardhat deploy --network sepolia",
"deploy:mumbai": "npx hardhat deploy --network mumbai",
"deploy:mainnet": "npx hardhat deploy --network mainnet",
"deploy:polygon": "npx hardhat deploy --network polygon"
},
"repository": {
"type": "git",
"url": "[email protected]:MahithChigurupati/Accountable-CORE.git"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@nomicfoundation/hardhat-toolbox": "^3.0.0",
"@nomiclabs/hardhat-ethers": "npm:hardhat-deploy-ethers@^0.4.1",
"@nomiclabs/hardhat-solhint": "^3.0.1",
"ethers": "^6.6.4",
"hardhat": "^2.17.0",
"hardhat-deploy": "^0.11.34",
"hardhat-deploy-ethers": "^0.4.1",
"solidity-coverage": "^0.8.4"
},
"dependencies": {
"@chainlink/contracts": "^0.6.1",
"@openzeppelin/contracts": "^4.9.2",
"dotenv": "^16.3.1"
}
}