-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
79 lines (79 loc) · 2.79 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
{
"name": "devdenbot",
"version": "8.4.3",
"type": "module",
"main": "src/index.ts",
"engines": {
"node": "22"
},
"scripts": {
"version": "echo $npm_package_version",
"lint": "npx eslint 'src/**/*.ts' --fix",
"build": "tsc --build --clean tsconfig.json && tsc --build tsconfig.json",
"build-prod": "tsc -p tsconfig.production.json && ([ -f bin/Config.prod.js ] && mv -f bin/Config.prod.js bin/Config.js) || true",
"watch-dev": "nodemon --exec node --experimental-specifier-resolution=node --loader ts-node/esm src/index.ts",
"start-built": "node --import ./instrument.mjs --trace-warnings bin/index.js",
"build-and-run": "yarn build && yarn start-built",
"build-and-run-prod": "yarn lint && yarn build-prod && yarn start-built",
"sentry:sourcemaps": "sentry-cli sourcemaps inject --org developer-den-59 --project discord-bot ./bin && sentry-cli sourcemaps upload --org developer-den-59 --project discord-bot ./bin"
},
"keywords": [],
"author": "Developer Den",
"license": "MIT",
"dependencies": {
"@microsoft/eslint-formatter-sarif": "3.1.0",
"@sentry/cli": "^2.39.1",
"@sentry/integrations": "7.120.1",
"@sentry/node": "^8.43.0",
"@sentry/profiling-node": "^8.43.0",
"@sentry/tracing": "7.120.1",
"@sequelize/core": "^7.0.0-alpha.43",
"@sequelize/postgres": "^7.0.0-alpha.43",
"@sequelize/sqlite3": "^7.0.0-alpha.43",
"bufferutil": "^4.0.8",
"canvas": "^3.0.0-rc2",
"discord.js": "^14.16.3",
"djs-slash-helper": "git+https://github.com/bristermitten/djs-slash-helper.git#1302255f21e14aa5c7bb987c11c7be53b1058f65",
"dotenv": "^16.4.7",
"expiry-map": "^2.0.0",
"lru-cache": "^11.0.2",
"mariadb": "^3.4.0",
"node-fetch": "^3.3.2",
"node-schedule": "^2.1.1",
"opentype.js": "^1.3.4",
"pg": "^8.13.1",
"pg-hstore": "^2.3.4",
"pg-types": "^4.0.2",
"reflect-metadata": "^0.2.2",
"sqlite3": "^5.1.7",
"string-similarity": "^4.0.4",
"tslib": "^2.8.1",
"utf-8-validate": "^6.0.5",
"winston": "^3.17.0",
"yaml": "^2.6.1",
"zlib-sync": "^0.1.9"
},
"repository": "https://github.com/TheDeveloperDen/DevDenBot.git",
"devDependencies": {
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.16.0",
"@sentry/types": "^8.43.0",
"@types/node": "^22.10.1",
"@types/node-schedule": "^2.1.7",
"@types/opentype.js": "^1.3.8",
"@types/pg": "^8.11.10",
"@types/sequelize": "^4.28.20",
"@types/sqlite3": "^3.1.11",
"@types/string-similarity": "^4.0.2",
"@types/validator": "^13.12.2",
"eslint": "^9.16.0",
"globals": "^15.13.0",
"nodemon": "^3.1.7",
"ts-node": "^10.9.2",
"ts-prune": "^0.10.3",
"ts-standard": "^12.0.2",
"typescript": "^5.7.2",
"typescript-eslint": "^8.18.0"
},
"packageManager": "[email protected]"
}