-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
45 lines (45 loc) · 1.41 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": "NCW",
"version": "1.0.0",
"description": "EigenSecret multi-sig contract wallet",
"main": "index.js",
"scripts": {
"clean": "rm -rf build dist typechain cache artifacts",
"build": "hardhat compile",
"test": "yarn build && npx hardhat test",
"lint_typescript": "./node_modules/.bin/eslint test --ext .ts",
"lint_contract": "./node_modules/.bin/solhint 'contracts/**/*.sol'",
"lint": "yarn lint_contract && yarn lint_contract",
"deploy": "npx hardhat run scripts/deploy.js"
},
"author": "Eigen Lab",
"license": "Apache-2.0",
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.2",
"@nomiclabs/hardhat-etherscan": "^3.0.1",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@nomiclabs/hardhat-web3": "^2.0.0",
"chai": "^4.3.4",
"ethereum-waffle": "^3.4.0",
"ethers": "^5.5.1",
"hardhat": "^2.6.8",
"hardhat-gas-reporter": "^1.0.7",
"ts-node": "^10.4.0",
"typescript": "^4.2.4",
"eslint": "^8.9.0",
"typescript-eslint-parser": "^22.0.0",
"@eslint/create-config": "^0.1.2",
"@typescript-eslint/eslint-plugin": "^5.12.0",
"@typescript-eslint/parser": "^5.12.0",
"solhint": "^3.3.7"
},
"dependencies": {
"@openzeppelin/contracts": "^4.4.0",
"@typechain/ethers-v5": "^7.0.1",
"@typechain/hardhat": "^3.0.0",
"@types/mocha": "^9.0.0",
"dotenv": "^10.0.0",
"tslint": "^6.1.3",
"typechain": "^5.0.0"
}
}