forked from Dio1131/Voice-Channel-New-Session-Announcer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 800 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 800 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
{
"scripts": {
"dev": "vite-node --watch src/index.ts --mode=development",
"build:prod": "vite build --mode=production",
"pm2:start": "npm run build:prod && pm2 start dist/index.js --name vc-notify",
"pm2:stop": "pm2 stop vc-notify",
"pm2:restart": "pm2 restart vc-notify",
"pm2:logs": "pm2 logs vc-notify",
"pm2:status": "pm2 status"
},
"dependencies": {
"discord.js": "^14.7.1"
},
"devDependencies": {
"@types/node": "^20.0.0",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"pm2": "^6.0.8",
"prettier": "^3.2.0",
"prettier-eslint-cli": "^8.0.0",
"typescript": "^5.8.3",
"vite": "^7.0.0",
"vite-node": "^3.2.4"
}
}