generated from ghostffcode/ama
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 2.71 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
{
"name": "root",
"version": "0.0.1",
"keywords": [
"ethereum",
"react",
"workspaces",
"yarn"
],
"private": true,
"scripts": {
"app:build": "pnpm --filter app run build",
"app:start": "pnpm --filter app run start",
"app:dev": "pnpm --filter app run dev",
"app:test": "pnpm --filter app run test",
"app:lint": "pnpm --filter app run lint",
"build": "pnpm --filter app run build",
"chain": "pnpm --filter hardhat run chain",
"dashboard": "pnpm --filter hardhat run dashboard",
"fork": "pnpm --filter hardhat run fork",
"node": "pnpm --filter hardhat run chain",
"test": "pnpm --filter hardhat run test",
"start": "pnpm --filter app run start",
"dev": "pnpm --filter app run dev",
"compile": "pnpm --filter hardhat run compile",
"deploy": "pnpm --filter hardhat run deploy",
"verify": "pnpm --filter hardhat run verify",
"watch": "pnpm --filter hardhat run watch",
"accounts": "pnpm --filter hardhat run accounts",
"balance": "pnpm --filter hardhat run balance",
"send": "pnpm --filter hardhat run send",
"ship": "pnpm --filter app run ship",
"surge": "pnpm --filter app run surge",
"s3": "pnpm --filter app run s3",
"generate": "pnpm --filter hardhat run generate",
"account": "pnpm --filter hardhat run account",
"mineContractAddress": "cd packages/hardhat && npx hardhat mineContractAddress",
"wallet": "cd packages/hardhat && npx hardhat wallet",
"fundedwallet": "cd packages/hardhat && npx hardhat fundedwallet",
"flatten": "cd packages/hardhat && npx hardhat flatten",
"clean": "cd packages/hardhat && npx hardhat clean",
"run-graph-node": "pnpm --filter services run run-graph-node",
"remove-graph-node": "pnpm --filter services run remove-graph-node",
"clean-graph-node": "pnpm --filter services run clean-graph-node",
"graph-prepare": "mustache packages/subgraph/config/config.json packages/subgraph/src/subgraph.template.yaml > packages/subgraph/subgraph.yaml",
"graph-codegen": "pnpm --filter subgraph run graph codegen",
"graph-build": "pnpm --filter subgraph run graph build",
"graph-create-local": "pnpm --filter subgraph run graph create --node http://localhost:8020/ ama/eth-kit",
"graph-remove-local": "pnpm --filter subgraph run graph remove --node http://localhost:8020/ ama/eth-kit",
"graph-deploy-local": "pnpm --filter subgraph run graph deploy --node http://localhost:8020/ --ipfs http://localhost:5001 ama/eth-kit",
"graph-ship-local": "yarn graph-prepare && yarn graph-codegen && yarn graph-deploy-local",
"deploy-and-graph": "yarn deploy && yarn graph-ship-local",
"theme": "pnpm --filter app run theme",
"watch-theme": "pnpm --filter app run watch"
}
}