-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.92 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.92 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "@fhevm/staking-contracts",
"license": "MIT",
"files": [
"/contracts/**/*.sol",
"!/contracts/mocks/**/*"
],
"scripts": {
"clean": "hardhat clean && rimraf build contracts/build",
"compile": "hardhat compile",
"lint": "npm run lint:js && npm run lint:sol",
"lint:fix": "npm run lint:js:fix && npm run lint:sol:fix",
"lint:js": "prettier --loglevel warn '**/*.{js,ts}' --check && eslint .",
"lint:js:fix": "prettier --loglevel warn '**/*.{js,ts}' --write && eslint . --fix",
"lint:sol": "prettier --loglevel warn '{contracts,test}/**/*.sol' --check && solhint --config solhint.config.js '{contracts,test}/**/*.sol'",
"lint:sol:fix": "solhint --config solhint.config.js '{contracts,test}/**/*.sol' --fix; prettier --loglevel warn '{contracts,test}/**/*.sol' --write",
"test": "hardhat test",
"test:fuzz": "forge test",
"test:fuzz:verbose": "forge test -vvv",
"test:tasks": "hardhat test:tasks",
"test:gas": "REPORT_GAS=true hardhat test",
"test:pragma": "npm run compile && scripts/checks/pragma-validity.js artifacts/build-info/*",
"coverage": "SOLIDITY_COVERAGE=true hardhat coverage"
},
"devDependencies": {
"@eslint/compat": "^1.2.8",
"@eslint/js": "^9.9.0",
"@nomicfoundation/hardhat-chai-matchers": "^2.0.6",
"@nomicfoundation/hardhat-ethers": "^3.0.4",
"@nomicfoundation/hardhat-network-helpers": "^1.0.3",
"@nomicfoundation/hardhat-verify": "^2.1.1",
"@openzeppelin/contracts": "^5.4.0",
"@openzeppelin/contracts-upgradeable": "^5.4.0",
"@openzeppelin/hardhat-upgrades": "^3.9.1",
"@trivago/prettier-plugin-sort-imports": "^4.0.0",
"@typechain/ethers-v6": "^0.5.1",
"@typechain/hardhat": "^9.1.0",
"@types/chai": "^4.3.4",
"@types/eslint__js": "^8.42.3",
"@types/fs-extra": "^9.0.13",
"@types/mocha": "^10.0.0",
"@types/node": "^18.19.59",
"@typescript-eslint/eslint-plugin": "^8.0.1",
"@typescript-eslint/parser": "^8.0.1",
"chai": "^4.3.7",
"dotenv": "^16.0.3",
"eslint": "^9.9.0",
"eslint-config-prettier": "^8.5.0",
"ethers": "^6.14.3",
"globals": "^15.9.0",
"hardhat": "^2.24.0",
"hardhat-deploy": "^0.12.1",
"hardhat-exposed": "^0.3.15",
"hardhat-gas-reporter": "^2.1.0",
"hardhat-ignore-warnings": "^0.2.11",
"lodash": "^4.17.21",
"lodash.startcase": "^4.4.0",
"mocha": "^10.1.0",
"prettier": "^2.8.4",
"prettier-plugin-solidity": "^1.1.2",
"rimraf": "^4.1.2",
"sha3": "^2.1.4",
"solhint": "^5.1.0",
"solhint-plugin-openzeppelin": "file:scripts/solhint-custom",
"solidity-coverage": "0.8.12",
"solidity-docgen": "^0.6.0-beta.36",
"sqlite3": "^5.1.7",
"ts-generator": "^0.1.1",
"ts-node": "^10.9.1",
"typechain": "^8.2.0",
"typescript": "^5.5.4",
"typescript-eslint": "^8.0.1",
"web3-validator": "^2.0.6"
},
"overrides": {
"elliptic": "6.6.1"
},
"engines": {
"node": ">=20.0.0"
}
}