-
Notifications
You must be signed in to change notification settings - Fork 45
/
Copy pathpackage.json
44 lines (44 loc) · 2.04 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
{
"name": "@aragon/osx-subgraph",
"version": "1.4.1",
"description": "The Aragon OSx Subgraph",
"homepage": "https://github.com/aragon/osx",
"license": "AGPL-3.0-or-later",
"scripts": {
"lint": "eslint . --ext .ts",
"build:contracts": "cd ../contracts && yarn build",
"manifest": "scripts/build-manifest.sh",
"updateLocalManifest": "yarn node scripts/updateLocalManifest.js",
"extend:schema": "yarn ts-node tests/schema-extender.ts",
"build": "scripts/build-subgraph.sh && yarn extend:schema",
"deploy": "scripts/deploy-subgraph.sh",
"create:local": "graph create aragon/aragon-core-goerli --node http://localhost:8020",
"deploy:local": "LOCAL=true scripts/deploy-subgraph.sh",
"generate:introspection": "scripts/tests/generate-introspection-json.sh",
"generate:introspection:partial": "scripts/docs/generate-introspection-partial-json.sh",
"docs:examples": "node ./scripts/docs/generate-markdown.js ./src/examples && rsync -avr --prune-empty-dirs --remove-source-files --include='*/' --include='*.md' --exclude='*' ./src/examples/ ./docs/developer-portal/ --delete;",
"start:dev": "docker-compose -f docker/docker-compose.yml up -d && sleep 30 && yarn create:local && yarn deploy:local",
"stop:dev": "docker-compose -f docker/docker-compose.yml down",
"buildAndStart:dev": "docker-compose -f docker/docker-compose.yml up -d --build hardhat && sleep 30 && yarn create:local && yarn deploy:local",
"test:fast": "graph test",
"test": "graph test -r",
"coverage": "graph test -c"
},
"devDependencies": {
"@graphprotocol/graph-cli": "0.52.0",
"@graphprotocol/graph-ts": "^0.27.0",
"@typescript-eslint/eslint-plugin": "^5.18.0",
"@typescript-eslint/parser": "^5.18.0",
"eslint": "^8.12.0",
"matchstick-as": "^0.5.2",
"mustache": "^4.2.0",
"ts-morph": "^17.0.1",
"typescript": "^4.9.5",
"graphql": "^16.8.1",
"@graphql-codegen/cli": "^5.0.2",
"@graphql-codegen/introspection": "^4.0.3"
},
"dependencies": {
"@aragon/osx-commons-subgraph": "^0.0.4"
}
}