-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
50 lines (50 loc) · 1.53 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
49
50
{
"name": "discord-bot",
"description": "discord.js v14 bot template/base code to help you get started with your application.",
"version": "2.0.0",
"main": ".build/index.js",
"scripts": {
"test": "eslint .",
"start": "cross-env NODE_ENV=production tsc && node .build/index.js",
"build": "cross-env NODE_ENV=production tsc",
"dev": "cross-env NODE_ENV=development nodemon --exec ts-node ./src/index.ts --delay 2.5",
"setup": "cross-env NODE_ENV=development npm i && node .build/index.js",
"update": "npx npm-check-updates -u && npm i",
"pm2:start": "pm2 start \"npm run start\" --name discord-bot",
"pm2:restart": "npm run build && pm2 restart discord-bot --update-env",
"pm2:rs": "pm2 restart discord-bot --update-env",
"pm2:stop": "pm2 delete discord-bot"
},
"repository": {
"type": "git",
"url": "git+https://github.com/IMXNOOBX/discord.bot.git"
},
"keywords": [
"discord-bot",
"bot",
"discord"
],
"author": "IMXNOOBX",
"license": "CC-BY-NC-4.0",
"bugs": {
"url": "https://github.com/IMXNOOBX/discord.bot/issues"
},
"homepage": "https://github.com/IMXNOOBX/discord.bot#readme",
"dependencies": {
"dis-logs": "^1.3.5",
"discord.js": "^14.16.3",
"logging": "^3.3.0",
"ms": "^2.1.3"
},
"devDependencies": {
"@eslint/js": "^9.13.0",
"cross-env": "^7.0.3",
"dotenv": "^16.4.5",
"eslint": "^9.13.0",
"globals": "^15.11.0",
"mongoose": "^8.7.2",
"nodemon": "^3.1.7",
"ts-node": "^10.9.2",
"typescript": "^5.6.3"
}
}