-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
85 lines (85 loc) · 2.56 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
85
{
"name": "@connext/vector-ovm-contracts",
"version": "0.0.1",
"license": "ISC",
"description": "Smart contracts powering Connext's minimalist channel platform",
"keywords": [
"ethereum",
"vector",
"state channels",
"payment channels",
"solidity"
],
"main": "./dist/src.ts/index.js",
"files": [
"artifacts",
"deployments",
"dist",
"src.sol",
"src.ts",
"typechain"
],
"scripts": {
"prettier": "prettier --write './src.sol/**/*.sol'",
"build": "rm -rf dist && hardhat compile",
"test": "nyc mocha --exit --require ts-node/register --require hardhat/register --timeout 60000 'src.ts/**/*.spec.ts' | pino-pretty --colorize --translateTime --ignore pid,level,hostname,module"
},
"dependencies": {
"@connext/pure-evm-wasm": "0.1.4",
"@connext/vector-types": "0.2.2",
"@connext/vector-utils": "0.2.2",
"@eth-optimism/plugins": "1.0.0-alpha.3",
"@ethersproject/abi": "5.1.0",
"@ethersproject/abstract-provider": "5.1.0",
"@ethersproject/abstract-signer": "5.1.0",
"@ethersproject/address": "5.1.0",
"@ethersproject/bignumber": "5.1.0",
"@ethersproject/constants": "5.1.0",
"@ethersproject/contracts": "5.1.0",
"@ethersproject/hdnode": "5.1.0",
"@ethersproject/keccak256": "5.1.0",
"@ethersproject/providers": "5.1.0",
"@ethersproject/solidity": "5.1.0",
"@ethersproject/units": "5.1.0",
"@ethersproject/wallet": "5.1.0",
"@openzeppelin/contracts": "3.2.1-solc-0.7",
"@typechain/hardhat": "^1.0.1",
"hardhat": "2.1.2",
"hardhat-deploy": "0.7.4",
"hardhat-deploy-ethers": "0.3.0-beta.7",
"keccak": "3.0.1",
"merkletreejs": "0.2.18",
"p-queue": "7.1.0",
"pino": "6.11.2",
"pino-pretty": "4.7.1"
},
"devDependencies": {
"@nomiclabs/hardhat-ethers": "2.0.2",
"@nomiclabs/hardhat-waffle": "2.0.1",
"@nomiclabs/hardhat-etherscan": "2.1.1",
"@typechain/ethers-v5": "6.0.5",
"@types/chai": "4.2.16",
"@types/chai-subset": "1.3.3",
"@types/mocha": "8.2.2",
"@types/node": "14.14.37",
"@types/pino": "6.3.7",
"@types/sinon-chai": "3.2.5",
"babel-loader": "8.2.2",
"chai": "4.3.4",
"chai-subset": "1.6.0",
"ethereum-waffle": "3.3.0",
"event-target-shim": "6.0.2",
"mocha": "8.3.2",
"nyc": "15.1.0",
"prettier": "2.2.1",
"prettier-plugin-solidity": "1.0.0-beta.8",
"solc": "0.8.3",
"solhint": "3.3.4",
"ts-generator": "0.1.1",
"ts-loader": "8.1.0",
"ts-mocha": "8.0.0",
"ts-node": "9.1.1",
"typechain": "4.0.3",
"typescript": "4.2.4"
}
}