-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 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
{
"name": "neogoose",
"version": "1.0.0",
"description": "Node.js Neo4j OGM inspired by Mongoose & GraphQL",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"test-unit": "cross-env ./node_modules/.bin/mocha --recursive --exit --timeout=100000 -r ts-node/register test/unit/**/*.test.ts",
"test-integration": "cross-env ./node_modules/.bin/mocha --recursive --exit --timeout=100000 -r ts-node/register test/integration/**/*.test.ts",
"build": "rm -rf dist && tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/danstarns/neogoose.git"
},
"keywords": [
"neo4j",
"ogm",
"ogm-neo4j",
"mongoose"
],
"author": "[email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/danstarns/neogoose/issues"
},
"homepage": "https://github.com/danstarns/neogoose#readme",
"peerDependencies": {
"neo4j-driver": "^4.1.1",
"graphql": "^5.3.0"
},
"devDependencies": {
"@types/chai": "^4.2.12",
"@types/mocha": "^8.0.3",
"@types/node": "^14.6.0",
"@typescript-eslint/eslint-plugin": "^3.9.1",
"@typescript-eslint/parser": "^3.9.1",
"chai": "^4.2.0",
"cross-env": "^7.0.2",
"eslint": "^7.7.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"graphql": "^15.3.0",
"mocha": "^8.1.1",
"neo4j-driver": "^4.1.1",
"prettier": "^2.0.5",
"proxyquire": "^2.1.3",
"ts-node": "^9.0.0",
"typescript": "^4.0.2",
"uuid": "^8.3.0"
},
"dependencies": {
"@graphql-tools/merge": "^6.2.1",
"@graphql-tools/schema": "^6.1.0",
"graphql-compose": "^7.20.1",
"graphql-constraint-directive": "^2.1.0",
"neo4j-graphql-js": "^2.16.1",
"randomstring": "^1.1.5"
}
}