-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.39 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
{
"name": "evm-bridge-erc20-minter-contract",
"version": "1.0.0",
"main": "truffle-config.js",
"directories": {
"test": "test"
},
"scripts": {
"lint": "npx prettier --write ./contracts",
"run-server": "npx hardhat node --port 7545",
"deploy": "npx hardhat run --network glq scripts/deploy-test1.js",
"test": "npx hardhat run --network glq scripts/test.js",
"compile": "npx hardhat compile",
"verifyCalculatorProxy": "npx hardhat verify --network polygon 0x \"0x\""
},
"author": "GLQ Team",
"license": "No License",
"dependencies": {
"@chainlink/contracts": "^0.5.1",
"@nomiclabs/hardhat-ethers": "^2.0.6",
"@nomiclabs/hardhat-waffle": "^2.0.3",
"@openzeppelin/contracts": "^4.0.0",
"@openzeppelin/contracts-upgradeable": "^4.6.0",
"@openzeppelin/hardhat-upgrades": "^1.18.1",
"@openzeppelin/test-helpers": "^0.5.11",
"@openzeppelin/truffle-upgrades": "^1.15.1",
"@truffle/hdwallet-provider": "^1.3.0",
"solidity-coverage": "^0.7.17",
"truffle": "^5.4.10",
"truffle-assertions": "^0.9.2",
"truffle-contract": "^4.0.31",
"truffle-plugin-verify": "^0.5.16"
},
"devDependencies": {
"@nomiclabs/hardhat-ethers": "npm:hardhat-deploy-ethers@^0.3.0-beta.13",
"@nomiclabs/hardhat-etherscan": "^3.1.7",
"ethers": "^5.7.2",
"hardhat": "^2.12.2",
"hardhat-deploy": "^0.11.26",
"prettier": "2.4.1"
}
}