-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.71 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
{
"name": "avalanche-smart-contract-quickstart",
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.2",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@openzeppelin/contracts": "^4.3.0",
"@types/chai": "^4.2.21",
"@types/mocha": "^9.0.0",
"@types/node": "^16.7.1",
"avalanche": "3.8.5",
"chai": "^4.3.4",
"ethereum-waffle": "^3.4.0",
"ethereumjs-tx": "^2.1.2",
"ethers": "^5.4.5",
"hardhat": "2.6.1",
"ts-node": "^10.2.1",
"web3": "^1.5.2"
},
"version": "1.0.0",
"description": "",
"main": "index.js",
"repository": "https://github.com/ava-labs/avalanche-smart-contract-quickstart",
"author": "Connor Daly <connor.daly@avalabs.org>",
"contributors": [
"Gabriel Cardona <gabriel@avalabs.org>"
],
"license": "BSD-3-Clause",
"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.ts",
"erc20": "npx hardhat run scripts/erc20.ts",
"nft": "npx hardhat run scripts/nft.ts --network mainnet",
"storage": "npx hardhat run scripts/storage.ts",
"send-avax-wallet-signer": "npx hardhat run scripts/sendAvaxWalletSigner.ts",
"send-avax-json-provider": "npx hardhat run scripts/sendAvaxJSONProvider.ts",
"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": {
"typescript": "^4.5.4"
},
"engines": {
"node": ">=14.17.0"
}
}