forked from jamesbayly/algorand-planet-watch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 939 Bytes
/
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
{
"name": "algorand-planet-watch",
"version": "1.0.0",
"description": "This project is a quick start guide for developing your Algorand SubQuery project, it indexes Algorand PlanetWatch token transfers",
"main": "dist/index.js",
"scripts": {
"build": "subql build",
"prepack": "rm -rf dist && npm run build",
"test": "jest",
"codegen": "./node_modules/.bin/subql codegen",
"start:docker": "docker-compose pull && docker-compose up"
},
"homepage": "https://github.com/jamesbayly/algorand-planet-watch",
"repository": "github:jamesbayly/algorand-planet-watch",
"files": [
"dist",
"schema.graphql",
"project.yaml"
],
"author": "SubQuery Team",
"license": "MIT",
"devDependencies": {
"@subql/cli": "latest",
"typescript": "^4.1.3"
},
"resolutions": {
"ipfs-unixfs": "6.0.6"
},
"dependencies": {
"@subql/types-algorand": "latest",
"algosdk": "^1.19.0"
}
}