-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.86 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
{
"name": "yonk-contracts",
"version": "0.0.0",
"private": true,
"license": "MIT",
"scripts": {
"build": "mud worldgen && mud tablegen && forge build",
"clean": "forge clean && rimraf src/codegen",
"deploy:local": "pnpm run build && mud deploy",
"deploy:redstone-holesky": "pnpm run build && FOUNDRY_ETH_RPC_URL=$(grep REDSTONE_HOLESKY_RPC_URL .env | cut -d '=' -f2) mud deploy",
"deploy:base-sepolia": "pnpm run build && FOUNDRY_ETH_RPC_URL=$(grep BASE_SEPOLIA_RPC_URL .env | cut -d '=' -f2) mud deploy",
"deploy:sepolia": "pnpm run build && FOUNDRY_ETH_RPC_URL=$(grep ETH_SEPOLIA_RPC_URL .env | cut -d '=' -f2) mud deploy",
"dev": "pnpm mud dev-contracts",
"faucet": "DEBUG=mud:faucet pnpm faucet-server",
"lint": "forge fmt && pnpm run solhint",
"solhint": "solhint --config ./.solhint.json 'src/**/*.sol' --fix",
"test": "mud test"
},
"devDependencies": {
"@latticexyz/cli": "2.0.0-main-df118eba",
"@latticexyz/config": "2.0.0-main-df118eba",
"@latticexyz/faucet": "2.0.0-main-df118eba",
"@latticexyz/schema-type": "2.0.0-main-df118eba",
"@latticexyz/store": "2.0.0-main-df118eba",
"@latticexyz/world": "2.0.0-main-df118eba",
"@latticexyz/world-modules": "2.0.0-main-df118eba",
"@openzeppelin/contracts": "^5.0.1",
"@types/node": "^18.15.11",
"ds-test": "https://github.com/dapphub/ds-test.git#e282159d5170298eb2455a6c05280ab5a73a4ef0",
"forge-std": "https://github.com/foundry-rs/forge-std.git#77876f8a5b44b770a935621bb331660c90ac928e",
"p256-verifier": "https://github.com/daimo-eth/p256-verifier.git#29475ae300ec95d98d5c7cc34c094846f0aa2dcd",
"rimraf": "^3.0.2",
"solhint": "^3.4.1",
"solhint-config-mud": "2.0.0-main-df118eba",
"solhint-plugin-mud": "2.0.0-main-df118eba",
"ts-node": "^10.9.1",
"typescript": "5.1.6"
},
"dependencies": {
"viem": "2.7.12"
}
}