This repository was archived by the owner on Dec 27, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 43
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.85 KB
/
package.json
File metadata and controls
92 lines (92 loc) · 2.85 KB
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
86
87
88
89
90
91
92
{
"name": "@connext/vector-contracts",
"version": "0.2.5-beta.21",
"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": {
"copy-wasm": "cp ../../node_modules/@connext/pure-evm-wasm/pure-evm_bg.wasm dist/pure-evm_bg.wasm",
"prettier": "prettier --write './src.sol/**/*.sol'",
"build": "rm -rf dist && hardhat compile && tsc && npm run copy-wasm",
"build-bundle": "rm -f dist/package.json && webpack --config ops/webpack.config.js",
"test": "nyc mocha --exit --require ts-node/register --require hardhat/register --timeout 60000 'src.ts/**/*.spec.ts'",
"test-gas": "npx hardhat test"
},
"dependencies": {
"@connext/pure-evm-wasm": "0.1.4",
"@connext/vector-types": "0.2.5-beta.21",
"@connext/vector-utils": "0.2.5-beta.21",
"@ethersproject/abi": "5.4.0",
"@ethersproject/abstract-provider": "5.4.0",
"@ethersproject/abstract-signer": "5.4.1",
"@ethersproject/address": "5.4.0",
"@ethersproject/bignumber": "5.4.1",
"@ethersproject/constants": "5.4.0",
"@ethersproject/contracts": "5.4.1",
"@ethersproject/hdnode": "5.4.0",
"@ethersproject/keccak256": "5.4.0",
"@ethersproject/providers": "5.4.3",
"@ethersproject/solidity": "5.4.0",
"@ethersproject/units": "5.4.0",
"@ethersproject/wallet": "5.4.0",
"@openzeppelin/contracts": "3.2.1-solc-0.7",
"evt": "1.9.12",
"hardhat": "2.5.0",
"hardhat-deploy": "0.8.11",
"hardhat-deploy-ethers": "0.3.0-beta.10",
"keccak": "3.0.1",
"p-queue": "6.6.2",
"pino": "6.11.1",
"pino-pretty": "4.6.0"
},
"devDependencies": {
"@nomiclabs/hardhat-ethers": "2.0.2",
"@nomiclabs/hardhat-etherscan": "2.1.4",
"@nomiclabs/hardhat-waffle": "2.0.1",
"@tenderly/hardhat-tenderly": "1.0.12",
"@typechain/ethers-v5": "7.0.1",
"@typechain/hardhat": "2.2.0",
"@types/chai": "4.2.15",
"@types/chai-subset": "1.3.3",
"@types/mocha": "8.2.1",
"@types/node": "14.14.31",
"@types/pino": "6.3.6",
"@types/sinon-chai": "3.2.5",
"babel-loader": "8.1.0",
"chai": "4.3.1",
"chai-subset": "1.6.0",
"ethereum-waffle": "3.4.0",
"event-target-shim": "5.0.1",
"hardhat-gas-reporter": "1.0.4",
"mocha": "8.3.0",
"nyc": "15.1.0",
"prettier": "2.2.1",
"prettier-plugin-solidity": "1.0.0-beta.5",
"sinon": "10.0.0",
"solc": "0.7.1",
"solhint": "3.3.2",
"ts-generator": "0.1.1",
"ts-loader": "8.0.7",
"ts-mocha": "8.0.0",
"ts-node": "9.1.1",
"typechain": "5.1.2",
"typescript": "4.3.5",
"webpack": "4.44.2",
"webpack-cli": "4.1.0"
}
}