-
-
Notifications
You must be signed in to change notification settings - Fork 35
/
package.json
59 lines (59 loc) · 1.56 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
{
"name": "dtel",
"version": "4.0.0",
"description": "A telephone bot for Discord",
"main": "build/index.js",
"scripts": {
"test": "echo \"Error: we haven't set up testing yet.\" && exit 1",
"postinstall": "prisma generate",
"diagram": "prisma generate erd"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DTel-HQ/dtel.git"
},
"keywords": [
"DTEL"
],
"contributors": [
"SunburntRock89 <[email protected]>",
"Rexogamer <[email protected]>",
"Austin Huang <[email protected]> (https://austinhuang.me)",
"Mitchell Rademaker <[email protected]> (https://mitchells.work)"
],
"license": "SEE LICENSE IN LICENSE",
"bugs": {
"url": "https://github.com/DTel-HQ/dtel/issues"
},
"homepage": "https://dtel.austinhuang.me",
"engines": {
"node": ">=18"
},
"nodemonConfig": {
"delay": 100
},
"dependencies": {
"@prisma/client": "^4.14.1",
"dayjs": "^1.11.7",
"discord-api-types": "^0.37.38",
"discord.js": "^14.11.0",
"i18next": "^21.10.0",
"node-schedule": "^2.1.1",
"uuid": "^9.0.0",
"winston": "^3.8.2",
"winston-daily-rotate-file": "^4.7.1"
},
"devDependencies": {
"@tsconfig/node18": "^1.0.1",
"@types/node": "^18.15.11",
"@types/node-schedule": "^2.1.0",
"@types/uuid": "^9.0.1",
"@typescript-eslint/eslint-plugin": "^5.57.1",
"@typescript-eslint/parser": "^5.57.1",
"eslint": "^8.38.0",
"prisma": "^4.14.1",
"prisma-erd-generator": "^1.5.4",
"safe-regex": "^2.1.1",
"typescript": "^5.0.4"
}
}