-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.17 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.17 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
{
"name": "solidity-template",
"version": "1.0.0",
"description": "Template for Solidity projects",
"author": "ZK Email <support@zk.email>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/zkemail/solidity-template"
},
"keywords": [
"zk email"
],
"engines": {
"node": ">=22"
},
"packageManager": "yarn@1.22.22",
"devDependencies": {
"@commitlint/cli": "20.3.1",
"@commitlint/config-conventional": "20.3.1",
"@types/node": "25.0.9",
"forge-std": "github:foundry-rs/forge-std#v1.14.0",
"husky": "9.1.7",
"lint-staged": "16.2.7",
"prettier": "3.8.0",
"solhint-community": "4.0.1",
"typescript": "5.9.3"
},
"dependencies": {
"@openzeppelin/contracts": "5.5.0"
},
"scripts": {
"build": "forge build --sizes",
"clean": "forge clean",
"coverage": "forge coverage --report summary --report lcov --no-match-coverage \"(script|test)\"",
"fmt:check": "forge fmt --check && prettier --check .",
"fmt": "forge fmt && prettier --write .",
"lint:check": "solhint \"**/*.sol\"",
"lint": "solhint --fix \"**/*.sol\"",
"prepare": "husky",
"test": "forge test"
}
}