-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
31 lines (31 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
29
30
31
{
"name": "graph-funder",
"version": "0.0.1",
"description": "create-web3 monorepo quickstart with next and hardhat",
"main": "index.js",
"private": true,
"scripts": {
"dev": "yarn workspace @create-web3/frontend dev",
"build": "yarn workspace @create-web3/frontend build",
"start": "yarn workspace @create-web3/frontend start",
"lint": "yarn workspace @create-web3/frontend lint",
"chain": "yarn workspace @create-web3/backend chain",
"compile": "yarn workspace @create-web3/backend compile",
"test": "yarn workspace @create-web3/backend test",
"clean": "yarn workspace @create-web3/backend clean",
"deploy": "yarn workspace @create-web3/backend deploy",
"claimTestnetAlfajores": "yarn workspace @create-web3/backend claimTestnetAlfajores",
"verify": "yarn workspace @create-web3/backend verify"
},
"workspaces": {
"packages": [
"packages/*"
],
"nohoist": [
"**/@graphprotocol/graph-ts",
"**/@graphprotocol/graph-ts/**",
"**/backend",
"**/backend/**"
]
}
}