forked from e-enes/invitron
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) · 2.02 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
{
"name": "invitron",
"version": "2.0.1-dev",
"description": "The Best Way to Track Your Discord Server's Invites!",
"main": "dist/index.js",
"type": "module",
"private": true,
"scripts": {
"start": "node .",
"build": "node scripts/build.js",
"dev": "nodemon",
"format": "prettier . --check",
"lint": "eslint . --fix",
"lint:staged": "lint-staged",
"prepare": "husky"
},
"engines": {
"node": ">=18.18"
},
"author": "Enes Tahiri <125091714+e-enes@users.noreply.github.com>",
"license": "MIT",
"lint-staged": {
"*.{js,ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"*.{json,yml,yaml,md}": [
"prettier --write"
]
},
"nodemonConfig": {
"watch": [
"src",
".env",
"scripts"
],
"ext": "ts",
"exec": "pnpm build && pnpm start",
"delay": 2500,
"env": {
"NODE_ENV": "development"
}
},
"homepage": "https://github.com/e-enes/invitron#readme",
"bugs": {
"email": "125091714+e-enes@users.noreply.github.com",
"url": "https://github.com/e-enes/invitron/issues"
},
"packageManager": "pnpm@9.0.6",
"dependencies": {
"chalk": "^5.3.0",
"discord-api-types": "^0.37.79",
"discord.js": "^14.14.1",
"dotenv": "^16.4.5",
"fs": "0.0.1-security",
"glob": "^10.3.12",
"i18next": "^23.11.2",
"i18next-fs-backend": "^2.3.1",
"mysql2": "^3.9.4",
"sqlite3": "^5.1.7"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^7.7.0",
"@typescript-eslint/parser": "^7.7.0",
"esbuild": "^0.20.2",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"nodemon": "^3.1.0",
"prettier": "3.2.5",
"typescript": "^5.4.5"
},
"optionalDependencies": {
"bufferutil": "^4.0.8",
"utf-8-validate": "^6.0.3",
"zlib-sync": "^0.1.9"
},
"pnpm": {
"overrides": {
"undici@<=5.28.2": ">=5.28.3",
"undici@<5.28.4": ">=5.28.4"
}
}
}