forked from foundry-rs/forge-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.16 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
{
"name": "@edendao/contracts",
"author": "Cyrus of Eden (@CyrusOfEden)",
"license": "SEE LICENSE IN LICENSE",
"version": "1.0.0",
"description": "Carbon removal incentive design",
"files": [
"*.sol"
],
"devDependencies": {
"copyfiles": "^2.4.1",
"ethers": "^5.6.9",
"husky": "^7.0.4",
"keccak256": "^1.0.6",
"lodash": "^4.17.21",
"merkletreejs": "^0.2.32",
"pinst": "^3.0.0",
"prettier": "^2.6.1",
"prettier-plugin-solidity": "^1.0.0-beta.19",
"rimraf": "^3.0.2",
"solhint": "^3.3.7",
"solhint-plugin-prettier": "^0.0.5",
"typescript": "^4.7.4"
},
"scripts": {
"postinstall": "husky install",
"prepack": "pinst --disable",
"postpack": "pinst --enable",
"lint:fix": "yarn prettier:fix && yarn solhint:fix",
"lint:check": "yarn prettier:check && yarn solhint:check",
"prettier:fix": "yarn prettier --check \"src/**/*.sol\" --write",
"prettier:check": "yarn prettier --check \"src/**/*.sol\"",
"solhint:fix": "yarn solhint --config ./.solhint.json \"src/**/*.sol\" --fix",
"solhint:check": "yarn solhint --config ./.solhint.json \"src/**/*.sol\""
},
"dependencies": {}
}