-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
34 lines (34 loc) · 895 Bytes
/
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
{
"name": "hardhat-project",
"devDependencies": {
"@nomicfoundation/hardhat-toolbox": "5.0.0",
"@openzeppelin/hardhat-upgrades": "^3.2.1",
"@prb/math": "4.0.3",
"@types/fs-extra": "11.0.4",
"hardhat": "2.22.8",
"axios": "1.7.3",
"dotenv": "16.4.5",
"envalid": "8.0.0",
"fs-extra": "11.2.0",
"prettier": "3.3.3",
"prettier-plugin-solidity": "1.3.1",
"solhint": "5.0.3",
"zod": "3.23.8"
},
"scripts": {
"compile": "hardhat compile",
"test": "hardhat test",
"lint": "npm run format && npm run solhint",
"solhint": "solhint --fix --noPrompt --max-warnings 0 \"contracts/**/*.sol\"",
"format": "prettier --write '**/*.{sol,ts,json,md,yml}'"
},
"dependencies": {
"@openzeppelin/contracts": "5.0.2",
"@openzeppelin/contracts-upgradeable": "5.0.2",
"@scroll-tech/contracts": "0.1.0",
"poseidon-goldilocks": "0.2.3"
},
"engines": {
"node": "20"
}
}