This repository has been archived by the owner on Sep 28, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
95 lines (95 loc) · 2.97 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "strategies-keep3r",
"version": "0.0.0",
"private": true,
"description": "Strategies Keep3r",
"keywords": [
"ethereum",
"yearn",
"keep3r",
"smart",
"contracts",
"solidity",
"hardhat"
],
"repository": {
"type": "git",
"url": "git+https://github.com/lbertenasco/strategies-keep3r.git"
},
"scripts": {
"commit": "git-cz",
"compile": "hardhat compile",
"coverage": "hardhat coverage",
"fork:node": "FORK=true hardhat node",
"fork:script": "FORK=true hardhat run",
"fork:test": "FORK=true yarn test",
"scripts": "ts-node utils/run-script.ts",
"postinstall": "husky install",
"lint:check": "solhint 'contracts/**/*.sol' 'interfaces/**/*.sol' && prettier --check './**'",
"lint:fix": "sort-package-json && prettier --write './**' && solhint --fix 'contracts/**/*.sol' 'interfaces/**/*.sol'",
"prepublishOnly": "pinst --disable",
"postpublish": "pinst --enable",
"release": "standard-version",
"test": "TEST=true hardhat compile && TEST=true mocha",
"test:e2e": "yarn test ./test/e2e/**/*.spec.ts",
"test:gas": "REPORT_GAS=1 npx hardhat test",
"test:unit": "yarn test 'test/unit/**/*.spec.ts'",
"test:unit:gas": "REPORT_GAS=1 yarn test:unit",
"verify": "hardhat verify --network mainnet --constructor-args utils/verify-args.js 0x054A87DdFdE3ccb5DDB03739375329BcC1b03203"
},
"dependencies": {
"prompt-confirm": "2.0.4",
"queue-microtask": "1.2.3"
},
"devDependencies": {
"@commitlint/cli": "12.1.4",
"@commitlint/config-conventional": "12.1.4",
"@flashbots/ethers-provider-bundle": "0.3.2",
"@lbertenasco/bonded-stealth-tx": "0.3.1",
"@lbertenasco/contract-utils": "0.3.8",
"@lbertenasco/y-oracle": "0.1.5",
"@nomiclabs/hardhat-ethers": "2.0.2",
"@nomiclabs/hardhat-etherscan": "2.1.4",
"@nomiclabs/hardhat-waffle": "2.0.1",
"@openzeppelin/contracts": "4.3.1",
"@types/chai": "4.2.21",
"@types/chai-as-promised": "7.1.4",
"@types/mocha": "9.0.0",
"@types/node": "16.4.0",
"@uniswap/v2-core": "1.0.1",
"@uniswap/v2-periphery": "1.1.0-beta.0",
"axios": "0.21.1",
"chai": "4.3.4",
"chai-as-promised": "7.1.1",
"dotenv": "10.0.0",
"enquirer": "2.3.6",
"ethereum-waffle": "3.4.0",
"ethers": "5.4.1",
"hardhat": "2.5.0",
"hardhat-gas-reporter": "1.0.4",
"hardhat-preprocessor": "0.1.4",
"husky": "7.0.1",
"pinst": "2.1.6",
"prettier": "2.3.2",
"prettier-plugin-solidity": "1.0.0-beta.14",
"solhint": "3.3.6",
"solhint-plugin-prettier": "0.0.5",
"solidity-coverage": "0.7.16",
"sort-package-json": "1.50.0",
"standard-version": "9.3.1",
"ts-node": "10.1.0",
"typescript": "4.3.5"
},
"authors": [
{
"name": "Luciano Bertenasco",
"email": "mail",
"url": "https://github.com/lbertenasco"
},
{
"name": "b0dhidharma",
"email": "b0dhidharma@protonmail.com",
"url": "https://github.com/b0dhidharma"
}
]
}