-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
57 lines (57 loc) · 1.73 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
55
56
57
{
"name": "flash-loan-uniswap",
"version": "1.0.0",
"description": "",
"main": "truffle-config-template.js",
"directories": {
"test": "test"
},
"scripts": {
"lint": "npm run eslint && npm run solium",
"eslint": "eslint test/",
"solium": "solium --dir contracts",
"coverage": "bash ./scripts/coverage.sh",
"build": "bash ./scripts/build.sh",
"test": "bash ./scripts/test.sh",
"deploy": "bash ./scripts/deploy.sh",
"flatten": "bash ./scripts/flatten.sh",
"verify": "bash ./scripts/verify.sh"
},
"keywords": [],
"author": "SevenSwen",
"license": "MIT",
"dependencies": {
"@openzeppelin/contracts": "^3.3.0",
"@truffle/hdwallet-provider": "^1.2.1",
"dotenv": "^8.2.0",
"uniswap-flash-swapper": "git+https://github.com/Austin-Williams/uniswap-flash-swapper.git"
},
"devDependencies": {
"@openzeppelin/test-helpers": "^0.5.10",
"@sushiswap/core": "^1.4.1",
"@uniswap/v2-periphery": "^1.1.0-beta.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-register": "^6.26.0",
"bignumber.js": "^9.0.1",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"chai-bignumber": "^3.0.0",
"eslint": "^7.18.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"eth-gas-reporter": "^0.2.20",
"ethereumjs-testrpc-sc": "^6.5.1-sc.1",
"karma": "^6.0.1",
"lodash": "^4.17.20",
"solidity-coverage": "^0.7.14",
"truffle": "^5.1.63",
"truffle-flattener": "^1.5.0",
"truffle-plugin-verify": "^0.5.4",
"web3-utils": "^1.3.3"
}
}