-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.45 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.45 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
{
"name": "vidtube",
"version": "1.0.0",
"description": "a project inspired by youtube",
"keywords": [
"nodejs",
"mongoose",
"backend",
"express"
],
"license": "ISC",
"author": "Chinmay Patil",
"type": "module",
"main": "src/index.js",
"scripts": {
"dev": "bun --hot src/index.js",
"start": "bun src/index.js",
"build": "echo 'No build step needed for Bun'",
"lint": "eslint ."
},
"devDependencies": {
"@eslint/js": "^9.39.1",
"@types/bun": "^1.3.3",
"prettier": "^3.7.4"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.943.0",
"@ffmpeg-installer/ffmpeg": "^1.1.0",
"bcrypt": "^6.0.0",
"cloudinary": "^2.8.0",
"cookie-parser": "^1.4.7",
"cors": "^2.8.5",
"dotenv": "^17.2.3",
"eslint": "^9.39.1",
"express": "^5.2.1",
"express-session": "^1.18.2",
"fluent-ffmpeg": "^2.1.3",
"jsonwebtoken": "^9.0.3",
"mongoose": "^9.0.0",
"mongoose-aggregate-paginate-v2": "^1.1.4",
"morgan": "^1.10.1",
"multer": "^2.0.2",
"nodemailer": "^7.0.11",
"passport": "^0.7.0",
"passport-google-oauth20": "^2.0.0",
"sonner": "^2.0.7",
"winston": "^3.18.3",
"winston-daily-rotate-file": "^5.0.0"
},
"private": true,
"peerDependencies": {
"typescript": "^5.9.3"
}
}