forked from sunnniee/Buno
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
40 lines (40 loc) · 1.15 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
{
"name": "buno-extended",
"version": "2.0.0",
"description": "",
"main": "dist/index.js",
"scripts": {
"lint": "eslint . --ext .ts",
"build": "tsc -b",
"start": "node .",
"start:restart": "forever start . --watchDirectory dist",
"dev": "tsx watch src",
"scripts:deploySlash": "node dist/utils/registerSlashCommands",
"scripts:migrate": "node dist/utils/migrateDatabase"
},
"keywords": [],
"author": "",
"license": "AGPL-3.0-only",
"dependencies": {
"discord.js": "^14.14.1",
"dotenv": "^16.4.5",
"forever": "^4.0.3",
"sequelize": "^6.37.3",
"sqlite3": "^5.1.7",
"toml": "^3.0.0"
},
"devDependencies": {
"@types/node": "^20.12.7",
"@typescript-eslint/eslint-plugin": "^7.7.0",
"@typescript-eslint/parser": "^7.7.0",
"eslint": "^8.57.0",
"eslint-plugin-simple-import-sort": "^12.1.0",
"eslint-plugin-unused-imports": "^3.1.0",
"tsx": "^4.7.2",
"typescript": "^5.4.5"
},
"type": "module",
"nodemonConfig": {
"ignore": "./database/**"
}
}