-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
72 lines (72 loc) · 2.64 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
70
71
72
{
"name": "arthswap-masterchef",
"description": "Smart contracts of ArthSwap's Farming/Harvest",
"license": "MIT",
"scripts": {
"prepare": "husky install && poetry install && env COMPILE_MODE=production yarn run compile",
"compile": "hardhat compile",
"test": "hardhat test",
"test:gas-report": "env REPORT_GAS=true yarn run test",
"test:coverage": "hardhat coverage",
"lint": "yarn run lint:ts && yarn run lint:sol",
"lint:fix": "yarn run lint:ts:fix && yarn run lint:sol:fix",
"lint:ts": "eslint .",
"lint:ts:fix": "eslint . --fix",
"lint:sol": "solhint 'contracts/**/*.sol'",
"lint:sol:fix": "solhint --fix 'contracts/**/*.sol'",
"format": "yarn run format:ts && yarn run format:sol",
"format:fix": "yarn run format:ts:fix && yarn run format:sol:fix",
"format:ts": "prettier --check .",
"format:ts:fix": "prettier --write .",
"format:sol": "prettier --check 'contracts/**/*.sol'",
"format:sol:fix": "prettier --write 'contracts/**/*.sol'",
"docgen": "solidity-docgen --solc-module ./node_modules/solc -t doc-templates"
},
"devDependencies": {
"@ethersproject/abi": "^5.6.4",
"@ethersproject/providers": "^5.6.8",
"@nomicfoundation/hardhat-chai-matchers": "^1.0.2",
"@nomicfoundation/hardhat-network-helpers": "^1.0.3",
"@nomicfoundation/hardhat-toolbox": "^1.0.2",
"@nomiclabs/hardhat-ethers": "^2.1.0",
"@nomiclabs/hardhat-etherscan": "^3.1.0",
"@polkadot/keyring": "^10.0.1",
"@typechain/ethers-v5": "^10.1.0",
"@typechain/hardhat": "^6.1.2",
"@types/chai": "^4.3.1",
"@types/mocha": "^9.1.0",
"@types/mocha-each": "^2.0.0",
"@types/node": "^17.0.25",
"@typescript-eslint/eslint-plugin": "^5.30.5",
"@typescript-eslint/parser": "^5.30.5",
"chai": "^4.3.6",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-chai-expect": "^3.0.0",
"eslint-plugin-import": "^2.24.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.4.1",
"eslint-plugin-promise": "^5.1.0",
"ethereum-block-by-date": "^1.4.5",
"ethers": "^5.6.9",
"fast-csv": "^4.3.6",
"hardhat": "2.9.9",
"hardhat-gas-reporter": "^1.0.8",
"husky": "^7.0.4",
"mocha-each": "^2.0.1",
"prettier": "^2.3.2",
"prettier-plugin-solidity": "^1.0.0-beta.13",
"solc": "^0.6.12",
"solhint": "^3.3.7",
"solidity-coverage": "^0.7.21",
"solidity-docgen": "^0.5.13",
"ts-node": "^10.7.0",
"typechain": "^8.1.0",
"typescript": "^4.6.3"
},
"dependencies": {
"@openzeppelin/contracts": "^3.1.0",
"boring-solidity": "^1.3.1"
}
}