-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
28 lines (28 loc) · 879 Bytes
/
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
{
"name": "password-protected-file-sharing",
"version": "1.0.0",
"description": "This repository contains the code for how to create a simple file sharing site that also includes password protected files and a download count tracker. This project uses Express and MongoDB.",
"main": "index.js",
"scripts": {
"dev":"nodemon server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Hat52/password-protected-file-sharing.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Hat52/password-protected-file-sharing/issues"
},
"homepage": "https://github.com/Hat52/password-protected-file-sharing#readme",
"dependencies": {
"bcrypt": "^5.0.1",
"dotenv": "^16.0.1",
"ejs": "^3.1.8",
"express": "^4.18.1",
"mongoose": "^6.4.2",
"multer": "^1.4.5-lts.1"
}
}