-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
58 lines (58 loc) · 1.77 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
51
52
53
54
55
56
57
58
{
"name": "playlist-bot",
"version": "1.0.0",
"description": "Telegram bot for YouTube Music with playlist management, lyrics, and collaborative voting",
"main": "index.js",
"scripts": {
"lint": "eslint ./src",
"dev": "pnpm build && run-p build:watch start",
"build": "pnpm db:generate && rimraf build && pnpm lint && swc ./src -d build && cp -r ./adblockchrome build/adblockchrome",
"build:watch": "swc ./src -d build -w",
"prepare": "husky install",
"make:migration": "prisma format && prisma migrate dev --name",
"db:migrate": "prisma db push",
"db:generate": "prisma generate",
"start": "node build/index.js"
},
"keywords": [],
"author": {
"name": "Fahrur Rifai",
"email": "mfahrurrifai@gmail.com"
},
"license": "MIT",
"dependencies": {
"@prisma/client": "5.8.1",
"dayjs": "^1.11.10",
"dotenv": "^16.3.1",
"format-duration": "^3.0.2",
"puppeteer": "^22.3.0",
"puppeteer-core": "^22.3.0",
"puppeteer-extra": "^3.3.6",
"puppeteer-extra-plugin-adblocker": "^2.13.6",
"puppeteer-extra-plugin-stealth": "^2.11.2",
"reflect-metadata": "^0.2.1",
"telegraf": "^4.16.3",
"typedi": "^0.10.0",
"ytmusic-api": "^5.2.1"
},
"devDependencies": {
"@swc/cli": "^0.1.63",
"@swc/core": "^1.3.104",
"@types/jsdom": "^21.1.6",
"@types/node": "^20.11.5",
"@typescript-eslint/eslint-plugin": "^6.19.0",
"@typescript-eslint/parser": "^6.19.0",
"chokidar": "^3.5.3",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"husky": "^9.0.10",
"jsdom": "^24.0.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.2.4",
"prisma": "^5.8.1",
"rimraf": "^5.0.5",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0"
}
}