-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.89 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": "zuse",
"version": "0.0.1",
"description": "Digital physics framework for building virtual worlds",
"private": true,
"workspaces": {
"packages": [
"packages/*"
]
},
"scripts": {
"mud": "node node_modules/@latticexyz/cli/dist/mud.js",
"build": "yarn run clean && yarn workspaces foreach -A run build",
"clean": "concurrently \"yarn workspace @tenetxyz/registry run clean\" \"yarn workspace @tenetxyz/base-simulator run clean\" \"yarn workspace @tenetxyz/base-world run clean\"",
"dev": "yarn run clean && yarn run dev-no-clean",
"registry": "concurrently -n registry -c red \"yarn workspace @tenetxyz/registry run build && yarn workspace @tenetxyz/registry run deploy\"",
"base:sim": "concurrently -n base-simulator -c magenta \"yarn workspace @tenetxyz/base-simulator run initialize\"",
"base:world": "concurrently -n base-world -c cyan \"yarn workspace @tenetxyz/base-world run initialize\"",
"dev-no-clean": "concurrently -n framework -c white \"yarn run registry && yarn run base:sim && yarn run base:world\"",
"foundry:up": "curl -L https://foundry.paradigm.xyz | bash && bash $HOME/.foundry/bin/foundryup",
"initialize": "yarn workspaces run initialize",
"mud:up": "yarn workspaces foreach -t run yarn mud set-version -v canary && yarn install",
"prepare": "(forge --version || yarn foundry:up)",
"test": "yarn workspaces run test",
"reinstall-deps": "sh scripts/reinstallDependencies.sh",
"rollback-to-snapshot": "sh scripts/rollback/rollbackToSnapshot.sh"
},
"devDependencies": {
"@latticexyz/cli": "link:../mud/packages/cli",
"@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",
"yarn": ">=3.6.0"
},
"packageManager": "[email protected]"
}