-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
39 lines (39 loc) · 1.21 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
{
"name": "@foxcookieco/staker",
"version": "1.0.0",
"private": "true",
"scripts": {
"compile": "waffle",
"coverage": "HARDHAT=true hardhat coverage",
"deploy:testnet": "rm -rf build && truffle migrate --f 1 --to 1 --network ropsten",
"deploy:mainnet": "rm -rf build && truffle migrate --f 1 --to 1 --network mainnet",
"docgen": "HARDHAT=true hardhat compile",
"fund:testnet": "truffle migrate --f 2 --to 2 --network ropsten",
"fund:mainnet": "truffle migrate --f 2 --to 2 --network mainnet",
"test": "yarn compile && mocha"
},
"dependencies": {
"@truffle/hdwallet-provider": "^1.3.0",
"@types/chai": "^4.2.12",
"@types/mocha": "^8.0.3",
"@uniswap/v2-core": "^1.0.1",
"chai": "^4.2.0",
"dotenv": "^8.5.1",
"eol": "^0.9.1",
"ethereum-waffle": "^3.1.0",
"ethereumjs-util": "^7.0.5",
"ethers": "^5.5.0",
"mocha": "^8.1.3",
"ts-node": "^9.1.1",
"typescript": "^4.2.4"
},
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.2",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@types/node": "^16.11.10",
"hardhat": "^2.6.8",
"hardhat-docgen": "^1.2.0",
"solidity-coverage": "^0.7.17",
"solidity-docgen": "^0.5.16"
}
}