-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
45 lines (45 loc) · 1.27 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
{
"name": "@statechannels/exit-format",
"version": "0.2.0",
"description": "Standard Exit Format for L2s built on EVM chains",
"repository": "https://github.com/statechannels/exit-format.git",
"author": "geoknee <[email protected]>",
"license": "MIT",
"private": false,
"files": [
"/contracts/ExitFormat.sol",
"/lib/*"
],
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"scripts": {
"prepare": "yarn hardhat compile && yarn tsc",
"prettier:check": "yarn prettier --check *",
"test": "yarn hardhat test"
},
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.2",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@tsconfig/recommended": "^1.0.1",
"@typechain/ethers-v5": "^6.0.5",
"@types/chai": "^4.2.17",
"@types/lodash": "^4.14.171",
"@types/mocha": "^8.2.2",
"@types/node": "^15.0.0",
"chai": "^4.3.4",
"ethereum-waffle": "^3.3.0",
"hardhat": "^2.2.1",
"hardhat-typechain": "^0.3.5",
"prettier": "^2.2.1",
"prettier-plugin-solidity": "^1.0.0-beta.10",
"ts-generator": "^0.1.1",
"ts-node": "^9.1.1",
"typechain": "^4.0.3",
"typescript": "^4.2.4"
},
"dependencies": {
"ethers": "^5.1.4",
"lodash": "^4.17.21",
"@openzeppelin/contracts": "4.6.0"
}
}