-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 992 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 992 Bytes
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
{
"name": "pulsar-subgraph",
"version": "1.0.0",
"repository": "https://github.com/PulsarSwap/Pulsar-Subgraph",
"license": "GPL-3.0-or-later",
"scripts": {
"codegen": "graph codegen",
"build": "graph build",
"deploy": "graph deploy --node https://api.studio.thegraph.com/deploy/ pulsar-protocol",
"create-local": "graph create --node http://localhost:8020/ pulsar-protocol",
"remove-local": "graph remove --node http://localhost:8020/ pulsar-protocol",
"deploy-local": "graph deploy --node http://localhost:8020/ --ipfs http://localhost:5001 pulsar-protocol",
"test": "graph test"
},
"dependencies": {
"@graphprotocol/graph-cli": "0.50.1",
"@graphprotocol/graph-ts": "0.30.0"
},
"devDependencies": {
"@types/node": "^20.2.5",
"@typescript-eslint/eslint-plugin": "^5.59.8",
"@typescript-eslint/parser": "^5.59.8",
"eslint": "^8.41.0",
"matchstick-as": "0.5.0",
"prettier": "2.8.8",
"typescript": "^5.0.4"
}
}