-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.62 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.62 KB
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
{
"name": "@yahub/asset-wrapper",
"version": "0.1.0",
"description": "asset wrapper contracts for typescript",
"main": "./types/index.js",
"types": "./types/index.ts",
"engines": {
"node": ">= 20.9.0"
},
"author": "yala",
"license": "MIT",
"keywords": [
"ethereum",
"smart-contracts",
"hardhat",
"solidity"
],
"devDependencies": {
"@nomicfoundation/hardhat-chai-matchers": "^2.0.1",
"@nomicfoundation/hardhat-ethers": "3.0.8",
"@nomicfoundation/hardhat-network-helpers": "^1.0.0",
"@nomicfoundation/hardhat-toolbox": "^5.0.0",
"@nomicfoundation/hardhat-verify": "^2.0.12",
"@openzeppelin/contracts": "^4.8.3",
"@openzeppelin/contracts-upgradeable": "^4.8.3",
"@typechain/ethers-v6": "^0.5.1",
"@typechain/hardhat": "^9.1.0",
"@types/chai": "^4.2.18",
"@types/dotenv": "^8.2.0",
"@types/mocha": "^10.0.1",
"@types/node": "^20.9.0",
"@typescript-eslint/eslint-plugin": "^8.16.0",
"@typescript-eslint/parser": "^8.16.0",
"@typescript-eslint/typescript-estree": "^8.16.0",
"chai": "^4.2.0",
"cross-env": "^7.0.3",
"dotenv": "^16.0.3",
"eslint": "^8.37.0",
"eslint-config-prettier": "^8.8.0",
"ethers": "6.11.0",
"hardhat": "^2.22.5",
"hardhat-deploy": "^0.12.2",
"hardhat-ethers": "^1.0.1",
"hardhat-gas-reporter": "^2.0.0",
"hardhat-storage-layout": "^0.1.7",
"husky": "^9.1.7",
"minimatch": "^5.1.2",
"mocha": "^10.2.0",
"prettier": "^3.4.1",
"prettier-plugin-solidity": "^1.4.1",
"solc-0.8.28": "npm:solc@0.8.28",
"solhint": "^4.5.4",
"solhint-plugin-prettier": "^0.1.0",
"solidity-coverage": "^0.8.12",
"solidity-docgen": "^0.6.0-beta.36",
"ts-node": "^10.9.1",
"typechain": "^8.3.2",
"typescript": "^5.1.6"
},
"scripts": {
"doc": "hardhat docgen",
"build:types": "cross-env NODE_ENV=build hardhat typechain && tsc ./types/**.ts --module NodeNext --moduleResolution NodeNext --target ESNext",
"clean": "hardhat clean",
"build": "cross-env NODE_ENV=build hardhat compile && yarn build:types",
"console": "hardhat console",
"coverage": "cross-env HARDHAT_DEPLOY_FIXTURE=true NODE_ENV=dev hardhat coverage",
"gas": "yarn clean && yarn build && cross-env REPORT_GAS=true hardhat test",
"test": "yarn clean && yarn build && cross-env NODE_ENV=build hardhat test",
"sepolia": "cross-env NODE_ENV=dev hardhat --network sepolia",
"mainnet": "cross-env NODE_ENV=production hardhat --network mainnet",
"dev": "cross-env NODE_ENV=dev hardhat node --tags dev",
"lint": "prettier --list-different --plugin=prettier-plugin-solidity 'contracts/**/*.sol'",
"lint:fix": "prettier --write --plugin=prettier-plugin-solidity 'contracts/**/*.sol'",
"prepare": "husky"
}
}