generated from Mautjee/scaffold-eth-2
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
53 lines (53 loc) · 2.52 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
{
"name": "se-2",
"version": "0.0.1",
"private": true,
"workspaces": {
"packages": [
"packages/hardhat",
"packages/nextjs",
"packages/match_mocker",
"packages/services",
"packages/subgraph"
]
},
"scripts": {
"account": "yarn workspace @se-2/hardhat account",
"chain": "yarn workspace @se-2/hardhat chain",
"fork": "yarn workspace @se-2/hardhat fork",
"deploy": "yarn workspace @se-2/match_mocker export-solidity && yarn workspace @se-2/hardhat deploy && yarn workspace @se-2/hardhat postdeploy",
"verify": "yarn workspace @se-2/hardhat verify",
"compile": "yarn workspace @se-2/hardhat compile",
"generate": "yarn workspace @se-2/hardhat generate",
"hardhat:lint": "yarn workspace @se-2/hardhat lint",
"hardhat:lint-staged": "yarn workspace @se-2/hardhat lint-staged",
"hardhat:test": "yarn workspace @se-2/hardhat test",
"start": "yarn workspace @se-2/nextjs dev",
"next:lint": "yarn workspace @se-2/nextjs lint",
"next:format": "yarn workspace @se-2/nextjs format",
"next:check-types": "yarn workspace @se-2/nextjs check-types",
"match_mocker:start": "yarn workspace @se-2/match_mocker start",
"postinstall": "husky install",
"precommit": "lint-staged",
"vercel": "yarn workspace @se-2/nextjs vercel",
"vercel:yolo": "yarn workspace @se-2/nextjs vercel:yolo",
"run-graph-node": "yarn workspace @se-2/services run-graph-node",
"remove-graph-node": "yarn workspace @se-2/services remove-graph-node",
"clean-graph-node": "yarn workspace @se-2/services clean-graph-node",
"graph-codegen": "yarn workspace @se-2/subgraph graph codegen",
"graph-build": "yarn workspace @se-2/subgraph graph build",
"graph-create-local": "yarn workspace @se-2/subgraph graph create --node http://localhost:8020/ scaffold-eth/score-sage",
"graph-remove-local": "yarn workspace @se-2/subgraph graph remove --node http://localhost:8020/ scaffold-eth/score-sage",
"graph-ship-local": "yarn graph-codegen && yarn graph-build --network localhost && yarn graph-deploy-local",
"graph-deploy-local": "yarn workspace @se-2/subgraph graph deploy --node http://127.0.0.1:8020/ --ipfs http://localhost:5001 scaffold-eth/score-sage",
"deploy-and-graph": "yarn deploy && yarn graph-ship-local"
},
"packageManager": "[email protected]",
"devDependencies": {
"husky": "^8.0.1",
"lint-staged": "^13.0.3"
},
"resolutions": {
"usehooks-ts@^2.7.2": "patch:usehooks-ts@npm:^2.7.2#./.yarn/patches/usehooks-ts-npm-2.7.2-fceffe0e43.patch"
}
}