-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
executable file
·52 lines (52 loc) · 1.9 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
{
"name": "@derivable/shadow-token",
"version": "1.0.0",
"license": "MIT",
"scripts": {
"clean": "rimraf ./build/ ./cache/ ./artifacts/",
"prettier": "prettier --write **/*.sol",
"compile": "hardhat compile",
"test": "hardhat test",
"lint": "hardhat check",
"coverage": "coverage=true hardhat coverage",
"testnet": "hardhat run --network testnet",
"mainnet": "hardhat run --network mainnet",
"deploy:ganache": "npx hardhat run scripts/AllContracts.ganacheDeploy.js --network ganache"
},
"dependencies": {
"@derivable/erc1155-maturity": "https://github.com/derivable-labs/erc1155-maturity.git"
},
"devDependencies": {
"@nomicfoundation/hardhat-chai-matchers": "^1.0.0",
"@nomicfoundation/hardhat-network-helpers": "^1.0.0",
"@nomiclabs/hardhat-ethers": "^2.1.0",
"@nomiclabs/hardhat-etherscan": "^3.1.0",
"@nomiclabs/hardhat-solhint": "^3.0.1",
"@nomiclabs/hardhat-truffle5": "^2.0.7",
"@nomiclabs/hardhat-waffle": "^2.0.3",
"@nomiclabs/hardhat-web3": "^2.0.0",
"@openzeppelin/contracts": "^4.7.3",
"@openzeppelin/contracts-upgradeable": "^4.7.3",
"@openzeppelin/hardhat-upgrades": "^1.19.0",
"@openzeppelin/test-helpers": "^0.5.16",
"@uniswap/v3-core": "https://github.com/Uniswap/v3-core.git#0.8",
"@uniswap/v3-periphery": "https://github.com/Uniswap/v3-periphery.git#0.8",
"chai": "^4.3.6",
"chai-as-promised": "^7.1.1",
"ethereum-waffle": "^3.4.4",
"ethers": "^5.6.9",
"hardhat": "^2.17.1",
"hardhat-contract-sizer": "^2.6.1",
"hardhat-deploy": "^0.11.12",
"hardhat-exposed": "^0.3.4",
"hardhat-gas-reporter": "^1.0.9",
"hardhat-ignore-warnings": "^0.2.8",
"hardhat-tracer": "^2.2.2",
"mocha": "^10.0.0",
"prettier": "^2.7.1",
"prettier-plugin-solidity": "^1.0.0-dev.23",
"solhint": "^3.3.7",
"solidity-coverage": "^0.8.4",
"solidity-docgen": "^0.6.0-beta.35"
}
}