-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
58 lines (58 loc) · 1.54 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
{
"name": "kodluyoruz-discord-bot",
"version": "0.1.1",
"description": "Kodluyoruz Discord Kayıt Botu",
"main": "src/index.js",
"type": "module",
"scripts": {
"start": "node .",
"dev": "nodemon .",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"format": "prettier --write .",
"format:check": "prettier --check ."
},
"imports": {
"#components/*": "./src/components/*.js",
"#events/*": "./src/events/*.js",
"#fuctions/*": "./src/functions/*.js",
"#helpers/*": "./src/helpers/*.js",
"#schemas/*": "./src/schemas/*.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Kodluyoruz/discord-register-bot"
},
"keywords": [
"discord",
"discord-bot",
"discord-register-bot"
],
"bugs": {
"url": "https://github.com/Kodluyoruz/discord-register-bot/issues"
},
"author": "Kodluyoruz",
"license": "MIT",
"devDependencies": {
"@babel/eslint-parser": "^7.22.15",
"@trivago/prettier-plugin-sort-imports": "^4.2.0",
"eslint": "^8.50.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-node": "^4.1.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"nodemon": "^3.0.1",
"prettier": "^2.8.8"
},
"dependencies": {
"discord-api-types": "^0.37.57",
"discord.js": "^14.13.0",
"dotenv": "^16.3.1",
"i18next": "^23.5.1",
"mongoose": "^7.5.2",
"winston": "^3.10.0"
}
}