forked from 1inch/farming
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 2.11 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
{
"name": "@1inch/farming",
"version": "1.0.2",
"description": "Set of contracts for farming incentives",
"homepage": "https://github.com/1inch/farming#readme",
"author": "1inch",
"files": [
"/contracts/**/*.sol",
"/artifacts/contracts/**/*.json",
"/test/behaviors/*.js"
],
"repository": {
"type": "git",
"url": "[email protected]:1inch/farming.git"
},
"license": "MIT",
"dependencies": {
"@1inch/solidity-utils": "2.0.5",
"@openzeppelin/contracts": "4.5.0"
},
"devDependencies": {
"@nomiclabs/hardhat-ethers": "2.0.5",
"@nomiclabs/hardhat-etherscan": "3.0.1",
"@nomiclabs/hardhat-truffle5": "2.0.4",
"@nomiclabs/hardhat-web3": "2.0.0",
"@openzeppelin/test-helpers": "0.5.15",
"acquit": "1.2.1",
"acquit-markdown": "https://github.com/vkarpov15/acquit-markdown.git#83ccd44",
"chai": "4.3.6",
"dotenv": "16.0.0",
"eslint": "8.9.0",
"eslint-config-standard": "16.0.3",
"eslint-plugin-import": "2.25.4",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "6.0.0",
"eslint-plugin-standard": "5.0.0",
"ethers": "5.5.4",
"hardhat": "2.8.4",
"hardhat-deploy": "0.10.5",
"hardhat-gas-reporter": "1.0.8",
"rimraf": "3.0.2",
"solhint": "3.3.7",
"solidity-coverage": "0.7.20"
},
"scripts": {
"test": "hardhat test --show-stack-traces",
"clean": "rimraf artifacts cache coverage",
"deploy": "hardhat deploy --network",
"build": "rimraf ./dist && mkdir dist && cp package.json ./dist && cp README.md ./dist && cp -R ./contracts ./dist/contracts",
"coverage": "hardhat coverage",
"lint:js": "eslint .",
"lint:js:fix": "eslint . --fix",
"lint:sol": "solhint --max-warnings 0 \"contracts/**/*.sol\"",
"lint:sol:fix": "solhint --max-warnings 0 \"contracts/**/*.sol\" --fix",
"lint": "yarn run lint:js && yarn run lint:sol",
"lint:fix": "yarn run lint:js:fix && yarn run lint:sol:fix"
}
}