-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.61 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
{
"name": "ForestTokenSmartContract",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/MASDXI/Forest.git",
"license": "Apache-2.0",
"scripts": {
"besu:start": "cd $(pwd)/test/simulators/besu && $(pwd)/scripts/start.sh",
"besu:stop": "cd $(pwd)/test/simulators/besu && $(pwd)/scripts/stop.sh",
"build": "npx hardhat clean && npx hardhat test && npx hardhat compile",
"clean": "npx hardhat clean",
"compile": "npx hardhat compile",
"coverage": "npx hardhat coverage",
"geth:start": "cd $(pwd)/test/simulators/geth && $(pwd)/scripts/start.sh",
"geth:stop": "cd $(pwd)/test/simulators/geth && $(pwd)/scripts/stop.sh",
"node:start": "npx hardhat node",
"simulation": "echo \"Not implemented yet.\"",
"test": "npx hardhat clean && npx hardhat test",
"install:requirements": "pip install -r requirements.txt"
},
"dependencies": {
"hardhat": "^2.22.8"
},
"devDependencies": {
"@nomicfoundation/hardhat-chai-matchers": "^2.0.0",
"@nomicfoundation/hardhat-ethers": "^3.0.0",
"@nomicfoundation/hardhat-ignition": "^0.15.0",
"@nomicfoundation/hardhat-ignition-ethers": "^0.15.0",
"@nomicfoundation/hardhat-network-helpers": "^1.0.0",
"@nomicfoundation/hardhat-toolbox": "^5.0.0",
"@nomicfoundation/hardhat-verify": "^2.0.0",
"@openzeppelin/contracts": "^5.0.2",
"@typechain/ethers-v6": "^0.5.0",
"@typechain/hardhat": "^9.0.0",
"chai": "^4.2.0",
"ethers": "^6.4.0",
"hardhat-gas-reporter": "^2.2.1",
"hardhat-ignore-warnings": "^0.2.11",
"solidity-coverage": "^0.8.0",
"typechain": "^8.3.0"
}
}