-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.78 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.78 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
{
"name": "vortexstream",
"version": "1.0.0",
"description": "VortexStream a platform where content (videos, likes, comments, subscriptions) is continuously flowing and dynamically engaging users — like a digital vortex pulling users into a rich ecosystem of media.",
"main": "index.js",
"type": "module",
"scripts": {
"dev": "nodemon -r dotenv/config src/dev.js",
"start": "node src/dev.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/KalraH/VortexStream.git"
},
"keywords": [
"JavaScript",
"Node.js",
"Express.js",
"MongoDB",
"Mongoose",
"Nodemon",
"dotenv",
"bcryptjs",
"cors",
"JWT"
],
"author": "Hariom Kalra",
"license": "ISC",
"bugs": {
"url": "https://github.com/KalraH/VortexStream/issues"
},
"homepage": "https://github.com/KalraH/VortexStream#readme",
"devDependencies": {
"@types/node": "^24.1.0",
"nodemon": "^3.1.10",
"prettier": "^3.6.2"
},
"dependencies": {
"bcryptjs": "^3.0.2",
"cloudinary": "^2.7.0",
"cookie-parser": "^1.4.7",
"cors": "^2.8.5",
"dotenv": "^17.2.0",
"express": "^5.1.0",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.16.4",
"mongoose-aggregate-paginate-v2": "^1.1.4",
"multer": "^2.0.2"
}
}