-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 716 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 716 Bytes
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": "summon-raid-app",
"version": "0.0.1",
"description": "quickly spin up a RG themed web3 dev env",
"main": "index.js",
"author": "bitbeckers <code@bitbeckers.com>",
"license": "MIT",
"private": true,
"workspaces": {
"packages": [
"app",
"evm",
"graph"
],
"nohoist": [
"**/matchstick-as",
"**/@graphprotocol/**"
]
},
"scripts": {
"prestart": "yarn workspace evm typechain && yarn workspace evm test",
"start:graph": "yarn workspace graph deploy:local",
"start:evm": "yarn workspace evm local",
"start:app": "yarn workspace app dev",
"start": " yarn start:evm & yarn start:app",
"test": "yarn workspace evm test"
}
}