-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.2 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
{
"name": "smart-contract-boilerplate",
"version": "1.0.0",
"author": "Michael Araque",
"license": "MIT",
"scripts": {
"nodo": "npx hardhat node",
"size": "npx hardhat size-contracts",
"test:light": "npx hardhat test test/Token.ts",
"test": "npx hardhat coverage",
"flatten": "npx hardhat flatten > output.sol",
"uml": "npx sol2uml ./contracts -i test -o ./Contract.png -f png"
},
"repository": {
"type": "git",
"url": "https://github.com/michyaraque/smart-contract-boilerplate"
},
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.3",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@openzeppelin/hardhat-upgrades": "^1.12.0",
"@types/chai": "^4.3.1",
"@types/mocha": "^9.1.1",
"@types/node": "^17.0.29",
"chai": "^4.3.4",
"dotenv": "^16.0.1",
"ethereum-waffle": "^3.4.0",
"ethers": "^5.5.2",
"hardhat": "^2.8.0",
"hardhat-contract-sizer": "^2.5.1",
"hardhat-deploy": "^0.11.4",
"hardhat-gas-reporter": "^1.0.8",
"solidity-coverage": "^0.7.21",
"ts-node": "^10.7.0",
"typescript": "^4.6.3"
},
"dependencies": {
"@nomiclabs/hardhat-etherscan": "^3.0.3",
"@openzeppelin/contracts": "^4.6.0"
}
}