-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.53 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
{
"name": "defi",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"generate-types": "npx typechain --target=truffle-v5 './build/contracts/*.json'",
"postinstall": "npm run compile && npm run generate-types",
"flatten":"truffle-flattener",
"lint": "eslint test",
"compile": "truffle compile",
"develop": "truffle develop",
"migrate": "truffle migrate",
"test": "truffle test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/t4sk/defi.git"
},
"keywords": [],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/t4sk/defi/issues"
},
"homepage": "https://github.com/t4sk/defi#readme",
"dependencies": {
"@opengsn/contracts": "^2.2.6",
"@openzeppelin/contracts": "^4.5.0",
"@openzeppelin/contracts-upgradeable": "^4.3.2",
"@openzeppelin/test-helpers": "^0.5.15",
"@uniswap/lib": "^4.0.1-alpha",
"@uniswap/v2-core": "^1.0.1",
"@uniswap/v2-periphery": "github:Uniswap/uniswap-v2-periphery",
"chai": "^4.3.6",
"ethers": "^5.6.0"
},
"devDependencies": {
"@openzeppelin/test-environment": "^0.1.9",
"@typechain/truffle-v5": "^7.0.0",
"@types/chai": "^4.3.0",
"@types/expect": "^24.3.0",
"@types/mocha": "^9.1.0",
"bn.js": "^5.2.0",
"eslint": "^7.28.0",
"mocha": "^9.2.1",
"prettier": "^2.3.1",
"prettier-plugin-solidity": "^1.0.0-beta.13",
"sol-merger": "^3.1.0",
"truffle-flattener": "^1.6.0",
"ts-mocha": "^9.0.2",
"typechain": "^7.0.1"
}
}