-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 1.01 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
{
"name": "sourcescan-subql",
"version": "0.0.1",
"description": "NEAR indexer for DeployContract actions",
"main": "dist/index.js",
"scripts": {
"build": "subql codegen && subql build",
"codegen": "subql codegen",
"start:docker": "docker compose pull && docker compose up --remove-orphans",
"dev": "subql codegen && subql build && docker compose pull && docker compose up --remove-orphans",
"prepack": "rm -rf dist && npm run build",
"test": "jest",
"build:develop": "NODE_ENV=develop subql codegen && NODE_ENV=develop subql build"
},
"homepage": "https://github.com/SourceScan/sourcescan-subql",
"repository": "github:subquery/near-subql-starter",
"files": [
"dist",
"schema.graphql",
"project.yaml"
],
"author": "canvinus",
"license": "MIT",
"dependencies": {
"@subql/common": "latest",
"@subql/types-near": "latest",
"assert": "^2.0.0"
},
"devDependencies": {
"@subql/cli": "latest",
"typescript": "^5.2.2",
"dotenv": "latest"
}
}