-
Notifications
You must be signed in to change notification settings - Fork 37
/
package.json
36 lines (36 loc) · 949 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
{
"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": "^7.6.13",
"@nestjs/core": "^7.6.13",
"@nestjs/platform-express": "^7.6.13",
"@nestjs/swagger": "^4.7.15",
"@nestjs/testing": "^7.6.13",
"@types/express": "^4.17.11",
"@types/jest": "^26.0.20",
"@types/lodash": "^4.14.168",
"@types/supertest": "^2.0.10",
"class-transformer": "^0.4.0",
"class-validator": "^0.13.1",
"jest": "^26.4.2",
"lodash": "^4.17.21",
"mongoose": "^5.11.18",
"reflect-metadata": "^0.1.13",
"rxjs": "^6.6.6",
"supertest": "^6.1.3",
"ts-jest": "^26.5.2",
"typescript": "^4.2.2"
},
"peerDependencies": {},
"dependencies": {}
}