-
Notifications
You must be signed in to change notification settings - Fork 154
/
Copy pathpackage.json
99 lines (99 loc) · 3.46 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "@neo4j/graphql",
"version": "7.0.0-alpha.1",
"description": "A GraphQL to Cypher query execution layer for Neo4j and JavaScript GraphQL implementations",
"keywords": [
"neo4j",
"graphql",
"server"
],
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/neo4j/graphql/issues"
},
"homepage": "https://github.com/neo4j/graphql/tree/dev/packages/graphql",
"exports": "./dist/index.js",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist/**/*.ts",
"dist/**/*.ts.map",
"dist/**/*.js",
"dist/**/*.js.map"
],
"engines": {
"node": ">=22.0.0"
},
"scripts": {
"build": "tsc --build src/tsconfig.production.json",
"clean": "cd src/ && tsc --build --clean",
"cleanup:package-tests": "cd ../package-tests/ && yarn run cleanup && rimraf ./package/ && rimraf *.tgz",
"performance": "ts-node tests/performance/performance.ts",
"posttest:package-tests": "yarn run cleanup:package-tests",
"setup:package-tests": "yarn pack && mv *.tgz ../package-tests/ && cd ../package-tests/ && rimraf package && tar -xvzf *.tgz && cd package && cd ../ && yarn install && yarn run setup",
"test:e2e": "jest tests/e2e",
"test:int": "jest tests/integration",
"test:package-tests": "yarn run setup:package-tests && cd ../package-tests/ && yarn run test:all",
"test:schema": "jest tests/schema -c jest.minimal.config.js",
"test:tck": "jest tests/tck -c jest.minimal.config.js",
"test:unit": "jest src --coverage=true -c jest.minimal.config.js",
"test": "jest"
},
"author": "Neo4j Inc.",
"devDependencies": {
"@apollo/gateway": "2.9.3",
"@apollo/server": "4.11.2",
"@types/deep-equal": "1.0.4",
"@types/is-uuid": "1.0.2",
"@types/jest": "29.5.14",
"@types/jsonwebtoken": "9.0.7",
"@types/node": "22.9.2",
"@types/pluralize": "0.0.33",
"@types/randomstring": "1.3.0",
"@types/semver": "7.5.8",
"@types/supertest": "6.0.2",
"@types/ws": "8.5.13",
"graphql-middleware": "6.1.35",
"graphql-tag": "2.12.6",
"graphql-ws": "5.16.0",
"is-uuid": "1.0.2",
"jest": "29.7.0",
"jest-extended": "4.0.2",
"jwks-rsa": "3.1.0",
"koa": "2.15.3",
"koa-jwt": "4.0.4",
"koa-router": "13.0.1",
"mock-jwks": "1.0.10",
"nock": "13.5.6",
"randomstring": "1.3.0",
"rimraf": "6.0.1",
"supertest": "7.0.0",
"ts-jest": "29.2.5",
"ts-node": "10.9.2",
"typescript": "5.1.6",
"ws": "8.18.0"
},
"dependencies": {
"@apollo/subgraph": "^2.2.3",
"@graphql-tools/merge": "^9.0.0",
"@graphql-tools/resolvers-composition": "^7.0.0",
"@graphql-tools/schema": "^10.0.0",
"@graphql-tools/utils": "^10.0.0",
"@neo4j/cypher-builder": "2.0.2",
"camelcase": "^6.3.0",
"debug": "^4.3.4",
"dot-prop": "^6.0.1",
"graphql-compose": "^9.0.8",
"graphql-parse-resolve-info": "^4.12.3",
"graphql-query-complexity": "^1.0.0",
"graphql-relay": "^0.10.0",
"jose": "^5.0.0",
"pluralize": "^8.0.0",
"semver": "^7.5.4",
"typescript-memoize": "^1.1.1"
},
"peerDependencies": {
"graphql": "^16.0.0",
"neo4j-driver": "^5.8.0"
}
}