-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
104 lines (104 loc) · 3.37 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "skyhelper",
"version": "7.0.0",
"description": "A Bot for Sky: Children of the Light",
"main": "dist/bot/index.js",
"type": "module",
"keywords": [
"SkyCoTL",
"SkyShards",
"SkyDiscordBot",
"Sky: Children of the Light"
],
"scripts": {
"start": "npm run build:prod && node dist/bot/index.js",
"dev": "node --env-file=.env dist/bot/index.js",
"build:prod": "tsc -p tsconfig.json && npm run sentry:sourcemaps",
"build:ci": "tsc -p tsconfig.json",
"build:dev": "tsc -p tsconfig.json --watch",
"lint": "eslint --fix src",
"test": "cross-env NODE_OPTIONS=\"$NODE_OPTIONS --experimental-vm-modules\" jest",
"commands": "node dist/bot/libs/registerCommands.js",
"format": "prettier --write --ignore-unknown src",
"sentry:sourcemaps": "sentry-cli sourcemaps inject --org skyhelper-09 --project node ./dist && sentry-cli sourcemaps upload --org skyhelper-09 --project node ./dist",
"setup": "node scripts/env-cli.js",
"prepare": "husky"
},
"author": "Naiyar Imam",
"license": "MIT",
"dependencies": {
"@imnaiyar/framework": "^1.2.2",
"@napi-rs/canvas": "^0.1.52",
"@nestjs/common": "^10.3.8",
"@nestjs/core": "^10.3.8",
"@nestjs/platform-express": "^10.3.8",
"@sapphire/stopwatch": "^1.5.2",
"@sapphire/type": "^2.4.4",
"@sentry/cli": "^2.32.2",
"@sentry/node": "^8.34.0",
"@sentry/profiling-node": "^8.17.0",
"chalk": "^4.1.2",
"cors": "^2.8.5",
"cropify": "^1.0.9",
"discord.js": "14.16.2",
"express": "^4.20.0",
"i18next": "^23.11.5",
"i18next-fs-backend": "^2.3.1",
"moment": "^2.29.4",
"moment-duration-format": "^2.3.2",
"moment-timezone": "^0.5.43",
"mongoose": "^7.5.0",
"node-cron": "^3.0.3",
"skyhelper-utils": "^1.3.5",
"table": "^6.8.1",
"topgg-autoposter": "^2.0.2"
},
"imports": {
"#bot/*": "./dist/bot/*.js",
"#handlers": "./dist/bot/handlers/index.js",
"#handlers/*": "./dist/bot/handlers/*.js",
"#commands/*": "./dist/bot/commands/*.js",
"#root/*": "./*",
"#schemas/*": "./dist/bot/database/schemas/*.js",
"#structures/*": "./dist/bot/structures/*.js",
"#structures": "./dist/bot/structures/index.js",
"#libs/*": "./dist/bot/libs/*.js",
"#libs": "./dist/bot/libs/index.js",
"#api/*": "./dist/api/*.js",
"#utils": "./dist/bot/utils/index.js"
},
"devDependencies": {
"@commitlint/cli": "^19.4.0",
"@commitlint/config-conventional": "^19.2.2",
"@jest/globals": "^29.7.0",
"@nestjs/schematics": "^10.1.1",
"@nestjs/testing": "^10.3.8",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.12",
"@types/mocha": "^10.0.6",
"@types/moment-duration-format": "^2.2.6",
"@types/node": "^20.12.5",
"@types/node-cron": "^3.0.11",
"@types/uuid": "^9.0.8",
"@typescript-eslint/eslint-plugin": "^7.6.0",
"@typescript-eslint/parser": "^7.6.0",
"cross-env": "^7.0.3",
"eslint": "^8.57.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsdoc": "^46.8.2",
"husky": "^9.1.4",
"jest": "^29.7.0",
"lint-staged": "^15.2.9",
"prettier": "^3.0.3",
"prettier-plugin-ejs": "^0.0.18",
"source-map-support": "^0.5.21",
"ts-jest": "^29.1.4",
"typescript": "^5.6.2"
},
"trustedDependencies": [
"@nestjs/core",
"@sapphire/type"
],
"packageManager": "[email protected]"
}