-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.12 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": "@t3ned/auto-moderator",
"version": "1.0.0",
"description": "A simple automated moderation tool for mitigating bad behaviour on Discord.",
"repository": "[email protected]:T3NED/auto-moderator.git",
"author": "T3NED <[email protected]>",
"main": "./dist/index.js",
"license": "Apache-2.0",
"private": true,
"scripts": {
"build": "npx tsc -b ."
},
"dependencies": {
"@nedbot/logger": "^2.0.2",
"@prisma/client": "^3.6.0",
"axios": "^0.24.0",
"discord-akairo": "^8.1.0",
"discord.js": "^13.3.1",
"dotenv": "^10.0.0",
"human-ms": "^0.0.2",
"ioredis": "^4.28.2",
"module-alias": "^2.2.2"
},
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/ioredis": "^4.28.3",
"@types/node": "^16.11.12",
"@typescript-eslint/eslint-plugin": "^5.6.0",
"@typescript-eslint/parser": "^5.6.0",
"eslint": "^8.4.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"prettier": "^2.5.1",
"prisma": "^3.6.0",
"prisma-erd-generator": "^0.6.1",
"typescript": "^4.5.3"
},
"_moduleAliases": {
"#lib": "dist/lib"
}
}