-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.15 KB
/
Copy pathpackage.json
File metadata and controls
77 lines (77 loc) · 2.15 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "@subql/node-solana",
"version": "6.3.1",
"description": "",
"author": "Ian He",
"license": "GPL-3.0",
"scripts": {
"prebuild": "rimraf dist",
"build": "rm -rf dist && tsc -b",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"start": "nest start",
"start:dev": "TZ=utc nodemon",
"start:prod": "TZ=utc node dist/main",
"changelog:release": "echo \"Updating changelog $npm_package_version\" && npx chan release $npm_package_version --git-url \"https://github.com/subquery/subql-solana\" --release-prefix=\"node-solana/\""
},
"homepage": "https://github.com/subquery/subql-solana",
"repository": "github:subquery/subql-solana",
"bin": {
"subql-node-solana": "./bin/run"
},
"dependencies": {
"@codama/dynamic-codecs": "^1.1.20",
"@nestjs/common": "^11.0.16",
"@nestjs/core": "^11.0.8",
"@nestjs/event-emitter": "^3.0.0",
"@nestjs/platform-express": "^11.0.8",
"@nestjs/schedule": "^5.0.1",
"@solana/errors": "^3.0.2",
"@solana/kit": "^3.0.2",
"@subql/common-solana": "workspace:*",
"@subql/node-core": "^18.3.3",
"@subql/testing": "^2.2.1",
"@subql/types-solana": "workspace:*",
"bs58": "^6.0.0",
"cacheable-lookup": "6",
"codama": "^1.3.4",
"eventemitter2": "^6.4.5",
"json5": "^2.2.3",
"lodash": "^4.17.21",
"reflect-metadata": "^0.1.13",
"rimraf": "^3.0.2",
"yargs": "^16.2.0"
},
"peerDependencies": {
"@subql/utils": "*"
},
"devDependencies": {
"@nestjs/schematics": "^11.0.0",
"@nestjs/testing": "^11.0.8",
"@types/bs58": "^5.0.0",
"@types/express": "^4.17.13",
"@types/jest": "^27.4.0",
"@types/lodash": "^4.14.178",
"@types/pino": "^6.3.12",
"@types/tar": "^6.1.1",
"@types/yargs": "^16.0.4",
"dotenv": "^15.0.1",
"nodemon": "^2.0.15"
},
"resolutions": {
"node-fetch": "2.6.7"
},
"files": [
"/bin",
"/dist",
"!/dist/**/*.spec.js",
"!/dist/**/*.spec.d.ts",
"!/dist/**/*.spec.js.map",
"!/dist/**/*.test.js",
"!/dist/**/*.test.d.ts",
"!/dist/**/*.test.js.map",
"package.json",
"README.md",
"CHANGELOG.md",
"LICENSE"
]
}