-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 1.19 KB
/
package.json
File metadata and controls
31 lines (31 loc) · 1.19 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
{
"name": "core-smart-contracts",
"version": "2.0.0-beta.20",
"scripts": {
"compile": "hardhat compile && npm run artifact-to-abis",
"test": "hardhat test",
"coverage": "hardhat coverage",
"deploy": "hardhat ignition deploy ignition/modules/DataProtector.ts --strategy create2",
"verify": "hardhat ignition verify --include-unrelated-contracts",
"artifact-to-abis": "node tools/artifacts-to-abis.mjs",
"check-format": "prettier --loglevel warn 'contracts/**/*.sol' '**/*.ts' --check",
"format": "prettier --loglevel warn 'contracts/**/*.sol' '**/*.ts' --write",
"check-lint": "solhint 'contracts/**/*.sol' && eslint .",
"lint": "solhint 'contracts/**/*.sol' --fix && eslint . --fix"
},
"devDependencies": {
"@nomicfoundation/hardhat-toolbox": "^6.1.0",
"@typescript-eslint/eslint-plugin": "^8.30.1",
"@typescript-eslint/parser": "^8.30.1",
"dotenv": "^16.5.0",
"eslint": "^9.24.0",
"eslint-plugin-import": "^2.31.0",
"hardhat": "^2.26.1",
"prettier": "^3.3.3",
"prettier-plugin-organize-imports": "^4.0.0",
"prettier-plugin-solidity": "^1.4.1",
"solhint": "^5.0.5",
"typescript": "^5.8.3",
"zod": "^3.24.3"
}
}