-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.77 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 1.77 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
{
"name": "playcast",
"version": "1.0.0",
"description": "🎬 Modern video streaming platform with YouTube integration - Built with MERN stack",
"main": "server.js",
"scripts": {
"start": "node server.js",
"dev": "nodemon server.js",
"client": "cd client && npm start",
"server": "nodemon server.js",
"build": "cd client && npm run build",
"test": "jest",
"install-client": "cd client && npm install",
"heroku-postbuild": "npm run install-client && npm run build"
},
"keywords": [
"video-streaming",
"youtube-integration",
"mern-stack",
"react",
"nodejs",
"mongodb",
"express",
"video-platform",
"streaming-service",
"video-upload",
"tailwindcss",
"jwt-authentication"
],
"author": {
"name": "Sumant Yadav",
"email": "sumantyadav3086@gmail.com",
"url": "https://github.com/Sumant3086"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Sumant3086/playcast.git"
},
"bugs": {
"url": "https://github.com/Sumant3086/playcast/issues"
},
"homepage": "https://github.com/Sumant3086/playcast#readme",
"engines": {
"node": ">=18.0.0",
"npm": ">=8.0.0"
},
"dependencies": {
"aws-sdk": "^2.1450.0",
"axios": "^1.13.2",
"bcryptjs": "^2.4.3",
"bull": "^4.11.3",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-rate-limit": "^6.10.0",
"express-validator": "^7.0.1",
"fluent-ffmpeg": "^2.1.2",
"helmet": "^7.0.0",
"jsonwebtoken": "^9.0.2",
"mongoose": "^7.5.0",
"multer": "^1.4.5-lts.1",
"redis": "^4.6.8",
"socket.io": "^4.7.2",
"winston": "^3.10.0"
},
"devDependencies": {
"jest": "^29.6.4",
"nodemon": "^3.0.1",
"supertest": "^6.3.3"
}
}