-
Notifications
You must be signed in to change notification settings - Fork 348
/
Copy pathpackage.json
54 lines (54 loc) · 1.56 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "@subql/node",
"version": "5.6.0",
"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": "TZ=utc 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\" --release-prefix=\"node/\""
},
"homepage": "https://github.com/subquery/subql",
"repository": "github:subquery/subql",
"bin": {
"subql-node": "./bin/run"
},
"dependencies": {
"@nestjs/common": "^9.4.0",
"@nestjs/core": "^9.4.0",
"@nestjs/event-emitter": "^2.0.0",
"@nestjs/platform-express": "^9.4.0",
"@nestjs/schedule": "^3.0.1",
"@polkadot/api": "^14.3.1",
"@subql/common": "workspace:*",
"@subql/common-substrate": "workspace:*",
"@subql/node-core": "workspace:*",
"@subql/types": "workspace:*",
"@subql/utils": "workspace:*",
"fetch-h2": "3.0.2",
"lodash": "^4.17.21",
"reflect-metadata": "^0.1.14"
},
"peerDependencies": {
"@apollo/client": "^3.7.16"
},
"devDependencies": {
"@nestjs/schematics": "^9.2.0",
"@nestjs/testing": "^9.4.0",
"@types/express": "^4.17.21",
"@types/jest": "^27.5.2",
"@types/lodash": "^4.17.7",
"dotenv": "^16.4.5",
"nodemon": "^3.1.4",
"rimraf": "^5.0.10"
},
"files": [
"/dist",
"/bin"
]
}