This repository has been archived by the owner on Jul 6, 2022. It is now read-only.
forked from subquery/subql
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
67 lines (67 loc) · 1.75 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
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "@subql/node",
"version": "0.19.1",
"description": "",
"author": "Ian He",
"license": "Apache-2.0",
"scripts": {
"prebuild": "rimraf dist",
"build": "rm -rf dist && tsc -b",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"start": "nest start",
"start:dev": "nodemon",
"start:prod": "node dist/main"
},
"homepage": "https://github.com/subquery/subql",
"repository": "github:subquery/subql",
"bin": {
"subql-node": "./bin/run"
},
"dependencies": {
"@nestjs/common": "^7.6.9",
"@nestjs/core": "^7.6.1",
"@nestjs/event-emitter": "^0.0.2",
"@nestjs/platform-express": "^7.6.1",
"@nestjs/schedule": "^0.4.2",
"@polkadot/api": "^5.2.1",
"@subql/common": "workspace:*",
"@subql/types": "workspace:*",
"@subql/x-vm2": "latest",
"@willsoto/nestjs-prometheus": "^3.0.0",
"app-module-path": "^2.2.0",
"dayjs": "^1.10.5",
"lodash": "^4.17.21",
"parse-json": "^5.2.0",
"pg": "^8.6.0",
"pino": "^6.11.3",
"prom-client": "^13.1.0",
"reflect-metadata": "^0.1.13",
"rimraf": "^3.0.2",
"rxjs": "^6.6.3",
"sequelize": "^6.6.2",
"tar": "^6.1.0",
"typescript": "^4.1.3",
"yargs": "^16.2.0"
},
"devDependencies": {
"@nestjs/cli": "^7.5.4",
"@nestjs/schematics": "^7.2.7",
"@nestjs/testing": "^7.6.9",
"@types/app-module-path": "^2.2.0",
"@types/express": "^4.17.12",
"@types/jest": "^26.0.23",
"@types/lodash": "^4.14.170",
"@types/pino": "^6.3.8",
"@types/sequelize": "^4.28.9",
"@types/supertest": "^2.0.10",
"@types/tar": "^4.0.4",
"@types/yargs": "^16.0.4",
"dotenv": "^10.0.0",
"nodemon": "^2.0.7",
"supertest": "^6.1.3"
},
"files": [
"/dist",
"/bin"
]
}