forked from MetisProtocol/metis-sequencer-contract
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
28 lines (28 loc) · 841 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
{
"name": "@metisio/sequencer-contracts",
"private": true,
"license": "MIT",
"devDependencies": {
"@nomicfoundation/hardhat-toolbox": "^5.0.0",
"dotenv": "^16.4.5",
"hardhat": "^2.22.3",
"hardhat-deploy": "^0.12.2",
"prettier": "^3.2.4",
"prettier-plugin-solidity": "^1.1.3",
"solhint": "^4.5.4"
},
"dependencies": {
"@openzeppelin/contracts": "^4.9.6",
"@openzeppelin/contracts-upgradeable": "^4.9.6"
},
"scripts": {
"lint": "prettier --plugin=prettier-plugin-solidity --check ts-src 'contracts/**/*.sol' && solhint 'contracts/**/*.sol'",
"lint:fix": "prettier --plugin=prettier-plugin-solidity --write ts-src 'contracts/**/*.sol'",
"compile": "hardhat compile",
"build": "npm run compile",
"test": "hardhat test"
},
"prettier": {
"trailingComma": "all"
}
}