-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
84 lines (84 loc) · 2.66 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
{
"name": "@chainsafe/chainbridge-contracts",
"version": "2.1.2",
"description": "",
"main": "dist/index.js",
"repository": "https://github.com/ChainSafe/chainbridge-solidity.git",
"files": [
"dist",
"build/contracts/Bridge.json",
"build/contracts/ERC20Handler.json",
"build/contracts/ERC721Handler.json",
"build/contracts/GenericHandler.json"
],
"directories": {
"test": "test"
},
"scripts": {
"compile": "truffle compile",
"build": "rollup -c",
"publish-package": "npm run compile && npm run generate-types && npm run build && npm publish",
"generate-types": "npm run generate-types:ethers",
"generate-types:ethers": "npx typechain \"build/contracts/*\" --target=ethers-v5 --out-dir src/ethers",
"test": "echo \\\\\\\"Error: no test specified\\\\\\\" && exit 1"
},
"author": "Chainsafe Systems",
"license": "GPL-3.0-only",
"devDependencies": {
"@babel/core": "^7.17.4",
"@codechecks/client": "^0.1.12",
"@nomiclabs/hardhat-ethers": "^2.0.5",
"@nomiclabs/hardhat-etherscan": "^3.0.3",
"@nomiclabs/hardhat-truffle5": "^2.0.5",
"@nomiclabs/hardhat-web3": "^2.0.0",
"@openzeppelin/contracts": "^4.5.0",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-node-resolve": "^13.1.3",
"@typechain/ethers-v5": "^9.0.0",
"@typechain/hardhat": "^6.0.0",
"@types/chai": "^4.3.0",
"@types/mocha": "^9.1.0",
"@types/node": "^16.11.13",
"chai": "^4.3.4",
"commander": "^9.0.0",
"coveralls": "^3.1.1",
"dotenv": "^16.0.0",
"eth-sig-util": "^3.0.1",
"ethereum-waffle": "^3.4.4",
"ethereumjs-util": "^7.1.4",
"ethereumjs-wallet": "^1.0.2",
"ethers": "^5.5.4",
"ganache-cli": "^6.9.1",
"hardhat": "^2.9.3",
"hardhat-contract-sizer": "^2.5.1",
"hardhat-gas-reporter": "^1.0.4",
"hardhat-typechain": "^0.3.5",
"lodash.template": "^4.5.0",
"rimraf": "^3.0.2",
"rollup": "^2.67.2",
"rollup-plugin-node-polyfills": "^0.2.1",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-typescript2": "^0.31.2",
"solidity-coverage": "^0.7.20",
"truffle": "^5.4.32",
"truffle-assertions": "^0.9.2",
"ts-node": "^10.4.0",
"typechain": "^7.0.1",
"typescript": "^4.5.5"
},
"peerDependencies": {
"ethers": ">= 5.0.0"
},
"dependencies": {
"@ethersproject/bignumber": "^5.5.0",
"@ethersproject/contracts": "^5.5.0",
"@nomiclabs/hardhat-waffle": "^2.0.3",
"@typechain/truffle-v4": "^4.1.0",
"@typechain/truffle-v5": "^5.1.0",
"hardhat-typechain": "^0.3.5",
"mocha": "^10.0.0",
"ts-generator": "^0.1.1",
"web3": "^1.7.4"
}
}