-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.58 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 1.58 KB
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
{
"name": "nestjs-dynamic-filter",
"version": "1.0.9",
"author": "Mishhub",
"license": "ISC",
"description": "A flexible filtering system for NestJS applications with MongoDB and PostgreSQL support",
"repository": {
"type": "git",
"url": "https://github.com/UtilKit/nestjs-dynamic-filter"
},
"bugs": {
"url": "https://github.com/UtilKit/nestjs-dynamic-filter/issues"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"engines": {
"node": ">=20.15.0"
},
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"clean": "rm -rf dist",
"test": "jest",
"prepare": "npm run build",
"watch": "tsc --watch",
"dev": "tsc --watch --preserveWatchOutput"
},
"keywords": [
"nestjs",
"filter",
"query",
"mongodb",
"mongoose",
"postgres",
"postgresql",
"typeorm",
"odm",
"orm"
],
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/node": "^22.13.4",
"jest": "^29.7.0",
"ts-jest": "^29.2.5",
"typescript": "^5.7.3"
},
"peerDependencies": {
"@nestjs/common": "^10.0.0 || ^11.0.0",
"@nestjs/core": "^10.0.0 || ^11.0.0",
"@nestjs/mongoose": "^10.0.0 || ^11.0.0",
"@nestjs/typeorm": "^10.0.0 || ^11.0.0",
"@nestjs/swagger": "^8.0.0 || ^9.0.0 || ^11.0.0",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.1",
"mongoose": "^8.8.2",
"typeorm": "^0.3.0 || ^0.4.0"
}
}