-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
45 lines (45 loc) · 1.16 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": "regen-toucan-bridge",
"version": "0.1.0",
"main": "index.js",
"license": "gpl-3.0",
"devDependencies": {
"husky": "^7.0.4",
"lint-staged": "^12.3.7",
"prettier": "^2.6.2",
"prettier-plugin-solidity": "^1.0.0-beta.19",
"solhint": "^3.3.7"
},
"dependencies": {
"@abacus-network/sdk": "^0.2.4",
"@nomiclabs/hardhat-ethers": "npm:[email protected]",
"@nomiclabs/hardhat-etherscan": "^3.1.0",
"@nomiclabs/hardhat-waffle": "^2.0.3",
"@openzeppelin/contracts": "4.6.0",
"@openzeppelin/contracts-upgradeable": "^4.6.0",
"@openzeppelin/hardhat-upgrades": "^1.18.1",
"chai": "^4.3.6",
"dotenv": "^16.0.1",
"ethereum-waffle": "^3.4.4",
"ethers": "^5.6.2",
"hardhat": "^2.9.2",
"hardhat-deploy": "^0.11.4"
},
"engines": {
"node": ">=16.0.0",
"yarn": ">=3.2.0",
"packageManager": "[email protected]"
},
"scripts": {
"build": "hardhat compile",
"lint:sol": "solhint contracts/*.sol",
"format": "prettier --loglevel warn --write .",
"format:check": "prettier --loglevel warn --check .",
"test": "hardhat test"
},
"lint-staged": {
"**/{contracts,test,scripts}/**/*.{ts,js,sol}": [
"prettier --write"
]
}
}