-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
97 lines (97 loc) · 2.19 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "fortuna-next",
"version": "1.0.0",
"description": "discord ts bot",
"main": "build/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/waseeen/fortunaNEXT.git"
},
"keywords": [
"typescript",
"discord",
"bot"
],
"author": "waseeeen",
"license": "ISC",
"bugs": {
"url": "https://github.com/waseeen/fortunaNEXT/issues"
},
"homepage": "https://github.com/waseeen/fortunaNEXT#readme",
"devDependencies": {
"@types/node": "^20.10.3",
"@types/source-map-support": "^0.5.10",
"@typescript-eslint/eslint-plugin": "^6.13.2",
"@typescript-eslint/parser": "^6.13.2",
"eslint": "^8.55.0",
"eslint-plugin-deprecation": "^2.0.0",
"prettier": "^3.1.0"
},
"dependencies": {
"@discordjs/collection": "^2.0.0",
"discord.js": "^14.14.1",
"dotenv": "^16.3.1",
"pg": "^8.11.3",
"plural-ru": "^2.0.2",
"source-map-support": "^0.5.21",
"typeorm": "^0.3.17"
},
"eslintConfig": {
"env": {
"browser": true,
"es2021": true
},
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended"
],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"project": "./tsconfig.json",
"tsconfigRootDir": "./",
"ecmaVersion": "latest",
"sourceType": "module"
},
"plugins": [
"@typescript-eslint",
"deprecation"
],
"rules": {
"linebreak-style": 0,
"@typescript-eslint/ban-ts-comment": "off",
"@typescript-eslint/naming-convention": [
"error",
{
"selector": "variable",
"format": [
"camelCase",
"UPPER_CASE",
"PascalCase"
]
}
],
"quotes": [
"error",
"single"
],
"semi": [
"error",
"always"
],
"no-mixed-spaces-and-tabs": "off",
"deprecation/deprecation": "error"
}
},
"prettier": {
"printWidth": 100,
"useTabs": false,
"tabWidth": 2,
"semi": true,
"singleQuote": true,
"trailingComma": "all",
"bracketSpacing": true
}
}