-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 970 Bytes
/
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
{
"name": "smart-contracts",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/NetBlockGit/smart-contracts.git",
"author": "thisisommore <[email protected]>",
"license": "MIT",
"scripts": {
"test": "hardhat test",
"lint": "solhint 'contracts/**/*.sol'",
"compile": "hardhat compile",
"deploy": "hardhat run scripts/deploy.ts --network maticmum",
"verify": "hardhat verify --network maticmum $ADDRESS"
},
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.0",
"@nomiclabs/hardhat-etherscan": "^3.0.0",
"@nomiclabs/hardhat-waffle": "^2.0.0",
"@typechain/ethers-v5": "^8.0.5",
"@typechain/hardhat": "^3.1.0",
"@types/mocha": "^9.0.0",
"@types/node": "^17.0.8",
"chai": "^4.2.0",
"ethereum-waffle": "^3.4.0",
"ethers": "^5.0.0",
"hardhat": "^2.8.1",
"solhint": "^3.3.6",
"ts-node": "^10.4.0",
"typechain": "^6.1.0",
"typescript": "^4.5.4"
}
}