-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.17 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.17 KB
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
{
"name": "ultron-farms",
"version": "1.1.0",
"main": "index.js",
"scripts": {
"compile": "truffle compile",
"test": "npx builder test",
"coverage": "npx builder coverage",
"deploy": "truffle migrate",
"deploy:ftm": "truffle migrate --network fantom",
"deploy:ftmtest": "truffle migrate --network fantomtest"
},
"dependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.6",
"@nomiclabs/hardhat-etherscan": "^3.1.0",
"@nomiclabs/hardhat-waffle": "^2.0.3",
"@openzeppelin/contracts": "^4.0.0",
"@openzeppelin/test-helpers": "^0.5.6",
"@poanet/solidity-flattener": "^3.0.9",
"@truffle/hdwallet-provider": "^1.2.6",
"@typechain/hardhat": "^6.1.2",
"dotenv": "^8.2.0",
"hardhat-contract-sizer": "^2.5.1",
"hardhat-gas-reporter": "^1.0.8",
"mocha": "^10.0.0",
"truffle-flattener": "^1.4.4"
},
"devDependencies": {
"@nomiclabs/hardhat-web3": "^2.0.0",
"@types/mocha": "^9.1.1",
"chai": "^4.2.0",
"ethereum-waffle": "^3.0.0",
"ethers": "^5.0.14",
"hardhat": "^2.9.9",
"solidity-coverage": "^0.7.13",
"truffle-plugin-verify": "^0.4.0",
"ts-node": "^10.8.1",
"web3": "^1.7.3"
}
}