-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.06 KB
/
package.json
File metadata and controls
35 lines (35 loc) · 1.06 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
{
"name": "yoru-contracts",
"version": "1.0.0",
"main": "index.js",
"repository": "git@github.com:TheYoru/yoru-contracts.git",
"author": "Charles Jhong <charlesjhongc@gmail.com>",
"license": "MIT",
"scripts": {
"format": "prettier --write .",
"check-pretty": "prettier --check .",
"lint": "solhint \"contracts/**/*.sol\"",
"compile": "forge build --force",
"test-foundry": "forge test --fork-url $NODE_RPC --fork-block-number 8829699"
},
"dependencies": {
"@nomicfoundation/hardhat-foundry": "^1.0.1",
"@nomicfoundation/hardhat-toolbox": "^2.0.2",
"@nomiclabs/hardhat-ethers": "^2.2.3",
"@nomiclabs/hardhat-etherscan": "^3.1.7",
"@types/node": "^18.15.11",
"dotenv": "^16.0.3",
"ethers": "^5.0.0",
"hardhat": "^2.13.1",
"pino": "^8.11.0",
"pino-pretty": "^10.0.0",
"prettier": "^2.8.7",
"prettier-plugin-solidity": "^1.1.3",
"prompts": "^2.4.2",
"simple-git": "^3.17.0",
"solhint": "^3.4.1",
"solhint-plugin-prettier": "^0.0.5",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
}
}