-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·96 lines (96 loc) · 3.3 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
96
{
"name": "@infini3/hardhat-ts",
"version": "0.2.0",
"license": "GPL-3.0-or-later",
"scripts": {
"chain": "hardhat node --network hardhat --no-deploy",
"fork": "hardhat node --fork https://mainnet.infura.io/v3/460f40a260564ac4a4f4b3fffb032dad",
"test": "hardhat test --network hardhat",
"compile": "hardhat compile",
"deploy": "hardhat deploy --export-all ./hardhat_contracts.json",
"deploy:kovan": "hardhat deploy --export-all ./hardhat_contracts.json --network kovan",
"export": "hardhat export --export-all ./hardhat_contracts.json",
"postdeploy": "hardhat run scripts/publish.ts",
"watch": "node scripts/watch.js",
"accounts": "hardhat accounts",
"balance": "hardhat balance",
"send": "hardhat send",
"generate": "hardhat generate",
"account": "hardhat account",
"etherscan-verify": "hardhat etherscan-verify",
"hardhat-etherscan": "hardhat verify --network kovan DEPLOYED_CONTRACT_ADDRESS \"Constructor argument 1\" "
},
"dependencies": {
"@chainlink/contracts": "^0.4.1",
"@eth-optimism/hardhat-ovm": "^0.2.2",
"@ethereumjs/vm": "^5.5.3",
"@ethersproject/providers": "^5.4.1",
"@nomiclabs/hardhat-ethers": "npm:hardhat-deploy-ethers@^0.3.0-beta.10",
"@nomiclabs/hardhat-waffle": "^2.0.0",
"@openzeppelin/contracts": "^4.1.0",
"@tenderly/hardhat-tenderly": "^1.0.10",
"@typechain/ethers-v5": "^8.0.5",
"@typechain/hardhat": "^3.0.0",
"@uniswap/default-token-list": "^3.2.0",
"@uniswap/v2-core": "^1.0.1",
"chalk": "^4.1.1",
"dotenv": "^10.0.0",
"ethereum-waffle": "^3.4.0",
"ethers": "^5.4.1",
"hardhat": "^2.4.0",
"hardhat-contract-sizer": "^2.5.1",
"hardhat-deploy": "^0.9.14",
"hardhat-deploy-ethers": "^0.3.0-beta.10",
"hardhat-gas-reporter": "^1.0.8",
"qrcode-terminal": "^0.12.0",
"typechain": "^6.0.5"
},
"devDependencies": {
"@nomiclabs/hardhat-etherscan": "^2.1.8",
"@types/jest": "^27.0.2",
"@types/node": "^16.11.1",
"eslint": "^7.32.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-airbnb-typescript": "^14.0.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-jest": "^24.7.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^27.3.1",
"node-watch": "^0.7.1",
"prettier": "^2.4.1",
"prettier-plugin-solidity": "^1.0.0-beta.13",
"rlp": "^2.2.7",
"solidity-coverage": "^0.7.17",
"ts-node": "^10.3.0",
"tsconfig-paths": "^3.11.0",
"typechain": "^6.0.5",
"typescript": "^4.3.4",
"webpack-serve": "^4.0.0"
},
"installConfig": {
"hoistingLimits": "workspaces"
},
"description": "infini3 contracts",
"main": "hardhat_contracts.json",
"directories": {
"contracts": "contracts",
"subgraph": "subgraph",
"types": "generated/contract-types"
},
"files": [
"contracts",
"subgraph",
"generated/contract-types",
"hardhat_contracts.json"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Discovery-Labs/infini3-hardhat.git"
},
"author": "",
"bugs": {
"url": "https://github.com/Discovery-Labs/infini3-hardhat/issues"
},
"homepage": "https://github.com/Discovery-Labs/infini3-hardhat#readme"
}