forked from opynfinance/squeeth-monorepo
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
76 lines (76 loc) · 3.53 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": "@squeeth/monorepo",
"version": "1.0.0",
"keywords": [
"ethereum",
"react",
"uniswap",
"workspaces",
"yarn"
],
"private": true,
"scripts": {
"frontend:build": "NODE_OPTIONS=--max-old-space-size=12288 yarn workspace @squeeth/frontend build",
"frontend:eject": "yarn workspace @squeeth/frontend eject",
"frontend:start": "yarn workspace @squeeth/frontend dev",
"frontend:test": "yarn workspace @squeeth/frontend test",
"build": "NODE_OPTIONS=--max-old-space-size=12288 yarn workspace @squeeth/frontend build ",
"chain": "yarn workspace @squeeth/hardhat chain",
"node": "yarn workspace @squeeth/hardhat chain",
"test": "yarn workspace @squeeth/hardhat test",
"start": "yarn workspace @squeeth/frontend start",
"compile": "yarn workspace @squeeth/hardhat compile",
"deploy": "yarn workspace @squeeth/hardhat deploy",
"watch": "yarn workspace @squeeth/hardhat watch",
"accounts": "yarn workspace @squeeth/hardhat accounts",
"balance": "yarn workspace @squeeth/hardhat balance",
"send": "yarn workspace @squeeth/hardhat send",
"ipfs": "yarn workspace @squeeth/frontend ipfs",
"surge": "yarn workspace @squeeth/frontend surge",
"s3": "yarn workspace @squeeth/frontend s3",
"ship": "yarn workspace @squeeth/frontend ship",
"generate": "yarn workspace @squeeth/hardhat generate",
"account": "yarn workspace @squeeth/hardhat 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": "yarn workspace @squeeth/services run-graph-node",
"remove-graph-node": "yarn workspace @squeeth/services remove-graph-node",
"clean-graph-node": "yarn workspace @squeeth/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 @squeeth/subgraph graph codegen",
"graph-build": "yarn workspace @squeeth/subgraph graph build",
"graph-create-local": "yarn workspace @squeeth/subgraph graph create --node http://localhost:8020/ scaffold-eth/your-contract",
"graph-remove-local": "yarn workspace @squeeth/subgraph graph remove --node http://localhost:8020/ scaffold-eth/your-contract",
"graph-deploy-local": "yarn workspace @squeeth/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",
"theme": "yarn workspace @squeeth/frontend theme",
"watch-theme": "yarn workspace @squeeth/frontend watch",
"lint-contracts": "yarn workspace @squeeth/hardhat lint",
"pre-push": "cd packages/bull-vault && forge fmt && git commit -a -m 'auto foundry lint commit'"
},
"workspaces": {
"packages": [
"packages/*"
],
"nohoist": [
"**/@graphprotocol/graph-ts",
"**/@graphprotocol/graph-ts/**",
"**/hardhat",
"**/hardhat/**",
"**/ip-range-check",
"**/ip-range-check/**"
]
},
"dependencies": {},
"resolutions": {
"[email protected]/concat-stream": "2.0.0"
},
"devDependencies": {
"husky": "^7.0.1",
"lint-staged": "^11.1.2"
}
}