-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.05 KB
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 1.05 KB
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
{
"name": "marcel-toing",
"version": "1.0.0",
"description": "Bot for performing fun functions in Dorknerds Worldwide.",
"main": "index.js",
"scripts": {
"build": "tsc",
"lint": "eslint src/",
"start:dev": "nodemon -r dotenv/config ./src/index.ts dotenv_config_path=.env.dev",
"start:prod": "node -r dotenv/config ./prod/index.js dotenv_config_path=.env.prod"
},
"keywords": [],
"author": "Liam Galt",
"license": "ISC",
"dependencies": {
"@discordjs/rest": "^2.6.1",
"copyfiles": "^2.4.1",
"discord.js": "^14.26.4",
"dotenv": "^17.4.2",
"mongodb": "^7.3.0",
"ts-node": "^10.9.2"
},
"devDependencies": {
"@types/node": "^25.6.0",
"@typescript-eslint/eslint-plugin": "^8.59.2",
"@typescript-eslint/parser": "^8.59.2",
"eslint": "^9.39.4",
"eslint-config-prettier": "^10.1.8",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-prettier": "^5.5.5",
"nodemon": "^3.1.14",
"prettier": "^3.8.3",
"typescript": "^6.0.3"
}
}