-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
48 lines (48 loc) · 1.79 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
{
"name": "@iexec/subgraph",
"version": "1.1.0",
"author": "iExec",
"license": "Apache-2.0",
"scripts": {
"prepare": "husky",
"codegen": "graph codegen subgraph.template.yaml",
"test": "npm run codegen && graph test",
"coverage": "npm run codegen && graph test -- -c",
"test-docker": "npm run codegen && docker run -it --rm -v $(pwd):/matchstick/subgraph rainprotocol/matchstick:main",
"build": "npm run codegen && cp subgraph.template.yaml subgraph.yaml && graph build --network ${NETWORK_NAME:-bellecour}",
"create": "graph create ${NETWORK_NAME:-bellecour}/poco --node ${GRAPHNODE_URL:-http://localhost:8020}",
"deploy": "graph deploy ${NETWORK_NAME:-bellecour}/poco --node ${GRAPHNODE_URL:-http://localhost:8020} --ipfs ${IPFS_URL:-http://localhost:5001} --version-label ${VERSION_LABEL:-bellecour/poco-v5}",
"deploy:all": "npm run build && npm run create && npm run deploy",
"itest": "DEBUG=testcontainers:* mocha"
},
"lint-staged": {
"*.{js,ts}": [
"prettier --write"
]
},
"homepage": "https://github.com/iExecBlockchainComputing/PoCo-subgraph.git#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/iExecBlockchainComputing/PoCo-subgraph.git"
},
"bugs": {
"url": "https://github.com/iExecBlockchainComputing/PoCo-subgraph.git/issues"
},
"devDependencies": {
"@apollo/client": "^3.11.8",
"@graphprotocol/graph-cli": "^0.86.0",
"@graphprotocol/graph-ts": "^0.35.1",
"@types/mocha": "^10.0.9",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"matchstick-as": "^0.6.0",
"mocha": "^10.7.3",
"prettier": "^3.3.3",
"prettier-plugin-organize-imports": "^4.1.0",
"testcontainers": "^10.13.2"
},
"dependencies": {
"@iexec/poco": "^5.5.0",
"@iexec/solidity": "^0.1.1"
}
}