-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
43 lines (43 loc) · 1.36 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
{
"name": "telekom-mms-block-magic-workshop",
"version": "1.0.0",
"description": "Repo for the block magic workshop",
"license": "MIT",
"scripts": {
"compile": "hardhat compile",
"coverage": "hardhat coverage",
"deploy": "hardhat ignition deploy ./ignition/modules/*",
"lint-sol": "solhint 'contracts/**/*.sol'",
"lint-sol:fix": "solhint 'contracts/**/*.sol' --fix",
"lint-type": "eslint './test/**/*.ts' './ignition/modules/**/*.ts'",
"test": "hardhat test"
},
"dependencies": {
"@types/node": "^20.12.7",
"dotenv": "^16.4.5"
},
"devDependencies": {
"@nomicfoundation/hardhat-foundry": "^1.1.1",
"@nomicfoundation/hardhat-toolbox": "^5.0.0",
"@openzeppelin/contracts": "^5.0.2",
"@typechain/ethers-v6": "^0.5.1",
"@typechain/hardhat": "^9.1.0",
"@typescript-eslint/eslint-plugin": "^7.7.0",
"@typescript-eslint/parser": "^7.7.0",
"chalk": "^4.1.2",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.3",
"ethers": "^6.12.0",
"hardhat": "^2.22.3",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"prettier-plugin-solidity": "^1.3.1",
"solhint": "^4.5.4",
"solhint-plugin-prettier": "^0.1.0",
"sort-package-json": "^2.10.0",
"ts-node": "^10.9.2",
"typescript": "^5.4.5"
}
}