-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
52 lines (52 loc) · 2.07 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
48
49
50
51
52
{
"name": "contracts",
"version": "0.0.0",
"private": true,
"license": "MIT",
"scripts": {
"clean-murky": "rm -rf src/test/murky/lib && rm -rf src/test/murky/differential_testing && rm -rf src/test/murky/src/test",
"build": "mud worldgen && mud tablegen && forge build",
"clean": "forge clean && rimraf src/codegen",
"deploy:local": "bun run build && mud deploy",
"deploy:base-testnet": "bun run build && mud deploy --profile=base-sepolia",
"deploy:testnet": "bun run build && mud deploy --profile=redstone-garnet",
"deploy:redstone-mainnet": "bun run build && mud deploy --profile=redstone-mainnet",
"deploy:testnet-legacy": "bun run build && mud deploy --profile=redstone-holesky-legacy",
"deploy:base": "bun run build && mud deploy --profile=base-mainnet",
"dev": "bun mud dev-contracts",
"faucet": "DEBUG=mud:faucet bun faucet-server",
"lint": "forge fmt && bun run solhint",
"solhint": "solhint --config ./.solhint.json 'src/**/*.sol' --fix",
"test": "mud test",
"transfer-letters": "bunx ts-node scripts/transferLetters.ts"
},
"devDependencies": {
"@latticexyz/cli": "2.0.8",
"@latticexyz/common": "2.0.8",
"@latticexyz/config": "2.0.8",
"@latticexyz/faucet": "2.0.8",
"@latticexyz/schema-type": "2.0.8",
"@latticexyz/store": "2.0.8",
"@latticexyz/world": "2.0.8",
"@latticexyz/world-modules": "2.0.8",
"@openzeppelin/contracts": "5.0.2",
"@solidstate/contracts": "^0.0.52",
"@types/node": "^18.15.11",
"commander": "^12.1.0",
"csv-parse": "^5.5.6",
"ds-test": "https://github.com/dapphub/ds-test.git#c9ce3f25bde29fc5eb9901842bf02850dfd2d084",
"ethers": "^5.7.2",
"forge-std": "https://github.com/foundry-rs/forge-std.git#b4f121555729b3afb3c5ffccb62ff4b6e2818fd3",
"prettier": "3.2.5",
"prettier-plugin-solidity": "1.3.1",
"rimraf": "^3.0.2",
"run-pty": "^4.0.3",
"solhint": "^3.4.1",
"solhint-config-mud": "2.0.8",
"solhint-plugin-mud": "2.0.8",
"solmate": "6.2.0",
"ts-node": "^10.9.1",
"typescript": "5.4.2",
"viem": "^2.11.1"
}
}