-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 2.56 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
{
"name": "vechain-hardhat-template",
"version": "1.0.0",
"main": "index.ts",
"types": "index.ts",
"license": "MIT",
"scripts": {
"compile": "npx hardhat compile",
"deploy:hardhat": "npx hardhat run scripts/deploy --network hardhat",
"deploy:solo": "npx hardhat run scripts/deploy --network vechain_solo",
"deploy:testnet": "npx hardhat run scripts/deploy --network vechain_testnet",
"deploy:mainnet": "npx hardhat run scripts/deploy --network vechain_mainnet",
"test": "hardhat test --network hardhat",
"test:thor-solo": "npx hardhat test --network vechain_solo",
"test:coverage:solidity": "hardhat coverage --testfiles ./test/**/*test.ts",
"start-solo": "docker compose up -d",
"stop-solo": "docker compose down",
"clean": "rm -rf dist artifacts typechain-types cache coverage",
"lint": "eslint . --ext .ts",
"format": "eslint . --ext .ts --fix",
"generate-docs": "npx hardhat docgen",
"generate-interface": "yarn hardhat gen-interface"
},
"dependencies": {
"@nomicfoundation/hardhat-chai-matchers": "^2.0.8",
"@nomicfoundation/hardhat-ethers": "^3.0.4",
"@nomicfoundation/hardhat-ignition": "^0.15.5",
"@nomicfoundation/hardhat-ignition-ethers": "^0.15.0",
"@nomicfoundation/hardhat-network-helpers": "^1.0.0",
"@nomicfoundation/hardhat-toolbox": "^5.0.0",
"@nomiclabs/hardhat-etherscan": "^3.0.0",
"@nomiclabs/hardhat-truffle5": "^2.0.7",
"@nomiclabs/hardhat-web3": "^2.0.0",
"@openzeppelin/contracts": "5.0.2",
"@openzeppelin/contracts-upgradeable": "5.0.2",
"@openzeppelin/upgrades-core": "^1.32.5",
"@typechain/hardhat": "^8.0.0",
"@types/chai": "^4.2.0",
"@types/mocha": ">=9.1.0",
"@vechain/hardhat-ethers": "^0.1.9",
"@vechain/sdk-core": "1.0.0-rc.4",
"@vechain/sdk-hardhat-plugin": "1.0.0-rc.4",
"@vechain/web3-providers-connex": "^1.1.2",
"chai": "^4.2.0",
"dayjs": "^1.11.10",
"dotenv": "^16.4.7",
"hardhat": "^2.19.1",
"hardhat-contract-sizer": "^2.10.0",
"hardhat-gas-reporter": "^1.0.8",
"hardhat-ignore-warnings": "^0.2.11",
"hardhat-interface-generator": "^0.0.6",
"prettier-plugin-solidity": "^1.4.1",
"react-slot-counter": "^2.2.5",
"solidity-coverage": "^0.8.13",
"solidity-docgen": "^0.6.0-beta.36",
"ts-node": ">=8.0.0",
"tsx": "^4.19.1",
"typechain": "^8.1.0",
"typescript": ">=4.5.0"
},
"devDependencies": {
"@nomicfoundation/hardhat-verify": "^1.1.1",
"@typechain/ethers-v6": "^0.4.3",
"ethers": "^6.7.1",
"ganache-cli": "^6.12.2",
"hardhat": "^2.19.1"
}
}