-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
47 lines (47 loc) · 1.4 KB
/
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
35
36
37
38
39
40
41
42
43
44
45
46
47
{
"name": "suave_playground",
"version": "1.0.0",
"license": "MIT",
"dependencies": {
"@flashbots/ethers-provider-bundle": "^0.6.2",
"@nomiclabs/hardhat-ethers": "^2.2.3",
"@nomiclabs/hardhat-solhint": "^3.0.1",
"@nomiclabs/hardhat-waffle": "^2.0.6",
"@openzeppelin/contracts": "^4.7.3",
"@types/dotenv": "^8.2.0",
"@types/mocha": "^10.0.3",
"@types/sinon-chai": "^3.2.11",
"chai": "^4.3.4",
"dotenv": "^16.4.5",
"elliptic": "^6.5.4",
"eslint": "^8.55.0",
"ethereum-waffle": "^3.3.0",
"ethereumjs-util": "^7.0.10",
"ethers": "^5.7.2",
"ethers-suave": "1.1.0",
"eventsource": "^2.0.2",
"hardhat": "^2.18.2",
"hardhat-abi-exporter": "^2.10.1",
"hardhat-deploy": "^0.11.34",
"hardhat-deploy-ethers": "0.3.0-beta.13",
"node-fetch": "2",
"prettier": "^3.1.0",
"prettier-plugin-solidity": "^1.2.0",
"solady": "^0.0.166",
"solhint": "^4.0.0",
"solhint-plugin-prettier": "^0.1.0",
"solidity-rlp": "^2.0.8",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
},
"scripts": {
"lint-sol": "npx solhint 'contracts/**/*.sol'",
"pretty::fix": "npx prettier --write --plugin=prettier-plugin-solidity 'contracts/**/*.sol'",
"lint-ts": "eslint .",
"lint-ts:fix": "eslint . --fix"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.13.1",
"@typescript-eslint/parser": "^6.13.1"
}
}