-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 2.22 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": "fula-chain",
"private": true,
"version": "1.0.0",
"description": "Fula Blockchain EVM code",
"scripts": {
"lint": "eslint --color --ext .ts scripts/",
"lint:fix": "yarn run lint --fix",
"hardhat": "hardhat",
"build": "hardhat compile",
"hardhat:setpk": "yarn hardhat vars set PK",
"deploy:localhost": "yarn hardhat run scripts/localhost.ts",
"test:governance": "set REPORT_GAS=true && yarn hardhat test test/governance/GovernanceModule.test.ts",
"test:token": "set REPORT_GAS=true && yarn hardhat test test/governance/integration/StorageToken.test.ts",
"test:distribution": "set REPORT_GAS=true && yarn hardhat test test/governance/integration/TokenDistributionEngine.test.ts",
"test:airdrop": "set REPORT_GAS=true && yarn hardhat test test/governance/integration/AirDropContract.test.ts",
"test": "yarn hardhat test"
},
"devDependencies": {
"@nomicfoundation/hardhat-chai-matchers": "^2.0.4",
"@nomicfoundation/hardhat-ethers": "^3.0.8",
"@nomicfoundation/hardhat-ignition-ethers": "0.15.0",
"@nomicfoundation/hardhat-network-helpers": "^1.0.12",
"@nomicfoundation/hardhat-toolbox": "^5.0.0",
"@nomicfoundation/hardhat-verify": "^2.0.12",
"@nomicfoundation/hardhat-web3-v4": "^1.0.0",
"@nomiclabs/hardhat-ethers": "^2.2.3",
"@nomiclabs/hardhat-waffle": "^2.0.6",
"@openzeppelin/hardhat-upgrades": "^3.9.0",
"@typechain/ethers-v6": "^0.5.1",
"@typechain/hardhat": "^9.1.0",
"@types/chai": "^4.2.0",
"@types/eslint": "^8",
"@types/mocha": ">=9.1.0",
"@types/node": "^22.10.2",
"chai": "^4.2.0",
"eslint": "^8",
"ethereum-waffle": "^4.0.10",
"ethers": "^6.13.5",
"hardhat": "^2.22.18",
"hardhat-gas-reporter": "^2.2.2",
"solidity-coverage": "^0.8.7",
"ts-node": ">=8.0.0",
"typechain": "^8.3.2",
"typescript": ">=4.5.0",
"web3": "^4.5.0"
},
"packageManager": "[email protected]",
"dependencies": {
"@chainlink/contracts": "^1.3.0",
"@nomicfoundation/hardhat-ignition": "^0.15.9",
"@openzeppelin/contracts": "^5.2.0",
"@openzeppelin/contracts-upgradeable": "^5.2.0",
"@openzeppelin/upgrades-core": "^1.41.0",
"hardhat-contract-sizer": "^2.10.0",
"tslib": "^2.8.1"
}
}