forked from neu-fi/regen-bingo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
30 lines (30 loc) · 981 Bytes
/
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
{
"name": "zugift",
"version": "0.0.1",
"description": "ENSBound Zugift NFTs for funding Zuzalu through creating an endorsement network",
"main": "index.js",
"private": true,
"scripts": {
"dev": "yarn workspace @zugift/frontend dev",
"build": "yarn workspace @zugift/frontend build",
"start": "yarn workspace @zugift/frontend start",
"lint": "yarn workspace @zugift/frontend lint",
"chain": "yarn workspace @zugift/backend chain",
"compile": "yarn workspace @zugift/backend compile",
"test": "yarn workspace @zugift/backend test",
"clean": "yarn workspace @zugift/backend clean",
"deploy": "yarn workspace @zugift/backend deploy",
"random": "yarn workspace @zugift/backend hardhat run scripts/provide_randomness.ts"
},
"workspaces": {
"packages": [
"packages/*"
],
"nohoist": [
"**/@graphprotocol/graph-ts",
"**/@graphprotocol/graph-ts/**",
"**/backend",
"**/backend/**"
]
}
}