-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
68 lines (68 loc) · 2.51 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
{
"scripts": {
"build": "hardhat typechain",
"coverage": "hardhat coverage --solcoverjs ./.solcover.js --temp artifacts --testfiles \"./test/**/*.ts\"",
"lint": "yarn prettier && yarn lint:sol && yarn lint:ts",
"lint:sol": "solhint --config ./.solhint.json --fix \"contracts/**/*.sol\"",
"lint:ts": "eslint --config ./.eslintrc.yaml --fix",
"prettier": "prettier --config .prettierrc --write --list-different \"**/*.{js,json,md,sol,ts}\"",
"test": "hardhat test",
"test-gas-stories": "hardhat --config hardhat.gas-stories.config.ts test"
},
"devDependencies": {
"@ensdomains/eth-ens-namehash": "2.0.15",
"@ethersproject/abstract-signer": "5.6.2",
"@ethersproject/bignumber": "5.6.2",
"@manifoldxyz/royalty-registry-solidity": "1.0.9",
"@nomicfoundation/hardhat-chai-matchers": "1.0.2",
"@nomicfoundation/hardhat-toolbox": "1.0.2",
"@nomiclabs/hardhat-ethers": "2.1.0",
"@nomiclabs/hardhat-etherscan": "3.1.0",
"@openzeppelin/contracts": "4.7.2",
"@openzeppelin/contracts-upgradeable": "4.7.2",
"@openzeppelin/hardhat-upgrades": "1.19.1",
"@openzeppelin/test-helpers": "0.5.15",
"@primitivefi/hardhat-dodoc": "0.2.3",
"@typechain/ethers-v5": "9.0.0",
"@typechain/hardhat": "6.1.2",
"@types/chai": "4.3.3",
"@types/fs-extra": "9.0.13",
"@types/mocha": "9.1.1",
"@types/node": "18.6.4",
"@typescript-eslint/eslint-plugin": "5.32.0",
"@typescript-eslint/parser": "5.32.0",
"chai": "4.3.6",
"chalk": "4.1.2",
"coveralls": "3.1.1",
"defender-admin-client": "1.25.0",
"dotenv": "16.0.1",
"eslint": "8.21.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-no-only-tests": "^3.0.0",
"ethereum-waffle": "3.4.4",
"ethereumjs-util": "7.1.5",
"ethers": "5.6.9",
"fs-extra": "10.1.0",
"hardhat": "2.10.1",
"hardhat-contract-sizer": "2.6.1",
"hardhat-deploy": "0.11.12",
"hardhat-deploy-ethers": "0.3.0-beta.13",
"hardhat-gas-reporter": "1.0.8",
"hardhat-output-validator": "0.1.19",
"hardhat-preprocessor": "0.1.4",
"hardhat-storage-layout": "0.1.6",
"hardhat-tracer": "1.1.0-rc.6",
"mocha": "10.0.0",
"npm-package-json-lint": "6.3.0",
"npm-package-json-lint-config-default": "5.0.0",
"prettier": "2.7.1",
"prettier-plugin-solidity": "1.0.0-dev.23",
"shelljs": "0.8.5",
"solhint": "3.3.7",
"solhint-plugin-prettier": "0.0.5",
"solidity-coverage": "0.8.0-rc.1",
"ts-node": "10.9.1",
"typechain": "8.1.0",
"typescript": "4.6.4"
}
}