-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
47 lines (47 loc) · 1.57 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
{
"name": "gelato-ui-demo",
"version": "1.0.0",
"description": "simple demo FX PORTAL MINTABLE ERC1155",
"scripts": {
"clean": "npx hardhat clean",
"compile": "npx hardhat compile",
"deploy:mumbai": "npx hardhat --network mumbai deploy",
"deploy:goerli": "npx hardhat --network goerli deploy",
"verify:mumbai": "npx hardhat --network mumbai etherscan-verify",
"verify:goerli": "npx hardhat --network goerli etherscan-verify"
},
"author": "Gulam Rasul Shah",
"license": "MIT",
"devDependencies": {
"@nomiclabs/hardhat-ethers": "npm:hardhat-deploy-ethers@^0.3.0-beta.13",
"@nomiclabs/hardhat-etherscan": "^2.1.6",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@typechain/ethers-v5": "^7.1.0",
"@typechain/hardhat": "^2.3.0",
"@types/node": "^16.9.6",
"ethereum-waffle": "^3.4.0",
"ethers": "^6.0.8",
"hardhat": "^2.6.4",
"hardhat-deploy": "^0.11.10",
"hardhat-gas-reporter": "^1.0.4",
"lint-staged": "^11.1.2",
"prettier": "^2.4.1",
"prettier-plugin-solidity": "^1.0.0-beta.18",
"solidity-coverage": "^0.7.21",
"ts-node": "^10.2.1",
"typechain": "^5.1.2",
"typescript": "^4.4.3"
},
"lint-staged": {
"*.{ts,json,sol,md,yml}": "prettier --write"
},
"dependencies": {
"@fxportal/maticjs-fxportal": "^1.1.1",
"@maticnetwork/maticjs": "^3.6.0-beta.5",
"@maticnetwork/maticjs-web3": "^1.0.4",
"@openzeppelin/contracts": "^4.3.2",
"@truffle/hdwallet-provider": "^2.1.7",
"dotenv": "^10.0.0",
"prompt-sync": "^4.2.0"
}
}