-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
43 lines (43 loc) · 1.32 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
{
"name": "safe",
"packageManager": "yarn@3.1.0",
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.2",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@openzeppelin/contracts": "^4.3.3",
"@typechain/ethers-v5": "^8.0.3",
"@typechain/hardhat": "^3.0.0",
"@types/chai-as-promised": "^7.1.4",
"@types/cli-table": "^0.3.0",
"@types/mocha": "^9.0.0",
"@typescript-eslint/eslint-plugin": "^5.9.0",
"@typescript-eslint/parser": "^5.9.0",
"axios": "^0.25.0",
"chai": "^4.3.4",
"chai-as-promised": "^7.1.1",
"cli-table": "^0.3.11",
"eslint": "^8.6.0",
"eslint-config-prettier": "^8.3.0",
"eth-gas-reporter": "^0.2.22",
"ethereum-waffle": "^3.4.0",
"ethers": "^5.0.0",
"hardhat": "^2.6.7",
"hardhat-gas-reporter": "^1.0.4",
"lodash": "^4.17.21",
"mocha": "^9.1.2",
"prettier": "^2.5.1",
"ts-node": "^10.4.0",
"typechain": "^6.0.3",
"typescript": "^4.5.4"
},
"scripts": {
"test": "yarn hardhat test",
"typechain": "yarn hardhat typechain",
"postinstall": "yarn typechain",
"lint:check": "yarn run eslint . --ext .js,.ts",
"lint:write": "yarn run eslint . --ext .js,.ts --fix",
"prettier:check": "prettier --check .",
"prettier:write": "prettier --write .",
"nxtpcost": "ts-node ./comparisons/nxtp-costs.ts"
}
}