-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.4 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.4 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
{
"name": "support-bot",
"version": "0.0.0",
"private": true,
"main": "dist/index.js",
"type": "module",
"scripts": {
"start": "node --enable-source-maps .",
"build": "swc src --out-dir dist --strip-leading-paths",
"test:types": "tsc --noEmit",
"lint": "eslint"
},
"dependencies": {
"@sentry/node": "^7.118.0",
"@statsify/api-client": "workspace:^",
"@statsify/assets": "workspace:^",
"@statsify/discord": "workspace:^",
"@statsify/logger": "workspace:^",
"@statsify/rendering": "workspace:^",
"@statsify/schemas": "workspace:^",
"@statsify/util": "workspace:^",
"@swc/helpers": "^0.5.12",
"@typegoose/typegoose": "^12.6.0",
"axios": "1.7.3",
"discord-api-types": "^0.37.98",
"luxon": "^3.5.0",
"mongoose": "^8.5.2",
"reflect-metadata": "^0.2.2",
"skia-canvas": "^2.0.2",
"tiny-discord": "https://github.com/timotejroiko/tiny-discord.git#f6d020085ea88e33ebaf6ce323930deffe74fb0d",
"toad-scheduler": "^3.0.1",
"typedi": "^0.10.0"
},
"devDependencies": {
"@types/luxon": "^3.4.2"
},
"imports": {
"#services": {
"types": "./src/services/index.ts",
"default": "./dist/services/index.js"
},
"#constants": {
"types": "./src/constants.ts",
"default": "./dist/constants.js"
},
"#lib": {
"types": "./src/lib/index.ts",
"default": "./dist/lib/index.js"
}
}
}