-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
31 lines (31 loc) · 1.46 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
{
"private": true,
"name": "mstable-subgraphs-monorepo",
"workspaces": [
"packages/*"
],
"devDependencies": {
"lerna": "^3.22.1"
},
"scripts": {
"codegen": "lerna exec --parallel --scope @mstable/*-subgraph -- yarn run codegen",
"build": "lerna exec --parallel --scope @mstable/*-subgraph -- yarn run build",
"prepare:config": "lerna exec --parallel --scope @mstable/*-subgraph -- yarn run prepare:config",
"prepare:mainnet": "lerna exec --parallel --scope @mstable/*-subgraph -- yarn run prepare:mainnet",
"prepare:staging": "lerna exec --parallel --scope @mstable/*-subgraph -- yarn run prepare:staging",
"prepare:ropsten": "lerna exec --parallel --scope @mstable/protocol-subgraph -- yarn run prepare:ropsten",
"prepare:kovan": "lerna exec --parallel --scope @mstable/*-subgraph -- yarn run prepare:kovan",
"deploy:mainnet": "lerna exec --parallel --scope @mstable/*-subgraph -- yarn run deploy:mainnet",
"deploy:staging": "lerna exec --parallel --scope @mstable/*-subgraph -- yarn run deploy:staging",
"deploy:ropsten": "lerna exec --parallel --scope @mstable/protocol-subgraph -- yarn run deploy:ropsten",
"deploy:kovan": "lerna exec --parallel --scope @mstable/*-subgraph -- yarn run deploy:kovan"
},
"dependencies": {
"@graphprotocol/graph-cli": "^0.21.1",
"@graphprotocol/graph-ts": "^0.20.1",
"@mstable/protocol": "2.2.1",
"mustache": "^4.0.1",
"ts-node": "^9.0.0",
"typescript": "^4.1.2"
}
}