forked from subquery/subql
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 2.15 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
68
69
70
{
"name": "@subql/query",
"version": "2.5.0",
"description": "",
"bin": {
"subql-query": "./bin/run"
},
"homepage": "https://github.com/subquery/subql",
"repository": "github:subquery/subql",
"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",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
"test": "jest",
"test:watch": "jest --watch",
"test:cov": "jest --coverage",
"test:debug": "node --inspect-brk -r tsconfig-paths/register -r ts-node/register node_modules/.bin/jest --runInBand",
"test:e2e": "jest --config ./test/jest-e2e.json"
},
"author": "ZheX",
"main": "dist/index.js",
"license": "GPL-3.0",
"files": [
"/dist",
"/bin"
],
"dependencies": {
"@graphile-contrib/pg-many-to-many": "^1.0.1",
"@graphile-contrib/pg-simplify-inflector": "^6.1.0",
"@graphile/pg-aggregates": "^0.1.0",
"@graphile/pg-pubsub": "^4.12.2",
"@nestjs/common": "^9.4.0",
"@nestjs/core": "^9.4.0",
"@nestjs/platform-express": "^9.4.0",
"@subql/common": "workspace:*",
"@subql/utils": "workspace:*",
"@subql/x-graphile-build-pg": "4.13.0-0.2.5",
"@subql/x-postgraphile-core": "4.13.0-0.2.0",
"apollo-server-express": "^3.12.0",
"express-pino-logger": "^6.0.0",
"graphile-build": "^4.12.2",
"graphile-utils": "^4.12.2",
"graphql": "^15.8.0",
"graphql-query-complexity": "^0.11.0",
"lodash": "^4.17.21",
"pg": "^8.7.1",
"postgraphile": "^4.13.0",
"postgraphile-plugin-connection-filter": "^2.2.2",
"reflect-metadata": "^0.1.13",
"rimraf": "^3.0.2",
"rxjs": "^7.5.2",
"subscriptions-transport-ws": "^0.11.0",
"yargs": "^16.2.0"
},
"devDependencies": {
"@nestjs/schematics": "^9.2.0",
"@nestjs/testing": "^9.4.0",
"@types/express": "^4.17.13",
"@types/express-pino-logger": "^4.0.3",
"@types/jest": "^27.4.0",
"@types/lodash": "^4.14.178",
"@types/rimraf": "^3.0.2",
"@types/yargs": "^16.0.4",
"nodemon": "^2.0.15"
}
}