-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
62 lines (62 loc) · 1.72 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
{
"name": "kodluyoruz-discord-bot",
"version": "0.0.1",
"description": "Kodluyoruz Discord Puan Botu",
"main": "src/index.js",
"repository": {
"type": "git",
"url": "https://github.com/Kodluyoruz/discord-points-bot"
},
"keywords": [
"discord",
"discord-bot",
"discord-points-bot"
],
"bugs": {
"url": "https://github.com/Kodluyoruz/discord-points-bot/issues"
},
"author": "Kodluyoruz",
"scripts": {
"start": "ts-node src/index.ts",
"dev": "nodemon src/index.ts",
"lint": "eslint --fix",
"lint:check": "eslint .",
"format": "prettier --write ."
},
"dependencies": {
"date-fns": "^2.30.0",
"discord.js": "^14.12.1",
"dotenv": "^16.3.1",
"envalid": "^8.0.0",
"i18next": "^23.5.1",
"i18next-resources-for-ts": "^1.3.3",
"lodash": "^4.17.21",
"mongoose": "^7.5.1",
"node-cron": "^3.0.2",
"tsconfig-paths": "^4.2.0",
"tslib": "^2.6.2",
"winston": "^3.10.0"
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^1.4.4",
"@types/lodash": "^4.14.198",
"@types/node-cron": "^3.0.8",
"@typescript-eslint/eslint-plugin": "^6.7.4",
"@typescript-eslint/parser": "^6.7.4",
"eslint": "^8.51.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-config-prettier": "^9.0.0",
"eslint-import-resolver-typescript": "^3.6.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"nodemon": "^3.0.1",
"prettier": "^3.0.3",
"prettier-eslint": "^15.0.1",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
}
}