-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
100 lines (100 loc) · 4.07 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
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
93
94
95
96
97
98
99
100
{
"name": "root",
"private": true,
"workspaces": [
"src"
],
"license": "Apache-2.0",
"scripts": {
"build": "yarn clean && yarn compile && yarn adapter",
"clean": "rimraf src/artifacts && rimraf src/gen && rimraf cache",
"compile": "hardhat --max-memory 4096 compile",
"adapter": "yarn adapter:gen && yarn adapter:build",
"adapter:gen": "rimraf src/gen/typechain && typechain --target ethers-v5 --out-dir src/gen/typechain './src/artifacts/contracts/**/*[^dbg].json'",
"adapter:build": "rimraf src/gen/adapter && tsc -p ./src/tsconfig.adapter.json",
"test": "yarn build && npx hardhat test tests/*",
"quicktest": "npx hardhat test tests/*",
"precoverage": "yarn build",
"coverage": "COVERAGE=true NET_ID=1 hardhat coverage --network coverage",
"benchmark": "BENCHMARK=true yarn test",
"lint": "yarn lint:ts && yarn lint:sol",
"lint:fix": "yarn lint:ts:fix && yarn lint:sol:fix",
"lint:sol": "solhint './src/contracts/**/*.sol'",
"lint:sol:fix": "solhint './src/contracts/**/*.sol' --fix",
"lint:ts": "eslint -c .eslintrc.js './**/*.ts'",
"lint:ts:fix": "eslint -c .eslintrc.js --fix './**/*.ts'",
"format": "prettier --write ./**/*.ts",
"start:ganache": "ganache --chain.chainId ${npm_package_config_ganacheChainID} --chain.networkId ${npm_package_config_ganacheChainID} --server.port ${npm_package_config_ganachePort} --miner.blockGasLimit ${npm_package_config_ganacheGasLimit} --miner.defaultGasPrice ${npm_package_config_ganacheGasPrice} --wallet.defaultBalance ${npm_package_config_etherBalance} --wallet.mnemonic \"${npm_package_config_mnemonic}\" ${npm_package_config_extra}",
"start:ganache:verbose": "yarn run start:ganache --verbose",
"stop:ganache": "ps aux | grep ganache | grep -v grep | awk '{print $2}' | xargs kill -9",
"deploy:ganache": "hardhat run --network ganache utils/deploy-contracts.ts",
"deploy": "hardhat run utils/deploy-contracts.ts --network",
"verify": "hardhat verify --network",
"release": "yarn publish src"
},
"husky": {
"hooks": {
"pre-commit": "yarn lint",
"pre-push": "yarn lint && yarn test"
}
},
"devDependencies": {
"@0xsequence/deployer": "^0.21.5",
"@ethersproject/abi": "^5.7.0",
"@ethersproject/hardware-wallets": "^5.7.0",
"@ethersproject/providers": "^5.7.2",
"@ledgerhq/hw-app-eth": "^6.35.0",
"@ledgerhq/hw-transport-node-hid": "^6.28.0",
"@nomicfoundation/hardhat-chai-matchers": "^1.0.6",
"@nomicfoundation/hardhat-network-helpers": "^1.0.8",
"@nomiclabs/hardhat-ethers": "^2.0.2",
"@nomiclabs/hardhat-etherscan": "^3.1.0",
"@nomiclabs/hardhat-truffle5": "^2.0.0",
"@nomiclabs/hardhat-web3": "^2.0.0",
"@openzeppelin/contracts": "^4.9.3",
"@tenderly/hardhat-tenderly": "^1.0.11",
"@typechain/ethers-v5": "^10.1.1",
"@types/chai-as-promised": "^7.1.0",
"@types/chai-string": "^1.4.1",
"@types/mocha": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^5.42.1",
"@typescript-eslint/parser": "^5.42.1",
"bn-chai": "^1.0.1",
"chai-as-promised": "^7.1.1",
"chai-bignumber": "^3.0.0",
"chai-string": "^1.5.0",
"child_process": "^1.0.2",
"dotenv": "^16.0.3",
"eslint": "^8.27.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-prettier": "^4.2.1",
"ethers": "^5.7.2",
"ganache": "^7.5.0",
"hardhat": "2.12.2",
"hardhat-gas-reporter": "^1.0.9",
"husky": "^4.2.3",
"prompt-sync": "^4.2.0",
"rimraf": "^3.0.2",
"solhint": "^3.3.4",
"solidity-coverage": "^0.8.5",
"solmate": "^6.7.0",
"ts-node": "^10.9.1",
"typechain": "^8.1.1",
"typescript": "^4.8.4",
"yesno": "^0.4.0"
},
"config": {
"mnemonic": "test test test test test test test test test test test junk",
"ganacheChainID": 127001,
"ganachePort": 8545,
"ganacheGasLimit": "0xfffffffffff",
"ganacheGasPrice": "2",
"etherBalance": "100000",
"extra": ""
},
"dependencies": {
"ethereum-private-key-to-public-key": "^0.0.5",
"ethereum-public-key-to-address": "^0.0.5"
}
}