-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (44 loc) · 1.52 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": "bridge-test",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"execute": "ts-node -r tsconfig-paths/register",
"start-worker": "npm run --silent execute -- worker/index.ts",
"eth-balance": "npm run --silent execute -- scripts/eth/balance.ts",
"eth-mint": "npm run --silent execute -- scripts/eth/mint.ts",
"transfer-to-eth": "npm run --silent execute -- scripts/matic/transfer.ts",
"matic-balance": "npm run --silent execute -- scripts/matic/balance.ts",
"matic-mint": "npm run --silent execute -- scripts/matic/mint.ts",
"transfer-to-matic": "npm run --silent execute -- scripts/eth/transfer.ts"
},
"devDependencies": {
"@nomiclabs/hardhat-ethers": "npm:hardhat-deploy-ethers",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@openzeppelin/contracts": "^4.1.0",
"@typechain/ethers-v5": "^7.0.1",
"@typechain/hardhat": "^2.0.2",
"@types/chai": "^4.2.19",
"@types/mocha": "^8.2.2",
"@types/node": "^15.12.4",
"chai": "^4.3.4",
"dotenv": "^10.0.0",
"eslint": "^7.29.0",
"eslint-config-prettier": "^8.3.0",
"ethereum-waffle": "^3.4.0",
"ethers": "^5.3.1",
"hardhat": "^2.4.0",
"hardhat-deploy": "^0.8.8",
"hardhat-ethers": "^1.0.1",
"mocha": "^9.0.1",
"prettier": "^2.3.1",
"prettier-plugin-solidity": "^1.0.0-beta.13",
"solhint": "^3.3.6",
"solhint-plugin-prettier": "^0.0.5",
"ts-node": "^10.0.0",
"tsconfig-paths": "^3.9.0",
"typechain": "^5.0.0",
"typescript": "^4.3.4"
}
}