-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.58 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.58 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
44
45
46
47
48
49
{
"name": "crisp-voting-plugin",
"description": "A voting plugin for the OSX stack using CRISP on Interfold",
"version": "1.0.0",
"author": {
"name": "Gnosis Guild",
"url": "https://www.gnosisguild.org/"
},
"keywords": [
"blockchain",
"ethereum",
"forge",
"foundry",
"smart-contracts",
"solidity",
"aragon",
"osx",
"dao"
],
"scripts": {
"clean": "rm -rf cache out",
"build": "forge build",
"lint": "pnpm lint:sol && pnpm fmt:check",
"lint:sol": "solhint --max-warnings 0 \"{script,src,test}/**/*.sol\"",
"lint:sol:fix": "solhint --max-warnings 0 --fix --noPrompt \"{script,src,test}/**/*.sol\"",
"fmt:check": "forge fmt --check && prettier --check \"**/*.{js,json,md,ts,yml}\"",
"fmt:write": "forge fmt && prettier --write \"**/*.{js,json,md,ts,yml}\"",
"test": "forge test -vvv --fork-url http://localhost:8545",
"test:coverage": "forge coverage",
"test:coverage:report": "forge coverage --report lcov && genhtml lcov.info --branch-coverage --output-dir coverage",
"prepare": "husky"
},
"devDependencies": {
"forge-std": "github:foundry-rs/forge-std#v1.9.7",
"husky": "^9.1.7",
"prettier": "^3.5.3",
"solhint": "^5.1.0"
},
"dependencies": {
"@aragon/osx": "1.4.0",
"@aragon/osx-commons-contracts": "1.4.0",
"@ensdomains/ens-contracts": "0.0.11",
"@openzeppelin/contracts": "4.9.6",
"@openzeppelin/contracts-upgradeable": "4.9.6",
"@interfold/contracts": "0.2.2",
"@aragon/token-voting-plugin": "github:aragon/token-voting-plugin#v1.3",
"solady": "^0.1.19"
}
}