-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 2.03 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
{
"license": "MIT",
"scripts": {
"format": "npx prettier '**/*.{js,ts,json,sol,md}' --write --loglevel warn",
"lint": "npm run format && npx eslint '**/*.{js,ts}' --fix && npx solhint --max-warnings 0 'contracts/**/*.sol' --fix",
"test": "npx hardhat test",
"coverage": "npx hardhat coverage --testfiles \"test/*.ts\"",
"docs": "rm -rf docs/generated/* && ./node_modules/.bin/solidity-docgen --solc-module solc -t docs -o ./docs/generated/ && ./node_modules/.bin/doctoc ./docs/generated/ --maxlevel 3 && ./node_modules/.bin/sol2uml -i test,libraries ./contracts -o ./docs/uml.svg"
},
"devDependencies": {
"@commitlint/cli": "^17.3.0",
"@commitlint/config-conventional": "^17.3.0",
"@nomicfoundation/hardhat-ethers": "^3.0.5",
"@nomicfoundation/hardhat-network-helpers": "^1.0.10",
"@nomiclabs/hardhat-etherscan": "^3.1.8",
"@openzeppelin/hardhat-upgrades": "^3.0.5",
"@typechain/hardhat": "^9.1.0",
"@types/chai": "4.3.4",
"@types/mocha": "10.0.0",
"@types/node": "18.11.9",
"@typescript-eslint/eslint-plugin": "5.44.0",
"@typescript-eslint/parser": "5.44.0",
"chai": "^5.1.0",
"doctoc": "2.2.1",
"dotenv": "^16.0.3",
"eslint": "8.28.0",
"eslint-config-prettier": "8.5.0",
"eslint-config-standard": "17.0.0",
"eslint-plugin-chai-friendly": "^0.7.2",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-promise": "6.1.1",
"ethers": "^6.12.0",
"hardhat": "^2.18.0",
"hardhat-abi-exporter": "2.10.1",
"hardhat-contract-sizer": "^2.6.1",
"hardhat-gas-reporter": "1.0.9",
"husky": "8.0.2",
"mocha": "10.1.0",
"prettier": "2.8.0",
"prettier-plugin-solidity": "1.0.0",
"solc": "^0.8.25",
"solidity-coverage": "^0.8.12",
"solidity-docgen": "0.5.17",
"ts-node": "10.9.1",
"typechain": "^8.1.1",
"typescript": "4.9.3"
},
"dependencies": {
"@openzeppelin/contracts": "^5.0.2",
"@openzeppelin/contracts-upgradeable": "^5.0.2"
}
}