-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
81 lines (81 loc) · 1.98 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
{
"name": "@nhogs/nestjs-neo4j",
"version": "0.5.16",
"engines": {
"node": ">=20.x"
},
"description": "Neo4j module for Nest framework",
"author": "Frederic Ciminera",
"repository": {
"type": "git",
"url": "git+https://github.com/Nhogs/nestjs-neo4j.git"
},
"license": "MIT",
"scripts": {
"prebuild": "rimraf dist",
"build": "tsc -p tsconfig.build.json",
"test": "jest --runInBand"
},
"keywords": [
"neo4j",
"nest",
"nestjs",
"module"
],
"bugs": {
"url": "https://github.com/Nhogs/nestjs-neo4j/issues"
},
"homepage": "https://github.com/Nhogs/nestjs-neo4j#readme",
"devDependencies": {
"@nestjs/common": "^10.4.1",
"@nestjs/config": "^3.2.3",
"@nestjs/core": "^10.4.1",
"@nestjs/platform-express": "^10.4.1",
"@nestjs/testing": "^10.4.1",
"@types/jest": "^29.5.12",
"@types/node": "^22.4.1",
"@types/supertest": "^6.0.2",
"@typescript-eslint/eslint-plugin": "^8.1.0",
"@typescript-eslint/parser": "^8.1.0",
"eslint": "^9.9.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"jest": "^29.7.0",
"neo4j-driver": "^5.23.0",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"rxjs": "^7.8.1",
"supertest": "^7.0.0",
"ts-jest": "^29.2.4",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.5.4"
},
"peerDependencies": {
"@nestjs/common": ">=7.0.0 <11.0.0",
"@nestjs/core": ">=7.0.0 <11.0.0",
"neo4j-driver": ">=4.0.0 <6.0.0",
"reflect-metadata": ">=0.1.13 <1.0.0",
"rxjs": ">=7.0.0 <8.0.0"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": ".",
"testRegex": ".*\\.spec\\.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"collectCoverageFrom": [
"lib/**/*.(t|j)s",
"!**/index.ts"
],
"coverageDirectory": "./coverage",
"collectCoverage": true,
"testEnvironment": "node"
}
}