-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.13 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
{
"name": "discord-bot-boilerplate",
"version": "1.0.0",
"description": "my personal boiler plate for crafting discord bots.",
"main": "index.ts",
"scripts": {
"build": "tsc && cp src/config.json dist/config.json",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"start": "node -r @swc-node/register src/index.ts",
"deploy": "ts-node src/utils/deploy.ts",
"dev": "nodemon",
"start:debug": "nest start --debug --watch",
"start:prod": "node dist/main",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "dfanso",
"license": "ISC",
"repository": "https://github.com/DFanso/discord-bot-boilerplate.git",
"dependencies": {
"@discordjs/builders": "^1.8.2",
"@swc/core": "^1.5.25",
"@types/node": "^20.14.0",
"discord.js": "^14.15.3",
"dotenv": "^16.4.5",
"env": "^0.0.2",
"eslint": "^9.4.0",
"express": "^4.19.2",
"mongoose": "^8.4.1",
"nodemon": "^3.1.2",
"ts-node": "^10.9.2",
"typescript": "^5.4.5"
},
"devDependencies": {
"@swc-node/register": "^1.9.1",
"@swc/cli": "^0.3.12",
"@types/express": "^4.17.21"
}
}