-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 834 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 834 Bytes
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
{
"name": "discord-bot",
"version": "1.0.0",
"main": "src/app.ts",
"repository": "https://github.com/cuappdev/discord-bot",
"license": "MIT",
"dependencies": {
"@typegoose/typegoose": "^13.1.0",
"@types/node": "^24.10.13",
"discord.js": "^14.26.4",
"dotenv": "^17.3.1",
"mongoose": "~9.1.4",
"nodemon": "^3.1.14",
"ts-node": "^10.9.2",
"typescript": "^5.9.3",
"ws": "^8.20.0"
},
"scripts": {
"start": "ts-node --transpile-only -r dotenv/config src/app.ts",
"dev": "nodemon -r dotenv/config src/app.ts",
"format": "prettier --write .",
"lint": "eslint . --ext .ts --fix"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"eslint": "^10.0.2",
"globals": "^17.3.0",
"jiti": "^2.6.1",
"prettier": "3.8.1",
"typescript-eslint": "^8.56.1"
}
}