-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.03 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.03 KB
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": "RigelProtocol",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/rigelprotocol/autoyieldfarms",
"author": "Keerthana <keerthu.ram28@gmail.com>",
"files": [
"build"
],
"engines": {
"node": ">=10"
},
"scripts": {
"precompile": "rimraf ./build/",
"compile": "waffle",
"pretest": "yarn compile",
"test": "mocha",
"lint": "prettier ./test/**/*.ts --check",
"prepublishOnly": "yarn test"
},
"dependencies": {
"ethers": "^5.0.32",
"openzeppelin-solidity-2.3.0": "npm:openzeppelin-solidity@2.3.0",
"truffle-flattener": "^1.5.0",
"web3": "^1.3.4"
},
"devDependencies": {
"@types/chai": "^4.2.12",
"@types/mocha": "^8.0.3",
"@uniswap/v2-core": "^1.0.1",
"chai": "^4.2.0",
"ethereum-waffle": "^3.1.0",
"ethereumjs-util": "^7.0.5",
"mocha": "^8.1.3",
"prettier": "^2.1.1",
"rimraf": "^3.0.2",
"solc": "0.5.16",
"ts-node": "^9.0.0",
"typescript": "^4.0.2"
}
}