forked from topfullstack/nestjs-mongoose-crud
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 947 Bytes
/
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
{
"name": "nestjs-mongoose-crud",
"description": "mongoose restful crud api for nest.js",
"version": "2.1.2",
"main": "dist/main.js",
"typings": "dist/main.d.ts",
"license": "MIT",
"scripts": {
"build": "tsc",
"test": "jest",
"serve": "tsc --watch"
},
"devDependencies": {
"@nestjs/common": "^8.4",
"@nestjs/core": "^8.4",
"@nestjs/platform-express": "^8.4",
"@nestjs/swagger": "^5.2",
"@nestjs/testing": "^8.4",
"@types/express": "^4.17.11",
"@types/jest": "^27.4",
"@types/lodash": "^4.14.168",
"@types/supertest": "^2.0.10",
"class-transformer": "^0.5.1",
"class-validator": "^0.13.1",
"jest": "^27.4",
"lodash.get": "^4.4",
"lodash.merge": "^4.4",
"mongoose": "^6.2",
"reflect-metadata": "^0.1.13",
"rxjs": "^7.5",
"supertest": "^6.1.3",
"ts-jest": "^27.1",
"typescript": "^4.4"
},
"peerDependencies": {},
"dependencies": {}
}