-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 1.17 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
{
"name": "avalanche-smart-contract-quickstart",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"precompile": "rimraf ./build/",
"compile": "npx hardhat compile",
"console": "npx hardhat console",
"pretest": "yarn compile",
"test": "npx hardhat test",
"deploy": "npx hardhat run scripts/deploy.js",
"send-avax": "npx hardhat run scripts/sendAvax.js",
"lint": "prettier ./test/**/*.ts --check",
"prepublishOnly": "yarn test",
"hardhat": "npx hardhat",
"accounts": "npx hardhat accounts",
"balances": "npx hardhat balances",
"fund-cchain-addresses": "npx hardhat run scripts/fund-cchain-addresses.js"
},
"dependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.1",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@openzeppelin/contracts": "^3.4.0",
"avalanche": "3.2.0",
"chai": "^4.2.0",
"dotenv": "^10.0.0",
"ethereum-waffle": "^3.2.1",
"ethereumjs-tx": "^2.1.2",
"ethers": "^5.0.24",
"hardhat": "^2.9.0",
"moment": "^2.29.1",
"web3": "^1.3.1"
}
}