-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
21 lines (21 loc) · 756 Bytes
/
package.json
File metadata and controls
21 lines (21 loc) · 756 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
"private": true,
"name": "v-2sandbox",
"workspaces": [
"packages/contracts",
"packages/client"
],
"scripts": {
"initialize": "yarn workspaces run initialize",
"dev": "run-pty % yarn dev:node % yarn dev:client % yarn dev:contracts",
"dev:client": "yarn workspace client run dev",
"dev:node": "yarn workspace contracts run devnode",
"dev:contracts": "yarn workspace contracts run dev",
"link:mud": "for i in node_modules/@latticexyz/*; do yarn link @latticexyz/$(basename $i); done",
"unlink:mud": "for i in node_modules/@latticexyz/*; do yarn unlink @latticexyz/$(basename $i); done && yarn install --force"
},
"devDependencies": {
"run-pty": "^4.0.3"
},
"dependencies": {}
}