-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 1.92 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
{
"name": "@n-d-b/backend",
"version": "0.0.1",
"description": "N-D-B Project Backend",
"author": "NedcloarBR",
"license": "GPL-3.0",
"packageManager": "yarn@4.1.1",
"repository": {
"type": "git",
"url": "git+https://github.com/N-D-B-Project/Backend"
},
"bugs": {
"url": "https://github.com/N-D-B-Project/Backend/issues"
},
"homepage": "https://github.com/N-D-B-Project/Backend",
"engines": {
"node": "20.6.1"
},
"scripts": {
"build": "nest build",
"start": "nest start",
"start:dev": "nest start --watch --env-file=.env",
"start:debug": "nest start --debug --watch",
"start:prod": "node dist/main"
},
"dependencies": {
"@fastify/cookie": "^9.3.1",
"@fastify/helmet": "^11.1.1",
"@fastify/jwt": "^8.0.1",
"@fastify/static": "^7.0.4",
"@nestjs/axios": "^3.0.2",
"@nestjs/common": "^10.0.0",
"@nestjs/config": "^3.2.2",
"@nestjs/core": "^10.0.0",
"@nestjs/jwt": "^10.2.0",
"@nestjs/passport": "^10.0.3",
"@nestjs/platform-fastify": "^10.0.0",
"@nestjs/swagger": "^7.3.1",
"@prisma/client": "5.14.0",
"axios": "^1.7.2",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.1",
"discord-api-types": "^0.37.85",
"discord.js": "^14.15.2",
"fastify": "^4.27.0",
"jwt": "^0.2.0",
"passport": "^0.7.0",
"passport-discord": "^0.1.4",
"passport-jwt": "^4.0.1",
"reflect-metadata": "^0.2.0",
"rxjs": "^7.8.1"
},
"devDependencies": {
"@biomejs/biome": "1.6.1",
"@nestjs/cli": "^10.0.0",
"@nestjs/schematics": "^10.0.0",
"@nestjs/testing": "^10.0.0",
"@types/node": "^20.3.1",
"@types/passport": "^0",
"@types/passport-discord": "^0",
"@types/passport-jwt": "^4",
"@types/supertest": "^6.0.0",
"prisma": "^5.14.0",
"source-map-support": "^0.5.21",
"supertest": "^6.3.3",
"ts-jest": "^29.1.0",
"ts-loader": "^9.4.3",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.1.3"
},
"prisma": {
"schema": "Database/prisma/schema.prisma"
}
}