-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
76 lines (76 loc) · 4.03 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "@bounty-granter-eth/monorepo",
"version": "0.1.0",
"keywords": [
"scripts",
"workspaces",
"monorepo"
],
"private": true,
"workspaces": {
"packages": [
"packages/*"
],
"nohoist": [
"**/@graphprotocol/graph-ts",
"**/@graphprotocol/graph-ts/**",
"**/onchain",
"**/onchain/**",
"**/onchain-ts",
"**/onchain-ts/**"
]
},
"scripts": {
"webui:build": "yarn workspace @bounty-granter-eth/webui build --max-old-space-size=12288",
"webui:eject": "yarn workspace @bounty-granter-eth/webui eject",
"webui:start": "yarn workspace @bounty-granter-eth/webui start",
"webui:test": "yarn workspace @bounty-granter-eth/webui test",
"build": "yarn workspace @bounty-granter-eth/webui build --max-old-space-size=12288",
"prettier": "yarn workspace @bounty-granter-eth/webui prettier",
"theme": "yarn workspace @bounty-granter-eth/webui theme",
"watch-theme": "yarn workspace @bounty-granter-eth/webui watch",
"ipfs": "yarn workspace @bounty-granter-eth/webui ipfs",
"surge": "yarn workspace @bounty-granter-eth/webui surge",
"s3": "yarn workspace @bounty-granter-eth/webui s3",
"ship": "yarn workspace @bounty-granter-eth/webui ship",
"chain": "yarn workspace @bounty-granter-eth/onchain chain",
"fork": "yarn workspace @bounty-granter-eth/onchain fork",
"node": "yarn workspace @bounty-granter-eth/onchain chain",
"test": "yarn workspace @bounty-granter-eth/onchain test",
"start": "yarn workspace @bounty-granter-eth/webui start",
"compile": "yarn workspace @bounty-granter-eth/onchain compile",
"deploy": "yarn workspace @bounty-granter-eth/onchain deploy",
"watch": "yarn workspace @bounty-granter-eth/onchain watch",
"accounts": "yarn workspace @bounty-granter-eth/onchain accounts",
"verify": "yarn workspace @bounty-granter-eth/onchain verify",
"balance": "yarn workspace @bounty-granter-eth/onchain balance",
"send": "yarn workspace @bounty-granter-eth/onchain send",
"generate": "yarn workspace @bounty-granter-eth/onchain generate",
"account": "yarn workspace @bounty-granter-eth/onchain account",
"mineContractAddress": "cd packages/onchain && npx hardhat mineContractAddress",
"wallet": "cd packages/onchain && npx hardhat wallet",
"fundedwallet": "cd packages/onchain && npx hardhat fundedwallet",
"flatten": "cd packages/onchain && npx hardhat flatten",
"run-graph-node": "yarn workspace @bounty-granter-eth/services run-graph-node",
"remove-graph-node": "yarn workspace @bounty-granter-eth/services remove-graph-node",
"clean-graph-node": "yarn workspace @bounty-granter-eth/services clean-graph-node",
"graph-prepare": "mustache packages/subgraph/config/config.json packages/subgraph/src/subgraph.template.yaml > packages/subgraph/subgraph.yaml",
"graph-codegen": "yarn workspace @bounty-granter-eth/subgraph graph codegen",
"graph-build": "yarn workspace @bounty-granter-eth/subgraph graph build",
"graph-create-local": "yarn workspace @bounty-granter-eth/subgraph graph create --node http://localhost:8020/ scaffold-eth/your-contract",
"graph-remove-local": "yarn workspace @bounty-granter-eth/subgraph graph remove --node http://localhost:8020/ scaffold-eth/your-contract",
"graph-deploy-local": "yarn workspace @bounty-granter-eth/subgraph graph deploy --node http://localhost:8020/ --ipfs http://localhost:5001 scaffold-eth/your-contract",
"graph-ship-local": "yarn graph-prepare && yarn graph-codegen && yarn graph-deploy-local",
"deploy-and-graph": "yarn deploy && yarn graph-ship-local",
"mint": "yarn workspace @bounty-granter-eth/onchain mint",
"clean": "shx rm -rf ./dist ./build ./*.tsbuildinfo ./yarn-error.log*",
"reset": "yarn clean && shx rm -rf ./node_modules ./yarn.lock ./package-lock.json ./pnpm-lock.yaml",
"install:all": "pnpm -r install",
"clean:all": "yarn workspaces run clean && yarn clean",
"reset:all": "yarn workspaces run reset && yarn reset"
},
"devDependencies": {
"pnpm": "^8.1.1",
"shx": "^0.3.4"
}
}