forked from subsquid/squid-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 1.72 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": "@subsquid/graphql-server",
"version": "3.0.0",
"description": "GraphQL server for squid project",
"license": "GPL-3.0-or-later",
"repository": "[email protected]:subsquid/squid.git",
"publishConfig": {
"access": "public"
},
"files": [
"bin",
"lib",
"src"
],
"bin": {
"squid-graphql-server": "bin/run.js"
},
"main": "lib/index.js",
"scripts": {
"build": "make build",
"test": "make up && sleep 1 && make test test-cockroach && make down || (make down && exit 1)"
},
"dependencies": {
"@graphql-tools/merge": "^8",
"@graphql-tools/utils": "^8",
"@graphql-tools/schema": "^8",
"@subsquid/openreader": "^2.1.0",
"@subsquid/typeorm-config": "^2.0.0",
"@subsquid/logger": "^0.1.0",
"@subsquid/util-internal": "^0.0.1",
"@subsquid/util-internal-commander": "^0.0.0",
"@subsquid/util-internal-http-server": "^0.1.0",
"apollo-server-core": "^3.9.0",
"apollo-server-express": "^3.9.0",
"commander": "^9.3.0",
"dotenv": "^10.0.0",
"express": "^4.18.1",
"graphql": "^15.8.0",
"graphql-ws": "^5.9.1",
"pg": "^8.7.3",
"ws": "^8.8.1"
},
"peerDependencies": {
"class-validator": "^0.13.2",
"type-graphql": "^1.2.0-rc.1",
"typeorm": "^0.3.6"
},
"peerDependenciesMeta": {
"class-validator": {
"optional": true
},
"type-graphql": {
"optional": true
},
"typeorm": {
"optional": true
}
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/mocha": "^9.1.1",
"@types/node": "^16.11.41",
"@types/pg": "^8.6.5",
"@types/ws": "^8.5.3",
"expect": "^27.5.1",
"gql-test-client": "^0.0.0",
"mocha": "^9.2.2",
"typescript": "~4.7.4"
}
}