-
Notifications
You must be signed in to change notification settings - Fork 60
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.8 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.8 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
50
51
52
{
"name": "root",
"private": true,
"workspaces": [
"src/*"
],
"devDependencies": {
"@nomicfoundation/hardhat-toolbox": "^6.1.1",
"@typescript-eslint/eslint-plugin": "^8.46.2",
"@typescript-eslint/parser": "^8.46.2",
"bignumber.js": "^9.3.1",
"decimal.js": "^10.6.0",
"dotenv": "^17.2.3",
"eslint": "^9.17.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-unused-imports": "^4.3.0",
"hardhat": "^2.26.5",
"hardhat-contract-sizer": "^2.10.1",
"hardhat-dependency-compiler": "^1.2.1",
"hardhat-output-validator": "^0.1.19",
"husky": "^9.1.7",
"lerna": "^9.0.0",
"mocha-chai-jest-snapshot": "^1.1.7",
"prettier": "^3.6.2",
"prettier-plugin-solidity": "^2.1.0",
"pretty-quick": "^4.2.2",
"solhint": "^6.0.1",
"solhint-plugin-algebra": "file:scripts/solhint-custom",
"solidity-docgen": "^0.6.0-beta.36",
"ts-node": "^10.9.2",
"typescript": "^5.9.3"
},
"scripts": {
"prepare": "husky",
"lint": "prettier \"src/**/contracts/**/*.sol\"",
"solhint": "npm run solhint --workspace=src/core --if-present && npm run solhint --workspace=src/periphery --if-present && npm run solhint --workspace=src/farming --if-present",
"bootstrap": "npm install && npm run compile",
"compile": "cd src/core && hardhat compile && cd ../periphery && hardhat compile && cd ../farming && hardhat compile",
"ci-install": "npm ci",
"deploy": "node scripts/deployAll.js",
"verify": "node scripts/verifyAll.js",
"docgen": "cd src/core && hardhat docgen && cd ../periphery && hardhat docgen cd ../farming && hardhat docgen && node ../../docs/postprocess.js"
},
"engines": {
"npm": ">=10.0.0",
"node": ">=18.18.0"
},
"overrides": {
"glob": "^10.3.10",
"lodash.isequal": "npm:fast-deep-equal@^3.1.3"
}
}