-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathpackage.json
More file actions
102 lines (102 loc) · 2.88 KB
/
package.json
File metadata and controls
102 lines (102 loc) · 2.88 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "api",
"version": "0.0.0",
"private": true,
"main": "dist/index.js",
"type": "module",
"scripts": {
"start": "node --enable-source-maps .",
"build": "swc src --config-file ../../.swcrc --out-dir dist --strip-leading-paths",
"test:types": "tsc --noEmit",
"lint": "eslint"
},
"dependencies": {
"@fastify/static": "^8.3.0",
"@fastify/view": "^11.1.1",
"@m8a/nestjs-typegoose": "^12.0.1",
"@nestjs/axios": "^4.0.1",
"@nestjs/common": "^11.1.14",
"@nestjs/core": "^11.1.14",
"@nestjs/platform-fastify": "^11.1.14",
"@nestjs/swagger": "^11.2.6",
"@sentry/node": "^7.120.4",
"@statsify/api-client": "workspace:^",
"@statsify/assets": "workspace:^",
"@statsify/logger": "workspace:^",
"@statsify/rendering": "workspace:^",
"@statsify/schemas": "workspace:^",
"@statsify/skin-renderer": "workspace:^",
"@statsify/util": "workspace:^",
"@swc/helpers": "^0.5.18",
"@typegoose/typegoose": "^12.21.0",
"class-transformer": "0.5.1",
"class-validator": "^0.14.3",
"fastify": "^5.7.4",
"handlebars": "^4.7.8",
"ioredis": "5.9.3",
"luxon": "^3.7.2",
"mongoose": "^8.23.0",
"reflect-metadata": "^0.2.2",
"rxjs": "^7.8.2",
"skia-canvas": "https://github.com/samizdatco/skia-canvas/releases/download/v0.9.30/skia-canvas-v0.9.30-linux-x64-glibc.tar.gz",
"toad-scheduler": "^3.1.0"
},
"devDependencies": {
"@nestjs/testing": "^11.1.14",
"@types/luxon": "^3.7.1"
},
"imports": {
"#auth": {
"types": "./src/auth/index.ts",
"default": "./dist/auth/index.js"
},
"#commands": {
"types": "./src/commands/index.ts",
"default": "./dist/commands/index.js"
},
"#dtos": {
"types": "./src/dtos/index.ts",
"default": "./dist/dtos/index.js"
},
"#guild": {
"types": "./src/guild/index.ts",
"default": "./dist/guild/index.js"
},
"#player": {
"types": "./src/player/index.ts",
"default": "./dist/player/index.js"
},
"#session": {
"types": "./src/session/index.ts",
"default": "./dist/session/index.js"
},
"#hypixel": {
"types": "./src/hypixel/index.ts",
"default": "./dist/hypixel/index.js"
},
"#hypixel-resources": {
"types": "./src/hypixel-resources/index.ts",
"default": "./dist/hypixel-resources/index.js"
},
"#leaderboards": {
"types": "./src/leaderboards/index.ts",
"default": "./dist/leaderboards/index.js"
},
"#sentry": {
"types": "./src/sentry/index.ts",
"default": "./dist/sentry/index.js"
},
"#skin": {
"types": "./src/skin/index.ts",
"default": "./dist/skin/index.js"
},
"#user": {
"types": "./src/user/index.ts",
"default": "./dist/user/index.js"
},
"#redis": {
"types": "./src/redis/index.ts",
"default": "./dist/redis/index.js"
}
}
}