-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 3.04 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "@rootstock-collective/collective-rewards-sc",
"description": "Smart contracts to implement RootstockCollective reward mechanisms",
"version": "0.0.1",
"author": "Rootstock Collective",
"repository": "https://github.com/RootstockCollective/collective-rewards-sc.git",
"contributors": [
{
"name": "Antonio Morrone",
"url": "https://github.com/antomor"
},
{
"name": "Francisco Tobar",
"url": "https://github.com/franciscotobar"
},
{
"name": "Julian Mendiola",
"url": "https://github.com/jmendiola222"
},
{
"name": "Fernando Ruiz",
"url": "https://github.com/fruiz08"
}
],
"dependencies": {
"@openzeppelin/contracts": "5.0.2",
"@openzeppelin/contracts-upgradeable": "5.0.2"
},
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@nomicfoundation/hardhat-foundry": "^1.1.2",
"@nomicfoundation/hardhat-toolbox": "^5.0.0",
"@tsconfig/node22": "^22.0.0",
"@typechain/ethers-v6": "^0.5.1",
"@typechain/hardhat": "^9.1.0",
"@typescript-eslint/eslint-plugin": "^7.16.0",
"@typescript-eslint/parser": "^7.16.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-mocha": "^10.4.3",
"forge-std": "github:foundry-rs/forge-std#v1.8.1",
"husky": "^9.0.11",
"markdownlint-cli2": "^0.13.0",
"prettier": "^3.3.3",
"solhint": "^5.0.3",
"solhint-plugin-bim": "file:utils/solhint-plugin",
"tslint-config-prettier": "^1.18.0",
"typechain": "^8.3.2",
"typescript": "^5.5.3"
},
"private": true,
"scripts": {
"clean": "rm -rf cache out cache_hardhat artifacts typechain-types",
"compile": "forge compile --force && hardhat compile --force",
"deploy": "./script/deploy.sh",
"lint": "bun run lint:sol:src && bun run lint:sol:test && bun run lint:md && bun run lint:ts && bun run lint:js",
"lint:sol:src": "solhint '{src,script,mock}/**/*.sol' test/BaseTest.sol",
"lint:sol:test": "solhint --config .solhint.test.json 'test/**/*.t.sol'",
"lint:md": "markdownlint-cli2 .",
"lint:md:fix": "markdownlint-cli2 . --fix",
"lint:js": "eslint --config utils/solhint-plugin/.eslintrc.js.yml utils/solhint-plugin --ext .js",
"lint:ts": "eslint --config .eslintrc.ts.yml . --ext .ts",
"lint:ts:fix": "eslint . --ext .ts --fix",
"prettier:check": "prettier --check \"**/*.{json,yml,ts}\" --ignore-path \".prettierignore\" && prettier --check \"utils/solhint-plugin/**/*.js\" && forge fmt --check",
"prettier:write": "prettier --write \"**/*.{json,yml,ts}\" --ignore-path \".prettierignore\" && prettier --write \"utils/solhint-plugin/**/*.js\" && forge fmt",
"test": "forge test --no-match-test '(testFuzz|invariant)'",
"test:fuzz": "forge test --match-test testFuzz",
"test:invariant": "forge test --match-test invariant",
"test:integration": "hardhat test",
"test:coverage": "forge coverage",
"test:coverage:report": "sh ./coverage.sh",
"prepare": "husky",
"docgen": "forge doc && bun run prettier:write"
}
}