-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.12 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 1.12 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
{
"name": "smart-file-sharing-system",
"version": "1.0.0",
"description": "A secure backend system for uploading, storing, and sharing files with expirable links.",
"type": "module",
"keywords": [
"javascript",
"backend",
"cloud",
"file-sharing",
"api"
],
"homepage": "https://github.com/Krishnx21/smart-file-sharing-system#readme",
"bugs": {
"url": "https://github.com/Krishnx21/smart-file-sharing-system/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Krishnx21/smart-file-sharing-system.git"
},
"license": "ISC",
"author": "krishna",
"main": "src/index.js",
"scripts": {
"dev": "nodemon src/index.js",
"start": "node src/index.js"
},
"devDependencies": {
"nodemon": "^3.1.14",
"prettier": "^3.8.3"
},
"dependencies": {
"bcrypt": "^6.0.0",
"bcryptjs": "^3.0.3",
"cloudinary": "^2.10.0",
"cookie-parser": "^1.4.7",
"cors": "^2.8.6",
"dotenv": "^17.4.2",
"express": "^5.2.1",
"jsonwebtoken": "^9.0.3",
"mongoose": "^9.4.1",
"mongoose-aggregate-paginate-v2": "^1.1.4",
"multer": "^2.1.1"
}
}