forked from carrotcake-finance/carrotcake-smartcontracts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 2.52 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
69
{
"name": "basisdollar-protocol",
"version": "0.1.0",
"description": "A lightweight implementation of the Basis Protocol on Ethereum",
"repository": "https://github.com/Basis-Cake/basisdollar-protocol",
"license": "MIT",
"scripts": {
"clean": "rm -rf './artifacts/' && rm -rf './build/' && rm -rf './cache/' && rm -rf './coverage/' && rm -rf './coverage.json' && rm -rf './typechain/'",
"dev": "hardhat node",
"test": "hardhat test",
"compile": "hardhat compile",
"coverage": "hardhat coverage",
"flatten": "truffle-flattener",
"console:dev": "truffle console --network dev",
"deploy:dev": "truffle migrate --reset --network dev",
"deploy:ropsten": "truffle migrate --network ropsten",
"deploy:rinkeby": "truffle migrate --network rinkeby",
"deploy:mainnet": "truffle migrate --network mainnet",
"flat:contracts": "sol-merger \"./contracts/**/*.sol\" ./build/contracts-flat"
},
"devDependencies": {
"@ethersproject/address": "^5.0.0-beta",
"@ethersproject/contracts": "^5.0.0-beta",
"@ethersproject/networks": "^5.0.0-beta",
"@ethersproject/providers": "^5.0.0-beta",
"@ethersproject/solidity": "^5.0.0-beta",
"@nomiclabs/hardhat-ethers": "^2.0.0",
"@nomiclabs/hardhat-etherscan": "^2.1.0",
"@nomiclabs/hardhat-web3": "^2.0.0",
"@nomiclabs/hardhat-truffle5": "^2.0.0",
"@openzeppelin/contracts": "^3.2.0",
"@openzeppelin/test-helpers": "^0.5.9",
"@truffle/artifactor": "^4.0.84",
"@truffle/contract": "^4.2.25",
"@truffle/hdwallet-provider": "^1.1.0",
"@typechain/ethers-v5": "^2.0.0",
"@types/chai": "^4.2.14",
"@types/ethereumjs-util": "^6.1.0",
"@types/mocha": "^8.0.4",
"@types/node": "^14.14.8",
"@uniswap/sdk": "^3.0.3",
"@uniswap/v2-periphery": "^1.1.0-beta.0",
"chai": "^4.2.0",
"ethereum-waffle": "^3.2.0",
"ethereumjs-util": "^7.0.7",
"ethers": "^5.0.19",
"ganache-cli": "^6.12.1",
"hardhat": "^2.0.3",
"hardhat-contract-sizer": "^2.0.2",
"hardhat-deploy": "^0.7.0-beta.28",
"hardhat-deploy-ethers": "^0.3.0-beta.5",
"hardhat-gas-reporter": "^1.0.1",
"hardhat-typechain": "^0.3.3",
"mocha": "^8.2.1",
"prettier": "^2.1.2",
"prettier-plugin-solidity": "^1.0.0-beta.1",
"solc": "^0.6.12",
"solidity-coverage": "^0.7.12",
"truffle": "5.1.49",
"truffle-flattener": "^1.5.0",
"ts-node": "^9.0.0",
"typechain": "^3.0.0",
"typescript": "^4.0.5"
},
"dependencies": {
"@openzeppelin/contracts": "3.2.0",
"@uniswap/v2-core": "^1.0.1"
}
}