-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
82 lines (82 loc) · 3.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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "@b-street/hardhat-starter",
"version": "1.0.0",
"description": "A boilerplate repository to get you started with Hardhat and Ethereum development",
"scripts": {
"resetup": "rm -rf node_modules; rm yarn.lock; rm package-lock.json; yarn",
"clean": "npx hardhat clean",
"build": "npx hardhat compile",
"rebuild": "yarn clean ; yarn build",
"deploy": "npx hardhat deploy",
"check-env": "dotenv -- cross-var echo %INFURA_ID%",
"fork": "dotenv -- cross-var hardhat node",
"test": "hardhat tests",
"mocha:test": "mocha --watch -r ts-node/register tests/lib/**",
"copy-static-assets": "ts-node copyStaticAssets.ts",
"local:deploy": "hardhat --network localhost deploy",
"local:verify": "hardhat --network localhost etherscan-verify --license GPL-3.0 --force-license",
"local:export": "hardhat --network localhost export",
"avax:mainnet:deploy": "hardhat --network avalanche deploy",
"avax:mainnet:verify": "hardhat --network avalanche etherscan-verify --license GPL-3.0 --force-license",
"avax:mainnet:export": "hardhat --network avalanche export",
"avax:testnet:deploy": "hardhat --network fuji deploy",
"avax:testnet:verify": "hardhat --network fuji etherscan-verify --license GPL-3.0 --force-license",
"avax:testnet:export": "hardhat --network fuji export",
"export:all": "hardhat export --export-all exports/all.json",
"size": "hardhat compile && hardhat size-contracts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/b-street/hardhat-starter.git"
},
"author": "Michael Smyers",
"license": "MIT",
"bugs": {
"url": "https://github.com/b-street/hardhat-starter/issues"
},
"homepage": "https://github.com/b-street/hardhat-starter#readme",
"devDependencies": {
"@ethersproject/abi": "^5.4.7",
"@ethersproject/bytes": "^5.0.0",
"@ethersproject/providers": "^5.4.7",
"@nomicfoundation/hardhat-chai-matchers": "^1.0.2",
"@nomicfoundation/hardhat-network-helpers": "^1.0.3",
"@nomicfoundation/hardhat-toolbox": "^1.0.2",
"@nomiclabs/hardhat-ethers": "yarn:hardhat-deploy-ethers",
"@nomiclabs/hardhat-etherscan": "^3.0.0",
"@nomiclabs/hardhat-solhint": "^2.0.1",
"@typechain/ethers-v5": "^10.1.0",
"@typechain/hardhat": "^6.1.2",
"@types/chai": "^4.2.0",
"@types/mocha": "^9.0.0",
"@types/node": "^14.0.0",
"chai": "^4.2.0",
"chalk": "^4.1.0",
"cross-var": "^1.1.0",
"dotenv": "^16.0.1",
"dotenv-cli": "^6.0.0",
"ethers": "^5.6.9",
"hardhat": "^2.9.9",
"hardhat-contract-sizer": "^2.6.1",
"hardhat-deploy": "^0.11.12",
"hardhat-deploy-ethers": "0.3.0-beta.13",
"hardhat-docgen": "^1.3.0",
"hardhat-gas-reporter": "^1.0.8",
"hardhat-interface-generator": "^0.0.6",
"hardhat-log-remover": "^2.0.2",
"hardhat-preprocessor": "^0.1.4",
"hardhat-spdx-license-identifier": "^2.0.3",
"hardhat-tracer": "^1.0.0-alpha.6",
"hardhat-watcher": "^2.1.1",
"jest": "24",
"mocha": "^10.0.0",
"solidity-coverage": "^0.7.21",
"ts-generator": "^0.1.1",
"ts-jest": "^24.0.2",
"ts-node": "^10.1.0",
"tslint": "^5.15.0",
"typechain": "^8.1.0",
"typescript": "^4.3.5"
},
"dependencies": {}
}