forked from neo4j/graphql
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.76 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
{
"name": "@neo4j/graphql-ogm",
"version": "4.1.1",
"description": "GraphQL powered OGM for Neo4j and Javascript applications",
"keywords": [
"neo4j",
"graphql",
"ogm"
],
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/neo4j/graphql/issues"
},
"homepage": "https://github.com/neo4j/graphql/tree/dev/packages/ogm",
"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": ">=16.0.0"
},
"scripts": {
"build": "tsc --build tsconfig.production.json",
"test": "jest",
"test:unit": "jest src/**/*.test.ts",
"test:unit:watch": "jest src --watch",
"test:int": "jest tests/integration",
"test:int:watch": "test:int -- --watch"
},
"author": "Neo4j Inc.",
"dependencies": {
"@graphql-codegen/core": "^4.0.0",
"@graphql-codegen/plugin-helpers": "^5.0.0",
"@graphql-codegen/typescript": "^4.0.0",
"@graphql-tools/merge": "^9.0.0",
"@neo4j/graphql": "^4.1.1",
"prettier": "^2.7.1"
},
"peerDependencies": {
"graphql": "^16.0.0",
"neo4j-driver": "^5.8.0"
},
"devDependencies": {
"@types/jest": "29.5.5",
"@types/node": "18.15.1",
"camelcase": "6.3.0",
"graphql-tag": "2.12.6",
"jest": "29.7.0",
"jsonwebtoken": "9.0.2",
"libnpmsearch": "7.0.0",
"npm-run-all": "4.1.5",
"pluralize": "8.0.0",
"randomstring": "1.3.0",
"semver": "7.5.4",
"ts-jest": "29.1.1",
"typescript": "5.1.6"
}
}