-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathpackage.json
More file actions
24 lines (24 loc) · 801 Bytes
/
package.json
File metadata and controls
24 lines (24 loc) · 801 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
"name": "bnbx",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"clean": "rm -rf cache out",
"build": "forge build",
"lint": "npm run lint:sol && npm run prettier:check",
"lint:sol": "forge fmt --check && solhint {script,src,test}/**/*.sol",
"prettier:check": "prettier --check **/*.{json,md,yml} --ignore-path=.prettierignore",
"prettier:write": "prettier --write **/*.{json,md,yml} --ignore-path=.prettierignore",
"test": "forge test"
},
"devDependencies": {
"@nomicfoundation/hardhat-foundry": "^1.1.2",
"@nomicfoundation/hardhat-toolbox": "^5.0.0",
"@opengsn/contracts": "^3.0.0-beta.1",
"@openzeppelin/hardhat-upgrades": "^3.1.1",
"dotenv": "^16.4.5",
"hardhat": "^2.22.5",
"solhint": "^5.0.1"
}
}