-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.84 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 1.84 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
{
"name": "nestjs-mongodb-api-boilerplate",
"version": "0.0.0",
"description": "NestJS + MongoDB API boilerplate",
"author": "ehenon",
"license": "MIT",
"scripts": {
"prebuild": "rimraf dist",
"build": "nest build",
"start": "nest start",
"start:dev": "nest start --watch",
"start:debug": "nest start --debug --watch",
"start:prod": "node dist/main",
"lint": "eslint . --ext .ts",
"test": "jest --coverage"
},
"devDependencies": {
"@commitlint/cli": "^17.3.0",
"@commitlint/config-conventional": "^17.3.0",
"@nestjs/cli": "^9.1.5",
"@nestjs/schematics": "^9.0.3",
"@nestjs/testing": "^9.2.1",
"@types/express": "^4.17.15",
"@types/jest": "^29.2.4",
"@types/node": "^18.11.15",
"@types/supertest": "^2.0.12",
"@typescript-eslint/eslint-plugin": "^5.46.1",
"@typescript-eslint/parser": "^5.46.1",
"eslint": "^8.29.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"fakingoose": "^2.3.3",
"husky": "^4.3.8",
"jest": "^29.3.1",
"mongodb-memory-server": "^8.10.2",
"node-mocks-http": "^1.12.1",
"rimraf": "^3.0.2",
"source-map-support": "^0.5.21",
"supertest": "^6.3.3",
"ts-jest": "^29.0.3",
"ts-loader": "^9.4.2",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.1.1",
"typescript": "^4.9.4"
},
"dependencies": {
"@nestjs/common": "^9.2.1",
"@nestjs/config": "^2.2.0",
"@nestjs/core": "^9.2.1",
"@nestjs/mongoose": "^9.2.1",
"@nestjs/platform-express": "^9.2.1",
"@nestjs/swagger": "^6.1.4",
"class-transformer": "^0.5.1",
"class-validator": "^0.13.2",
"express": "^4.18.2",
"lodash.random": "^3.2.0",
"mongoose": "^6.8.0",
"reflect-metadata": "^0.1.13",
"uuid": "^9.0.0",
"winston": "^3.8.2"
}
}