-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 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
39
40
{
"name": "my-discord-bot",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"repository": "",
"scripts": {
"init": "pnpm i && node install.js",
"build": "tsc",
"prestart": "pnpm run build",
"start": "pm2 start dist/src/index.js --name my-bot --log-date-format=\"YYYY-MM-DD HH:mm Z\"",
"stop": "pm2 stop my-bot",
"prerestart": "pnpm run build",
"restart": "pm2 restart my-bot",
"delete": "pm2 delete my-bot",
"dev": "ts-node-dev --respawn -- src/index.ts",
"dev:prod": "cross-env ENV=production ts-node-dev --respawn -- src/index.ts",
"lint:fix": "eslint --fix --ext .ts src/"
},
"keywords": [],
"author": "",
"license": "GNU GPLv3",
"dependencies": {
"@discordjs/rest": "^2.2.0",
"@types/parse-color": "^1.0.3",
"ansi-colors": "^4.1.3",
"color-parse": "^2.0.0",
"cross-env": "^7.0.3",
"dedent": "^1.5.1",
"discord.js": "^14.14.1",
"dotenv": "^16.3.1",
"eslint": "^8.55.0",
"nodemon": "^3.0.2",
"ts-dedent": "^2.2.0",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0",
"tslib": "^2.6.2",
"typescript": "^5.3.2"
}
}