generated from Xen0Xys/NestJS-Template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 2.83 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "ts-nest-api-template",
"version": "1.0.0a",
"description": "This is a basic template for building a RESTful API using Node.js and NestJS. It provides a structured starting point for your API development, with essential components and best practices.",
"author": "Xen0Xys",
"license": "CC-BY-NC-ND-4.0",
"repository": {
"type": "git",
"url": "git+https://github.com/Xen0Xys/ts-nest-api-template.git"
},
"bugs": {
"url": "https://github.com/Xen0Xys/ts-nest-api-template/issues"
},
"homepage": "https://github.com/Xen0Xys/ts-nest-api-template#readme",
"scripts": {
"build": "nest build",
"start": "nest start",
"start:dev": "nest start --watch",
"start:prod": "node dist/main",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"test": "jest --logHeapUsage",
"test:watch": "jest --watch",
"test:cov": "jest --coverage",
"test:e2e": "jest --config ./test/jest-e2e.json"
},
"dependencies": {
"@fastify/compress": "^7.0.0",
"@fastify/helmet": "^11.1.1",
"@fastify/static": "^7.0.1",
"@fastify/swagger": "^8.14.0",
"@nestjs/cache-manager": "^2.2.1",
"@nestjs/common": "^10.3.3",
"@nestjs/config": "^3.2.0",
"@nestjs/core": "^10.3.3",
"@nestjs/platform-fastify": "^10.3.3",
"@nestjs/schedule": "^4.0.1",
"@nestjs/swagger": "^7.3.0",
"@nestjs/throttler": "^5.1.2",
"@prisma/client": "5.9.1",
"argon2": "^0.31.2",
"cache-manager": "^5.4.0",
"cache-manager-redis-store": "^2.0.0",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.1",
"dotenv": "^16.4.5",
"fastify": "^4.26.2",
"jsonwebtoken": "^9.0.2",
"nodemailer": "^6.9.12",
"otplib": "^12.0.1",
"prisma": "^5.11.0",
"qrcode": "^1.5.3",
"redis": "^4.6.13",
"reflect-metadata": "^0.2.1",
"rxjs": "^7.8.1",
"swagger-themes": "^1.4.3",
"ulid": "^2.3.0"
},
"devDependencies": {
"@nestjs/cli": "^10.3.2",
"@nestjs/schematics": "^10.1.1",
"@nestjs/testing": "^10.3.3",
"@types/cache-manager-redis-store": "^2.0.4",
"@types/jest": "^29.5.12",
"@types/node": "^20.11.27",
"@types/supertest": "^2.0.16",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"eslint": "^8.57.0",
"jest": "^29.7.0",
"source-map-support": "^0.5.21",
"supertest": "^6.3.4",
"ts-jest": "^29.1.2",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.4.2"
},
"prisma": {
"seed": "ts-node prisma/seed.ts"
}
}