-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
58 lines (58 loc) · 2.26 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "contracts-boilerplate",
"version": "1.1.0",
"main": "index.js",
"license": "i-link.pro",
"scripts": {
"prepare": "husky install",
"compile": "npx hardhat compile",
"test": "npx hardhat test",
"format": "prettier --write \"tests/**/*.ts\" \"tasks/**/*.ts\" \"contracts/**/*.sol\" \"hardhat.config.ts\"",
"pretty-quick": "pretty-quick --staged",
"deploy:avalanche": "hardhat --network avalanche deploy",
"verify:avalanche": "hardhat --network avalanche etherscan-verify --solc-input",
"export:avalanche": "hardhat --network avalanche export --export deployments/avalanche.json",
"deploy:fuji": "hardhat --network fuji deploy",
"verify:fuji": "hardhat --network fuji etherscan-verify --solc-input",
"export:fuji": "hardhat --network fuji export --export deployments/fuji.json",
"deploy:ropsten": "hardhat --network ropsten deploy",
"deploy:ropsten:new": "hardhat --network ropsten deploy --reset",
"verify:ropsten": "hardhat --network ropsten etherscan-verify --solc-input",
"export:ropsten": "hardhat --network ropsten export --export deployments/ropsten.json",
"release": "standard-version --commit-all",
"first-release": "standard-version --commit-all --first-release"
},
"devDependencies": {
"@nomiclabs/buidler": "1.4.8",
"@nomiclabs/hardhat-ethers": "2.0.5",
"@nomiclabs/hardhat-etherscan": "2.1.8",
"@nomiclabs/hardhat-waffle": "2.0.1",
"@openzeppelin/contracts": "4.4.2",
"@openzeppelin/contracts-upgradeable": "4.4.2",
"@openzeppelin/hardhat-upgrades": "1.14.0",
"@typechain/ethers-v5": "7.0.1",
"@typechain/hardhat": "2.3.0",
"@types/chai": "4.2.21",
"@types/mocha": "9.0.0",
"@types/node": "16.9.0",
"chai": "4.3.4",
"dotenv": "^16.0.0",
"ethereum-waffle": "^3.4.4",
"ethers": "5.4.6",
"hardhat": "2.9.1",
"hardhat-abi-exporter": "2.4.0",
"hardhat-deploy": "0.11.4",
"hardhat-gas-reporter": "1.0.8",
"husky": "7.0.4",
"prettier": "2.6.2",
"prettier-plugin-solidity": "^1.0.0-beta.19",
"pretty-quick": "3.1.3",
"solidity-coverage": "0.7.20",
"standard-version": "^9.3.0",
"ts-generator": "0.1.1",
"ts-node": "10.2.1",
"typechain": "5.1.2",
"typescript": "4.4.2"
},
"dependencies": {}
}