-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
41 lines (41 loc) · 1.11 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
{
"name": "bot",
"version": "1.0.0",
"private": "true",
"description": "A closed-source Discord bot to connect the GateKeeper platform to Discord.",
"main": "build/index.js",
"scripts": {
"dev:env": "npm run build && npm run start:env",
"start": "node .",
"start:env": "node --env-file .env .",
"build": "tsc"
},
"author": "amory_",
"engines": {
"node": ">=20.6.0"
},
"dependencies": {
"@discordjs/rest": "^2.2.0",
"@prisma/client": "^5.9.1",
"@t3-oss/env-core": "^0.8.0",
"discord.js": "^14.11.0",
"i18next": "^23.8.2",
"i18next-fs-backend": "^2.3.1",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/node": "^18.13.0",
"@typescript-eslint/eslint-plugin": "^5.51.0",
"@typescript-eslint/parser": "^5.51.0",
"chalk": "^4.1.2",
"eslint": "^8.41.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^15.0.0",
"eslint-plugin-promise": "^6.0.0",
"prettier": "^2.8.4",
"prisma": "^5.9.1",
"tsx": "^4.7.0",
"typescript": "5.3.3"
}
}