-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.04 KB
/
Copy pathpackage.json
File metadata and controls
80 lines (80 loc) · 2.04 KB
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "tvbot",
"version": "0.1.0",
"description": "Discord music statistics bot",
"main": "dist/bot/index.js",
"private": true,
"engines": {
"node": ">=20"
},
"scripts": {
"build": "tsc && tsc-alias && node scripts/copy-assets.mjs",
"dev": "tsx watch src/bot/index.ts",
"start": "node dist/bot/index.js",
"test": "vitest run --passWithNoTests",
"test:watch": "vitest",
"lint": "eslint src",
"format": "prettier --write \"src/**/*.{ts,json}\"",
"db:generate": "prisma generate --schema src/persistence/prisma/schema.prisma",
"db:migrate": "prisma migrate dev --schema src/persistence/prisma/schema.prisma",
"db:deploy": "prisma migrate deploy --schema src/persistence/prisma/schema.prisma",
"db:studio": "prisma studio --schema src/persistence/prisma/schema.prisma"
},
"dependencies": {
"@prisma/client": "^6.5.0",
"discord.js": "^14.18.0",
"dotenv": "^16.4.7",
"essentia.js": "^0.1.3",
"ffmpeg-static": "^5.3.0",
"ffprobe-static": "^3.1.0",
"fluent-ffmpeg": "^2.1.3",
"get-audio-duration": "^4.0.1",
"ioredis": "^5.4.2",
"moonlink.js": "^5.2.0",
"node-cron": "^3.0.3",
"pino": "^9.6.0",
"puppeteer": "^25.9.0",
"reflect-metadata": "^0.2.2",
"tsyringe": "^4.8.0"
},
"devDependencies": {
"@types/fluent-ffmpeg": "^2.1.28",
"@types/node": "^22.13.0",
"@types/node-cron": "^3.0.11",
"eslint": "^9.20.0",
"pino-pretty": "^13.0.0",
"prettier": "^3.5.0",
"prisma": "^6.5.0",
"tsc-alias": "^1.8.10",
"tsx": "^4.19.0",
"typescript": "^5.7.0",
"typescript-eslint": "^8.24.0",
"vitest": "^3.0.0"
},
"allowScripts": {
"prisma@6.19.3": true,
"@prisma/engines@6.19.3": true,
"esbuild@0.28.2": true,
"puppeteer@25.9.0": true,
"fluent-ffmpeg@2": [
null,
[
null,
null,
null,
"true"
]
],
"essentia": {
"js@0": [
null,
[
null,
null,
null,
"true"
]
]
}
}
}