-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
23 lines (23 loc) · 932 Bytes
/
package.json
File metadata and controls
23 lines (23 loc) · 932 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"name": "osmosis-token-swaps",
"version": "0.1.0",
"repository": "https://github.com/graphprotocol/example-subgraph",
"license": "MIT",
"scripts": {
"codegen": "graph codegen",
"build": "graph build",
"create-local": "graph create osmosis-token-swaps --node http://0.0.0.0:8020",
"deploy-local": "graph deploy osmosis-token-swaps -l v0.1.0 --ipfs http://0.0.0.0:5001 --node http://0.0.0.0:8020",
"remove-local": "graph remove osmosis-token-swaps --node http://0.0.0.0:8020",
"create": "graph create osmosis-token-swaps --node https://api.thegraph.com/deploy/",
"deploy": "graph deploy osmosis-token-swaps --ipfs https://api.thegraph.com/ipfs/ --node https://api.thegraph.com/deploy/"
},
"devDependencies": {
"@graphprotocol/graph-cli": "^0.30.0",
"@graphprotocol/graph-ts": "^0.27.0"
},
"dependencies": {
"babel-polyfill": "^6.26.0",
"babel-register": "^6.26.0"
}
}