forked from CrazyNFT/imx-contracts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1.04 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
{
"name": "@imtbl/imx-contracts",
"version": "1.0.1",
"main": "index.js",
"files": [
"contracts"
],
"license": "MIT",
"scripts": {
"compile": "yarn hardhat compile",
"test": "yarn hardhat test",
"simple-deploy-dev": "yarn hardhat run deploy/asset.ts --network dev",
"simple-deploy-ropsten": "yarn hardhat run deploy/asset.ts --network ropsten",
"deploy-registration": "yarn hardhat run deploy/registration.ts",
"generate-random-key": "ts-node scripts/generateRandomKey.ts"
},
"dependencies": {
"@nomiclabs/hardhat-etherscan": "^2.1.4",
"@openzeppelin/contracts": "^4.1.0",
"dotenv": "^10.0.0"
},
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.0",
"@nomiclabs/hardhat-waffle": "^2.0.0",
"@typechain/ethers-v5": "^7.0.1",
"@typechain/hardhat": "^2.0.2",
"@types/mocha": "^9.0.0",
"chai": "^4.2.0",
"ethereum-waffle": "^3.0.0",
"ethereumjs-wallet": "^1.0.2",
"ethers": "^5.0.0",
"hardhat": "^2.4.1",
"ts-node": "^10.8.1",
"typechain": "^5.0.0"
}
}