forked from chiangmaidapps/dapp-starter-kit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 2.05 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
32
33
34
35
36
37
38
39
40
41
{
"name": "@dapp-starter-kit/monorepo",
"version": "0.0.0",
"description": "A simple starter kit for creating decentralized applications",
"repository": "https://github.com/chiangmaidapp/dapp-starter-kit",
"author": "Chris Piatt (@chpiatt)",
"license": "Unlicense",
"private": true,
"scripts": {
"chain": "yarn workspace @dapp-starter-kit/smart-contracts chain",
"compile": "yarn workspace @dapp-starter-kit/smart-contracts compile",
"deploy": "yarn workspace @dapp-starter-kit/smart-contracts deploy",
"deploy:reset": "yarn workspace @dapp-starter-kit/smart-contracts deploy:reset",
"deploy:tag": "yarn workspace @dapp-starter-kit/smart-contracts deploy:tag",
"deploy:tag:reset": "yarn workspace @dapp-starter-kit/smart-contracts deploy:tag:reset",
"sync": "yarn workspace @dapp-starter-kit/smart-contracts sync",
"test": "yarn workspace @dapp-starter-kit/smart-contracts test",
"test:spec": "yarn workspace @dapp-starter-kit/smart-contracts test:spec",
"test:gas": "yarn workspace @dapp-starter-kit/smart-contracts test:gas",
"logs": "yarn workspace @dapp-starter-kit/smart-contracts logs",
"script": "yarn workspace @dapp-starter-kit/smart-contracts script",
"verify": "yarn workspace @dapp-starter-kit/smart-contracts verify",
"serve": "yarn workspace @dapp-starter-kit/frontend serve",
"build": "yarn workspace @dapp-starter-kit/frontend build",
"graph:create": "yarn workspace @dapp-starter-kit/subgraph graph:create",
"graph:codegen": "yarn workspace @dapp-starter-kit/subgraph graph:codegen",
"graph:build": "yarn workspace @dapp-starter-kit/subgraph graph:build",
"graph:prepare": "yarn workspace @dapp-starter-kit/subgraph graph:prepare",
"graph:deploy": "yarn workspace @dapp-starter-kit/subgraph graph:deploy",
"reset": "yarn deploy:reset && yarn sync && yarn graph:prepare && yarn graph:codegen && yarn graph:deploy"
},
"workspaces": {
"packages": [
"packages/*"
],
"nohoist": [
"**/@graphprotocol/graph-ts",
"**/@graphprotocol/graph-ts/**"
]
}
}