-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.85 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
{
"name": "@nevermined-io/subgraphs",
"version": "0.6.0",
"description": "Nevermined subgraphs",
"scripts": {
"test": "mocha tests/",
"lint": "eslint src/**/*.ts tests/**/*.ts",
"graph:init": "./scripts/init.sh",
"graph:create-local": "./scripts/create-local.sh",
"graph:deploy-local": "./scripts/deploy-local.sh",
"graph:update-network": "./scripts/update-network.sh",
"graph:create-hosted": "./scripts/create-hosted.sh",
"graph:deploy-hosted": "./scripts/deploy-hosted.sh",
"graph:deploy-studio": "./scripts/deploy-studio.sh",
"artifacts:download": "./scripts/download-artifacts.sh"
},
"license": "Apache-2.0",
"author": "Nevermined <root@nevermined.io>",
"repository": {
"type": "git",
"url": "git+https://github.com/nevermined-io/subgraph.git"
},
"homepage": "https://github.com/nevermined-io/subgraph#readme",
"dependencies": {
},
"devDependencies": {
"@apollo/client": "^3.4.16",
"@graphprotocol/graph-cli": "^0.78.0",
"@nevermined-io/sdk": "1.5.4",
"@types/chai": "^4.2.22",
"@types/glob": "^7.2.0",
"@types/js-yaml": "^4.0.4",
"@types/mocha": "^9.0.0",
"@types/prettier": "^2.4.1",
"@typescript-eslint/eslint-plugin": "^5.1.0",
"@typescript-eslint/parser": "^5.1.0",
"chai": "^4.3.4",
"cross-fetch": "^3.1.5",
"eslint": "^8.0.1",
"graphql": "^15.6.1",
"husky": "^7.0.2",
"jose": "^4.8.1",
"matchstick-as": "^0.4.4",
"mocha": "^9.1.3",
"prettier": "^2.4.1",
"subscriptions-transport-ws": "^0.9.19",
"ts-node": "^10.3.0",
"typescript": "^4.4.4",
"web3": "^1.8.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"post-commit": "git update-index --again"
}
},
"lint-staged": {
"*.ts": [
"eslint --fix",
"git add"
]
},
"files": [
"build/*.js",
"build/*.ts"
]
}