forked from alveraboquet/redstone-oracles-monorepo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.17 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
{
"name": "@redstone-finance/eth-contracts",
"version": "1.0.0",
"description": "RedStone ethereum contracts",
"main": "dist/src/index.js",
"private": true,
"license": "MIT",
"scripts": {
"test": "hardhat test",
"build": "rm -rf dist && tsc -build",
"compile": "hardhat compile"
},
"dependencies": {
"dotenv": "^16.0.3",
"ethers": "^5.6.8"
},
"devDependencies": {
"@ethersproject/abi": "^5.6.3",
"@ethersproject/bytes": "^5.6.1",
"@ethersproject/providers": "^5.6.8",
"@nomiclabs/hardhat-ethers": "^2.0.6",
"@nomiclabs/hardhat-waffle": "^2.0.5",
"@openzeppelin/contracts": "^4.6.0",
"@openzeppelin/contracts-upgradeable": "^4.6.0",
"@openzeppelin/hardhat-upgrades": "^1.21.0",
"@typechain/ethers-v5": "^10.0.0",
"@typechain/hardhat": "^6.0.0",
"@types/chai": "^4.3.1",
"@types/chai-as-promised": "^7.1.5",
"@types/mocha": "^9.1.1",
"@types/node": "^17.0.37",
"chai": "^4.3.6",
"ethereum-waffle": "^3.4.4",
"hardhat": "^2.9.7",
"hardhat-gas-reporter": "^1.0.8",
"parcel": "^2.7.0",
"prettier-plugin-solidity": "^1.1.3",
"ts-node": "^10.8.0",
"typechain": "^8.0.0"
}
}