-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
28 lines (28 loc) · 1.04 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
{
"name": "mud-template-react",
"private": true,
"scripts": {
"build": "pnpm recursive run build",
"dev": "concurrently -n contracts,client,script -c cyan,magenta,blue \"cd packages/contracts && pnpm run dev\" \"cd packages/client && pnpm run dev\" ",
"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",
"initialize": "pnpm recursive run initialize",
"mud:up": "pnpm recursive exec mud set-version -v canary && pnpm install",
"prepare": "(forge --version || pnpm foundry:up)",
"test": "pnpm recursive run test"
},
"devDependencies": {
"@latticexyz/cli": "2.0.0-alpha.1.169+9e98a81c",
"@typescript-eslint/eslint-plugin": "5.46.1",
"@typescript-eslint/parser": "5.46.1",
"concurrently": "^8.0.1",
"eslint": "8.29.0",
"rimraf": "^3.0.2",
"typescript": "^4.9.5"
},
"engines": {
"node": "18.x",
"pnpm": "8.x"
}
}