forked from compound-finance/compound-protocol
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.25 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": "efficiency-dao-protocol",
"version": "0.0.1",
"description": "The EfficiencyDAO Money Market (fork of Compound Protocol)",
"main": "index.js",
"scripts": {
"lint": "./scripts/lint",
"compile": "./node_modules/.bin/hardhat compile",
"deploy": "./node_modules/.bin/hardhat deploy",
"test": "./node_modules/.bin/hardhat test",
"local": "./node_modules/.bin/hardhat node"
},
"repository": "[email protected]:EfficiencyDAO/efficiency-protocol.git",
"author": "Efficiency DAO",
"license": "UNLICENSED",
"devDependencies": {
"@solidity-parser/parser": "^0.14.3",
"@nomicfoundation/hardhat-chai-matchers": "^1.0.2",
"@nomicfoundation/hardhat-network-helpers": "^1.0.3",
"@nomiclabs/hardhat-ethers": "^2.1.0",
"@nomiclabs/hardhat-etherscan": "^3.1.0",
"@types/chai": "^4.3.1",
"@types/mocha": "^9.1.1",
"@types/node": "^18.0.6",
"bignumber.js": "9.0.2",
"hardhat": "^2.10.1",
"hardhat-deploy": "^0.11.11",
"chai": "^4.3.6",
"ethers": "^5.6.9",
"jest-diff": "^28.1.3",
"jest-junit": "^14.0.0",
"prettier": "^2.7.1",
"solhint": "^3.3.7",
"solparse": "^2.2.8",
"ts-node": "^10.9.1",
"typescript": "^4.7.4"
},
"dependencies": {
"dotenv": "^16.0.1"
}
}