-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 1.95 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "apiv2",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"start": "node dist/index.js",
"build": "npx rimraf dist && tsc && cp .env dist/.env",
"dev": "nodemon",
"test": "echo \"Error: no test specified\" && exit 1",
"prepare": "husky"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.ts": [
"eslint --fix",
"prettier --write",
"git add"
],
"*.{md,yml,yml,json}": [
"prettier --write",
"git add"
]
},
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"@distube/ytdl-core": "^4.15.8",
"@ffmpeg/ffmpeg": "^0.12.10",
"@hapi/boom": "^10.0.1",
"@prisma/client": "^5.22.0",
"axios": "^1.7.4",
"bcrypt": "^5.1.1",
"cloudinary": "^2.5.1",
"cookie-parser": "^1.4.7",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"ffmpeg": "^0.0.4",
"fluent-ffmpeg": "^2.1.3",
"http-status-codes": "^2.3.0",
"joi": "^17.13.3",
"jsonwebtoken": "^9.0.2",
"lodash": "^4.17.21",
"multer": "^1.4.5-lts.1",
"node-shazam": "^1.2.7",
"nodemailer": "^6.9.16",
"nodemon": "^3.1.4",
"play-dl": "^1.9.7",
"youtube-dl-exec": "^3.0.12",
"youtube-playlist": "^1.0.4",
"youtube-search-without-api-key": "^2.0.1",
"yt-search": "^2.12.1",
"ytdl-core": "^4.11.5",
"ytpl": "^2.3.0",
"ytsr": "^3.8.4"
},
"devDependencies": {
"@types/bcrypt": "^5.0.2",
"@types/cookie-parser": "^1.4.7",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/jsonwebtoken": "^9.0.7",
"@types/lodash": "^4.17.7",
"@types/multer": "^1.4.12",
"@types/nodemailer": "^6.4.16",
"@types/yt-search": "^2.10.3",
"eslint": "^9.9.0",
"husky": "^9.1.4",
"lint-staged": "^15.2.9",
"prettier": "^3.3.3",
"prisma": "^5.22.0",
"rimraf": "^6.0.1",
"ts-node": "^10.9.2",
"typescript": "^5.5.4"
}
}