-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
74 lines (74 loc) · 1.96 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
{
"name": "interchat",
"private": true,
"version": "4.3.0-0",
"description": "A growing Discord bot which provides inter-server chat!",
"main": "build/index.js",
"license": "AGPL-3.0-only",
"scripts": {
"start": "node .",
"start:prod": "pm2 start .ecosystem.config.js",
"dev": "nodemon --exec \"bun run build && bun start\" --ext ts,js,json --ignore build/",
"build": "tsc --build",
"typecheck": "tsc --noEmit",
"locale-types": "bun scripts/genLocaleTypes.js",
"sync:commands": "bun scripts/syncCommands.js",
"sync:emojis": "bun scripts/syncEmojis.js",
"release": "release-it",
"lint": "eslint --cache --fix ./src",
"prepare": "husky"
},
"sponsor": {
"url": "https://ko-fi.com/interchat"
},
"type": "module",
"dependencies": {
"@hono/node-server": "^1.13.8",
"@prisma/client": "^6.4.1",
"@sentry/node": "^9.3.0",
"canvas": "^3.1.0",
"common-tags": "^1.8.2",
"discord-hybrid-sharding": "^2.2.4",
"discord.js": "^14.18.0",
"dotenv": "^16.4.7",
"hono": "^4.7.2",
"husky": "^9.1.7",
"ioredis": "^5.5.0",
"js-yaml": "^4.1.0",
"lodash": "^4.17.21",
"lz-string": "^1.5.0",
"ms": "^2.1.3",
"reflect-metadata": "^0.2.2",
"winston": "^3.17.0"
},
"devDependencies": {
"@stylistic/eslint-plugin": "^4.1.0",
"@types/common-tags": "^1.8.4",
"@types/js-yaml": "^4.0.9",
"@types/lodash": "^4.17.16",
"@types/ms": "^2.1.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^9.21.0",
"lint-staged": "^15.4.3",
"nodemon": "^3.1.9",
"prettier": "^3.5.2",
"prisma": "^6.4.1",
"release-it": "^18.1.2",
"typescript": "^5.8.2",
"typescript-eslint": "^8.25.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"lint-staged": {
"*.ts": [
"eslint --cache --fix"
]
},
"imports": {
"#src/*.js": "./build/*.js",
"#utils/*.js": "./build/utils/*.js"
}
}