-
Notifications
You must be signed in to change notification settings - Fork 49
/
package.json
43 lines (43 loc) · 1.72 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
{
"name": "@aragon/govern-monorepo",
"version": "1.0.0-beta.1",
"description": "Optimistic DAOs",
"private": true,
"repository": "https://github.com/aragon/govern",
"author": "Aragon Association <[email protected]>",
"contributors": [
"Jorge Izquierdo <[email protected]>",
"Enrique Ortiz <[email protected]>"
],
"license": "GPL-3.0",
"devDependencies": {
"lerna": "^3.22.1",
"husky": "^6.0.0"
},
"scripts": {
"clean": "lerna run --scope=@aragon/govern* --stream clean",
"test": "lerna run --stream --concurrency 1 test",
"test:fast": "lerna run --stream test",
"init:dev:env": "scripts/init.dev.env.sh",
"start:dev": "cd ./packages/govern-server/ && yarn start:containers",
"start:server": "yarn workspace @aragon/govern-server start:server",
"coverage": "lerna run --stream --concurrency 1 coverage",
"build:contracts": "lerna run --scope=erc3k --scope=@aragon/govern-contract-utils --scope=@aragon/govern-core --scope=@aragon/govern-create --scope=@aragon/govern-token --stream compile",
"compile:cached": "lerna run --stream compile:cached",
"build:subgraph": "lerna run --scope=@aragon/govern-subgraph --stream build",
"deploy:subgraph:rinkeby": "lerna run --scope=@aragon/govern-subgraph --stream deploy-rinkeby",
"deploy:subgraph:rinkeby:staging": "lerna run --scope=@aragon/govern-subgraph --stream deploy-rinkeby-staging",
"deploy:subgraph:mainnet": "lerna run --scope=@aragon/govern-subgraph --stream deploy-mainnet"
},
"workspaces": {
"packages": [
"packages/*"
],
"nohoist": [
"**/@graphprotocol/graph-ts",
"**/@graphprotocol/graph-ts/**",
"**/@graphprotocol/graph-cli",
"**/@graphprotocol/graph-cli/**"
]
}
}