-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
57 lines (57 loc) · 1.83 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
{
"name": "layer2-finance-contracts",
"version": "0.0.1",
"description": "Layer 2 Finance Contracts",
"scripts": {
"clean": "hardhat clean",
"compile": "hardhat compile",
"generate:typechain": "rm -rf typechain && hardhat typechain",
"report-gas:benchmark": "hardhat test benchmark/*.ts",
"report-gas:summary": "REPORT_GAS=true yarn test",
"size-contracts": "hardhat size-contracts > reports/contract_sizes.txt",
"test": "hardhat compile && hardhat test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/celer-network/layer2-finance-contracts.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/celer-network/layer2-finance-contracts/issues"
},
"homepage": "https://github.com/celer-network/layer2-finance-contracts#readme",
"devDependencies": {
"@nomiclabs/hardhat-ethers": "npm:hardhat-deploy-ethers",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@openzeppelin/contracts": "^3.4.0",
"@typechain/ethers-v5": "^6.0.5",
"@typechain/hardhat": "^1.0.1",
"@types/chai": "^4.2.16",
"@types/mocha": "^8.2.2",
"@types/node": "^14.14.37",
"@types/sinon-chai": "^3.2.5",
"@typescript-eslint/eslint-plugin": "^4.21.0",
"@typescript-eslint/parser": "^4.21.0",
"chai": "^4.3.4",
"eslint": "^7.23.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-import": "^2.22.1",
"ethereum-waffle": "^3.3.0",
"ethers": "^5.1.0",
"fs-extra": "^9.1.0",
"hardhat": "^2.1.2",
"hardhat-contract-sizer": "^2.0.3",
"hardhat-deploy": "^0.7.2",
"hardhat-gas-reporter": "^1.0.4",
"husky": "^6.0.0",
"prettier": "^2.2.1",
"prettier-plugin-solidity": "^1.0.0-beta.7",
"solc": "0.7.6",
"ts-node": "^9.1.1",
"typechain": "^4.0.3",
"typescript": "^4.2.4"
},
"dependencies": {
"dotenv": "^8.2.0"
}
}