generated from NezuChan/template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.86 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
{
"name": "@tanjiro-project/tanjiro-module",
"version": "1.0.0",
"description": "A Moderation module for NezukoChan the popular Discord's bot",
"main": "dist",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "npm run generate_prisma && eslint src --ext ts",
"lint:fix": "npm run generate_prisma && eslint src --fix --ext ts",
"build": "npm run generate_prisma && swc src -d dist",
"generate_prisma": "prisma generate && prisma generate --schema prisma/mongo_schema.prisma"
},
"type": "module",
"author": "KagChi",
"license": "GPL-3.0",
"devDependencies": {
"@hazmi35/eslint-config": "^8.4.2",
"@swc/cli": "^0.1.57",
"@swc/core": "^1.2.222",
"@types/amqplib": "^0.8.2",
"@types/node": "^17.0.31",
"@typescript-eslint/eslint-plugin": "^5.32.0",
"@typescript-eslint/parser": "^5.32.0",
"eslint": "^8.21.0",
"prisma": "^4.1.1",
"rimraf": "^3.0.2",
"typescript": "^4.7.4"
},
"eslintConfig": {
"parser": "@typescript-eslint/parser",
"plugins": [
"@typescript-eslint"
],
"parserOptions": {
"project": "./tsconfig.json"
},
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended",
"@hazmi35/eslint-config/typescript"
],
"rules": {
"class-methods-use-this": "off",
"@typescript-eslint/naming-convention": "off"
}
},
"dependencies": {
"@discordjs/builders": "^1.1.0",
"@discordjs/rest": "^1.0.1",
"@nezuchan/cordis-brokers": "^1.5.6",
"@nezuchan/i18n": "^1.2.0",
"@prisma/client": "^4.1.1",
"@sapphire/pieces": "^3.3.5",
"@sapphire/result": "^2.1.1",
"amqplib": "^0.10.1",
"discord-api-types": "^0.37.0",
"dotenv": "^16.0.1",
"i18next": "^21.8.16",
"ioredis": "^5.2.2",
"pino": "^8.3.1",
"pino-pretty": "^8.1.0",
"undici": "^5.8.0"
}
}