-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
70 lines (70 loc) · 2.56 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
{
"name": "tender-core",
"version": "0.1.0",
"scripts": {
"clean": "rm -rf cache artifacts typechain",
"compile": "npx hardhat compile",
"test": "npx hardhat test",
"test:unit": "npx hardhat test test/unit/*",
"test:integration": "npx hardhat test test/integration/*.test.ts",
"test:mainnet": "npx hardhat test test/mainnet/*.test.ts",
"test:gas": "REPORT_GAS=true npx hardhat test",
"test:coverage": "npx hardhat coverage --testfiles \"test/!(mainnet)/**/*.test.ts\"",
"start:rpc": "npx hardhat node --no-deploy",
"deploy:dependencies": "npx hardhat deploy --tags Dependencies",
"deploy:registry": "npx hardhat deploy --tags Registry",
"deploy:tenderizer": "npx hardhat deploy --tags Deploy,$NAME",
"prettier": "npx prettier --write 'contracts/**/*.sol'",
"solhint": "npx solhint 'contracts/**/*.sol'",
"eslint": "npx eslint tasks/**/*.ts test/**/*.ts scripts/**/*.ts deploy/**/*.ts",
"lint": "yarn solhint && yarn eslint"
},
"devDependencies": {
"@nomiclabs/ethereumjs-vm": "^4",
"@nomiclabs/hardhat-ethers": "^2.0.2",
"@nomiclabs/hardhat-etherscan": "^3.0.3",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@nomiclabs/hardhat-web3": "^2.0.0",
"@openzeppelin/contracts": "^4.0.0",
"@openzeppelin/contracts-upgradeable": "^4.3.3",
"@openzeppelin/hardhat-upgrades": "^1.10.0",
"@typechain/ethers-v5": "^6.0.5",
"@typechain/truffle-v5": "^4.0.1",
"@typechain/web3-v1": "^2.2.0",
"@types/mocha": "^8.2.2",
"@types/node": "^14.14.37",
"@typescript-eslint/eslint-plugin": "^5.47.1",
"@typescript-eslint/parser": "^5.47.1",
"@uniswap/v3-periphery": "^1.2.0",
"chai": "^4.3.4",
"coveralls": "^3.1.0",
"dotenv": "^10.0.0",
"eslint": "^7.12.1",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eth-permit": "^0.2.1",
"ethereum-waffle": "^3.3.0",
"ethers": "^5.1.0",
"hardhat": "^2.12.4",
"hardhat-deploy": "^0.11.4",
"hardhat-deploy-ethers": "^0.3.0-beta.7",
"hardhat-gas-reporter": "^1.0.4",
"hardhat-typechain": "^0.3.5",
"husky": "^7.0.1",
"mocha-lcov-reporter": "^1.3.0",
"prettier": "^2.3.1",
"prettier-plugin-solidity": "^1.0.0-beta.13",
"solhint": "^3.3.6",
"solhint-plugin-prettier": "^0.0.5",
"solidity-coverage": "^0.8.2",
"ts-generator": "^0.1.1",
"ts-node": "^9.1.1",
"typechain": "^4.0.3",
"typescript": "^4.2.3"
},
"dependencies": {
"@defi-wonderland/smock": "^2.3.4"
}
}