-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
62 lines (62 loc) · 2.34 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
{
"name": "node-terminal-contracts",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"clean": "hardhat clean",
"compile": "hardhat compile",
"coverage": "hardhat coverage",
"docgen": "hardhat docgen",
"lint": "solhint \"contracts/**/*.sol\"",
"size-contracts": "hardhat size-contracts",
"slither": "slither .",
"export-abi": "hardhat export-abi",
"prettier:fix": "prettier --write \"**/*.ts\" \"contracts/**/*.sol\"",
"prettier:check": "prettier --check \"**/*.ts\" \"contracts/**/*.sol\"",
"test": "hardhat test",
"check-style": "yarn prettier:check && yarn lint",
"static-analyze": "yarn check-style && yarn size-contracts && yarn slither",
"validate-all": "yarn clean && yarn compile && yarn static-analyze && yarn coverage && REPORT_GAS=true yarn test && yarn docgen && yarn export-abi"
},
"devDependencies": {
"@nomicfoundation/hardhat-chai-matchers": "^2.0.7",
"@nomicfoundation/hardhat-ethers": "^3.0.6",
"@nomicfoundation/hardhat-ignition": "^0.15.5",
"@nomicfoundation/hardhat-ignition-ethers": "^0.15.5",
"@nomicfoundation/hardhat-network-helpers": "^1.0.11",
"@nomicfoundation/hardhat-toolbox": "^5.0.0",
"@nomicfoundation/hardhat-verify": "^2.0.9",
"@typechain/ethers-v6": "^0.5.1",
"@typechain/hardhat": "^9.1.0",
"@types/chai": "^4.3.17",
"@types/mocha": ">=9.1.0",
"@types/node": ">=18.0.0",
"chai": "^4.2.0",
"dotenv": "^16.4.5",
"ethers": "^6.13.2",
"hardhat": "^2.22.10",
"hardhat-abi-exporter": "^2.10.1",
"hardhat-contract-sizer": "^2.10.0",
"hardhat-docgen": "^1.3.0",
"hardhat-gas-reporter": "^1.0.8",
"hardhat-tracer": "^3.1.0",
"hardhat-upgrades": "^0.0.0",
"prettier": "^3.3.3",
"prettier-plugin-organize-imports": "^4.0.0",
"prettier-plugin-solidity": "^1.3.1",
"solhint": "^5.0.3",
"solhint-plugin-prettier": "^0.1.0",
"solidity-coverage": "^0.8.12",
"ts-node": ">=8.0.0",
"typechain": "^8.3.2",
"typescript": ">=4.5.0"
},
"dependencies": {
"@openzeppelin/contracts": "5.0.2",
"@openzeppelin/contracts-4.8.2": "npm:@openzeppelin/[email protected]",
"@openzeppelin/contracts-upgradeable": "5.0.2",
"@openzeppelin/contracts-upgradeable-4.8.2": "npm:@openzeppelin/[email protected]",
"erc721a-upgradeable": "^4.3.0"
}
}