-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
77 lines (77 loc) · 2.27 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
69
70
71
72
73
74
75
76
77
{
"name": "lightweight-diamond-example",
"description": "The lightweight template of the core diamond contract for Solidity building.",
"keywords": [
"coinmeca",
"smart-contract",
"solidity",
"eip",
"2535",
"eip2535",
"eip-2535",
"diamond",
"diamond pattern"
],
"version": "1.0.0",
"license": "CC0-1.0",
"files": [
"*.sol",
"**/*.sol"
],
"repository": {
"type": "git",
"url": "https://github.com/l-Zetta-l/lightweight-diamond-example"
},
"author": "Coinmeca Team <[email protected]>",
"scripts": {
"prettify": "prettier --write .",
"devnet": "hardhat node",
"size": "hardhat size-contracts",
"compile": "hardhat compile",
"clean": "hardhat clean",
"test": "hardhat test",
"test-cov": "hardhat coverage",
"build": "gemforge build",
"dep": "gemforge deploy"
},
"devDependencies": {
"@commitlint/cli": "^17.2.0",
"@commitlint/config-conventional": "^17.2.0",
"@nomicfoundation/hardhat-chai-matchers": "^2.0.2",
"@nomicfoundation/hardhat-ethers": "^3.0.4",
"@nomicfoundation/hardhat-network-helpers": "^1.0.9",
"@nomicfoundation/hardhat-toolbox": "^3.0.0",
"@nomicfoundation/hardhat-verify": "^1.1.1",
"@nomiclabs/hardhat-etherscan": "^3.1.7",
"@openzeppelin/contracts": "^4.9.3",
"@typechain/ethers-v6": "^0.5.0",
"@typechain/hardhat": "^9.0.0",
"@types/chai": "^4.3.6",
"@types/mocha": "^10.0.1",
"@types/node": "^18.16.16",
"chai": "^4.3.8",
"dotenv": "^16.3.1",
"ethers": "^6.7.1",
"execa": "^8.0.1",
"gemforge": "^1.8.0",
"hardhat": "^2.17.3",
"hardhat-contract-sizer": "^2.10.0",
"hardhat-gas-reporter": "^1.0.9",
"husky": "^8.0.2",
"prettier": "^2.8.8",
"solc": "^0.8.21",
"solhint": "^3.3.7",
"solidity-coverage": "^0.8.4",
"ts-node": "^10.9.1",
"typechain": "^8.3.1"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"engines": {
"node": ">=20.0.0"
},
"engineStrict": true
}