-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 1011 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
31
32
{
"name": "darchive",
"version": "0.0.1",
"description": "create-web3 monorepo quickstart with next and hardhat",
"main": "index.js",
"private": true,
"scripts": {
"dev": "yarn workspace frontend dev",
"build": "yarn workspace frontend build",
"export": "yarn workspace frontend export",
"start": "yarn workspace frontend start",
"lint": "yarn workspace frontend lint",
"chain": "yarn workspace backend chain",
"compile": "yarn workspace backend compile",
"test": "yarn workspace backend test",
"clean": "yarn workspace backend clean",
"deploy": "yarn workspace backend deploy",
"heroku:deploy-frontend": "git subtree push --prefix packages/frontend heroku main",
"heroku:deploy-api": "git subtree push --prefix packages/api heroku main"
},
"workspaces": {
"packages": [
"packages/*"
],
"nohoist": [
"**/@graphprotocol/graph-ts",
"**/@graphprotocol/graph-ts/**",
"**/backend",
"**/backend/**"
]
}
}