-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
51 lines (51 loc) · 1.51 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
{
"name": "@connext/transfers",
"version": "0.0.1",
"license": "ISC",
"description": "Smart contracts for the supported transfers of the vector protocol",
"repository": "https://github.com/connext/transfers",
"keywords": [
"ethereum",
"vector",
"state channels",
"payment channels",
"solidity"
],
"scripts": {
"build": "rm -rf dist && hardhat compile && tsc",
"test": "mocha --require ts-node/register --require hardhat/register --timeout 60000 'tests/**/*.spec.ts'",
"deploy": "hardhat run scripts/deploy.ts"
},
"dependencies": {},
"devDependencies": {
"@connext/vector-contracts": "0.1.15-beta.21",
"@connext/vector-types": "0.1.15-beta.21",
"@connext/vector-utils": "0.1.15-beta.21",
"@openzeppelin/contracts": "3.4.0",
"ethers": "5.0.31",
"hardhat": "2.0.10",
"hardhat-deploy": "0.7.0-beta.44",
"hardhat-deploy-ethers": "0.3.0-beta.7",
"@nomiclabs/hardhat-ethers": "2.0.1",
"@nomiclabs/hardhat-waffle": "2.0.1",
"@typechain/ethers-v5": "5.0.0",
"@types/chai": "4.2.15",
"@types/chai-subset": "1.3.3",
"@types/mocha": "8.2.0",
"@types/node": "14.14.28",
"@types/sinon-chai": "3.2.5",
"chai": "4.3.0",
"chai-subset": "1.6.0",
"dotenv": "^8.2.0",
"ethereum-waffle": "3.2.2",
"hardhat-typechain": "0.3.4",
"mocha": "8.3.0",
"solc": "0.7.1",
"solhint": "3.3.2",
"ts-generator": "0.1.1",
"ts-mocha": "8.0.0",
"ts-node": "9.1.1",
"typechain": "4.0.1",
"typescript": "4.1.5"
}
}