-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·47 lines (47 loc) · 1.49 KB
/
package.json
File metadata and controls
executable file
·47 lines (47 loc) · 1.49 KB
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
35
36
37
38
39
40
41
42
43
44
45
46
47
{
"name": "subql-stellar-combined",
"version": "0.0.1",
"description": "test",
"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": "subql build && subql-node-stellar test",
"build:develop": "NODE_ENV=develop subql codegen && NODE_ENV=develop subql build",
"reset": "docker compose down -v && sudo rm -rf .data && sudo rm -rf dist",
"prestart": "ts-node scripts/index.ts",
"subql-publish": "subql publish"
},
"homepage": "https://github.com/subquery/stellar-subql-starter",
"repository": "github:subquery/stellar-subql-starter",
"files": [
"dist",
"schema.graphql",
"project.yaml"
],
"author": "PrincesoDan",
"license": "MIT",
"dependencies": {
"@stellar/stellar-sdk": "14.0.0",
"@subql/common": "5.7.4",
"@subql/common-stellar": "4.5.0",
"@subql/types-core": "2.1.1",
"@subql/types-stellar": "5.1.0",
"base32.js": "^0.1.0",
"p-limit": "^6.2.0",
"soroban-toolkit": "0.2.0",
"text-encoding": "^0.7.0"
},
"devDependencies": {
"@subql/cli": "6.2.1",
"@subql/testing": "2.3.0",
"@types/node": "^22.13.1",
"dotenv": "latest",
"js-yaml": "^4.1.0",
"ts-node": "^10.9.2",
"typescript": "^5.7.3"
}
}