-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
48 lines (48 loc) · 1.24 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
{
"name": "slash-level-bot",
"version": "1.0.0",
"description": "Slash command based level bot for Discord",
"author": {
"email": "demirci.baris38@gmail.com",
"name": "Barış DEMİRCİ",
"url": "https://bariscodes.me/"
},
"license": "GPL-3.0",
"private": true,
"scripts": {
"prebuild": "rimraf dist",
"build": "tsc",
"format": "prettier --write .",
"lint": "eslint --fix .",
"start": "cross-env NODE_ENV=production node dist",
"dev": "cross-env NODE_ENV=development ts-node src",
"dev:watch": "cross-env NODE_ENV=development nodemon",
"update": "taze latest -w"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/node": "^20.12.7",
"@typescript-eslint/eslint-plugin": "^7.8.0",
"@typescript-eslint/parser": "^7.8.0",
"cross-env": "^7.0.3",
"eslint": "^9.1.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"nodemon": "^3.1.0",
"prettier": "^3.2.5",
"rimraf": "^5.0.5",
"taze": "^0.13.7",
"ts-node": "^10.9.2",
"typescript": "^5.4.5"
},
"dependencies": {
"@hammerhq/logger": "^2.2.0",
"canvas": "^2.11.2",
"discord.js": "^14.14.1",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"mongodb-memory-server": "^9.2.0",
"mongoose": "^8.3.3",
"sharp": "^0.33.3"
}
}