forked from primodiumxyz/mud-stateful-fuzzing-bug-repro
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
31 lines (31 loc) · 955 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
29
30
31
{
"name": "mud-template-vanilla",
"private": true,
"scripts": {
"build": "pnpm recursive run build",
"dev": "mprocs",
"dev:client": "pnpm --filter 'client' run dev",
"dev:contracts": "pnpm --filter 'contracts' dev",
"foundry:up": "curl -L https://foundry.paradigm.xyz | bash && bash $HOME/.foundry/bin/foundryup",
"mud:up": "pnpm mud set-version --tag main && pnpm install",
"prepare": "(forge --version || pnpm foundry:up)",
"test": "pnpm recursive run test"
},
"devDependencies": {
"@latticexyz/cli": "2.2.6",
"@latticexyz/common": "2.2.6",
"@latticexyz/explorer": "2.2.6",
"@latticexyz/store-indexer": "2.2.6",
"@types/debug": "4.1.7",
"@typescript-eslint/eslint-plugin": "7.1.1",
"@typescript-eslint/parser": "7.1.1",
"eslint": "8.57.0",
"mprocs": "^0.6.4",
"shx": "^0.3.4",
"typescript": "5.4.2"
},
"engines": {
"node": "^18",
"pnpm": "^8 || ^9"
}
}