-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
69 lines (69 loc) · 2.09 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
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "SuperFarm-Contracts",
"author": "Tim Clancy",
"license": "GPL-3.0",
"version": "1.0.0",
"description": "A series of smart contracts for operating SuperFarm's infrastructure.",
"keywords": [
"tiel"
],
"repository": {
"type": "git",
"url": "git+https://github.com/SuperFarmDAO/SuperFarm-Contracts.git"
},
"bugs": {
"url": "https://github.com/SuperFarmDAO/SuperFarm-Contracts/issues"
},
"homepage": "https://github.com/SuperFarmDAO/SuperFarm-Contracts#readme",
"scripts": {
"test": "npx hardhat test; echo 'Executing test cases which require Ganache ...';",
"lint": "npx eslint ./",
"validate": "npm-run-all --parallel test lint",
"contract-size": "npx hardhat size-contracts"
},
"eslintConfig": {
"globals": {
"usePlugin": true
}
},
"dependencies": {
"@chainlink/contracts": "^0.2.1",
"@openzeppelin/contracts-upgradeable": "^3.4.1-solc-0.7-2",
"@uniswap/lib": "^1.1.4",
"@uniswap/v2-core": "^1.0.1",
"@uniswap/v2-periphery": "^1.1.0-beta.0",
"dotenv": "^8.2.0",
"limiter": "^1.1.5"
},
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/plugin-transform-runtime": "^7.11.5",
"@babel/preset-env": "^7.11.5",
"@babel/register": "^7.11.5",
"@babel/runtime": "^7.11.2",
"@nomiclabs/hardhat-ethers": "^2.0.0",
"@nomiclabs/hardhat-etherscan": "^2.1.1",
"@nomiclabs/hardhat-ganache": "^2.0.0",
"@nomiclabs/hardhat-waffle": "^2.0.0",
"@openzeppelin/contracts": "^3.4.0",
"axios": "^0.21.1",
"chai": "^4.2.0",
"csv-writer": "^1.6.0",
"eslint": "^7.10.0",
"eslint-plugin-html": "^6.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"ethereum-waffle": "^3.1.1",
"ethers": "^5.4.0",
"hardhat": "^2.6.5",
"hardhat-contract-sizer": "^2.1.1",
"hardhat-gas-reporter": "^1.0.4",
"husky": "^4.3.0",
"npm-run-all": "^4.1.5",
"solc-0.6.12": "npm:solc@^0.6.12",
"solidity-coverage": "^0.7.16",
"solidity-docgen": "^0.5.11"
}
}