-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
45 lines (45 loc) · 1.32 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
{
"name": "nest-mongodb",
"version": "6.4.0",
"description": "A NestJS module for the MongoDB driver",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "npm run build:clean && npm run build:tsc",
"build:clean": "rimraf dist",
"build:tsc": "tsc",
"format:check": "prettier --check \"src/**/*.ts\"",
"format:write": "prettier --write \"src/**/*.ts\""
},
"keywords": [
"mongo",
"mongodb",
"nest",
"nestjs"
],
"author": "Erik Christensen",
"license": "ISC",
"devDependencies": {
"@nestjs/common": "^10.2.8",
"@nestjs/core": "^10.2.8",
"@types/node": "^18.0.0",
"@types/rimraf": "^3.0.0",
"mongodb": "^6.2.0",
"prettier": "^2.7.1",
"reflect-metadata": "^0.1.13",
"rimraf": "^3.0.2",
"rxjs": "^7.8.1",
"typescript": "^5.2.2"
},
"peerDependencies": {
"@nestjs/common": "^6.0.0 || ^7.0.0 || ^8.0.0 || ^9.0.0 || ^10.0.0",
"@nestjs/core": "^6.0.0 || ^7.0.0 || ^8.0.0 || ^9.0.0 || ^10.0.0",
"mongodb": "^6.0.0",
"reflect-metadata": "^0.1.13",
"rxjs": "^6.0.0 || ^7.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/erikc5000/nest-mongodb.git"
}
}