-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.3 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
{
"type": "module",
"scripts": {
"start": "node --enable-source-maps dist/bot.js",
"build": "tsc",
"dev": "docker run --rm -v \"${PWD}:/app\" -w /app -p 80:80 --network db -t --entrypoint sh node:16-alpine -c 'apk add youtube-dl ffmpeg && npm run watch'",
"watch": "concurrently -n TS,JS -c blue,yellow 'npm run watch-ts' 'npm run watch-js'",
"watch-ts": "tsc --watch --preserveWatchOutput",
"watch-js": "nodemon --watch ./dist --enable-source-maps --delay 2 dist/server.js"
},
"dependencies": {
"@gitbeaker/node": "^35.6.0",
"axios": "^1.2.2",
"cookie-parser": "^1.4.6",
"cron": "^3.1.6",
"discord.js": "^14.14.1",
"dotenv": "^16.0.0",
"eventsource": "^2.0.2",
"express": "^4.17.3",
"form-data": "^4.0.0",
"ioredis": "^4.28.5",
"mathjs": "^11.5.0",
"mime-types": "^2.1.35",
"pocketbase": "^0.21.2",
"rss-parser": "^3.13.0",
"winston": "^3.17.0",
"winston-loki": "^6.1.3"
},
"devDependencies": {
"@discordjs/rest": "^2.0.1",
"@types/cookie-parser": "^1.4.3",
"@types/eventsource": "^1.1.15",
"@types/express": "^4.17.13",
"@types/ioredis": "^4.28.10",
"@types/mime-types": "^2.1.1",
"@types/node": "^16.11.26",
"concurrently": "^6.5.1",
"discord-api-types": "^0.30.0",
"nodemon": "^3.0.1",
"ts-node": "^10.9.1",
"tsx": "^4.7.1",
"typescript": "^5.2.2"
}
}