-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 1004 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 1004 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
29
30
31
{
"name": "test",
"version": "0.0.4",
"description": "This project can be used as a starting point for developing your SubQuery project. It indexes all transfers on Paseo network",
"main": "dist/index.js",
"scripts": {
"build": "subql codegen && subql build",
"codegen": "subql codegen",
"start:docker": "docker compose pull && docker compose up --remove-orphans",
"dev": "npm run build && docker compose pull && docker compose up --remove-orphans",
"prepack": "rm -rf dist && npm run build",
"test": "subql build && subql-node test"
},
"homepage": "https://github.com/subquery/paseo-subql-starter",
"repository": "github:subquery/paseo-subql-starter",
"files": [
"dist",
"schema.graphql",
"project.yaml"
],
"author": "bader",
"license": "MIT",
"devDependencies": {
"@subql/cli": "latest",
"@subql/node": "latest",
"@subql/testing": "latest",
"@subql/types": "latest",
"dotenv": "latest",
"typescript": "latest"
}
}